2025-06-05T23:11:56.6242682Z Current runner version: '2.325.0' 2025-06-05T23:11:56.6249860Z Runner name: 'i-0dd497f4ced0cc186' 2025-06-05T23:11:56.6250827Z Machine name: 'ip-10-0-43-0' 2025-06-05T23:11:56.6253722Z ##[group]GITHUB_TOKEN Permissions 2025-06-05T23:11:56.6256091Z Contents: read 2025-06-05T23:11:56.6256717Z Metadata: read 2025-06-05T23:11:56.6257310Z ##[endgroup] 2025-06-05T23:11:56.6259573Z Secret source: Actions 2025-06-05T23:11:56.6260475Z Prepare workflow directory 2025-06-05T23:11:56.6827226Z Prepare all required actions 2025-06-05T23:11:56.6869967Z Getting action download info 2025-06-05T23:11:56.9430719Z Download action repository 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-06-05T23:11:57.1819974Z Download action repository 'pytorch/pytorch@9c1bc9ce4684de96db025292610c0664d3d55345' (SHA:9c1bc9ce4684de96db025292610c0664d3d55345) 2025-06-05T23:12:09.6265788Z Download action repository 'actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) 2025-06-05T23:12:09.9403471Z Download action repository 'pmeier/pytest-results-action@a2c1430e2bddadbad9f49a6f9b879f062c6b19b1' (SHA:a2c1430e2bddadbad9f49a6f9b879f062c6b19b1) 2025-06-05T23:12:10.0437396Z Download action repository 'actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-06-05T23:12:10.3862372Z Download action repository 'seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-06-05T23:12:10.6233875Z Getting action download info 2025-06-05T23:12:10.7116261Z Download action repository 'pytorch/pytorch@main' (SHA:fa705f791249c5eee912096f1d7ac7b2d5b60e8c) 2025-06-05T23:12:17.3161637Z Complete job name: test-arm-cortex-m-size-test / linux-job 2025-06-05T23:12:17.3736041Z A job started hook has been configured by the self-hosted runner administrator 2025-06-05T23:12:17.3859665Z ##[group]Run '/home/ec2-user/runner-scripts/before_job.sh' 2025-06-05T23:12:17.3868772Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:17.3869425Z ##[endgroup] 2025-06-05T23:12:18.5815537Z Runner Type: linux.2xlarge 2025-06-05T23:12:18.5816000Z Instance Type: c5.2xlarge 2025-06-05T23:12:18.5816285Z AMI Name: unknown 2025-06-05T23:12:18.5842167Z AMI ID: ami-071226ecf16aa7d96 2025-06-05T23:12:23.9927338Z ##[group]Run set -euxo pipefail 2025-06-05T23:12:23.9927760Z set -euxo pipefail 2025-06-05T23:12:23.9928068Z if [[ "${NO_SUDO}" == "false" ]]; then 2025-06-05T23:12:23.9928459Z  echo "::group::Cleanup with-sudo debug output" 2025-06-05T23:12:23.9928832Z  sudo rm -rfv "${GITHUB_WORKSPACE}" 2025-06-05T23:12:23.9929142Z else 2025-06-05T23:12:23.9929401Z  echo "::group::Cleanup no-sudo debug output" 2025-06-05T23:12:23.9929768Z  rm -rfv "${GITHUB_WORKSPACE}" 2025-06-05T23:12:23.9930050Z fi 2025-06-05T23:12:23.9930256Z  2025-06-05T23:12:23.9930494Z mkdir -p "${GITHUB_WORKSPACE}" 2025-06-05T23:12:23.9930823Z echo "::endgroup::" 2025-06-05T23:12:23.9940631Z shell: /usr/bin/bash -e {0} 2025-06-05T23:12:23.9940930Z env: 2025-06-05T23:12:23.9941204Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:12:23.9941603Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:23.9941944Z PR_NUMBER: 2025-06-05T23:12:23.9946553Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:12:23.9951600Z NO_SUDO: false 2025-06-05T23:12:23.9951824Z ##[endgroup] 2025-06-05T23:12:23.9979520Z + [[ false == \f\a\l\s\e ]] 2025-06-05T23:12:23.9989663Z + echo '::group::Cleanup with-sudo debug output' 2025-06-05T23:12:23.9990163Z + sudo rm -rfv /home/ec2-user/actions-runner/_work/executorch/executorch 2025-06-05T23:12:23.9996910Z ##[group]Cleanup with-sudo debug output 2025-06-05T23:12:24.1329718Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch' 2025-06-05T23:12:24.1345078Z + mkdir -p /home/ec2-user/actions-runner/_work/executorch/executorch 2025-06-05T23:12:24.1357322Z + echo ::endgroup:: 2025-06-05T23:12:24.1358026Z ##[endgroup] 2025-06-05T23:12:24.1463037Z ##[group]Run actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 2025-06-05T23:12:24.1463499Z with: 2025-06-05T23:12:24.1463723Z repository: pytorch/test-infra 2025-06-05T23:12:24.1464015Z path: test-infra 2025-06-05T23:12:24.1464238Z submodules: recursive 2025-06-05T23:12:24.1464662Z token: *** 2025-06-05T23:12:24.1464882Z ssh-strict: true 2025-06-05T23:12:24.1465098Z ssh-user: git 2025-06-05T23:12:24.1465337Z persist-credentials: true 2025-06-05T23:12:24.1465587Z clean: true 2025-06-05T23:12:24.1465832Z sparse-checkout-cone-mode: true 2025-06-05T23:12:24.1466107Z fetch-depth: 1 2025-06-05T23:12:24.1466330Z fetch-tags: false 2025-06-05T23:12:24.1466569Z show-progress: true 2025-06-05T23:12:24.1466802Z lfs: false 2025-06-05T23:12:24.1467010Z set-safe-directory: true 2025-06-05T23:12:24.1467261Z env: 2025-06-05T23:12:24.1467509Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:12:24.1467846Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:24.1468156Z PR_NUMBER: 2025-06-05T23:12:24.1472788Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:12:24.1477878Z ##[endgroup] 2025-06-05T23:12:24.2610498Z Syncing repository: pytorch/test-infra 2025-06-05T23:12:24.2611252Z ##[group]Getting Git version info 2025-06-05T23:12:24.2611763Z Working directory is '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra' 2025-06-05T23:12:24.2612461Z [command]/usr/bin/git version 2025-06-05T23:12:24.2613000Z git version 2.47.1 2025-06-05T23:12:24.2613956Z ##[endgroup] 2025-06-05T23:12:24.2624166Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/c178ebf8-6a90-4884-9c61-6aed161dc7f9' before making global git config changes 2025-06-05T23:12:24.2625268Z Adding repository directory to the temporary git global config as a safe directory 2025-06-05T23:12:24.2628939Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-05T23:12:24.2654942Z ##[group]Initializing the repository 2025-06-05T23:12:24.2659604Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-05T23:12:24.2689174Z hint: Using 'master' as the name for the initial branch. This default branch name 2025-06-05T23:12:24.2689757Z hint: is subject to change. To configure the initial branch name to use in all 2025-06-05T23:12:24.2690327Z hint: of your new repositories, which will suppress this warning, call: 2025-06-05T23:12:24.2690773Z hint: 2025-06-05T23:12:24.2691055Z hint: git config --global init.defaultBranch 2025-06-05T23:12:24.2691395Z hint: 2025-06-05T23:12:24.2691705Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2025-06-05T23:12:24.2692456Z hint: 'development'. The just-created branch can be renamed via this command: 2025-06-05T23:12:24.2692875Z hint: 2025-06-05T23:12:24.2693101Z hint: git branch -m 2025-06-05T23:12:24.2693655Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/ 2025-06-05T23:12:24.2698672Z [command]/usr/bin/git remote add origin https://github.com/pytorch/test-infra 2025-06-05T23:12:24.2721664Z ##[endgroup] 2025-06-05T23:12:24.2722184Z ##[group]Disabling automatic garbage collection 2025-06-05T23:12:24.2725941Z [command]/usr/bin/git config --local gc.auto 0 2025-06-05T23:12:24.2748746Z ##[endgroup] 2025-06-05T23:12:24.2749135Z ##[group]Setting up auth 2025-06-05T23:12:24.2754297Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-05T23:12:24.2778316Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2025-06-05T23:12:24.3049643Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-05T23:12:24.3072563Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2025-06-05T23:12:24.3316213Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:12:24.3349107Z ##[endgroup] 2025-06-05T23:12:24.3349704Z ##[group]Determining the default branch 2025-06-05T23:12:24.3352345Z Retrieving the default branch name 2025-06-05T23:12:24.5197823Z Default branch 'main' 2025-06-05T23:12:24.5198526Z ##[endgroup] 2025-06-05T23:12:24.5198975Z ##[group]Fetching the repository 2025-06-05T23:12:24.5203837Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +refs/heads/main:refs/remotes/origin/main 2025-06-05T23:12:24.8606619Z From https://github.com/pytorch/test-infra 2025-06-05T23:12:24.8607062Z * [new branch] main -> origin/main 2025-06-05T23:12:24.8628349Z ##[endgroup] 2025-06-05T23:12:24.8628773Z ##[group]Determining the checkout info 2025-06-05T23:12:24.8630794Z ##[endgroup] 2025-06-05T23:12:24.8635309Z [command]/usr/bin/git sparse-checkout disable 2025-06-05T23:12:24.8665700Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-06-05T23:12:24.8689601Z ##[group]Checking out the ref 2025-06-05T23:12:24.8693706Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main 2025-06-05T23:12:24.9520894Z Switched to a new branch 'main' 2025-06-05T23:12:24.9521750Z branch 'main' set up to track 'origin/main'. 2025-06-05T23:12:24.9528687Z ##[endgroup] 2025-06-05T23:12:24.9529394Z ##[group]Setting up auth for fetching submodules 2025-06-05T23:12:24.9535049Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:12:24.9572625Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-06-05T23:12:24.9598987Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-06-05T23:12:24.9625138Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-06-05T23:12:24.9647266Z ##[endgroup] 2025-06-05T23:12:24.9647946Z ##[group]Fetching submodules 2025-06-05T23:12:24.9651873Z [command]/usr/bin/git submodule sync --recursive 2025-06-05T23:12:24.9909092Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2025-06-05T23:12:25.0159192Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-06-05T23:12:25.0402788Z ##[endgroup] 2025-06-05T23:12:25.0403240Z ##[group]Persisting credentials for submodules 2025-06-05T23:12:25.0408387Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :" 2025-06-05T23:12:25.0657314Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url" 2025-06-05T23:12:25.0911605Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-06-05T23:12:25.1161192Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-06-05T23:12:25.1405833Z ##[endgroup] 2025-06-05T23:12:25.1435367Z [command]/usr/bin/git log -1 --format=%H 2025-06-05T23:12:25.1453510Z 714db9db22f90727b389d5ecb5a2dc16cd27d00c 2025-06-05T23:12:25.1622926Z Prepare all required actions 2025-06-05T23:12:25.1623461Z Getting action download info 2025-06-05T23:12:25.2639641Z Download action repository 'pytorch/test-infra@main' (SHA:714db9db22f90727b389d5ecb5a2dc16cd27d00c) 2025-06-05T23:12:26.6614586Z Getting action download info 2025-06-05T23:12:26.7861065Z Download action repository 'nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482' (SHA:3e91a01664abd3c5cd539100d10d33b9c5b68482) 2025-06-05T23:12:26.9361340Z ##[group]Run ./test-infra/.github/actions/setup-linux 2025-06-05T23:12:26.9361709Z env: 2025-06-05T23:12:26.9361969Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:12:26.9362312Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:26.9362591Z PR_NUMBER: 2025-06-05T23:12:26.9367142Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:12:26.9372058Z ##[endgroup] 2025-06-05T23:12:26.9455305Z ##[group]Run set -euo pipefail 2025-06-05T23:12:26.9455641Z set -euo pipefail 2025-06-05T23:12:26.9455926Z function get_ec2_metadata() { 2025-06-05T23:12:26.9456286Z  # Pulled from instance metadata endpoint for EC2 2025-06-05T23:12:26.9456908Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-06-05T23:12:26.9457451Z  category=$1 2025-06-05T23:12:26.9458316Z  curl -H "X-aws-ec2-metadata-token: $(curl -s -X PUT "http://169.254.169.254/latest/api/token" -H "X-aws-ec2-metadata-token-ttl-seconds: 30")" -fsSL "http://169.254.169.254/latest/meta-data/${category}" 2025-06-05T23:12:26.9459211Z } 2025-06-05T23:12:26.9459464Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-06-05T23:12:26.9459876Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-06-05T23:12:26.9460333Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-06-05T23:12:26.9460735Z echo "system info $(uname -a)" 2025-06-05T23:12:26.9466375Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:26.9466748Z env: 2025-06-05T23:12:26.9466992Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:12:26.9467342Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:26.9467607Z PR_NUMBER: 2025-06-05T23:12:26.9472247Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:12:26.9476993Z ##[endgroup] 2025-06-05T23:12:26.9603735Z ami-id: ami-071226ecf16aa7d96 2025-06-05T23:12:26.9690574Z instance-id: i-0dd497f4ced0cc186 2025-06-05T23:12:26.9774604Z instance-type: c5.2xlarge 2025-06-05T23:12:26.9784410Z system info Linux ip-10-0-43-0.ec2.internal 6.1.130-139.222.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 11 01:10:58 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux 2025-06-05T23:12:26.9819237Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:12:26.9820157Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:12:26.9825869Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:26.9826234Z env: 2025-06-05T23:12:26.9826481Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:12:26.9826831Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:26.9827092Z PR_NUMBER: 2025-06-05T23:12:26.9831604Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:12:26.9836466Z ##[endgroup] 2025-06-05T23:12:26.9907105Z ##[group]Run if systemctl is-active --quiet docker; then 2025-06-05T23:12:26.9907527Z if systemctl is-active --quiet docker; then 2025-06-05T23:12:26.9907911Z  echo "Docker daemon is running..."; 2025-06-05T23:12:26.9908219Z else 2025-06-05T23:12:26.9908564Z  echo "Starting docker deamon..." && sudo systemctl start docker; 2025-06-05T23:12:26.9908977Z fi 2025-06-05T23:12:26.9914105Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:26.9914473Z env: 2025-06-05T23:12:26.9914716Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:12:26.9915062Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:26.9915326Z PR_NUMBER: 2025-06-05T23:12:26.9919953Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:12:26.9924707Z ##[endgroup] 2025-06-05T23:12:26.9994437Z Docker daemon is running... 2025-06-05T23:12:27.0021486Z ##[group]Run AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2025-06-05T23:12:27.0022119Z AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2025-06-05T23:12:27.0022626Z retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2025-06-05T23:12:27.0023215Z retry aws ecr get-login-password --region "$AWS_DEFAULT_REGION" | docker login --username AWS \ 2025-06-05T23:12:27.0023933Z  --password-stdin "$AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com" 2025-06-05T23:12:27.0029107Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:27.0029615Z env: 2025-06-05T23:12:27.0029857Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:12:27.0030206Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:27.0030477Z PR_NUMBER: 2025-06-05T23:12:27.0034951Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:12:27.0039678Z AWS_RETRY_MODE: standard 2025-06-05T23:12:27.0039967Z AWS_MAX_ATTEMPTS: 5 2025-06-05T23:12:27.0040277Z AWS_DEFAULT_REGION: us-east-1 2025-06-05T23:12:27.0040529Z ##[endgroup] 2025-06-05T23:12:28.1194947Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:12:28.1195650Z Configure a credential helper to remove this warning. See 2025-06-05T23:12:28.1196235Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:12:28.1196975Z 2025-06-05T23:12:28.1197146Z Login Succeeded 2025-06-05T23:12:28.1247333Z ##[group]Run env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:12:28.1248375Z env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:12:28.1249271Z env | grep '^CI' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:12:28.1257226Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:28.1257584Z env: 2025-06-05T23:12:28.1257840Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:12:28.1258182Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:28.1258457Z PR_NUMBER: 2025-06-05T23:12:28.1262932Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:12:28.1267678Z ##[endgroup] 2025-06-05T23:12:28.1495439Z ##[group]Run RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2025-06-05T23:12:28.1495925Z RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2025-06-05T23:12:28.1496340Z sudo rm -rf "${RUNNER_ARTIFACT_DIR}" 2025-06-05T23:12:28.1496679Z mkdir -p "${RUNNER_ARTIFACT_DIR}" 2025-06-05T23:12:28.1497122Z echo "RUNNER_ARTIFACT_DIR=${RUNNER_ARTIFACT_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:12:28.1497534Z  2025-06-05T23:12:28.1497837Z RUNNER_TEST_RESULTS_DIR="${RUNNER_TEMP}/test-results" 2025-06-05T23:12:28.1498242Z sudo rm -rf "${RUNNER_TEST_RESULTS_DIR}" 2025-06-05T23:12:28.1498608Z mkdir -p "${RUNNER_TEST_RESULTS_DIR}" 2025-06-05T23:12:28.1499080Z echo "RUNNER_TEST_RESULTS_DIR=${RUNNER_TEST_RESULTS_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:12:28.1499512Z  2025-06-05T23:12:28.1499745Z RUNNER_DOCS_DIR="${RUNNER_TEMP}/docs" 2025-06-05T23:12:28.1500070Z sudo rm -rf "${RUNNER_DOCS_DIR}" 2025-06-05T23:12:28.1500408Z mkdir -p "${RUNNER_DOCS_DIR}" 2025-06-05T23:12:28.1500792Z echo "RUNNER_DOCS_DIR=${RUNNER_DOCS_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:12:28.1506395Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:28.1506745Z env: 2025-06-05T23:12:28.1507004Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:12:28.1507342Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:28.1507616Z PR_NUMBER: 2025-06-05T23:12:28.1512224Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:12:28.1516997Z ##[endgroup] 2025-06-05T23:12:28.5883073Z ##[group]Run needs=0 2025-06-05T23:12:28.5883345Z needs=0 2025-06-05T23:12:28.5883705Z if lspci -v | grep -e 'controller.*NVIDIA' >/dev/null 2>/dev/null; then 2025-06-05T23:12:28.5884155Z  needs=1 2025-06-05T23:12:28.5884366Z fi 2025-06-05T23:12:28.5884611Z echo "does=${needs}" >> $GITHUB_OUTPUT 2025-06-05T23:12:28.5890262Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:28.5890638Z env: 2025-06-05T23:12:28.5890884Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:12:28.5891241Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:28.5891523Z PR_NUMBER: 2025-06-05T23:12:28.5896085Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:12:28.5901129Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:12:28.5901689Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:12:28.5902229Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:12:28.5902603Z ##[endgroup] 2025-06-05T23:12:28.6461254Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:12:28.6461820Z # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:12:28.6462228Z # shellcheck disable=SC2046 2025-06-05T23:12:28.6462557Z docker stop $(docker ps -q) || true 2025-06-05T23:12:28.6462882Z # Prune all of the docker images 2025-06-05T23:12:28.6463203Z docker system prune -af 2025-06-05T23:12:28.6468696Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:28.6469070Z env: 2025-06-05T23:12:28.6469313Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:12:28.6469672Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:28.6469939Z PR_NUMBER: 2025-06-05T23:12:28.6474569Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:12:28.6480054Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:12:28.6480620Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:12:28.6481159Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:12:28.6481522Z ##[endgroup] 2025-06-05T23:12:28.6698981Z "docker stop" requires at least 1 argument. 2025-06-05T23:12:28.6699364Z See 'docker stop --help'. 2025-06-05T23:12:28.6699531Z 2025-06-05T23:12:28.6699687Z Usage: docker stop [OPTIONS] CONTAINER [CONTAINER...] 2025-06-05T23:12:28.6699951Z 2025-06-05T23:12:28.6700071Z Stop one or more running containers 2025-06-05T23:12:28.6863595Z Total reclaimed space: 0B 2025-06-05T23:12:28.6940949Z ##[group]Run ./test-infra/.github/actions/setup-ssh 2025-06-05T23:12:28.6941573Z with: 2025-06-05T23:12:28.6942537Z github-secret: *** 2025-06-05T23:12:28.6943277Z instructions: All testing is done inside the container, to start an interactive session run: docker exec -it $(docker container ps --format '{{.ID}}') bash 2025-06-05T23:12:28.6944083Z activate-with-label: false 2025-06-05T23:12:28.6944453Z label: with-ssh 2025-06-05T23:12:28.6944751Z remove-existing-keys: true 2025-06-05T23:12:28.6945109Z fail-silently: true 2025-06-05T23:12:28.7026028Z env: 2025-06-05T23:12:28.7026454Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:12:28.7027016Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:28.7027529Z PR_NUMBER: 2025-06-05T23:12:28.7032501Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:12:28.7037383Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:12:28.7037937Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:12:28.7038451Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:12:28.7038804Z ##[endgroup] 2025-06-05T23:12:28.8073124Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-06-05T23:12:28.8074243Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-06-05T23:12:28.8193064Z ##[group]Run actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 2025-06-05T23:12:28.8193487Z with: 2025-06-05T23:12:28.8193701Z repository: pytorch/executorch 2025-06-05T23:12:28.8194016Z ref: bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:12:28.8194333Z path: pytorch/executorch 2025-06-05T23:12:28.8194586Z fetch-depth: 1 2025-06-05T23:12:28.8194799Z submodules: recursive 2025-06-05T23:12:28.8195186Z token: *** 2025-06-05T23:12:28.8195400Z ssh-strict: true 2025-06-05T23:12:28.8195623Z ssh-user: git 2025-06-05T23:12:28.8195856Z persist-credentials: true 2025-06-05T23:12:28.8196103Z clean: true 2025-06-05T23:12:28.8196343Z sparse-checkout-cone-mode: true 2025-06-05T23:12:28.8196616Z fetch-tags: false 2025-06-05T23:12:28.8196846Z show-progress: true 2025-06-05T23:12:28.8197069Z lfs: false 2025-06-05T23:12:28.8197286Z set-safe-directory: true 2025-06-05T23:12:28.8197522Z env: 2025-06-05T23:12:28.8197803Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:12:28.8198138Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:28.8198413Z PR_NUMBER: 2025-06-05T23:12:28.8202892Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:12:28.8207892Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:12:28.8208462Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:12:28.8209004Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:12:28.8209384Z ##[endgroup] 2025-06-05T23:12:28.9146986Z Syncing repository: pytorch/executorch 2025-06-05T23:12:28.9155029Z ##[group]Getting Git version info 2025-06-05T23:12:28.9155914Z Working directory is '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch' 2025-06-05T23:12:28.9181568Z [command]/usr/bin/git version 2025-06-05T23:12:28.9214506Z git version 2.47.1 2025-06-05T23:12:28.9237848Z ##[endgroup] 2025-06-05T23:12:28.9248961Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/6680f58e-f292-42bb-b570-8ba5cb049c7e' before making global git config changes 2025-06-05T23:12:28.9249890Z Adding repository directory to the temporary git global config as a safe directory 2025-06-05T23:12:28.9253877Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch 2025-06-05T23:12:28.9279299Z ##[group]Initializing the repository 2025-06-05T23:12:28.9283765Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch 2025-06-05T23:12:28.9311928Z hint: Using 'master' as the name for the initial branch. This default branch name 2025-06-05T23:12:28.9312828Z hint: is subject to change. To configure the initial branch name to use in all 2025-06-05T23:12:28.9313936Z hint: of your new repositories, which will suppress this warning, call: 2025-06-05T23:12:28.9314349Z hint: 2025-06-05T23:12:28.9314627Z hint: git config --global init.defaultBranch 2025-06-05T23:12:28.9314955Z hint: 2025-06-05T23:12:28.9315276Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2025-06-05T23:12:28.9315817Z hint: 'development'. The just-created branch can be renamed via this command: 2025-06-05T23:12:28.9316239Z hint: 2025-06-05T23:12:28.9316478Z hint: git branch -m 2025-06-05T23:12:28.9317447Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/ 2025-06-05T23:12:28.9321245Z [command]/usr/bin/git remote add origin https://github.com/pytorch/executorch 2025-06-05T23:12:28.9344747Z ##[endgroup] 2025-06-05T23:12:28.9345152Z ##[group]Disabling automatic garbage collection 2025-06-05T23:12:28.9348561Z [command]/usr/bin/git config --local gc.auto 0 2025-06-05T23:12:28.9370707Z ##[endgroup] 2025-06-05T23:12:28.9371075Z ##[group]Setting up auth 2025-06-05T23:12:28.9376035Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-05T23:12:28.9399032Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2025-06-05T23:12:28.9643202Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-05T23:12:28.9667263Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2025-06-05T23:12:28.9914638Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:12:28.9951008Z ##[endgroup] 2025-06-05T23:12:28.9951409Z ##[group]Fetching the repository 2025-06-05T23:12:28.9958285Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:12:31.3577531Z From https://github.com/pytorch/executorch 2025-06-05T23:12:31.3578547Z * branch bd572346e4f196b36aaa03a1645d12b1618fe88b -> FETCH_HEAD 2025-06-05T23:12:31.3599440Z ##[endgroup] 2025-06-05T23:12:31.3600230Z ##[group]Determining the checkout info 2025-06-05T23:12:31.3602441Z ##[endgroup] 2025-06-05T23:12:31.3607206Z [command]/usr/bin/git sparse-checkout disable 2025-06-05T23:12:31.3637274Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-06-05T23:12:31.3659675Z ##[group]Checking out the ref 2025-06-05T23:12:31.3663611Z [command]/usr/bin/git checkout --progress --force bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:12:31.8500385Z Note: switching to 'bd572346e4f196b36aaa03a1645d12b1618fe88b'. 2025-06-05T23:12:31.8500769Z 2025-06-05T23:12:31.8501008Z You are in 'detached HEAD' state. You can look around, make experimental 2025-06-05T23:12:31.8501531Z changes and commit them, and you can discard any commits you make in this 2025-06-05T23:12:31.8502071Z state without impacting any branches by switching back to a branch. 2025-06-05T23:12:31.8502384Z 2025-06-05T23:12:31.8502597Z If you want to create a new branch to retain commits you create, you may 2025-06-05T23:12:31.8503084Z do so (now or later) by using -c with the switch command. Example: 2025-06-05T23:12:31.8503390Z 2025-06-05T23:12:31.8503501Z git switch -c 2025-06-05T23:12:31.8503692Z 2025-06-05T23:12:31.8503794Z Or undo this operation with: 2025-06-05T23:12:31.8503981Z 2025-06-05T23:12:31.8504067Z git switch - 2025-06-05T23:12:31.8504193Z 2025-06-05T23:12:31.8504435Z Turn off this advice by setting config variable advice.detachedHead to false 2025-06-05T23:12:31.8504770Z 2025-06-05T23:12:31.8505031Z HEAD is now at bd57234 Qualcomm AI Engine Direct - QAIRT Visualizer Engagement (#10873) 2025-06-05T23:12:31.8529225Z ##[endgroup] 2025-06-05T23:12:31.8529646Z ##[group]Setting up auth for fetching submodules 2025-06-05T23:12:31.8534180Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:12:31.8571028Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-06-05T23:12:31.8593951Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-06-05T23:12:31.8617451Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-06-05T23:12:31.8636551Z ##[endgroup] 2025-06-05T23:12:31.8636996Z ##[group]Fetching submodules 2025-06-05T23:12:31.8639678Z [command]/usr/bin/git submodule sync --recursive 2025-06-05T23:12:31.8891412Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2025-06-05T23:12:31.9136738Z Submodule 'backends/arm/third-party/ethos-u-core-driver' (https://git.gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-core-driver.git) registered for path 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:12:31.9138780Z Submodule 'backends/arm/third-party/serialization_lib' (https://git.gitlab.arm.com/tosa/tosa-serialization.git) registered for path 'backends/arm/third-party/serialization_lib' 2025-06-05T23:12:31.9140978Z Submodule 'backends/cadence/utils/FACTO' (https://github.com/pytorch-labs/FACTO.git) registered for path 'backends/cadence/utils/FACTO' 2025-06-05T23:12:31.9144941Z Submodule 'backends/vulkan/third-party/Vulkan-Headers' (https://github.com/KhronosGroup/Vulkan-Headers) registered for path 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:12:31.9149198Z Submodule 'backends/vulkan/third-party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:12:31.9152774Z Submodule 'backends/vulkan/third-party/volk' (https://github.com/zeux/volk) registered for path 'backends/vulkan/third-party/volk' 2025-06-05T23:12:31.9156353Z Submodule 'backends/xnnpack/third-party/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'backends/xnnpack/third-party/FP16' 2025-06-05T23:12:31.9159302Z Submodule 'backends/xnnpack/third-party/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:12:31.9162213Z Submodule 'backends/xnnpack/third-party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:12:31.9165116Z Submodule 'backends/xnnpack/third-party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:12:31.9168259Z Submodule 'backends/xnnpack/third-party/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:12:31.9171729Z Submodule 'extension/llm/tokenizers' (https://github.com/pytorch-labs/tokenizers.git) registered for path 'extension/llm/tokenizers' 2025-06-05T23:12:31.9174959Z Submodule 'kernels/optimized/third-party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'kernels/optimized/third-party/eigen' 2025-06-05T23:12:31.9178352Z Submodule 'shim' (https://github.com/facebook/buck2-shims-meta) registered for path 'shim' 2025-06-05T23:12:31.9182874Z Submodule 'third-party/ao' (https://github.com/pytorch/ao.git) registered for path 'third-party/ao' 2025-06-05T23:12:31.9187206Z Submodule 'third-party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third-party/flatbuffers' 2025-06-05T23:12:31.9192212Z Submodule 'third-party/flatcc' (https://github.com/dvidelabs/flatcc.git) registered for path 'third-party/flatcc' 2025-06-05T23:12:31.9196036Z Submodule 'third-party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third-party/gflags' 2025-06-05T23:12:31.9199947Z Submodule 'third-party/googletest' (https://github.com/google/googletest.git) registered for path 'third-party/googletest' 2025-06-05T23:12:31.9203515Z Submodule 'third-party/ios-cmake' (https://github.com/leetal/ios-cmake) registered for path 'third-party/ios-cmake' 2025-06-05T23:12:31.9207426Z Submodule 'third-party/json' (https://github.com/nlohmann/json.git) registered for path 'third-party/json' 2025-06-05T23:12:31.9211526Z Submodule 'third-party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third-party/pocketfft' 2025-06-05T23:12:31.9215653Z Submodule 'third-party/prelude' (https://github.com/facebook/buck2-prelude.git) registered for path 'third-party/prelude' 2025-06-05T23:12:31.9219936Z Submodule 'third-party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third-party/pybind11' 2025-06-05T23:12:31.9245318Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/ethos-u-core-driver'... 2025-06-05T23:12:32.7245061Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/serialization_lib'... 2025-06-05T23:12:33.4055718Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/cadence/utils/FACTO'... 2025-06-05T23:12:33.7119397Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/Vulkan-Headers'... 2025-06-05T23:12:34.1639285Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/VulkanMemoryAllocator'... 2025-06-05T23:12:34.4566997Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/volk'... 2025-06-05T23:12:34.6572481Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/FP16'... 2025-06-05T23:12:34.9000077Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/FXdiv'... 2025-06-05T23:12:35.1174857Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/XNNPACK'... 2025-06-05T23:12:35.7925504Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/cpuinfo'... 2025-06-05T23:12:36.1713954Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/pthreadpool'... 2025-06-05T23:12:36.4076414Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers'... 2025-06-05T23:12:36.7150598Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/kernels/optimized/third-party/eigen'... 2025-06-05T23:12:37.4383803Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/shim'... 2025-06-05T23:12:37.6638236Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ao'... 2025-06-05T23:12:38.0622814Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/flatbuffers'... 2025-06-05T23:12:38.4224661Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/flatcc'... 2025-06-05T23:12:38.8104399Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/gflags'... 2025-06-05T23:12:39.0738074Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/googletest'... 2025-06-05T23:12:39.3870063Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ios-cmake'... 2025-06-05T23:12:39.6550958Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/json'... 2025-06-05T23:12:40.0499372Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/pocketfft'... 2025-06-05T23:12:40.2773406Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/prelude'... 2025-06-05T23:12:40.6961135Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/pybind11'... 2025-06-05T23:12:42.2013823Z From https://git.gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-core-driver 2025-06-05T23:12:42.2014500Z * branch 7bf44c54527e718b99d588ce520cf2f96343adb1 -> FETCH_HEAD 2025-06-05T23:12:42.2122601Z Submodule path 'backends/arm/third-party/ethos-u-core-driver': checked out '7bf44c54527e718b99d588ce520cf2f96343adb1' 2025-06-05T23:12:43.6333442Z From https://git.gitlab.arm.com/tosa/tosa-serialization 2025-06-05T23:12:43.6333983Z * branch 187af0d41fe75d08d2a7ec84c1b4d24b9b641ed2 -> FETCH_HEAD 2025-06-05T23:12:43.6438050Z Submodule path 'backends/arm/third-party/serialization_lib': checked out '187af0d41fe75d08d2a7ec84c1b4d24b9b641ed2' 2025-06-05T23:12:43.6451839Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:12:43.6475942Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers'... 2025-06-05T23:12:44.7481016Z From https://github.com/google/flatbuffers 2025-06-05T23:12:44.7482196Z * branch 0100f6a5779831fa7a651e4b67ef389a8752bd9b -> FETCH_HEAD 2025-06-05T23:12:44.8508523Z Submodule path 'backends/arm/third-party/serialization_lib/third_party/flatbuffers': checked out '0100f6a5779831fa7a651e4b67ef389a8752bd9b' 2025-06-05T23:12:45.4783094Z From https://github.com/pytorch-labs/FACTO 2025-06-05T23:12:45.4783605Z * branch 1db37fc79d0d59638cbb794fa49d878aafc24461 -> FETCH_HEAD 2025-06-05T23:12:45.4858496Z Submodule path 'backends/cadence/utils/FACTO': checked out '1db37fc79d0d59638cbb794fa49d878aafc24461' 2025-06-05T23:12:46.2940510Z From https://github.com/KhronosGroup/Vulkan-Headers 2025-06-05T23:12:46.2941026Z * branch 0c5928795a66e93f65e5e68a36d8daa79a209dc2 -> FETCH_HEAD 2025-06-05T23:12:46.3438654Z Submodule path 'backends/vulkan/third-party/Vulkan-Headers': checked out '0c5928795a66e93f65e5e68a36d8daa79a209dc2' 2025-06-05T23:12:46.9761789Z From https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator 2025-06-05T23:12:46.9762424Z * branch a6bfc237255a6bac1513f7c1ebde6d8aed6b5191 -> FETCH_HEAD 2025-06-05T23:12:47.0067295Z Submodule path 'backends/vulkan/third-party/VulkanMemoryAllocator': checked out 'a6bfc237255a6bac1513f7c1ebde6d8aed6b5191' 2025-06-05T23:12:47.5997086Z From https://github.com/zeux/volk 2025-06-05T23:12:47.5997613Z * branch b3bc21e584f97400b6884cb2a541a56c6a5ddba3 -> FETCH_HEAD 2025-06-05T23:12:47.6064805Z Submodule path 'backends/vulkan/third-party/volk': checked out 'b3bc21e584f97400b6884cb2a541a56c6a5ddba3' 2025-06-05T23:12:48.0942755Z From https://github.com/Maratyszcza/FP16 2025-06-05T23:12:48.0943249Z * branch 4dfe081cf6bcd15db339cf2680b9281b8451eeb3 -> FETCH_HEAD 2025-06-05T23:12:48.1023069Z Submodule path 'backends/xnnpack/third-party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-06-05T23:12:48.6125057Z From https://github.com/Maratyszcza/FXdiv 2025-06-05T23:12:48.6125560Z * branch b408327ac2a15ec3e43352421954f5b1967701d1 -> FETCH_HEAD 2025-06-05T23:12:48.6177017Z Submodule path 'backends/xnnpack/third-party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-06-05T23:12:50.1749519Z From https://github.com/google/XNNPACK 2025-06-05T23:12:50.1750014Z * branch 4ea82e595b36106653175dcb04b2aa532660d0d8 -> FETCH_HEAD 2025-06-05T23:12:50.7487039Z Submodule path 'backends/xnnpack/third-party/XNNPACK': checked out '4ea82e595b36106653175dcb04b2aa532660d0d8' 2025-06-05T23:12:51.3224386Z From https://github.com/pytorch/cpuinfo 2025-06-05T23:12:51.3224895Z * branch c61fe919607bbc534d7a5a5707bdd7041e72c5ff -> FETCH_HEAD 2025-06-05T23:12:51.4039688Z Submodule path 'backends/xnnpack/third-party/cpuinfo': checked out 'c61fe919607bbc534d7a5a5707bdd7041e72c5ff' 2025-06-05T23:12:51.9586837Z From https://github.com/Maratyszcza/pthreadpool 2025-06-05T23:12:51.9587734Z * branch 4fe0e1e183925bf8cfa6aae24237e724a96479b8 -> FETCH_HEAD 2025-06-05T23:12:51.9663475Z Submodule path 'backends/xnnpack/third-party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-06-05T23:12:52.9538468Z From https://github.com/pytorch-labs/tokenizers 2025-06-05T23:12:52.9538978Z * branch fc5962cd9e08019c5df6667eba3377e7d76441f7 -> FETCH_HEAD 2025-06-05T23:12:52.9777175Z Submodule path 'extension/llm/tokenizers': checked out 'fc5962cd9e08019c5df6667eba3377e7d76441f7' 2025-06-05T23:12:52.9793621Z Submodule 'third-party/abseil-cpp' (https://github.com/abseil/abseil-cpp.git) registered for path 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:12:52.9795139Z Submodule 'third-party/json' (https://github.com/nlohmann/json.git) registered for path 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:12:52.9797635Z Submodule 'third-party/pcre2' (https://github.com/PCRE2Project/pcre2.git) registered for path 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:12:52.9800063Z Submodule 'third-party/re2' (https://github.com/google/re2.git) registered for path 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:12:52.9802820Z Submodule 'third-party/sentencepiece' (https://github.com/google/sentencepiece.git) registered for path 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:12:52.9828056Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/abseil-cpp'... 2025-06-05T23:12:53.5136135Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/json'... 2025-06-05T23:12:53.9162422Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/pcre2'... 2025-06-05T23:12:54.2342773Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/re2'... 2025-06-05T23:12:54.4911674Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece'... 2025-06-05T23:12:55.8242032Z From https://github.com/abseil/abseil-cpp 2025-06-05T23:12:55.8242528Z * branch 7d96b2e93d9a84530748b68abd2f97595c51ecf4 -> FETCH_HEAD 2025-06-05T23:12:55.9189389Z Submodule path 'extension/llm/tokenizers/third-party/abseil-cpp': checked out '7d96b2e93d9a84530748b68abd2f97595c51ecf4' 2025-06-05T23:12:56.6474142Z From https://github.com/nlohmann/json 2025-06-05T23:12:56.6474640Z * branch e6cafa573aac6ed9227f752a5371c0b3f436307d -> FETCH_HEAD 2025-06-05T23:12:56.7397350Z Submodule path 'extension/llm/tokenizers/third-party/json': checked out 'e6cafa573aac6ed9227f752a5371c0b3f436307d' 2025-06-05T23:12:57.2805491Z From https://github.com/PCRE2Project/pcre2 2025-06-05T23:12:57.2806002Z * branch 2e03e323339ab692640626f02f8d8d6f95bff9c6 -> FETCH_HEAD 2025-06-05T23:12:57.3513854Z Submodule path 'extension/llm/tokenizers/third-party/pcre2': checked out '2e03e323339ab692640626f02f8d8d6f95bff9c6' 2025-06-05T23:12:57.3529934Z Submodule 'deps/sljit' (https://github.com/zherczeg/sljit.git) registered for path 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:12:57.3555982Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/pcre2/deps/sljit'... 2025-06-05T23:12:58.1635833Z From https://github.com/zherczeg/sljit 2025-06-05T23:12:58.1636332Z * branch 98802d939be3f0ccc2c538d611ec4c728564e8cf -> FETCH_HEAD 2025-06-05T23:12:58.1821553Z Submodule path 'extension/llm/tokenizers/third-party/pcre2/deps/sljit': checked out '98802d939be3f0ccc2c538d611ec4c728564e8cf' 2025-06-05T23:12:58.7578293Z From https://github.com/google/re2 2025-06-05T23:12:58.7578781Z * branch 6dcd83d60f7944926bfd308cc13979fc53dd69ca -> FETCH_HEAD 2025-06-05T23:12:58.7738398Z Submodule path 'extension/llm/tokenizers/third-party/re2': checked out '6dcd83d60f7944926bfd308cc13979fc53dd69ca' 2025-06-05T23:12:59.3961137Z From https://github.com/google/sentencepiece 2025-06-05T23:12:59.3961905Z * branch d8f741853847553169444afc12c00f4bbff3e9ce -> FETCH_HEAD 2025-06-05T23:12:59.5217584Z Submodule path 'extension/llm/tokenizers/third-party/sentencepiece': checked out 'd8f741853847553169444afc12c00f4bbff3e9ce' 2025-06-05T23:13:01.1906378Z From https://gitlab.com/libeigen/eigen 2025-06-05T23:13:01.1906883Z * branch a39ade4ccf99df845ec85c580fbbb324f71952fa -> FETCH_HEAD 2025-06-05T23:13:01.3120523Z Submodule path 'kernels/optimized/third-party/eigen': checked out 'a39ade4ccf99df845ec85c580fbbb324f71952fa' 2025-06-05T23:13:01.9748827Z From https://github.com/facebook/buck2-shims-meta 2025-06-05T23:13:01.9940832Z * branch cf6a954aae4bee7b4515e13475878460115027d1 -> FETCH_HEAD 2025-06-05T23:13:01.9941429Z Submodule path 'shim': checked out 'cf6a954aae4bee7b4515e13475878460115027d1' 2025-06-05T23:13:02.6388217Z From https://github.com/pytorch/ao 2025-06-05T23:13:02.6388732Z * branch bc68b11f1bf77be38721ca7dd2c477aeb5e6626e -> FETCH_HEAD 2025-06-05T23:13:02.7314759Z Submodule path 'third-party/ao': checked out 'bc68b11f1bf77be38721ca7dd2c477aeb5e6626e' 2025-06-05T23:13:02.7331802Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass) registered for path 'third-party/ao/third_party/cutlass' 2025-06-05T23:13:02.7357135Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ao/third_party/cutlass'... 2025-06-05T23:13:04.5706784Z From https://github.com/NVIDIA/cutlass 2025-06-05T23:13:04.5707273Z * branch ad7b2f5e84fcfa124cb02b91d5bd26d238c0459e -> FETCH_HEAD 2025-06-05T23:13:05.1173658Z Submodule path 'third-party/ao/third_party/cutlass': checked out 'ad7b2f5e84fcfa124cb02b91d5bd26d238c0459e' 2025-06-05T23:13:05.7841723Z From https://github.com/google/flatbuffers 2025-06-05T23:13:05.7842230Z * branch 595bf0007ab1929570c7671f091313c8fc20644e -> FETCH_HEAD 2025-06-05T23:13:05.8847979Z Submodule path 'third-party/flatbuffers': checked out '595bf0007ab1929570c7671f091313c8fc20644e' 2025-06-05T23:13:06.3526651Z From https://github.com/dvidelabs/flatcc 2025-06-05T23:13:06.3527149Z * branch 896db54787e8b730a6be482c69324751f3f5f117 -> FETCH_HEAD 2025-06-05T23:13:06.3813404Z Submodule path 'third-party/flatcc': checked out '896db54787e8b730a6be482c69324751f3f5f117' 2025-06-05T23:13:06.9514070Z From https://github.com/gflags/gflags 2025-06-05T23:13:06.9514587Z * branch a738fdf9338412f83ab3f26f31ac11ed3f3ec4bd -> FETCH_HEAD 2025-06-05T23:13:06.9598088Z Submodule path 'third-party/gflags': checked out 'a738fdf9338412f83ab3f26f31ac11ed3f3ec4bd' 2025-06-05T23:13:07.7162020Z From https://github.com/google/googletest 2025-06-05T23:13:07.7162853Z * branch e2239ee6043f73722e7aa812a459f54a28552929 -> FETCH_HEAD 2025-06-05T23:13:07.7509624Z Submodule path 'third-party/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-06-05T23:13:08.2787508Z From https://github.com/leetal/ios-cmake 2025-06-05T23:13:08.2788025Z * branch 06465b27698424cf4a04a5ca4904d50a3c966c45 -> FETCH_HEAD 2025-06-05T23:13:08.2880181Z Submodule path 'third-party/ios-cmake': checked out '06465b27698424cf4a04a5ca4904d50a3c966c45' 2025-06-05T23:13:08.8609149Z From https://github.com/nlohmann/json 2025-06-05T23:13:08.8609641Z * branch ac0133ea89a8fd730a9cc9649c5226a9995dc3e1 -> FETCH_HEAD 2025-06-05T23:13:08.9517153Z Submodule path 'third-party/json': checked out 'ac0133ea89a8fd730a9cc9649c5226a9995dc3e1' 2025-06-05T23:13:08.9603189Z Submodule path 'third-party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-06-05T23:13:09.6987275Z From https://github.com/facebook/buck2-prelude 2025-06-05T23:13:09.6987778Z * branch 48c249f8c7b99ff501d6e857754760315072b306 -> FETCH_HEAD 2025-06-05T23:13:09.8326354Z Submodule path 'third-party/prelude': checked out '48c249f8c7b99ff501d6e857754760315072b306' 2025-06-05T23:13:10.4788199Z From https://github.com/pybind/pybind11 2025-06-05T23:13:10.4789088Z * branch a2e59f0e7065404b44dfe92a28aca47ba1378dc4 -> FETCH_HEAD 2025-06-05T23:13:10.5060896Z Submodule path 'third-party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-06-05T23:13:10.5090167Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-06-05T23:13:10.5343264Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:13:10.5380287Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:13:10.5416370Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:13:10.5458751Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:13:10.5496934Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:13:10.5534875Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:13:10.5571948Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:13:10.5609133Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:13:10.5645631Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:13:10.5682851Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:13:10.5735992Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:13:10.5773821Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:13:10.5811061Z Entering 'extension/llm/tokenizers' 2025-06-05T23:13:10.5847493Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:13:10.5886789Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:13:10.5924459Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:13:10.5959892Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:13:10.5999484Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:13:10.6036948Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:13:10.6074383Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:13:10.6114954Z Entering 'shim' 2025-06-05T23:13:10.6151776Z Entering 'third-party/ao' 2025-06-05T23:13:10.6190517Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:13:10.6237632Z Entering 'third-party/flatbuffers' 2025-06-05T23:13:10.6276900Z Entering 'third-party/flatcc' 2025-06-05T23:13:10.6313771Z Entering 'third-party/gflags' 2025-06-05T23:13:10.6350640Z Entering 'third-party/googletest' 2025-06-05T23:13:10.6387602Z Entering 'third-party/ios-cmake' 2025-06-05T23:13:10.6423988Z Entering 'third-party/json' 2025-06-05T23:13:10.6462292Z Entering 'third-party/pocketfft' 2025-06-05T23:13:10.6498995Z Entering 'third-party/prelude' 2025-06-05T23:13:10.6538959Z Entering 'third-party/pybind11' 2025-06-05T23:13:10.6585022Z ##[endgroup] 2025-06-05T23:13:10.6585755Z ##[group]Persisting credentials for submodules 2025-06-05T23:13:10.6592122Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :" 2025-06-05T23:13:10.6835102Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:13:10.6887402Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:13:10.6934966Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:13:10.6986795Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:13:10.7034746Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:13:10.7082464Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:13:10.7130915Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:13:10.7180231Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:13:10.7228070Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:13:10.7275762Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:13:10.7340068Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:13:10.7389142Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:13:10.7437070Z Entering 'extension/llm/tokenizers' 2025-06-05T23:13:10.7484309Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:13:10.7535085Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:13:10.7585203Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:13:10.7632407Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:13:10.7683850Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:13:10.7732369Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:13:10.7782449Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:13:10.7832825Z Entering 'shim' 2025-06-05T23:13:10.7881206Z Entering 'third-party/ao' 2025-06-05T23:13:10.7929380Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:13:10.7988166Z Entering 'third-party/flatbuffers' 2025-06-05T23:13:10.8039033Z Entering 'third-party/flatcc' 2025-06-05T23:13:10.8087611Z Entering 'third-party/gflags' 2025-06-05T23:13:10.8135340Z Entering 'third-party/googletest' 2025-06-05T23:13:10.8184332Z Entering 'third-party/ios-cmake' 2025-06-05T23:13:10.8233624Z Entering 'third-party/json' 2025-06-05T23:13:10.8282434Z Entering 'third-party/pocketfft' 2025-06-05T23:13:10.8329623Z Entering 'third-party/prelude' 2025-06-05T23:13:10.8380761Z Entering 'third-party/pybind11' 2025-06-05T23:13:10.8441353Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url" 2025-06-05T23:13:10.8687608Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:13:10.8734118Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/arm/third-party/ethos-u-core-driver/config remote.origin.url 2025-06-05T23:13:10.8748070Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:13:10.8793990Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/arm/third-party/serialization_lib/config remote.origin.url 2025-06-05T23:13:10.8807379Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:13:10.8853189Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/arm/third-party/serialization_lib/modules/third_party/flatbuffers/config remote.origin.url 2025-06-05T23:13:10.8871770Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:13:10.8918428Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/cadence/utils/FACTO/config remote.origin.url 2025-06-05T23:13:10.8932152Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:13:10.8978106Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/vulkan/third-party/Vulkan-Headers/config remote.origin.url 2025-06-05T23:13:10.8992604Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:13:10.9039109Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/vulkan/third-party/VulkanMemoryAllocator/config remote.origin.url 2025-06-05T23:13:10.9052916Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:13:10.9098890Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/vulkan/third-party/volk/config remote.origin.url 2025-06-05T23:13:10.9112394Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:13:10.9157677Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/xnnpack/third-party/FP16/config remote.origin.url 2025-06-05T23:13:10.9171225Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:13:10.9217382Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/xnnpack/third-party/FXdiv/config remote.origin.url 2025-06-05T23:13:10.9230730Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:13:10.9275811Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/xnnpack/third-party/XNNPACK/config remote.origin.url 2025-06-05T23:13:10.9304480Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:13:10.9350359Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/xnnpack/third-party/cpuinfo/config remote.origin.url 2025-06-05T23:13:10.9365370Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:13:10.9412345Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/xnnpack/third-party/pthreadpool/config remote.origin.url 2025-06-05T23:13:10.9426087Z Entering 'extension/llm/tokenizers' 2025-06-05T23:13:10.9471902Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/config remote.origin.url 2025-06-05T23:13:10.9485835Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:13:10.9531676Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/modules/third-party/abseil-cpp/config remote.origin.url 2025-06-05T23:13:10.9547569Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:13:10.9593805Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/modules/third-party/json/config remote.origin.url 2025-06-05T23:13:10.9608822Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:13:10.9655126Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/modules/third-party/pcre2/config remote.origin.url 2025-06-05T23:13:10.9667977Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:13:10.9716304Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/modules/third-party/pcre2/modules/deps/sljit/config remote.origin.url 2025-06-05T23:13:10.9731825Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:13:10.9778311Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/modules/third-party/re2/config remote.origin.url 2025-06-05T23:13:10.9791493Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:13:10.9837244Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/modules/third-party/sentencepiece/config remote.origin.url 2025-06-05T23:13:10.9852576Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:13:10.9899338Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/kernels/optimized/third-party/eigen/config remote.origin.url 2025-06-05T23:13:10.9915210Z Entering 'shim' 2025-06-05T23:13:10.9959795Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/shim/config remote.origin.url 2025-06-05T23:13:10.9974073Z Entering 'third-party/ao' 2025-06-05T23:13:11.0019576Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/ao/config remote.origin.url 2025-06-05T23:13:11.0033684Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:13:11.0082464Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/ao/modules/third_party/cutlass/config remote.origin.url 2025-06-05T23:13:11.0106834Z Entering 'third-party/flatbuffers' 2025-06-05T23:13:11.0152138Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/flatbuffers/config remote.origin.url 2025-06-05T23:13:11.0168234Z Entering 'third-party/flatcc' 2025-06-05T23:13:11.0213689Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/flatcc/config remote.origin.url 2025-06-05T23:13:11.0227702Z Entering 'third-party/gflags' 2025-06-05T23:13:11.0273280Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/gflags/config remote.origin.url 2025-06-05T23:13:11.0287312Z Entering 'third-party/googletest' 2025-06-05T23:13:11.0332584Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/googletest/config remote.origin.url 2025-06-05T23:13:11.0346568Z Entering 'third-party/ios-cmake' 2025-06-05T23:13:11.0393127Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/ios-cmake/config remote.origin.url 2025-06-05T23:13:11.0406897Z Entering 'third-party/json' 2025-06-05T23:13:11.0453550Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/json/config remote.origin.url 2025-06-05T23:13:11.0468867Z Entering 'third-party/pocketfft' 2025-06-05T23:13:11.0514904Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/pocketfft/config remote.origin.url 2025-06-05T23:13:11.0529115Z Entering 'third-party/prelude' 2025-06-05T23:13:11.0575308Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/prelude/config remote.origin.url 2025-06-05T23:13:11.0591875Z Entering 'third-party/pybind11' 2025-06-05T23:13:11.0637990Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/pybind11/config remote.origin.url 2025-06-05T23:13:11.0886755Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-06-05T23:13:11.1134561Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:13:11.1171329Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:13:11.1208885Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:13:11.1250027Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:13:11.1288605Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:13:11.1325740Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:13:11.1362268Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:13:11.1399550Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:13:11.1435961Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:13:11.1472188Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:13:11.1524378Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:13:11.1561455Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:13:11.1597947Z Entering 'extension/llm/tokenizers' 2025-06-05T23:13:11.1633877Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:13:11.1672324Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:13:11.1711513Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:13:11.1747357Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:13:11.1786627Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:13:11.1822879Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:13:11.1861147Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:13:11.1900120Z Entering 'shim' 2025-06-05T23:13:11.1936294Z Entering 'third-party/ao' 2025-06-05T23:13:11.1972448Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:13:11.2019011Z Entering 'third-party/flatbuffers' 2025-06-05T23:13:11.2057283Z Entering 'third-party/flatcc' 2025-06-05T23:13:11.2095295Z Entering 'third-party/gflags' 2025-06-05T23:13:11.2131092Z Entering 'third-party/googletest' 2025-06-05T23:13:11.2167376Z Entering 'third-party/ios-cmake' 2025-06-05T23:13:11.2203884Z Entering 'third-party/json' 2025-06-05T23:13:11.2241583Z Entering 'third-party/pocketfft' 2025-06-05T23:13:11.2277415Z Entering 'third-party/prelude' 2025-06-05T23:13:11.2316872Z Entering 'third-party/pybind11' 2025-06-05T23:13:11.2365287Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-06-05T23:13:11.2609304Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:13:11.2645945Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:13:11.2683635Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:13:11.2724609Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:13:11.2762190Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:13:11.2799516Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:13:11.2837433Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:13:11.2874174Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:13:11.2912113Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:13:11.2948716Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:13:11.3001881Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:13:11.3039997Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:13:11.3076799Z Entering 'extension/llm/tokenizers' 2025-06-05T23:13:11.3113286Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:13:11.3151584Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:13:11.3190047Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:13:11.3226234Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:13:11.3265738Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:13:11.3302288Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:13:11.3341129Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:13:11.3381097Z Entering 'shim' 2025-06-05T23:13:11.3418408Z Entering 'third-party/ao' 2025-06-05T23:13:11.3456216Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:13:11.3504599Z Entering 'third-party/flatbuffers' 2025-06-05T23:13:11.3544441Z Entering 'third-party/flatcc' 2025-06-05T23:13:11.3581392Z Entering 'third-party/gflags' 2025-06-05T23:13:11.3617676Z Entering 'third-party/googletest' 2025-06-05T23:13:11.3654398Z Entering 'third-party/ios-cmake' 2025-06-05T23:13:11.3691404Z Entering 'third-party/json' 2025-06-05T23:13:11.3728882Z Entering 'third-party/pocketfft' 2025-06-05T23:13:11.3782522Z Entering 'third-party/prelude' 2025-06-05T23:13:11.3821663Z Entering 'third-party/pybind11' 2025-06-05T23:13:11.3866360Z ##[endgroup] 2025-06-05T23:13:11.3899087Z [command]/usr/bin/git log -1 --format=%H 2025-06-05T23:13:11.3918015Z bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:13:11.4121872Z Prepare all required actions 2025-06-05T23:13:11.4122379Z Getting action download info 2025-06-05T23:13:11.5068514Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-06-05T23:13:11.6603331Z ##[group]Run ./test-infra/.github/actions/calculate-docker-image 2025-06-05T23:13:11.6603740Z with: 2025-06-05T23:13:11.6604001Z docker-image-name: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:13:11.6604369Z docker-build-dir: .ci/docker 2025-06-05T23:13:11.6604655Z working-directory: pytorch/executorch 2025-06-05T23:13:11.6604978Z docker-build-script: ./build.sh 2025-06-05T23:13:11.6605346Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:13:11.6605731Z force-push: false 2025-06-05T23:13:11.6605940Z env: 2025-06-05T23:13:11.6606183Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:13:11.6606530Z REPOSITORY: pytorch/executorch 2025-06-05T23:13:11.6606789Z PR_NUMBER: 2025-06-05T23:13:11.6611304Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:13:11.6616306Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:13:11.6617015Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:13:11.6617556Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:13:11.6617923Z ##[endgroup] 2025-06-05T23:13:11.6640644Z ##[group]Run set -ex 2025-06-05T23:13:11.6640952Z set -ex 2025-06-05T23:13:11.6641154Z  2025-06-05T23:13:11.6641537Z # If the docker build directory or the build script doesn't exist, the action will 2025-06-05T23:13:11.6642176Z # gracefully return the docker image name as it is. Pulling docker image in Linux 2025-06-05T23:13:11.6642742Z # job could then download the pre-built image as usual 2025-06-05T23:13:11.6643288Z if [[ ! -d "${DOCKER_BUILD_DIR}" ]] || [[ ! -f "${DOCKER_BUILD_DIR}/${DOCKER_BUILD_SCRIPT}" ]]; then 2025-06-05T23:13:11.6643774Z  echo "skip=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:13:11.6644223Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:13:11.6644605Z  2025-06-05T23:13:11.6644948Z  echo "There is no Docker build script in ${REPO_NAME} repo, skipping..." 2025-06-05T23:13:11.6645370Z  exit 0 2025-06-05T23:13:11.6645573Z else 2025-06-05T23:13:11.6645825Z  echo "skip=false" >> "${GITHUB_OUTPUT}" 2025-06-05T23:13:11.6646127Z fi 2025-06-05T23:13:11.6646327Z  2025-06-05T23:13:11.6646636Z if [[ "${DOCKER_IMAGE_NAME}" == *"${DOCKER_REGISTRY}/${REPO_NAME}"* ]]; then 2025-06-05T23:13:11.6647370Z  # The docker image name already includes the ECR prefix and tag, so we can just 2025-06-05T23:13:11.6647884Z  # use it as it is, but first let's extract the tag 2025-06-05T23:13:11.6648361Z  DOCKER_TAG=$(echo "${DOCKER_IMAGE_NAME}" | awk -F '[:,]' '{print $2}') 2025-06-05T23:13:11.6648860Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:13:11.6649328Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:13:11.6649724Z else 2025-06-05T23:13:11.6649970Z  if [[ "${DOCKER_IMAGE_NAME}" == *:* ]]; then 2025-06-05T23:13:11.6650342Z  CUSTOM_TAG_PREFIX=${DOCKER_IMAGE_NAME#*:} 2025-06-05T23:13:11.6650721Z  DOCKER_IMAGE_NAME=${DOCKER_IMAGE_NAME%%:*} 2025-06-05T23:13:11.6651031Z  fi 2025-06-05T23:13:11.6651469Z  DOCKER_TAG=${CUSTOM_TAG_PREFIX:+${CUSTOM_TAG_PREFIX}-}$(git rev-parse HEAD:"${DOCKER_BUILD_DIR}") 2025-06-05T23:13:11.6652054Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:13:11.6652673Z  echo "docker-image=${DOCKER_REGISTRY}/${REPO_NAME}/${DOCKER_IMAGE_NAME}:${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:13:11.6653356Z  echo "custom-tag-prefix=${CUSTOM_TAG_PREFIX}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:13:11.6653757Z fi 2025-06-05T23:13:11.6659408Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:13:11.6659776Z env: 2025-06-05T23:13:11.6660029Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:13:11.6660369Z REPOSITORY: pytorch/executorch 2025-06-05T23:13:11.6660643Z PR_NUMBER: 2025-06-05T23:13:11.6665113Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:13:11.6670082Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:13:11.6670652Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:13:11.6671191Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:13:11.6671577Z REPO_NAME: executorch 2025-06-05T23:13:11.6671863Z DOCKER_IMAGE_NAME: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:13:11.6672220Z DOCKER_BUILD_DIR: .ci/docker 2025-06-05T23:13:11.6672482Z DOCKER_BUILD_SCRIPT: ./build.sh 2025-06-05T23:13:11.6672848Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:13:11.6673214Z CUSTOM_TAG_PREFIX: 2025-06-05T23:13:11.6673443Z ##[endgroup] 2025-06-05T23:13:11.6698858Z + [[ ! -d .ci/docker ]] 2025-06-05T23:13:11.6699128Z + [[ ! -f .ci/docker/./build.sh ]] 2025-06-05T23:13:11.6699413Z + echo skip=false 2025-06-05T23:13:11.6700051Z + [[ 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-06-05T23:13:11.6700783Z + [[ executorch-ubuntu-22.04-arm-sdk == *:* ]] 2025-06-05T23:13:11.6703145Z ++ git rev-parse HEAD:.ci/docker 2025-06-05T23:13:11.6717473Z + DOCKER_TAG=6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:13:11.6717948Z + echo docker-tag=6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:13:11.6718832Z + echo docker-image=308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-arm-sdk:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:13:11.6719598Z + echo custom-tag-prefix= 2025-06-05T23:13:11.6750198Z ##[group]Run set +e 2025-06-05T23:13:11.6750527Z set +e 2025-06-05T23:13:11.6750755Z set -x 2025-06-05T23:13:11.6750958Z  2025-06-05T23:13:11.6751164Z login() { 2025-06-05T23:13:11.6751620Z  aws ecr get-login-password --region us-east-1 | docker login -u AWS --password-stdin "$1" 2025-06-05T23:13:11.6752127Z } 2025-06-05T23:13:11.6752312Z  2025-06-05T23:13:11.6752511Z retry () { 2025-06-05T23:13:11.6752782Z  $* || (sleep 1 && $*) || (sleep 2 && $*) 2025-06-05T23:13:11.6753075Z } 2025-06-05T23:13:11.6753273Z  2025-06-05T23:13:11.6753481Z retry login "${DOCKER_REGISTRY}" 2025-06-05T23:13:11.6753778Z  2025-06-05T23:13:11.6753975Z START_TIME=$(date +%s) 2025-06-05T23:13:11.6754270Z # Wait up to 120 minutes 2025-06-05T23:13:11.6754606Z while [[ $(( $(date +%s) - 7200 )) -lt $START_TIME ]]; do 2025-06-05T23:13:11.6755085Z  # Check if image already exists, if it does then skip building it 2025-06-05T23:13:11.6755556Z  if docker manifest inspect "${DOCKER_IMAGE}"; then 2025-06-05T23:13:11.6755895Z  exit 0 2025-06-05T23:13:11.6756119Z  fi 2025-06-05T23:13:11.6756311Z  2025-06-05T23:13:11.6756681Z  # NB: This flag is used by Docker build workflow to push the image to ECR, so we can 2025-06-05T23:13:11.6757313Z  # use this to differentiate between the Docker build and regular build jobs. For the 2025-06-05T23:13:11.6757954Z  # latter, it will wait for the Docker images to become available before continuing 2025-06-05T23:13:11.6758458Z  if [ "${DOCKER_PUSH:-false}" == "true" ]; then 2025-06-05T23:13:11.6758832Z  # It's a Docker build job, let's build the image 2025-06-05T23:13:11.6759294Z  break 2025-06-05T23:13:11.6759504Z  else 2025-06-05T23:13:11.6759833Z  # It's a regular build job, wait for the image to become available 2025-06-05T23:13:11.6760218Z  sleep 300 2025-06-05T23:13:11.6760454Z  fi 2025-06-05T23:13:11.6760664Z done 2025-06-05T23:13:11.6760852Z  2025-06-05T23:13:11.6761187Z # NB: This part requires a full checkout. Otherwise, the merge base will 2025-06-05T23:13:11.6761728Z # be empty. The default action would be to continue rebuild the image 2025-06-05T23:13:11.6762231Z if [[ "$BASE_REVISION" = "$(git rev-parse HEAD)" ]]; then 2025-06-05T23:13:11.6762659Z  # if we're on the base branch then use the parent commit 2025-06-05T23:13:11.6763051Z  MERGE_BASE=$(git rev-parse HEAD~) 2025-06-05T23:13:11.6763364Z else 2025-06-05T23:13:11.6763677Z  # otherwise we're on a PR, so use the most recent base commit 2025-06-05T23:13:11.6764131Z  MERGE_BASE=$(git merge-base HEAD "$BASE_REVISION") 2025-06-05T23:13:11.6764485Z fi 2025-06-05T23:13:11.6764676Z  2025-06-05T23:13:11.6764903Z if [[ -z "${MERGE_BASE}" ]]; then 2025-06-05T23:13:11.6765237Z  echo "rebuild=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:13:11.6765560Z  2025-06-05T23:13:11.6766001Z  echo "Finding merge base only works with full checkout, please set fetch-depth to 0, continuing ..." 2025-06-05T23:13:11.6766540Z  exit 0 2025-06-05T23:13:11.6766757Z fi 2025-06-05T23:13:11.6766948Z  2025-06-05T23:13:11.6767318Z if ! git rev-parse "${MERGE_BASE}:${DOCKER_BUILD_DIR}"; then 2025-06-05T23:13:11.6767972Z  echo "Directory '${DOCKER_BUILD_DIR}' not found in commit $MERGE_BASE, you should rebase onto a more recent commit" 2025-06-05T23:13:11.6768546Z  exit 1 2025-06-05T23:13:11.6768795Z fi 2025-06-05T23:13:11.6768990Z  2025-06-05T23:13:11.6769342Z PREVIOUS_DOCKER_TAG=$(git rev-parse "${MERGE_BASE}:${DOCKER_BUILD_DIR}") 2025-06-05T23:13:11.6769981Z # If no image exists but the hash is the same as the previous hash then we should error out here 2025-06-05T23:13:11.6770539Z if [[ "${PREVIOUS_DOCKER_TAG}" == "${DOCKER_TAG}" ]]; then 2025-06-05T23:13:11.6771199Z  echo "WARNING: Something has gone wrong and the previous image isn't available for the merge-base of your branch" 2025-06-05T23:13:11.6771950Z  echo " Will re-build docker image to store in local cache, TTS may be longer" 2025-06-05T23:13:11.6772383Z fi 2025-06-05T23:13:11.6772587Z  2025-06-05T23:13:11.6772820Z echo "rebuild=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:13:11.6778584Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:13:11.6778957Z env: 2025-06-05T23:13:11.6779609Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-arm-sdk:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:13:11.6780347Z REPOSITORY: pytorch/executorch 2025-06-05T23:13:11.6780623Z PR_NUMBER: 2025-06-05T23:13:11.6785101Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:13:11.6790048Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:13:11.6790625Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:13:11.6791152Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:13:11.6791544Z DOCKER_BUILD_DIR: .ci/docker 2025-06-05T23:13:11.6791862Z BASE_REVISION: bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:13:11.6792273Z DOCKER_TAG: 6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:13:11.6792710Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:13:11.6793074Z DOCKER_PUSH: 2025-06-05T23:13:11.6793290Z ##[endgroup] 2025-06-05T23:13:11.6815112Z + retry login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:13:11.6815903Z + login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:13:11.6817813Z + aws ecr get-login-password --region us-east-1 2025-06-05T23:13:11.6819555Z + docker login -u AWS --password-stdin 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:13:12.2135499Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:13:12.2136448Z Configure a credential helper to remove this warning. See 2025-06-05T23:13:12.2137022Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:13:12.2137471Z 2025-06-05T23:13:12.2142255Z Login Succeeded 2025-06-05T23:13:12.2153890Z ++ date +%s 2025-06-05T23:13:12.2162077Z + START_TIME=1749165192 2025-06-05T23:13:12.2165134Z ++ date +%s 2025-06-05T23:13:12.2174976Z + [[ 1749157992 -lt 1749165192 ]] 2025-06-05T23:13:12.2175870Z + docker manifest inspect 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-arm-sdk:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:13:12.4442503Z { 2025-06-05T23:13:12.4443276Z "schemaVersion": 2, 2025-06-05T23:13:12.4443854Z "mediaType": "application/vnd.docker.distribution.manifest.v2+json", 2025-06-05T23:13:12.4444582Z "config": { 2025-06-05T23:13:12.4445074Z "mediaType": "application/vnd.docker.container.image.v1+json", 2025-06-05T23:13:12.4445471Z "size": 15116, 2025-06-05T23:13:12.4445901Z "digest": "sha256:1a94608f22c41f81740bef06f7422764772eeea94a9eada7dd0f5cce39df18ad" 2025-06-05T23:13:12.4446364Z }, 2025-06-05T23:13:12.4446542Z "layers": [ 2025-06-05T23:13:12.4446795Z { 2025-06-05T23:13:12.4447117Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4447530Z "size": 30438509, 2025-06-05T23:13:12.4447959Z "digest": "sha256:f557aa5ee22480ee9e1af0a094ce5174a8c3d83e1aa20dc8482e4e387546e0c3" 2025-06-05T23:13:12.4448415Z }, 2025-06-05T23:13:12.4448605Z { 2025-06-05T23:13:12.4448920Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4449307Z "size": 631, 2025-06-05T23:13:12.4449706Z "digest": "sha256:e9a71f6cf6a033cad973f94ad3269a9e3774b3a547f2d35c6337589ebab6aeac" 2025-06-05T23:13:12.4450154Z }, 2025-06-05T23:13:12.4450335Z { 2025-06-05T23:13:12.4450635Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4451037Z "size": 150104825, 2025-06-05T23:13:12.4451437Z "digest": "sha256:1c2419c026f994d51da561821c2d5405ab211b796da9af7d7a5e063a19f54604" 2025-06-05T23:13:12.4451894Z }, 2025-06-05T23:13:12.4452065Z { 2025-06-05T23:13:12.4452382Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4452781Z "size": 622, 2025-06-05T23:13:12.4453422Z "digest": "sha256:8f296761951c2477ba8d9546ac834b6cf17e772fbe388f9e3b2f4e822beb7713" 2025-06-05T23:13:12.4453883Z }, 2025-06-05T23:13:12.4454053Z { 2025-06-05T23:13:12.4454373Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4454765Z "size": 19308737, 2025-06-05T23:13:12.4455289Z "digest": "sha256:61b1f5baa53e67c1f9846169f854204a22c707b79cfabb83bdba63228a9b0144" 2025-06-05T23:13:12.4455796Z }, 2025-06-05T23:13:12.4455983Z { 2025-06-05T23:13:12.4456300Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4456865Z "size": 736, 2025-06-05T23:13:12.4457274Z "digest": "sha256:4420b1e1a07f73643ce79401c2021c6970bc6e411c501a43b58d157e19090d5a" 2025-06-05T23:13:12.4457710Z }, 2025-06-05T23:13:12.4457891Z { 2025-06-05T23:13:12.4458192Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4458596Z "size": 131418050, 2025-06-05T23:13:12.4458991Z "digest": "sha256:9ea6f8733a037f03d99a397418e7897b20030ef55771767ca107f3c53ea4c5c8" 2025-06-05T23:13:12.4459436Z }, 2025-06-05T23:13:12.4459615Z { 2025-06-05T23:13:12.4459918Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4460319Z "size": 445, 2025-06-05T23:13:12.4460691Z "digest": "sha256:172401b941b1764c760147d40814402d1238a7f1c7287fd8c0c9dd4897f09610" 2025-06-05T23:13:12.4461136Z }, 2025-06-05T23:13:12.4461304Z { 2025-06-05T23:13:12.4461619Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4462007Z "size": 102, 2025-06-05T23:13:12.4462540Z "digest": "sha256:08f9a627d97be81309ccf16cf39ed5beb24962447ad72a1615b0748e4173b204" 2025-06-05T23:13:12.4463001Z }, 2025-06-05T23:13:12.4463167Z { 2025-06-05T23:13:12.4463481Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4463868Z "size": 636, 2025-06-05T23:13:12.4464263Z "digest": "sha256:2d7e5abdd88dbf42ba6487b146573396d6f489b24623393763a4916452feeb69" 2025-06-05T23:13:12.4464714Z }, 2025-06-05T23:13:12.4464895Z { 2025-06-05T23:13:12.4465199Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4465601Z "size": 35165365, 2025-06-05T23:13:12.4465996Z "digest": "sha256:133eacd75ef58376aed6d2b550e0014a25704b03df5a04163e80b5401e528729" 2025-06-05T23:13:12.4466457Z }, 2025-06-05T23:13:12.4466638Z { 2025-06-05T23:13:12.4466938Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4467337Z "size": 318, 2025-06-05T23:13:12.4467718Z "digest": "sha256:380307a36ed2d54c982df9262fd1ec3b7fb61743ad1a24e7d1b691bc44edba7a" 2025-06-05T23:13:12.4468179Z }, 2025-06-05T23:13:12.4468347Z { 2025-06-05T23:13:12.4468659Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4469046Z "size": 252129750, 2025-06-05T23:13:12.4469445Z "digest": "sha256:2011df2b1f9883df3798e22c2153a2695bd6c277473f3897f8df94438197af03" 2025-06-05T23:13:12.4469884Z }, 2025-06-05T23:13:12.4470063Z { 2025-06-05T23:13:12.4470375Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4470760Z "size": 475, 2025-06-05T23:13:12.4471158Z "digest": "sha256:3ec19c2849b3bf6807efe10c62465e3f4d91dfd9fc8c1ff5b3667814c740339d" 2025-06-05T23:13:12.4471606Z }, 2025-06-05T23:13:12.4471787Z { 2025-06-05T23:13:12.4472087Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4472490Z "size": 1042, 2025-06-05T23:13:12.4472866Z "digest": "sha256:4e6543e5b9d468a212c2149870e7fe630b7571d2c6e914bd5017a3433bf60bba" 2025-06-05T23:13:12.4473313Z }, 2025-06-05T23:13:12.4473484Z { 2025-06-05T23:13:12.4473796Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4474198Z "size": 613, 2025-06-05T23:13:12.4474591Z "digest": "sha256:5e70c61fded41a31ea65efce907d9dff9acbc03826fb949591a55cfdd3385730" 2025-06-05T23:13:12.4475055Z }, 2025-06-05T23:13:12.4475300Z { 2025-06-05T23:13:12.4475616Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4476006Z "size": 77567408, 2025-06-05T23:13:12.4476427Z "digest": "sha256:cee7e6ffb076665cc7f2ee4887d6bce36de2c6d11a1c295294982c8a1d54f548" 2025-06-05T23:13:12.4476880Z }, 2025-06-05T23:13:12.4477074Z { 2025-06-05T23:13:12.4477389Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4478016Z "size": 572, 2025-06-05T23:13:12.4478415Z "digest": "sha256:ca4242386be9499ce676f36a87df7885bade394639154148b03e58bf32f30b32" 2025-06-05T23:13:12.4478878Z }, 2025-06-05T23:13:12.4479052Z { 2025-06-05T23:13:12.4479378Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4479770Z "size": 208, 2025-06-05T23:13:12.4480173Z "digest": "sha256:bf607c5c40f127d26ebf09ca05963503e3ee1030088eb5515d1b4bf89386381f" 2025-06-05T23:13:12.4480619Z }, 2025-06-05T23:13:12.4480802Z { 2025-06-05T23:13:12.4481110Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4481519Z "size": 1190, 2025-06-05T23:13:12.4481903Z "digest": "sha256:5630a9397492da6fac00fcc2b54281af300c4762827878ad79bbf050d7f1388d" 2025-06-05T23:13:12.4482362Z }, 2025-06-05T23:13:12.4482546Z { 2025-06-05T23:13:12.4482844Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4483251Z "size": 679, 2025-06-05T23:13:12.4483640Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:13:12.4484101Z }, 2025-06-05T23:13:12.4484273Z { 2025-06-05T23:13:12.4484702Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4485099Z "size": 6857035734, 2025-06-05T23:13:12.4485526Z "digest": "sha256:638a44f2a35ef7ba7c528fd4cdcbbab8b894ee1ca0e56f7ad01b1a4e87b875b0" 2025-06-05T23:13:12.4485998Z }, 2025-06-05T23:13:12.4486170Z { 2025-06-05T23:13:12.4486481Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4486876Z "size": 1383, 2025-06-05T23:13:12.4487275Z "digest": "sha256:09dac94eaf912c1143008ab2c199dc2a0547cf68fe2b08e1b96af9c2895928ae" 2025-06-05T23:13:12.4487724Z }, 2025-06-05T23:13:12.4487902Z { 2025-06-05T23:13:12.4488201Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4488603Z "size": 679, 2025-06-05T23:13:12.4488989Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:13:12.4489453Z }, 2025-06-05T23:13:12.4489635Z { 2025-06-05T23:13:12.4489933Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4490337Z "size": 232890849, 2025-06-05T23:13:12.4490722Z "digest": "sha256:a863980141538027df18ea91d40f0f443f9327f0066980bb1e5e45919226f7ed" 2025-06-05T23:13:12.4491169Z }, 2025-06-05T23:13:12.4491339Z { 2025-06-05T23:13:12.4491653Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4492046Z "size": 827, 2025-06-05T23:13:12.4492450Z "digest": "sha256:dec0deaa1ed566de23b66dcd78ea8449250b56b611cab27ebb83b9504d48a46b" 2025-06-05T23:13:12.4492905Z }, 2025-06-05T23:13:12.4493082Z { 2025-06-05T23:13:12.4493395Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4493784Z "size": 679, 2025-06-05T23:13:12.4494183Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:13:12.4494630Z }, 2025-06-05T23:13:12.4494811Z { 2025-06-05T23:13:12.4495110Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4495592Z "size": 185012180, 2025-06-05T23:13:12.4496003Z "digest": "sha256:7b93bf5911ad60a288a2fdad5c327a3aba6ab59696d572174b92cc0eaddf4924" 2025-06-05T23:13:12.4496470Z }, 2025-06-05T23:13:12.4496658Z { 2025-06-05T23:13:12.4496961Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4497465Z "size": 530, 2025-06-05T23:13:12.4497858Z "digest": "sha256:e8c9ad02b5187f5d1cb1d0cce8e115dd9462726f44a685de71b4cbe4f70c67e6" 2025-06-05T23:13:12.4498325Z }, 2025-06-05T23:13:12.4498493Z { 2025-06-05T23:13:12.4498810Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4499199Z "size": 679, 2025-06-05T23:13:12.4499602Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:13:12.4500047Z }, 2025-06-05T23:13:12.4500226Z { 2025-06-05T23:13:12.4500537Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4500924Z "size": 354, 2025-06-05T23:13:12.4501319Z "digest": "sha256:ca22a013d303766ddf153f37526c40fa37dc1c0d112176fdb33378c50a81c354" 2025-06-05T23:13:12.4501762Z }, 2025-06-05T23:13:12.4501945Z { 2025-06-05T23:13:12.4502244Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4502644Z "size": 32, 2025-06-05T23:13:12.4503030Z "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1" 2025-06-05T23:13:12.4503494Z }, 2025-06-05T23:13:12.4503660Z { 2025-06-05T23:13:12.4503973Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4504371Z "size": 166, 2025-06-05T23:13:12.4504746Z "digest": "sha256:92e60f7b3962f803f07d1039c079dc07e38030ab45275eb4cea08d6825a51054" 2025-06-05T23:13:12.4505195Z }, 2025-06-05T23:13:12.4505362Z { 2025-06-05T23:13:12.4505673Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4506061Z "size": 1109, 2025-06-05T23:13:12.4506556Z "digest": "sha256:c2b62aa0dc26b7dd48338aef7893ebaf56403579f42aa88a56bd416c04f43619" 2025-06-05T23:13:12.4507011Z }, 2025-06-05T23:13:12.4507191Z { 2025-06-05T23:13:12.4507491Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4507896Z "size": 32, 2025-06-05T23:13:12.4508301Z "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1" 2025-06-05T23:13:12.4508757Z }, 2025-06-05T23:13:12.4508939Z { 2025-06-05T23:13:12.4509239Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:13:12.4509639Z "size": 108, 2025-06-05T23:13:12.4510027Z "digest": "sha256:1d5d95926a594c47acbd85e8c69aaa9a451df3ac8b228a859981dc1a7a9b3e06" 2025-06-05T23:13:12.4510487Z } 2025-06-05T23:13:12.4510659Z ] 2025-06-05T23:13:12.4510839Z } 2025-06-05T23:13:12.4511038Z + exit 0 2025-06-05T23:13:12.4540402Z ##[group]Run set -eux 2025-06-05T23:13:12.4540673Z set -eux 2025-06-05T23:13:12.4541531Z aws secretsmanager get-secret-value --secret-id docker_hub_readonly_token | jq --raw-output '.SecretString' | jq -r .docker_hub_readonly_token | docker login --username pytorchbot --password-stdin 2025-06-05T23:13:12.4548073Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:13:12.4548428Z env: 2025-06-05T23:13:12.4548681Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:13:12.4549042Z REPOSITORY: pytorch/executorch 2025-06-05T23:13:12.4549305Z PR_NUMBER: 2025-06-05T23:13:12.4553788Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:13:12.4558737Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:13:12.4559317Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:13:12.4559841Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:13:12.4560225Z ##[endgroup] 2025-06-05T23:13:12.4587665Z + aws secretsmanager get-secret-value --secret-id docker_hub_readonly_token 2025-06-05T23:13:12.4588463Z + jq --raw-output .SecretString 2025-06-05T23:13:12.4590039Z + jq -r .docker_hub_readonly_token 2025-06-05T23:13:12.4591637Z + docker login --username pytorchbot --password-stdin 2025-06-05T23:13:13.0251935Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:13:13.0252583Z Configure a credential helper to remove this warning. See 2025-06-05T23:13:13.0253377Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:13:13.0253937Z 2025-06-05T23:13:13.0254112Z Login Succeeded 2025-06-05T23:13:13.0333132Z Prepare all required actions 2025-06-05T23:13:13.0382988Z ##[group]Run ./test-infra/.github/actions/pull-docker-image 2025-06-05T23:13:13.0383349Z with: 2025-06-05T23:13:13.0383992Z docker-image: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-arm-sdk:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:13:13.0384803Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:13:13.0385181Z env: 2025-06-05T23:13:13.0385416Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:13:13.0385763Z REPOSITORY: pytorch/executorch 2025-06-05T23:13:13.0386049Z PR_NUMBER: 2025-06-05T23:13:13.0390574Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:13:13.0395423Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:13:13.0396003Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:13:13.0396542Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:13:13.0396909Z ##[endgroup] 2025-06-05T23:13:13.0414993Z ##[group]Run set -x 2025-06-05T23:13:13.0415342Z set -x 2025-06-05T23:13:13.0415555Z set +e 2025-06-05T23:13:13.0415750Z  2025-06-05T23:13:13.0415951Z login() { 2025-06-05T23:13:13.0416398Z  aws ecr get-login-password --region us-east-1 | docker login -u AWS --password-stdin "$1" 2025-06-05T23:13:13.0417027Z } 2025-06-05T23:13:13.0417224Z  2025-06-05T23:13:13.0417406Z retry () { 2025-06-05T23:13:13.0417668Z  $* || (sleep 1 && $*) || (sleep 2 && $*) 2025-06-05T23:13:13.0417964Z } 2025-06-05T23:13:13.0418162Z  2025-06-05T23:13:13.0418367Z retry login "${DOCKER_REGISTRY}" 2025-06-05T23:13:13.0418665Z  2025-06-05T23:13:13.0419120Z IMAGE_SIZE=$(docker manifest inspect "${DOCKER_IMAGE}" | jq '[.layers[].size, .config.size] | add / 1024 / 1024') 2025-06-05T23:13:13.0419762Z echo "Compressed size of image in MB: ${IMAGE_SIZE}" 2025-06-05T23:13:13.0420125Z  2025-06-05T23:13:13.0420309Z set -e 2025-06-05T23:13:13.0420638Z # ignore output since only exit code is used for conditional 2025-06-05T23:13:13.0421097Z # only pull docker image if it's not available locally 2025-06-05T23:13:13.0421627Z if ! docker inspect --type=image "${DOCKER_IMAGE}" >/dev/null 2>/dev/null; then 2025-06-05T23:13:13.0422111Z  retry docker pull "${DOCKER_IMAGE}" 2025-06-05T23:13:13.0422403Z fi 2025-06-05T23:13:13.0427904Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:13:13.0428274Z env: 2025-06-05T23:13:13.0429050Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-arm-sdk:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:13:13.0429777Z REPOSITORY: pytorch/executorch 2025-06-05T23:13:13.0430054Z PR_NUMBER: 2025-06-05T23:13:13.0434531Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:13:13.0439400Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:13:13.0439965Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:13:13.0440496Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:13:13.0440966Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:13:13.0441328Z ##[endgroup] 2025-06-05T23:13:13.0464140Z + set +e 2025-06-05T23:13:13.0464676Z + retry login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:13:13.0465342Z + login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:13:13.0467904Z + aws ecr get-login-password --region us-east-1 2025-06-05T23:13:13.0469269Z + docker login -u AWS --password-stdin 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:13:13.5675388Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:13:13.5676063Z Configure a credential helper to remove this warning. See 2025-06-05T23:13:13.5676847Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:13:13.5677889Z 2025-06-05T23:13:13.5677991Z Login Succeeded 2025-06-05T23:13:13.5692060Z ++ docker manifest inspect 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-arm-sdk:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:13:13.5693252Z ++ jq '[.layers[].size, .config.size] | add / 1024 / 1024' 2025-06-05T23:13:13.7892890Z + IMAGE_SIZE=7601.834650039673 2025-06-05T23:13:13.7893664Z + echo 'Compressed size of image in MB: 7601.834650039673' 2025-06-05T23:13:13.7894057Z + set -e 2025-06-05T23:13:13.7894762Z + docker inspect --type=image 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-arm-sdk:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:13:13.7895647Z Compressed size of image in MB: 7601.834650039673 2025-06-05T23:13:13.8007070Z + retry docker pull 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-arm-sdk:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:13:13.8008258Z + docker pull 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-arm-sdk:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:13:14.0261025Z 6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa: Pulling from executorch/executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:13:14.0262100Z f557aa5ee224: Pulling fs layer 2025-06-05T23:13:14.0262572Z e9a71f6cf6a0: Pulling fs layer 2025-06-05T23:13:14.0263268Z 1c2419c026f9: Pulling fs layer 2025-06-05T23:13:14.0263551Z 8f296761951c: Pulling fs layer 2025-06-05T23:13:14.0263883Z 61b1f5baa53e: Pulling fs layer 2025-06-05T23:13:14.0264149Z 4420b1e1a07f: Pulling fs layer 2025-06-05T23:13:14.0264400Z 9ea6f8733a03: Pulling fs layer 2025-06-05T23:13:14.0264662Z 172401b941b1: Pulling fs layer 2025-06-05T23:13:14.0264932Z 08f9a627d97b: Pulling fs layer 2025-06-05T23:13:14.0265201Z 2d7e5abdd88d: Pulling fs layer 2025-06-05T23:13:14.0265452Z 9ea6f8733a03: Waiting 2025-06-05T23:13:14.0265685Z 8f296761951c: Waiting 2025-06-05T23:13:14.0265897Z 172401b941b1: Waiting 2025-06-05T23:13:14.0266155Z 133eacd75ef5: Pulling fs layer 2025-06-05T23:13:14.0266414Z 380307a36ed2: Pulling fs layer 2025-06-05T23:13:14.0266673Z 61b1f5baa53e: Waiting 2025-06-05T23:13:14.0266897Z 2011df2b1f98: Pulling fs layer 2025-06-05T23:13:14.0267167Z 3ec19c2849b3: Pulling fs layer 2025-06-05T23:13:14.0267413Z 4420b1e1a07f: Waiting 2025-06-05T23:13:14.0267655Z 4e6543e5b9d4: Pulling fs layer 2025-06-05T23:13:14.0267916Z 5e70c61fded4: Pulling fs layer 2025-06-05T23:13:14.0268193Z cee7e6ffb076: Pulling fs layer 2025-06-05T23:13:14.0268465Z ca4242386be9: Pulling fs layer 2025-06-05T23:13:14.0268709Z 08f9a627d97b: Waiting 2025-06-05T23:13:14.0268937Z 133eacd75ef5: Waiting 2025-06-05T23:13:14.0269156Z 2d7e5abdd88d: Waiting 2025-06-05T23:13:14.0269391Z bf607c5c40f1: Pulling fs layer 2025-06-05T23:13:14.0269647Z 5630a9397492: Pulling fs layer 2025-06-05T23:13:14.0269900Z 3ec19c2849b3: Waiting 2025-06-05T23:13:14.0270111Z 2011df2b1f98: Waiting 2025-06-05T23:13:14.0270333Z 380307a36ed2: Waiting 2025-06-05T23:13:14.0270559Z 1fc2d9899ffb: Pulling fs layer 2025-06-05T23:13:14.0270815Z 5e70c61fded4: Waiting 2025-06-05T23:13:14.0271048Z 638a44f2a35e: Pulling fs layer 2025-06-05T23:13:14.0271300Z 09dac94eaf91: Pulling fs layer 2025-06-05T23:13:14.0271563Z a86398014153: Pulling fs layer 2025-06-05T23:13:14.0271800Z ca4242386be9: Waiting 2025-06-05T23:13:14.0272024Z 4e6543e5b9d4: Waiting 2025-06-05T23:13:14.0272250Z dec0deaa1ed5: Pulling fs layer 2025-06-05T23:13:14.0272517Z cee7e6ffb076: Waiting 2025-06-05T23:13:14.0272731Z 1fc2d9899ffb: Waiting 2025-06-05T23:13:14.0272950Z 5630a9397492: Waiting 2025-06-05T23:13:14.0273172Z 7b93bf5911ad: Pulling fs layer 2025-06-05T23:13:14.0273432Z 09dac94eaf91: Waiting 2025-06-05T23:13:14.0273659Z e8c9ad02b518: Pulling fs layer 2025-06-05T23:13:14.0274032Z 638a44f2a35e: Waiting 2025-06-05T23:13:14.0274270Z ca22a013d303: Pulling fs layer 2025-06-05T23:13:14.0274518Z e8c9ad02b518: Waiting 2025-06-05T23:13:14.0274740Z a86398014153: Waiting 2025-06-05T23:13:14.0274963Z 4f4fb700ef54: Pulling fs layer 2025-06-05T23:13:14.0275406Z bf607c5c40f1: Waiting 2025-06-05T23:13:14.0275628Z 92e60f7b3962: Pulling fs layer 2025-06-05T23:13:14.0275894Z c2b62aa0dc26: Pulling fs layer 2025-06-05T23:13:14.0276145Z dec0deaa1ed5: Waiting 2025-06-05T23:13:14.0276441Z 92e60f7b3962: Waiting 2025-06-05T23:13:14.0276662Z 1d5d95926a59: Pulling fs layer 2025-06-05T23:13:14.1325357Z e9a71f6cf6a0: Verifying Checksum 2025-06-05T23:13:14.1325752Z e9a71f6cf6a0: Download complete 2025-06-05T23:13:14.2648410Z 8f296761951c: Verifying Checksum 2025-06-05T23:13:14.2648895Z 8f296761951c: Download complete 2025-06-05T23:13:14.4057904Z f557aa5ee224: Download complete 2025-06-05T23:13:14.4783967Z 4420b1e1a07f: Download complete 2025-06-05T23:13:14.5261589Z 61b1f5baa53e: Verifying Checksum 2025-06-05T23:13:14.5262104Z 61b1f5baa53e: Download complete 2025-06-05T23:13:14.6343394Z 172401b941b1: Download complete 2025-06-05T23:13:14.7018913Z 08f9a627d97b: Verifying Checksum 2025-06-05T23:13:14.7019496Z 08f9a627d97b: Download complete 2025-06-05T23:13:14.8049993Z 2d7e5abdd88d: Verifying Checksum 2025-06-05T23:13:14.8050553Z 2d7e5abdd88d: Download complete 2025-06-05T23:13:15.2365358Z 133eacd75ef5: Verifying Checksum 2025-06-05T23:13:15.2365910Z 133eacd75ef5: Download complete 2025-06-05T23:13:15.3098349Z f557aa5ee224: Pull complete 2025-06-05T23:13:15.3101856Z 380307a36ed2: Verifying Checksum 2025-06-05T23:13:15.3102414Z 380307a36ed2: Download complete 2025-06-05T23:13:15.3258475Z e9a71f6cf6a0: Pull complete 2025-06-05T23:13:15.7242229Z 1c2419c026f9: Verifying Checksum 2025-06-05T23:13:15.7242789Z 1c2419c026f9: Download complete 2025-06-05T23:13:15.8190504Z 3ec19c2849b3: Verifying Checksum 2025-06-05T23:13:15.8191097Z 3ec19c2849b3: Download complete 2025-06-05T23:13:15.8954752Z 9ea6f8733a03: Verifying Checksum 2025-06-05T23:13:15.8955373Z 9ea6f8733a03: Download complete 2025-06-05T23:13:15.9149643Z 4e6543e5b9d4: Download complete 2025-06-05T23:13:15.9953506Z 5e70c61fded4: Verifying Checksum 2025-06-05T23:13:15.9954054Z 5e70c61fded4: Download complete 2025-06-05T23:13:16.0854302Z ca4242386be9: Verifying Checksum 2025-06-05T23:13:16.0854926Z ca4242386be9: Download complete 2025-06-05T23:13:16.2102658Z bf607c5c40f1: Verifying Checksum 2025-06-05T23:13:16.2103183Z bf607c5c40f1: Download complete 2025-06-05T23:13:16.3404487Z 5630a9397492: Verifying Checksum 2025-06-05T23:13:16.3405209Z 5630a9397492: Download complete 2025-06-05T23:13:16.4233623Z 1fc2d9899ffb: Verifying Checksum 2025-06-05T23:13:16.4234015Z 1fc2d9899ffb: Download complete 2025-06-05T23:13:16.7588517Z cee7e6ffb076: Verifying Checksum 2025-06-05T23:13:16.7589000Z cee7e6ffb076: Download complete 2025-06-05T23:13:16.8813750Z 09dac94eaf91: Verifying Checksum 2025-06-05T23:13:16.8814333Z 09dac94eaf91: Download complete 2025-06-05T23:13:17.8894481Z 2011df2b1f98: Verifying Checksum 2025-06-05T23:13:17.8895040Z 2011df2b1f98: Download complete 2025-06-05T23:13:17.9645180Z dec0deaa1ed5: Verifying Checksum 2025-06-05T23:13:17.9645720Z dec0deaa1ed5: Download complete 2025-06-05T23:13:19.3673758Z a86398014153: Verifying Checksum 2025-06-05T23:13:19.3674313Z a86398014153: Download complete 2025-06-05T23:13:19.4580365Z e8c9ad02b518: Download complete 2025-06-05T23:13:19.5363304Z ca22a013d303: Verifying Checksum 2025-06-05T23:13:19.5363748Z ca22a013d303: Download complete 2025-06-05T23:13:19.5444798Z 4f4fb700ef54: Download complete 2025-06-05T23:13:19.6276688Z 92e60f7b3962: Download complete 2025-06-05T23:13:19.6504099Z 1c2419c026f9: Pull complete 2025-06-05T23:13:19.7111520Z c2b62aa0dc26: Download complete 2025-06-05T23:13:19.7994933Z 1d5d95926a59: Verifying Checksum 2025-06-05T23:13:19.7995497Z 1d5d95926a59: Download complete 2025-06-05T23:13:19.8385256Z 8f296761951c: Pull complete 2025-06-05T23:13:19.8989398Z 7b93bf5911ad: Verifying Checksum 2025-06-05T23:13:19.8989766Z 7b93bf5911ad: Download complete 2025-06-05T23:13:20.2789373Z 61b1f5baa53e: Pull complete 2025-06-05T23:13:20.5836461Z 4420b1e1a07f: Pull complete 2025-06-05T23:13:23.2385738Z 9ea6f8733a03: Pull complete 2025-06-05T23:13:23.4177156Z 172401b941b1: Pull complete 2025-06-05T23:13:23.6066194Z 08f9a627d97b: Pull complete 2025-06-05T23:13:23.7589558Z 2d7e5abdd88d: Pull complete 2025-06-05T23:13:24.4543924Z 133eacd75ef5: Pull complete 2025-06-05T23:13:24.6158599Z 380307a36ed2: Pull complete 2025-06-05T23:13:33.3875258Z 2011df2b1f98: Pull complete 2025-06-05T23:13:33.4895538Z 3ec19c2849b3: Pull complete 2025-06-05T23:13:33.6062513Z 4e6543e5b9d4: Pull complete 2025-06-05T23:13:33.7346469Z 5e70c61fded4: Pull complete 2025-06-05T23:13:37.0979132Z cee7e6ffb076: Pull complete 2025-06-05T23:13:37.1741714Z ca4242386be9: Pull complete 2025-06-05T23:13:37.3515895Z bf607c5c40f1: Pull complete 2025-06-05T23:13:37.5604522Z 5630a9397492: Pull complete 2025-06-05T23:13:37.7731307Z 1fc2d9899ffb: Pull complete 2025-06-05T23:14:25.0444780Z 638a44f2a35e: Verifying Checksum 2025-06-05T23:14:25.0445133Z 638a44f2a35e: Download complete 2025-06-05T23:15:37.4807641Z 638a44f2a35e: Pull complete 2025-06-05T23:15:37.6764827Z 09dac94eaf91: Pull complete 2025-06-05T23:15:44.8281997Z a86398014153: Pull complete 2025-06-05T23:15:44.8981023Z dec0deaa1ed5: Pull complete 2025-06-05T23:15:53.1606884Z 7b93bf5911ad: Pull complete 2025-06-05T23:15:53.3377304Z e8c9ad02b518: Pull complete 2025-06-05T23:15:53.6876811Z ca22a013d303: Pull complete 2025-06-05T23:15:53.7917403Z 4f4fb700ef54: Pull complete 2025-06-05T23:15:53.8502088Z 92e60f7b3962: Pull complete 2025-06-05T23:15:53.8795446Z c2b62aa0dc26: Pull complete 2025-06-05T23:15:53.9492593Z 1d5d95926a59: Pull complete 2025-06-05T23:15:53.9713679Z Digest: sha256:0d5c21d463984bfbc970f6581a94145d33d344740c70e25bc23e6befdbb949c9 2025-06-05T23:15:53.9905079Z Status: Downloaded newer image for 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-arm-sdk:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:15:54.0061534Z 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-arm-sdk:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:15:54.0103838Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:15:54.0104789Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:15:54.0112587Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:15:54.0112948Z env: 2025-06-05T23:15:54.0113212Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:15:54.0113553Z REPOSITORY: pytorch/executorch 2025-06-05T23:15:54.0113829Z PR_NUMBER: 2025-06-05T23:15:54.0118352Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:15:54.0123304Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:15:54.0123869Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:15:54.0124578Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:15:54.0124943Z ##[endgroup] 2025-06-05T23:15:54.0310844Z ##[group]Run set -ex 2025-06-05T23:15:54.0311129Z set -ex 2025-06-05T23:15:54.0311330Z { 2025-06-05T23:15:54.0311553Z  echo "#!/usr/bin/env bash"; 2025-06-05T23:15:54.0311860Z  echo "set -eou pipefail"; 2025-06-05T23:15:54.0312170Z  # shellcheck disable=SC2016 2025-06-05T23:15:54.0312507Z  echo 'eval "$(conda shell.bash hook)"'; 2025-06-05T23:15:54.0312825Z  echo "set -x"; 2025-06-05T23:15:54.0313088Z  echo "${SCRIPT}"; 2025-06-05T23:15:54.0313359Z } > "${RUNNER_TEMP}/exec_script" 2025-06-05T23:15:54.0313694Z chmod +x "${RUNNER_TEMP}/exec_script" 2025-06-05T23:15:54.0314386Z python3 "/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py" "" 2025-06-05T23:15:54.0320195Z shell: /usr/bin/bash -e {0} 2025-06-05T23:15:54.0320461Z env: 2025-06-05T23:15:54.0321127Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-arm-sdk:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:15:54.0321853Z REPOSITORY: pytorch/executorch 2025-06-05T23:15:54.0322140Z PR_NUMBER: 2025-06-05T23:15:54.0326615Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:15:54.0331476Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:15:54.0332051Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:15:54.0332577Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:15:54.0333309Z ALL_SECRETS: { "github_token": "***" } 2025-06-05T23:15:54.0333624Z ##[endgroup] 2025-06-05T23:15:54.0355638Z + echo '#!/usr/bin/env bash' 2025-06-05T23:15:54.0355942Z + echo 'set -eou pipefail' 2025-06-05T23:15:54.0356323Z + echo 'eval "$(conda shell.bash hook)"' 2025-06-05T23:15:54.0356626Z + echo 'set -x' 2025-06-05T23:15:54.0357015Z + echo '# The generic Linux job chooses to use base env, not the one setup by the image 2025-06-05T23:15:54.0358328Z CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") 2025-06-05T23:15:54.0358948Z conda activate "${CONDA_ENV}" 2025-06-05T23:15:54.0359130Z 2025-06-05T23:15:54.0359286Z source .ci/scripts/utils.sh 2025-06-05T23:15:54.0359872Z install_executorch "--use-pt-pinned-commit" 2025-06-05T23:15:54.0360390Z .ci/scripts/setup-arm-baremetal-tools.sh 2025-06-05T23:15:54.0360788Z source examples/arm/ethos-u-scratch/setup_path.sh 2025-06-05T23:15:54.0361036Z 2025-06-05T23:15:54.0361141Z # User baremetal toolchain 2025-06-05T23:15:54.0361399Z arm-none-eabi-c++ --version 2025-06-05T23:15:54.0361959Z toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake 2025-06-05T23:15:54.0362395Z toolchain_cmake=$(realpath ${toolchain_cmake}) 2025-06-05T23:15:54.0362741Z 2025-06-05T23:15:54.0362836Z # Build and test size test 2025-06-05T23:15:54.0363340Z bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" 2025-06-05T23:15:54.0363906Z elf="cmake-out/test/size_test" 2025-06-05T23:15:54.0364079Z 2025-06-05T23:15:54.0364177Z # Dump basic info 2025-06-05T23:15:54.0364386Z ls -al ${elf} 2025-06-05T23:15:54.0364612Z arm-none-eabi-size ${elf} 2025-06-05T23:15:54.0364772Z 2025-06-05T23:15:54.0364853Z # Dump symbols 2025-06-05T23:15:54.0365100Z python .github/scripts/run_nm.py -e ${elf} 2025-06-05T23:15:54.0365559Z python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" 2025-06-05T23:15:54.0366331Z python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" 2025-06-05T23:15:54.0366943Z 2025-06-05T23:15:54.0367067Z # Add basic guard - TODO: refine this! 2025-06-05T23:15:54.0367365Z arm-none-eabi-strip ${elf} 2025-06-05T23:15:54.0367631Z output=$(ls -la ${elf}) 2025-06-05T23:15:54.0367860Z arr=($output) 2025-06-05T23:15:54.0368066Z size=${arr[4]} 2025-06-05T23:15:54.0368274Z threshold="102400" # 100KiB 2025-06-05T23:15:54.0368549Z echo "size: $size, threshold: $threshold" 2025-06-05T23:15:54.0368860Z if [[ "$size" -le "$threshold" ]]; then 2025-06-05T23:15:54.0369168Z echo "Success $size <= $threshold" 2025-06-05T23:15:54.0369450Z else 2025-06-05T23:15:54.0369640Z echo "Fail $size > $threshold" 2025-06-05T23:15:54.0369901Z exit 1 2025-06-05T23:15:54.0370079Z fi 2025-06-05T23:15:54.0370260Z ' 2025-06-05T23:15:54.0370537Z + chmod +x /home/ec2-user/actions-runner/_work/_temp/exec_script 2025-06-05T23:15:54.0371274Z + python3 /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py '' 2025-06-05T23:16:14.6279801Z Running command: 2025-06-05T23:16:14.6287949Z 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_15475023371" `# 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_64409ead-381a-4695-9cd1-07cb47b23436":"/home/ec2-user/actions-runner/_work/_temp/_runner_file_commands/step_summary_64409ead-381a-4695-9cd1-07cb47b23436" -w /pytorch/executorch "308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-arm-sdk:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa" 2025-06-05T23:16:14.6293593Z 2025-06-05T23:16:14.6293934Z 9b2ce8ec7919194c14f6f2c2780fe54ced00b6ab54ef2a638f69e7ecd76c1780 2025-06-05T23:16:14.6294610Z Running command: docker exec -t 9b2ce8ec7919194c14f6f2c2780fe54ced00b6ab54ef2a638f69e7ecd76c1780 /exec 2025-06-05T23:16:14.6295264Z ++ conda env list --json 2025-06-05T23:16:14.6295503Z ++ local cmd=env 2025-06-05T23:16:14.6295755Z ++ case "$cmd" in 2025-06-05T23:16:14.6296270Z ++ __conda_exe env list --json 2025-06-05T23:16:14.6296546Z ++ jq -r '.envs | .[-1]' 2025-06-05T23:16:14.6296967Z ++ /opt/conda/bin/conda env list --json 2025-06-05T23:16:14.6297280Z + CONDA_ENV=/opt/conda/envs/py_3.10 2025-06-05T23:16:14.6297596Z + conda activate /opt/conda/envs/py_3.10 2025-06-05T23:16:14.6297888Z + local cmd=activate 2025-06-05T23:16:14.6298123Z + case "$cmd" in 2025-06-05T23:16:14.6298380Z + __conda_activate activate /opt/conda/envs/py_3.10 2025-06-05T23:16:14.6298727Z + '[' -n '' ']' 2025-06-05T23:16:14.6298994Z + local ask_conda 2025-06-05T23:16:14.6299213Z ++ PS1='(base) ' 2025-06-05T23:16:14.6299555Z ++ __conda_exe shell.posix activate /opt/conda/envs/py_3.10 2025-06-05T23:16:14.6300022Z ++ /opt/conda/bin/conda shell.posix activate /opt/conda/envs/py_3.10 2025-06-05T23:16:14.6300439Z + ask_conda='PS1='\''(py_3.10) '\'' 2025-06-05T23:16:14.6301273Z export PATH='\''/opt/conda/envs/py_3.10/bin:/opt/conda/condabin:/opt/cache/bin:/opt/conda/envs/py_3.10/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'\'' 2025-06-05T23:16:14.6302172Z export CONDA_PREFIX='\''/opt/conda/envs/py_3.10'\'' 2025-06-05T23:16:14.6302524Z export CONDA_SHLVL='\''2'\'' 2025-06-05T23:16:14.6302799Z export CONDA_DEFAULT_ENV='\''py_3.10'\'' 2025-06-05T23:16:14.6303140Z export CONDA_PROMPT_MODIFIER='\''(py_3.10) '\'' 2025-06-05T23:16:14.6303474Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2025-06-05T23:16:14.6303810Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2025-06-05T23:16:14.6304111Z export _CE_M='\'''\'' 2025-06-05T23:16:14.6304354Z export _CE_CONDA='\'''\'' 2025-06-05T23:16:14.6304654Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2025-06-05T23:16:14.6305008Z + eval 'PS1='\''(py_3.10) '\'' 2025-06-05T23:16:14.6305824Z export PATH='\''/opt/conda/envs/py_3.10/bin:/opt/conda/condabin:/opt/cache/bin:/opt/conda/envs/py_3.10/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'\'' 2025-06-05T23:16:14.6306699Z export CONDA_PREFIX='\''/opt/conda/envs/py_3.10'\'' 2025-06-05T23:16:14.6307046Z export CONDA_SHLVL='\''2'\'' 2025-06-05T23:16:14.6307318Z export CONDA_DEFAULT_ENV='\''py_3.10'\'' 2025-06-05T23:16:14.6307659Z export CONDA_PROMPT_MODIFIER='\''(py_3.10) '\'' 2025-06-05T23:16:14.6307989Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2025-06-05T23:16:14.6308319Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2025-06-05T23:16:14.6308635Z export _CE_M='\'''\'' 2025-06-05T23:16:14.6308872Z export _CE_CONDA='\'''\'' 2025-06-05T23:16:14.6309182Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2025-06-05T23:16:14.6309512Z ++ PS1='(py_3.10) ' 2025-06-05T23:16:14.6310278Z ++ export PATH=/opt/conda/envs/py_3.10/bin:/opt/conda/condabin:/opt/cache/bin:/opt/conda/envs/py_3.10/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2025-06-05T23:16:14.6311594Z ++ PATH=/opt/conda/envs/py_3.10/bin:/opt/conda/condabin:/opt/cache/bin:/opt/conda/envs/py_3.10/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2025-06-05T23:16:14.6312430Z ++ export CONDA_PREFIX=/opt/conda/envs/py_3.10 2025-06-05T23:16:14.6312770Z ++ CONDA_PREFIX=/opt/conda/envs/py_3.10 2025-06-05T23:16:14.6313062Z ++ export CONDA_SHLVL=2 2025-06-05T23:16:14.6313301Z ++ CONDA_SHLVL=2 2025-06-05T23:16:14.6313526Z ++ export CONDA_DEFAULT_ENV=py_3.10 2025-06-05T23:16:14.6313816Z ++ CONDA_DEFAULT_ENV=py_3.10 2025-06-05T23:16:14.6314097Z ++ export 'CONDA_PROMPT_MODIFIER=(py_3.10) ' 2025-06-05T23:16:14.6314426Z ++ CONDA_PROMPT_MODIFIER='(py_3.10) ' 2025-06-05T23:16:14.6314717Z ++ export CONDA_PREFIX_1=/opt/conda 2025-06-05T23:16:14.6315010Z ++ CONDA_PREFIX_1=/opt/conda 2025-06-05T23:16:14.6315275Z ++ export CONDA_EXE=/opt/conda/bin/conda 2025-06-05T23:16:14.6315584Z ++ CONDA_EXE=/opt/conda/bin/conda 2025-06-05T23:16:14.6315858Z ++ export _CE_M= 2025-06-05T23:16:14.6316059Z ++ _CE_M= 2025-06-05T23:16:14.6316262Z ++ export _CE_CONDA= 2025-06-05T23:16:14.6316475Z ++ _CE_CONDA= 2025-06-05T23:16:14.6316725Z ++ export CONDA_PYTHON_EXE=/opt/conda/bin/python 2025-06-05T23:16:14.6317170Z ++ CONDA_PYTHON_EXE=/opt/conda/bin/python 2025-06-05T23:16:14.6317471Z + __conda_hashr 2025-06-05T23:16:14.6317676Z + '[' -n '' ']' 2025-06-05T23:16:14.6317955Z + '[' -n '' ']' 2025-06-05T23:16:14.6318150Z + hash -r 2025-06-05T23:16:14.6318361Z + source .ci/scripts/utils.sh 2025-06-05T23:16:14.6318668Z + install_executorch --use-pt-pinned-commit 2025-06-05T23:16:14.6318971Z + which pip 2025-06-05T23:16:14.6319187Z /opt/conda/envs/py_3.10/bin/pip 2025-06-05T23:16:14.6319489Z + ./install_executorch.sh --use-pt-pinned-commit 2025-06-05T23:16:14.6319944Z 2025-06-05 23:16:13,701 [ExecuTorch] INFO: All required submodules are present. 2025-06-05T23:16:14.6320573Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cpu 2025-06-05T23:16:14.6321366Z Requirement already satisfied: torch in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (2.8.0a0+git5616fa4) 2025-06-05T23:16:14.6322247Z Requirement already satisfied: torchvision in /var/lib/ci-user/.local/lib/python3.10/site-packages (0.22.0a0+966da7e) 2025-06-05T23:16:14.6323150Z Requirement already satisfied: torchaudio in /var/lib/ci-user/.local/lib/python3.10/site-packages (2.6.0a0+1a8f621) 2025-06-05T23:16:14.6323854Z Collecting timm==1.0.7 (from -r requirements-examples.txt (line 3)) 2025-06-05T23:16:14.6324335Z Downloading timm-1.0.7-py3-none-any.whl.metadata (47 kB) 2025-06-05T23:16:14.6325157Z Requirement already satisfied: torchsr==1.0.4 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-examples.txt (line 4)) (1.0.4) 2025-06-05T23:16:14.6326023Z Collecting torchtune>=0.6.1 (from -r requirements-examples.txt (line 5)) 2025-06-05T23:16:14.6326564Z Downloading torchtune-0.6.1-py3-none-any.whl.metadata (24 kB) 2025-06-05T23:16:14.6327447Z Requirement already satisfied: transformers==4.47.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-examples.txt (line 6)) (4.47.1) 2025-06-05T23:16:14.6328327Z Collecting cmake<4.0.0,>=3.19 (from -r requirements-dev.txt (line 1)) 2025-06-05T23:16:14.6328966Z Downloading cmake-3.31.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.3 kB) 2025-06-05T23:16:14.6329883Z Requirement already satisfied: pip>=23 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 2)) (25.1) 2025-06-05T23:16:14.6330978Z Requirement already satisfied: pyyaml in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 3)) (6.0.1) 2025-06-05T23:16:14.6332107Z Requirement already satisfied: setuptools>=63 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 4)) (78.1.1) 2025-06-05T23:16:14.6333216Z Requirement already satisfied: tomli in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 5)) (2.0.1) 2025-06-05T23:16:14.6334303Z Requirement already satisfied: wheel in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 6)) (0.45.1) 2025-06-05T23:16:14.6335490Z Requirement already satisfied: zstd in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 7)) (1.5.5.1) 2025-06-05T23:16:14.6336672Z Requirement already satisfied: huggingface_hub in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from timm==1.0.7->-r requirements-examples.txt (line 3)) (0.32.4) 2025-06-05T23:16:14.6337960Z Requirement already satisfied: safetensors in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from timm==1.0.7->-r requirements-examples.txt (line 3)) (0.5.3) 2025-06-05T23:16:14.6339268Z Requirement already satisfied: filelock in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (3.18.0) 2025-06-05T23:16:14.6340586Z Requirement already satisfied: numpy>=1.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (2.2.6) 2025-06-05T23:16:14.6341903Z Requirement already satisfied: packaging>=20.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (25.0) 2025-06-05T23:16:14.6343403Z Requirement already satisfied: regex!=2019.12.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (2024.11.6) 2025-06-05T23:16:14.6344738Z Requirement already satisfied: requests in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (2.32.3) 2025-06-05T23:16:14.6346094Z Requirement already satisfied: tokenizers<0.22,>=0.21 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (0.21.1) 2025-06-05T23:16:17.6158949Z Requirement already satisfied: tqdm>=4.27 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (4.67.1) 2025-06-05T23:16:17.6161686Z Requirement already satisfied: fsspec>=2023.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub->timm==1.0.7->-r requirements-examples.txt (line 3)) (2025.5.1) 2025-06-05T23:16:17.6164191Z Requirement already satisfied: typing-extensions>=3.7.4.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub->timm==1.0.7->-r requirements-examples.txt (line 3)) (4.14.0) 2025-06-05T23:16:17.6166619Z Requirement already satisfied: hf-xet<2.0.0,>=1.1.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub->timm==1.0.7->-r requirements-examples.txt (line 3)) (1.1.3) 2025-06-05T23:16:17.6167788Z Requirement already satisfied: sympy>=1.13.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (1.14.0) 2025-06-05T23:16:17.6168692Z Requirement already satisfied: networkx in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (3.4.2) 2025-06-05T23:16:17.6169563Z Requirement already satisfied: jinja2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (3.1.6) 2025-06-05T23:16:17.6170518Z Requirement already satisfied: pillow!=8.3.*,>=5.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchvision) (11.2.1) 2025-06-05T23:16:17.6171338Z Collecting torchdata==0.11.0 (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6171950Z Downloading torchdata-0.11.0-py3-none-any.whl.metadata (6.3 kB) 2025-06-05T23:16:17.6172541Z Collecting datasets (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6173108Z Downloading datasets-3.6.0-py3-none-any.whl.metadata (19 kB) 2025-06-05T23:16:17.6173681Z Collecting kagglehub (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6174255Z Downloading kagglehub-0.3.12-py3-none-any.whl.metadata (38 kB) 2025-06-05T23:16:17.6174866Z Collecting sentencepiece (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6176129Z Downloading https://download.pytorch.org/whl/nightly/sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) 2025-06-05T23:16:17.6177869Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.3 MB ? eta -:--:-- 2025-06-05T23:16:17.6178578Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 111.9 MB/s eta 0:00:00 2025-06-05T23:16:17.6179259Z [?25hCollecting tiktoken (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6180003Z Downloading tiktoken-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) 2025-06-05T23:16:17.6180729Z Collecting blobfile>=2 (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6181433Z Downloading https://download.pytorch.org/whl/nightly/blobfile-3.0.0-py3-none-any.whl (75 kB) 2025-06-05T23:16:17.6182139Z Collecting omegaconf (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6183055Z Downloading https://download.pytorch.org/whl/nightly/omegaconf-2.3.0-py3-none-any.whl (79 kB) 2025-06-05T23:16:17.6183861Z Collecting psutil (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6184688Z Downloading psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (22 kB) 2025-06-05T23:16:17.6186070Z Requirement already satisfied: urllib3>=1.25 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchdata==0.11.0->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (2.4.0) 2025-06-05T23:16:17.6187943Z Collecting pycryptodomex>=3.8 (from blobfile>=2->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6189334Z Downloading pycryptodomex-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.4 kB) 2025-06-05T23:16:17.6190467Z Requirement already satisfied: lxml>=4.9 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from blobfile>=2->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (5.4.0) 2025-06-05T23:16:17.6191683Z Requirement already satisfied: mpmath<1.4,>=1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from sympy>=1.13.3->torch) (1.3.0) 2025-06-05T23:16:17.6192550Z Collecting pyarrow>=15.0.0 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6193243Z Downloading pyarrow-20.0.0-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (3.3 kB) 2025-06-05T23:16:17.6193919Z Collecting dill<0.3.9,>=0.3.0 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6194672Z Downloading https://download.pytorch.org/whl/nightly/dill-0.3.8-py3-none-any.whl (116 kB) 2025-06-05T23:16:17.6195727Z Requirement already satisfied: pandas in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (2.2.3) 2025-06-05T23:16:17.6196735Z Collecting xxhash (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6197642Z Downloading https://download.pytorch.org/whl/nightly/xxhash-3.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) 2025-06-05T23:16:17.6198575Z Collecting multiprocess<0.70.17 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6199624Z Downloading https://download.pytorch.org/whl/nightly/multiprocess-0.70.16-py310-none-any.whl (134 kB) 2025-06-05T23:16:17.6200438Z Collecting fsspec>=2023.5.0 (from huggingface_hub->timm==1.0.7->-r requirements-examples.txt (line 3)) 2025-06-05T23:16:17.6201057Z Downloading fsspec-2025.3.0-py3-none-any.whl.metadata (11 kB) 2025-06-05T23:16:17.6201800Z Collecting aiohttp!=4.0.0a0,!=4.0.0a1 (from fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6202673Z Downloading aiohttp-3.12.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.6 kB) 2025-06-05T23:16:17.6203652Z Collecting aiohappyeyeballs>=2.5.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6204548Z Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl.metadata (5.9 kB) 2025-06-05T23:16:17.6205379Z Collecting aiosignal>=1.1.2 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6206208Z Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) 2025-06-05T23:16:17.6207046Z Collecting async-timeout<6.0,>=4.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6207868Z Downloading async_timeout-5.0.1-py3-none-any.whl.metadata (5.1 kB) 2025-06-05T23:16:17.6209003Z Requirement already satisfied: attrs>=17.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (25.3.0) 2025-06-05T23:16:17.6211721Z Collecting frozenlist>=1.1.1 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6213606Z Downloading frozenlist-1.6.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (17 kB) 2025-06-05T23:16:17.6215674Z Collecting multidict<7.0,>=4.5 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6217463Z Downloading multidict-6.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) 2025-06-05T23:16:17.6219014Z Collecting propcache>=0.2.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6220733Z Downloading propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (10 kB) 2025-06-05T23:16:17.6222396Z Collecting yarl<2.0,>=1.17.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:17.6224054Z Downloading yarl-1.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (72 kB) 2025-06-05T23:16:17.6226382Z Requirement already satisfied: idna>=2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from yarl<2.0,>=1.17.0->aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (3.10) 2025-06-05T23:16:17.6229345Z Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->transformers==4.47.1->-r requirements-examples.txt (line 6)) (3.4.2) 2025-06-05T23:16:17.6232209Z Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->transformers==4.47.1->-r requirements-examples.txt (line 6)) (2025.4.26) 2025-06-05T23:16:17.6234477Z Collecting hf-transfer>=0.1.4 (from huggingface_hub[hf_transfer]->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:20.0855514Z Downloading hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.7 kB) 2025-06-05T23:16:20.0856468Z Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from jinja2->torch) (3.0.2) 2025-06-05T23:16:20.0857424Z Collecting antlr4-python3-runtime==4.9.* (from omegaconf->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:16:20.0858303Z Downloading https://download.pytorch.org/whl/nightly/antlr4_python3_runtime-4.9.3.tar.gz (117 kB) 2025-06-05T23:16:20.0859157Z Preparing metadata (setup.py) ... [?25l- done 2025-06-05T23:16:20.0860340Z [?25hRequirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (2.9.0.post0) 2025-06-05T23:16:20.0861902Z Requirement already satisfied: pytz>=2020.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (2025.2) 2025-06-05T23:16:20.0863352Z Requirement already satisfied: tzdata>=2022.7 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (2025.2) 2025-06-05T23:16:20.0864858Z Requirement already satisfied: six>=1.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from python-dateutil>=2.8.2->pandas->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (1.17.0) 2025-06-05T23:16:20.0865825Z Downloading timm-1.0.7-py3-none-any.whl (2.3 MB) 2025-06-05T23:16:20.0866444Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:16:20.0867482Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 97.0 MB/s eta 0:00:00 2025-06-05T23:16:20.0868216Z [?25hDownloading cmake-3.31.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.8 MB) 2025-06-05T23:16:20.0868963Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/27.8 MB ? eta -:--:-- 2025-06-05T23:16:20.0869617Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 27.8/27.8 MB 157.7 MB/s eta 0:00:00 2025-06-05T23:16:20.0870227Z [?25hDownloading torchtune-0.6.1-py3-none-any.whl (910 kB) 2025-06-05T23:16:20.0870840Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/910.7 kB ? eta -:--:-- 2025-06-05T23:16:20.0871628Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 910.7/910.7 kB 101.4 MB/s eta 0:00:00 2025-06-05T23:16:20.0872214Z [?25hDownloading torchdata-0.11.0-py3-none-any.whl (61 kB) 2025-06-05T23:16:20.0872864Z Downloading pycryptodomex-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB) 2025-06-05T23:16:20.0873647Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:16:20.0874310Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 165.7 MB/s eta 0:00:00 2025-06-05T23:16:20.0874859Z [?25hDownloading datasets-3.6.0-py3-none-any.whl (491 kB) 2025-06-05T23:16:20.0875294Z Downloading fsspec-2025.3.0-py3-none-any.whl (193 kB) 2025-06-05T23:16:20.0875854Z Downloading aiohttp-3.12.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB) 2025-06-05T23:16:20.0876601Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.6 MB ? eta -:--:-- 2025-06-05T23:16:20.0877259Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 142.2 MB/s eta 0:00:00 2025-06-05T23:16:20.0878052Z [?25hDownloading async_timeout-5.0.1-py3-none-any.whl (6.2 kB) 2025-06-05T23:16:20.0878688Z Downloading multidict-6.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (219 kB) 2025-06-05T23:16:20.0879397Z Downloading yarl-1.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (333 kB) 2025-06-05T23:16:20.0879997Z Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl (15 kB) 2025-06-05T23:16:20.0880485Z Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) 2025-06-05T23:16:20.0896166Z Downloading frozenlist-1.6.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (224 kB) 2025-06-05T23:16:20.0897248Z Downloading propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206 kB) 2025-06-05T23:16:20.0897909Z Downloading pyarrow-20.0.0-cp310-cp310-manylinux_2_28_x86_64.whl (42.3 MB) 2025-06-05T23:16:20.0898736Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/42.3 MB ? eta -:--:-- 2025-06-05T23:16:20.0899701Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 42.2/42.3 MB 287.4 MB/s eta 0:00:01 2025-06-05T23:16:20.0900397Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.3/42.3 MB 188.0 MB/s eta 0:00:00 2025-06-05T23:16:20.0901164Z [?25hDownloading hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB) 2025-06-05T23:16:20.0901920Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/3.6 MB ? eta -:--:-- 2025-06-05T23:16:20.0902596Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/3.6 MB 170.7 MB/s eta 0:00:00 2025-06-05T23:16:20.0903166Z [?25hDownloading kagglehub-0.3.12-py3-none-any.whl (67 kB) 2025-06-05T23:16:20.0903887Z Downloading psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277 kB) 2025-06-05T23:16:20.0904865Z Downloading tiktoken-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB) 2025-06-05T23:16:20.0905614Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.2 MB ? eta -:--:-- 2025-06-05T23:16:20.0906271Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 142.8 MB/s eta 0:00:00 2025-06-05T23:16:20.0906875Z [?25hBuilding wheels for collected packages: antlr4-python3-runtime 2025-06-05T23:16:20.0909370Z  DEPRECATION: Building 'antlr4-python3-runtime' using the legacy setup.py bdist_wheel mechanism, which will be removed in a future version. pip 25.3 will enforce this behaviour change. A possible replacement is to use the standardized build interface by setting the `--use-pep517` option, (possibly combined with `--no-build-isolation`), or adding a `pyproject.toml` file to the source tree of 'antlr4-python3-runtime'. Discussion can be found at https://github.com/pypa/pip/issues/6334 2025-06-05T23:16:20.0911590Z  Building wheel for antlr4-python3-runtime (setup.py) ... [?25l- done 2025-06-05T23:16:20.0912788Z [?25h Created wheel for antlr4-python3-runtime: filename=antlr4_python3_runtime-4.9.3-py3-none-any.whl size=144590 sha256=7868f53f66366e89cc4dbfb96955524d9b37a16b1daca8c6fbea2a2c40a2557d 2025-06-05T23:16:20.0913979Z Stored in directory: /var/lib/ci-user/.cache/pip/wheels/8e/0c/ef/6e1004d7898c3e61c08b70be9a80232ee72e7c55c9a9bffa33 2025-06-05T23:16:20.0914632Z Successfully built antlr4-python3-runtime 2025-06-05T23:16:20.0916124Z Installing collected packages: sentencepiece, antlr4-python3-runtime, xxhash, pycryptodomex, pyarrow, psutil, propcache, omegaconf, multidict, hf-transfer, fsspec, frozenlist, dill, cmake, async-timeout, aiohappyeyeballs, yarl, tiktoken, multiprocess, kagglehub, blobfile, aiosignal, torchdata, aiohttp, timm, datasets, torchtune 2025-06-05T23:16:20.0917570Z [?25l 2025-06-05T23:16:20.0918017Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/27 [pycryptodomex] 2025-06-05T23:16:20.0918652Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/27 [pycryptodomex] 2025-06-05T23:16:20.0919268Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:16:28.3037144Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:16:28.3037850Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:16:28.3038457Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:16:28.3039040Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:16:28.3039626Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:16:28.3040201Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  5/27 [psutil] 2025-06-05T23:16:28.3041213Z  ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━  9/27 [hf-transfer] 2025-06-05T23:16:28.3041680Z  Attempting uninstall: fsspec 2025-06-05T23:16:28.3042171Z ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━  9/27 [hf-transfer] 2025-06-05T23:16:28.3042672Z  Found existing installation: fsspec 2025.5.1 2025-06-05T23:16:28.3043207Z ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━  9/27 [hf-transfer] 2025-06-05T23:16:28.3043668Z  Uninstalling fsspec-2025.5.1: 2025-06-05T23:16:28.3044163Z ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━  9/27 [hf-transfer] 2025-06-05T23:16:28.3044644Z  Successfully uninstalled fsspec-2025.5.1 2025-06-05T23:16:28.3045179Z ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━  9/27 [hf-transfer] 2025-06-05T23:16:28.3045783Z  ━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 10/27 [fsspec] 2025-06-05T23:16:28.3046389Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:16:28.3046954Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:16:28.3047530Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:16:28.3048104Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:16:28.3048664Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:16:28.3049234Z  ━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 16/27 [yarl] 2025-06-05T23:16:28.3049807Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 20/27 [blobfile] 2025-06-05T23:16:28.3050466Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 23/27 [aiohttp] 2025-06-05T23:16:28.3050959Z  Attempting uninstall: timm 2025-06-05T23:16:28.3051434Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 23/27 [aiohttp] 2025-06-05T23:16:28.3051898Z  Found existing installation: timm 0.6.13 2025-06-05T23:16:28.3052397Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 23/27 [aiohttp] 2025-06-05T23:16:28.3052830Z  Uninstalling timm-0.6.13: 2025-06-05T23:16:28.3053294Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 23/27 [aiohttp] 2025-06-05T23:16:28.3053756Z  Successfully uninstalled timm-0.6.13 2025-06-05T23:16:28.3054251Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 23/27 [aiohttp] 2025-06-05T23:16:28.3054813Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:16:28.3055491Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:16:28.3056061Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:16:28.3056634Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 25/27 [datasets] 2025-06-05T23:16:28.3057203Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 25/27 [datasets] 2025-06-05T23:16:28.3057790Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 26/27 [torchtune] 2025-06-05T23:16:28.3058369Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 26/27 [torchtune] 2025-06-05T23:16:28.3058914Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 27/27 [torchtune] 2025-06-05T23:16:28.3059285Z [?25h 2025-06-05T23:16:28.3061461Z Successfully installed aiohappyeyeballs-2.6.1 aiohttp-3.12.9 aiosignal-1.3.2 antlr4-python3-runtime-4.9.3 async-timeout-5.0.1 blobfile-3.0.0 cmake-3.31.6 datasets-3.6.0 dill-0.3.8 frozenlist-1.6.2 fsspec-2025.3.0 hf-transfer-0.1.9 kagglehub-0.3.12 multidict-6.4.4 multiprocess-0.70.16 omegaconf-2.3.0 propcache-0.3.1 psutil-7.0.0 pyarrow-20.0.0 pycryptodomex-3.23.0 sentencepiece-0.2.0 tiktoken-0.9.0 timm-1.0.7 torchdata-0.11.0 torchtune-0.6.1 xxhash-3.5.0 yarl-1.20.0 2025-06-05T23:16:28.3063360Z Processing ./third-party/ao 2025-06-05T23:16:28.3063737Z Preparing metadata (setup.py) ... [?25l- done 2025-06-05T23:16:28.3064144Z [?25hProcessing ./extension/llm/tokenizers 2025-06-05T23:16:28.3064601Z Preparing metadata (pyproject.toml) ... [?25l- \ done 2025-06-05T23:16:28.3065495Z [?25hRequirement already satisfied: tiktoken in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytorch_tokenizers==0.1.0) (0.9.0) 2025-06-05T23:16:28.3066583Z Requirement already satisfied: tokenizers in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytorch_tokenizers==0.1.0) (0.21.1) 2025-06-05T23:16:28.3067837Z Requirement already satisfied: sentencepiece in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytorch_tokenizers==0.1.0) (0.2.0) 2025-06-05T23:16:28.3068968Z Requirement already satisfied: regex>=2022.1.18 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from tiktoken->pytorch_tokenizers==0.1.0) (2024.11.6) 2025-06-05T23:16:28.3070148Z Requirement already satisfied: requests>=2.26.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from tiktoken->pytorch_tokenizers==0.1.0) (2.32.3) 2025-06-05T23:16:28.3071421Z Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests>=2.26.0->tiktoken->pytorch_tokenizers==0.1.0) (3.4.2) 2025-06-05T23:16:28.3072705Z Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests>=2.26.0->tiktoken->pytorch_tokenizers==0.1.0) (3.10) 2025-06-05T23:16:28.3073963Z Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests>=2.26.0->tiktoken->pytorch_tokenizers==0.1.0) (2.4.0) 2025-06-05T23:16:28.3075274Z Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests>=2.26.0->tiktoken->pytorch_tokenizers==0.1.0) (2025.4.26) 2025-06-05T23:16:36.0640766Z Requirement already satisfied: huggingface-hub<1.0,>=0.16.4 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from tokenizers->pytorch_tokenizers==0.1.0) (0.32.4) 2025-06-05T23:16:36.0642219Z Requirement already satisfied: filelock in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.16.4->tokenizers->pytorch_tokenizers==0.1.0) (3.18.0) 2025-06-05T23:16:36.0643775Z Requirement already satisfied: fsspec>=2023.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.16.4->tokenizers->pytorch_tokenizers==0.1.0) (2025.3.0) 2025-06-05T23:16:36.0645252Z Requirement already satisfied: packaging>=20.9 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.16.4->tokenizers->pytorch_tokenizers==0.1.0) (25.0) 2025-06-05T23:16:36.0646623Z Requirement already satisfied: pyyaml>=5.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.16.4->tokenizers->pytorch_tokenizers==0.1.0) (6.0.1) 2025-06-05T23:16:36.0648138Z Requirement already satisfied: tqdm>=4.42.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.16.4->tokenizers->pytorch_tokenizers==0.1.0) (4.67.1) 2025-06-05T23:16:36.0649544Z Requirement already satisfied: typing-extensions>=3.7.4.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.16.4->tokenizers->pytorch_tokenizers==0.1.0) (4.14.0) 2025-06-05T23:16:36.0650955Z Requirement already satisfied: hf-xet<2.0.0,>=1.1.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.16.4->tokenizers->pytorch_tokenizers==0.1.0) (1.1.3) 2025-06-05T23:16:36.0651892Z Building wheels for collected packages: torchao, pytorch_tokenizers 2025-06-05T23:16:36.0654428Z  DEPRECATION: Building 'torchao' using the legacy setup.py bdist_wheel mechanism, which will be removed in a future version. pip 25.3 will enforce this behaviour change. A possible replacement is to use the standardized build interface by setting the `--use-pep517` option, (possibly combined with `--no-build-isolation`), or adding a `pyproject.toml` file to the source tree of 'torchao'. Discussion can be found at https://github.com/pypa/pip/issues/6334 2025-06-05T23:16:36.0656602Z  Building wheel for torchao (setup.py) ... [?25l- \ | / - \ done 2025-06-05T23:16:36.0657732Z [?25h Created wheel for torchao: filename=torchao-0.12.0+gitbc68b11-cp39-abi3-linux_x86_64.whl size=955946 sha256=da9e59f9c55c8cf0420918a1349425513f660d2978468743d71fb00f9b4e7664 2025-06-05T23:16:36.0658933Z Stored in directory: /tmp/pip-ephem-wheel-cache-g3936931/wheels/0b/23/ff/2261dc1c4a27252503fe159d9fc88676b133e0e8d621abf36f 2025-06-05T23:16:36.0660636Z Building wheel for pytorch_tokenizers (pyproject.toml) ... [?25l- \ done 2025-06-05T23:16:36.0661791Z [?25h Created wheel for pytorch_tokenizers: filename=pytorch_tokenizers-0.1.0-py3-none-any.whl size=10999 sha256=0e451caf099da638331077b99b646b4d620c7177c194debe78a5b644fc26ad94 2025-06-05T23:16:36.0662995Z Stored in directory: /tmp/pip-ephem-wheel-cache-g3936931/wheels/27/7b/a1/358699b32a468639d6f9ef263f9676280bc5ee318b0bd9a0b2 2025-06-05T23:16:36.0663685Z Successfully built torchao pytorch_tokenizers 2025-06-05T23:16:36.0664107Z Installing collected packages: torchao, pytorch_tokenizers 2025-06-05T23:16:36.0664484Z [?25l 2025-06-05T23:16:36.0664875Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:16:36.0665386Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:16:36.0665875Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:16:36.0666433Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2/2 [pytorch_tokenizers] 2025-06-05T23:16:36.0666803Z [?25h 2025-06-05T23:16:36.0667245Z Successfully installed pytorch_tokenizers-0.1.0 torchao-0.12.0+gitbc68b11 2025-06-05T23:16:36.0667872Z Using pip 25.1 from /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pip (python 3.10) 2025-06-05T23:16:36.0668563Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cpu 2025-06-05T23:16:36.0669083Z Processing /pytorch/executorch 2025-06-05T23:16:36.0669411Z Running command Preparing metadata (pyproject.toml) 2025-06-05T23:16:36.0670371Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated 2025-06-05T23:16:36.0671228Z !! 2025-06-05T23:16:36.0671346Z 2025-06-05T23:16:36.0671463Z ******************************************************************************** 2025-06-05T23:16:36.0672295Z Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). 2025-06-05T23:16:36.0672992Z 2025-06-05T23:16:36.0673206Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-06-05T23:16:36.0673666Z or your builds will no longer be supported. 2025-06-05T23:16:36.0673894Z 2025-06-05T23:16:36.0674237Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:16:36.0674807Z ******************************************************************************** 2025-06-05T23:16:36.0675035Z 2025-06-05T23:16:36.0675121Z !! 2025-06-05T23:16:36.0675316Z corresp(dist, value, root_dir) 2025-06-05T23:16:36.0676144Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py:61: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:16:36.0676958Z !! 2025-06-05T23:16:36.0677072Z 2025-06-05T23:16:36.0677193Z ******************************************************************************** 2025-06-05T23:16:36.0677925Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:16:36.0678356Z 2025-06-05T23:16:36.0678502Z License :: OSI Approved :: BSD License 2025-06-05T23:16:36.0678719Z 2025-06-05T23:16:36.0679075Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:16:36.0679630Z ******************************************************************************** 2025-06-05T23:16:36.0679870Z 2025-06-05T23:16:36.0679945Z !! 2025-06-05T23:16:36.0680147Z dist._finalize_license_expression() 2025-06-05T23:16:36.0680905Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:16:36.0681763Z !! 2025-06-05T23:16:36.0681865Z 2025-06-05T23:16:36.0682062Z ******************************************************************************** 2025-06-05T23:16:36.0682595Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:16:36.0682999Z 2025-06-05T23:16:36.0683115Z License :: OSI Approved :: BSD License 2025-06-05T23:16:36.0683344Z 2025-06-05T23:16:36.0683682Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:16:36.0684248Z ******************************************************************************** 2025-06-05T23:16:36.0684476Z 2025-06-05T23:16:36.0684548Z !! 2025-06-05T23:16:36.0684764Z self._finalize_license_expression() 2025-06-05T23:16:36.0685050Z running dist_info 2025-06-05T23:16:36.0685396Z creating /tmp/pip-modern-metadata-0qi9rp_o/executorch.egg-info 2025-06-05T23:16:36.0685942Z writing /tmp/pip-modern-metadata-0qi9rp_o/executorch.egg-info/PKG-INFO 2025-06-05T23:16:36.0686648Z writing dependency_links to /tmp/pip-modern-metadata-0qi9rp_o/executorch.egg-info/dependency_links.txt 2025-06-05T23:16:36.0687442Z writing entry points to /tmp/pip-modern-metadata-0qi9rp_o/executorch.egg-info/entry_points.txt 2025-06-05T23:16:36.0688170Z writing requirements to /tmp/pip-modern-metadata-0qi9rp_o/executorch.egg-info/requires.txt 2025-06-05T23:16:36.0688909Z writing top-level names to /tmp/pip-modern-metadata-0qi9rp_o/executorch.egg-info/top_level.txt 2025-06-05T23:16:36.0689630Z writing manifest file '/tmp/pip-modern-metadata-0qi9rp_o/executorch.egg-info/SOURCES.txt' 2025-06-05T23:16:36.0690341Z reading manifest file '/tmp/pip-modern-metadata-0qi9rp_o/executorch.egg-info/SOURCES.txt' 2025-06-05T23:16:36.0690856Z adding license file 'LICENSE' 2025-06-05T23:16:36.0691322Z writing manifest file '/tmp/pip-modern-metadata-0qi9rp_o/executorch.egg-info/SOURCES.txt' 2025-06-05T23:16:36.0692016Z creating '/tmp/pip-modern-metadata-0qi9rp_o/executorch-0.7.0a0+bd57234.dist-info' 2025-06-05T23:16:36.0692672Z Preparing metadata (pyproject.toml) ... [?25l[?25hdone 2025-06-05T23:16:36.0693433Z Requirement already satisfied: expecttest in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (0.1.6) 2025-06-05T23:16:36.0694192Z Collecting flatbuffers (from executorch==0.7.0a0+bd57234) 2025-06-05T23:16:36.0695508Z Obtaining dependency information for flatbuffers from https://files.pythonhosted.org/packages/b8/25/155f9f080d5e4bc0082edfda032ea2bc2b8fab3f4d25d46c1e9dd22a1a89/flatbuffers-25.2.10-py2.py3-none-any.whl.metadata 2025-06-05T23:16:36.0696805Z Downloading flatbuffers-25.2.10-py2.py3-none-any.whl.metadata (875 bytes) 2025-06-05T23:16:36.0697653Z Requirement already satisfied: hypothesis in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (6.84.2) 2025-06-05T23:16:36.0698738Z Requirement already satisfied: mpmath==1.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (1.3.0) 2025-06-05T23:16:36.0699793Z Requirement already satisfied: numpy>=2.0.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (2.2.6) 2025-06-05T23:16:36.0700834Z Requirement already satisfied: packaging in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (25.0) 2025-06-05T23:16:37.1484649Z Requirement already satisfied: pandas>=2.2.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (2.2.3) 2025-06-05T23:16:37.1486850Z Requirement already satisfied: parameterized in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (0.9.0) 2025-06-05T23:16:37.1488944Z Requirement already satisfied: pytest in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (7.2.0) 2025-06-05T23:16:37.1490841Z Collecting pytest-xdist (from executorch==0.7.0a0+bd57234) 2025-06-05T23:16:37.1493510Z Obtaining dependency information for pytest-xdist from https://files.pythonhosted.org/packages/0d/b2/0e802fde6f1c5b2f7ae7e9ad42b83fd4ecebac18a8a8c2f2f14e39dce6e1/pytest_xdist-3.7.0-py3-none-any.whl.metadata 2025-06-05T23:16:37.1495994Z Downloading pytest_xdist-3.7.0-py3-none-any.whl.metadata (3.0 kB) 2025-06-05T23:16:37.1496984Z Collecting pytest-rerunfailures (from executorch==0.7.0a0+bd57234) 2025-06-05T23:16:37.1499489Z Obtaining dependency information for pytest-rerunfailures from https://files.pythonhosted.org/packages/f3/30/11d836ff01c938969efa319b4ebe2374ed79d28043a12bfc908577aab9f3/pytest_rerunfailures-15.1-py3-none-any.whl.metadata 2025-06-05T23:16:37.1502030Z Downloading pytest_rerunfailures-15.1-py3-none-any.whl.metadata (20 kB) 2025-06-05T23:16:37.1503626Z Requirement already satisfied: pyyaml in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (6.0.1) 2025-06-05T23:16:37.1505707Z Requirement already satisfied: ruamel.yaml in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (0.17.32) 2025-06-05T23:16:37.1507717Z Requirement already satisfied: sympy in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (1.14.0) 2025-06-05T23:16:37.1509113Z Collecting tabulate (from executorch==0.7.0a0+bd57234) 2025-06-05T23:16:37.1511243Z Obtaining dependency information for tabulate from https://files.pythonhosted.org/packages/40/44/4a5f08c96eb108af5cb50b41f76142f0afa346dfa99d5296fe7202a11854/tabulate-0.9.0-py3-none-any.whl.metadata 2025-06-05T23:16:37.1513497Z Downloading tabulate-0.9.0-py3-none-any.whl.metadata (34 kB) 2025-06-05T23:16:37.1515112Z Requirement already satisfied: typing-extensions>=4.10.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (4.14.0) 2025-06-05T23:16:37.1516696Z Collecting coremltools==8.3 (from executorch==0.7.0a0+bd57234) 2025-06-05T23:16:37.1519152Z Obtaining dependency information for coremltools==8.3 from https://files.pythonhosted.org/packages/c4/c9/f602c2a7861a9e8a2555a083d9558d37d8811515bacd597eb3b40ba7757d/coremltools-8.3.0-cp310-none-manylinux1_x86_64.whl.metadata 2025-06-05T23:16:37.1521762Z Downloading coremltools-8.3.0-cp310-none-manylinux1_x86_64.whl.metadata (2.6 kB) 2025-06-05T23:16:37.1522926Z Collecting protobuf>=3.1.0 (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:16:37.1525393Z Obtaining dependency information for protobuf>=3.1.0 from https://files.pythonhosted.org/packages/fa/b1/b59d405d64d31999244643d88c45c8241c58f17cc887e73bcb90602327f8/protobuf-6.31.1-cp39-abi3-manylinux2014_x86_64.whl.metadata 2025-06-05T23:16:37.1526799Z Downloading protobuf-6.31.1-cp39-abi3-manylinux2014_x86_64.whl.metadata (593 bytes) 2025-06-05T23:16:37.1527738Z Requirement already satisfied: tqdm in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from coremltools==8.3->executorch==0.7.0a0+bd57234) (4.67.1) 2025-06-05T23:16:37.1528949Z Requirement already satisfied: attrs>=21.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from coremltools==8.3->executorch==0.7.0a0+bd57234) (25.3.0) 2025-06-05T23:16:37.1529812Z Collecting cattrs (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:16:37.1530955Z Obtaining dependency information for cattrs from https://files.pythonhosted.org/packages/18/b0/215274ef0d835bbc1056392a367646648b6084e39d489099959aefcca2af/cattrs-25.1.1-py3-none-any.whl.metadata 2025-06-05T23:16:37.1532059Z Downloading cattrs-25.1.1-py3-none-any.whl.metadata (8.4 kB) 2025-06-05T23:16:37.1532571Z Collecting pyaml (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:16:37.1533692Z Obtaining dependency information for pyaml from https://files.pythonhosted.org/packages/aa/7d/1b5061beff826f902285827261485a058b943332eba8a5532a0164735205/pyaml-25.5.0-py3-none-any.whl.metadata 2025-06-05T23:16:37.1534776Z Downloading pyaml-25.5.0-py3-none-any.whl.metadata (12 kB) 2025-06-05T23:16:37.1536023Z Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas>=2.2.2->executorch==0.7.0a0+bd57234) (2.9.0.post0) 2025-06-05T23:16:37.1537265Z Requirement already satisfied: pytz>=2020.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas>=2.2.2->executorch==0.7.0a0+bd57234) (2025.2) 2025-06-05T23:16:37.1538451Z Requirement already satisfied: tzdata>=2022.7 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas>=2.2.2->executorch==0.7.0a0+bd57234) (2025.2) 2025-06-05T23:16:37.1539713Z Requirement already satisfied: six>=1.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from python-dateutil>=2.8.2->pandas>=2.2.2->executorch==0.7.0a0+bd57234) (1.17.0) 2025-06-05T23:16:37.1541042Z Requirement already satisfied: exceptiongroup>=1.1.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from cattrs->coremltools==8.3->executorch==0.7.0a0+bd57234) (1.3.0) 2025-06-05T23:16:37.1542375Z Requirement already satisfied: sortedcontainers<3.0.0,>=2.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from hypothesis->executorch==0.7.0a0+bd57234) (2.4.0) 2025-06-05T23:16:37.1543593Z Requirement already satisfied: iniconfig in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest->executorch==0.7.0a0+bd57234) (2.1.0) 2025-06-05T23:16:37.1544722Z Requirement already satisfied: pluggy<2.0,>=0.12 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest->executorch==0.7.0a0+bd57234) (1.6.0) 2025-06-05T23:16:37.1545856Z Requirement already satisfied: tomli>=1.0.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest->executorch==0.7.0a0+bd57234) (2.0.1) 2025-06-05T23:16:37.1546616Z Collecting pytest (from executorch==0.7.0a0+bd57234) 2025-06-05T23:16:37.1547697Z Obtaining dependency information for pytest from https://files.pythonhosted.org/packages/2f/de/afa024cbe022b1b318a3d224125aa24939e99b4ff6f22e0ba639a2eaee47/pytest-8.4.0-py3-none-any.whl.metadata 2025-06-05T23:16:37.1548833Z Downloading pytest-8.4.0-py3-none-any.whl.metadata (7.7 kB) 2025-06-05T23:16:37.1549650Z Requirement already satisfied: pygments>=2.7.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest->executorch==0.7.0a0+bd57234) (2.19.1) 2025-06-05T23:16:37.1550501Z Collecting execnet>=2.1 (from pytest-xdist->executorch==0.7.0a0+bd57234) 2025-06-05T23:16:37.1551681Z Obtaining dependency information for execnet>=2.1 from https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl.metadata 2025-06-05T23:16:37.1552829Z Downloading execnet-2.1.1-py3-none-any.whl.metadata (2.9 kB) 2025-06-05T23:16:37.1553708Z Requirement already satisfied: ruamel.yaml.clib>=0.2.7 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ruamel.yaml->executorch==0.7.0a0+bd57234) (0.2.12) 2025-06-05T23:16:37.1554611Z Downloading coremltools-8.3.0-cp310-none-manylinux1_x86_64.whl (2.3 MB) 2025-06-05T23:16:37.1555507Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:16:37.1556189Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 139.3 MB/s eta 0:00:00 2025-06-05T23:16:37.1556831Z [?25hDownloading protobuf-6.31.1-cp39-abi3-manylinux2014_x86_64.whl (321 kB) 2025-06-05T23:16:37.1557329Z Downloading cattrs-25.1.1-py3-none-any.whl (69 kB) 2025-06-05T23:16:37.1557768Z Downloading flatbuffers-25.2.10-py2.py3-none-any.whl (30 kB) 2025-06-05T23:16:37.1558211Z Downloading pyaml-25.5.0-py3-none-any.whl (26 kB) 2025-06-05T23:16:37.1558644Z Downloading pytest_rerunfailures-15.1-py3-none-any.whl (13 kB) 2025-06-05T23:16:37.1559092Z Downloading pytest-8.4.0-py3-none-any.whl (363 kB) 2025-06-05T23:16:37.1559503Z Downloading pytest_xdist-3.7.0-py3-none-any.whl (46 kB) 2025-06-05T23:16:37.1559896Z Downloading execnet-2.1.1-py3-none-any.whl (40 kB) 2025-06-05T23:16:37.1560292Z Downloading tabulate-0.9.0-py3-none-any.whl (35 kB) 2025-06-05T23:16:37.1560742Z Building wheels for collected packages: executorch 2025-06-05T23:16:37.1561239Z Running command Building wheel for executorch (pyproject.toml) 2025-06-05T23:16:37.1562235Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated 2025-06-05T23:16:37.1563101Z !! 2025-06-05T23:16:37.1563206Z 2025-06-05T23:16:37.1563336Z ******************************************************************************** 2025-06-05T23:16:37.1564147Z Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). 2025-06-05T23:16:37.1564839Z 2025-06-05T23:16:37.1565053Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-06-05T23:16:37.1565517Z or your builds will no longer be supported. 2025-06-05T23:16:37.1565754Z 2025-06-05T23:16:37.1566102Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:16:37.1566682Z ******************************************************************************** 2025-06-05T23:16:37.1566914Z 2025-06-05T23:16:37.1566991Z !! 2025-06-05T23:16:37.1567203Z corresp(dist, value, root_dir) 2025-06-05T23:16:38.9700547Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py:61: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:16:38.9701923Z !! 2025-06-05T23:16:38.9702077Z 2025-06-05T23:16:38.9702262Z ******************************************************************************** 2025-06-05T23:16:38.9702905Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:16:38.9703344Z 2025-06-05T23:16:38.9703493Z License :: OSI Approved :: BSD License 2025-06-05T23:16:38.9703791Z 2025-06-05T23:16:38.9704238Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:16:38.9704950Z ******************************************************************************** 2025-06-05T23:16:38.9705196Z 2025-06-05T23:16:38.9705307Z !! 2025-06-05T23:16:38.9705591Z dist._finalize_license_expression() 2025-06-05T23:16:38.9706410Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:16:38.9707292Z !! 2025-06-05T23:16:38.9707397Z 2025-06-05T23:16:38.9707514Z ******************************************************************************** 2025-06-05T23:16:38.9708179Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:16:38.9708640Z 2025-06-05T23:16:38.9708766Z License :: OSI Approved :: BSD License 2025-06-05T23:16:38.9709012Z 2025-06-05T23:16:38.9709477Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:16:38.9710138Z ******************************************************************************** 2025-06-05T23:16:38.9710370Z 2025-06-05T23:16:38.9710446Z !! 2025-06-05T23:16:38.9710716Z self._finalize_license_expression() 2025-06-05T23:16:38.9711009Z running bdist_wheel 2025-06-05T23:16:38.9711248Z running build 2025-06-05T23:16:38.9711477Z command options for 'CustomBuild': 2025-06-05T23:16:38.9711779Z build_base = pip-out 2025-06-05T23:16:38.9712046Z build_purelib = pip-out/lib 2025-06-05T23:16:38.9712369Z build_platlib = pip-out/lib.linux-x86_64-cpython-310 2025-06-05T23:16:38.9712770Z build_lib = pip-out/lib.linux-x86_64-cpython-310 2025-06-05T23:16:38.9713116Z build_scripts = pip-out/scripts-3.10 2025-06-05T23:16:38.9713478Z build_temp = pip-out/temp.linux-x86_64-cpython-310 2025-06-05T23:16:38.9714035Z plat_name = linux-x86_64 2025-06-05T23:16:38.9714306Z compiler = None 2025-06-05T23:16:38.9714523Z parallel = None 2025-06-05T23:16:38.9714874Z debug = None 2025-06-05T23:16:38.9715079Z force = None 2025-06-05T23:16:38.9715346Z executable = /opt/conda/envs/py_3.10/bin/python 2025-06-05T23:16:38.9715845Z creating /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:16:38.9716443Z clearing /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:16:38.9716901Z Preset CMake variables: 2025-06-05T23:16:38.9717062Z 2025-06-05T23:16:38.9717167Z CMAKE_OSX_DEPLOYMENT_TARGET="12.0" 2025-06-05T23:16:38.9717640Z EXECUTORCH_BUILD_PRESET_FILE="/pytorch/executorch/tools/cmake/preset/pybind.cmake" 2025-06-05T23:16:38.9718015Z 2025-06-05T23:16:38.9718152Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:16:38.9718539Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:16:38.9718895Z -- Detecting C compiler ABI info 2025-06-05T23:16:38.9719191Z -- Detecting C compiler ABI info - done 2025-06-05T23:16:38.9719588Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:16:38.9719960Z -- Detecting C compile features 2025-06-05T23:16:38.9720260Z -- Detecting C compile features - done 2025-06-05T23:16:38.9720565Z -- Detecting CXX compiler ABI info 2025-06-05T23:16:38.9720881Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:16:38.9721264Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:16:38.9721659Z -- Detecting CXX compile features 2025-06-05T23:16:38.9721969Z -- Detecting CXX compile features - done 2025-06-05T23:16:38.9722412Z -- Loading build preset: /pytorch/executorch/tools/cmake/preset/pybind.cmake 2025-06-05T23:16:38.9722861Z -- --- Configured Options --- 2025-06-05T23:16:38.9723042Z 2025-06-05T23:16:38.9723159Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:16:38.9723523Z -- CMAKE_SYSTEM_PROCESSOR : x86_64 2025-06-05T23:16:38.9723875Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:16:38.9724310Z -- PYTHON_EXECUTABLE : /opt/conda/envs/py_3.10/bin/python 2025-06-05T23:16:38.9724749Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-06-05T23:16:38.9725100Z -- CMAKE_TOOLCHAIN_FILE x (unset) 2025-06-05T23:16:38.9725439Z -- BUCK2 : 2025-06-05T23:16:38.9725909Z -- EXECUTORCH_BUILD_PRESET_FILE : /pytorch/executorch/tools/cmake/preset/pybind.cmake 2025-06-05T23:16:38.9726422Z -- EXECUTORCH_ENABLE_LOGGING : ON 2025-06-05T23:16:38.9726761Z -- EXECUTORCH_BUILD_COREML : ON 2025-06-05T23:16:38.9727122Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:16:38.9727499Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-06-05T23:16:38.9728025Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-06-05T23:16:38.9728568Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:16:38.9728927Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:16:38.9729296Z -- EXECUTORCH_ENABLE_EVENT_TRACER : OFF 2025-06-05T23:16:38.9729639Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-06-05T23:16:38.9729993Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-06-05T23:16:38.9730335Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : ON 2025-06-05T23:16:38.9730811Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : ON 2025-06-05T23:16:38.9731171Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : ON 2025-06-05T23:16:38.9731522Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : OFF 2025-06-05T23:16:38.9731884Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : ON 2025-06-05T23:16:38.9732230Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:16:38.9732588Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : OFF 2025-06-05T23:16:38.9733062Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : ON 2025-06-05T23:16:38.9733551Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : ON 2025-06-05T23:16:38.9734206Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : OFF 2025-06-05T23:16:38.9734574Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:16:38.9734934Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:16:38.9735269Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:16:38.9735724Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:16:38.9736063Z -- EXECUTORCH_BUILD_PYBIND : ON 2025-06-05T23:16:38.9736408Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:16:38.9736749Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : OFF 2025-06-05T23:16:38.9737110Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : ON 2025-06-05T23:16:38.9737467Z -- EXECUTORCH_BUILD_DEVTOOLS : OFF 2025-06-05T23:16:38.9737802Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:16:38.9738155Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:16:38.9738493Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:16:38.9738849Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:16:38.9739184Z -- EXECUTORCH_BUILD_XNNPACK : ON 2025-06-05T23:16:38.9739531Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:16:38.9739871Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:16:38.9740219Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:16:38.9740571Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:16:38.9740910Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:16:38.9741263Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:16:38.9741606Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:16:38.9741966Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-06-05T23:16:38.9742308Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-06-05T23:16:38.9742665Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:16:38.9743017Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:16:38.9743381Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:16:38.9743747Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:16:38.9744070Z -- -------------------------- 2025-06-05T23:16:38.9744497Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:16:38.9745170Z CMake Deprecation Warning at third-party/pybind11/CMakeLists.txt:13 (cmake_minimum_required): 2025-06-05T23:16:38.9745821Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:16:38.9746226Z CMake. 2025-06-05T23:16:38.9746355Z 2025-06-05T23:16:38.9746572Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:16:38.9747121Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:16:38.9747613Z to work with policies introduced by or earlier. 2025-06-05T23:16:38.9747864Z 2025-06-05T23:16:38.9747868Z 2025-06-05T23:16:38.9747962Z -- pybind11 v2.13.6 2025-06-05T23:16:38.9748530Z -- Found PythonInterp: /opt/conda/envs/py_3.10/bin/python (found suitable version "3.10.16", minimum required is "3.7") 2025-06-05T23:16:38.9749243Z -- Found PythonLibs: /opt/conda/envs/py_3.10/lib/libpython3.10.so 2025-06-05T23:16:38.9749644Z -- Performing Test HAS_FLTO_THIN 2025-06-05T23:16:38.9749966Z -- Performing Test HAS_FLTO_THIN - Success 2025-06-05T23:16:38.9750476Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:16:38.9751116Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:16:38.9751517Z CMake. 2025-06-05T23:16:38.9751645Z 2025-06-05T23:16:38.9751860Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:16:38.9752412Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:16:38.9752964Z to work with policies introduced by or earlier. 2025-06-05T23:16:38.9753270Z 2025-06-05T23:16:38.9753276Z 2025-06-05T23:16:38.9753457Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:16:38.9753899Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:16:38.9754295Z -- Setting Clang compiler options 2025-06-05T23:16:38.9754980Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:16:38.9755956Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:16:38.9756665Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:16:38.9757061Z CMake. 2025-06-05T23:16:38.9757186Z 2025-06-05T23:16:38.9757401Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:16:38.9757943Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:16:38.9758426Z to work with policies introduced by or earlier. 2025-06-05T23:16:38.9758674Z 2025-06-05T23:16:38.9758678Z 2025-06-05T23:16:38.9759071Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:16:38.9759770Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:16:38.9760178Z CMake. 2025-06-05T23:16:38.9760287Z 2025-06-05T23:16:38.9760500Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:16:38.9761046Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:16:38.9761520Z to work with policies introduced by or earlier. 2025-06-05T23:16:38.9761768Z 2025-06-05T23:16:38.9761773Z 2025-06-05T23:16:38.9761889Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-05T23:16:38.9762270Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-06-05T23:16:38.9762606Z -- Found Threads: TRUE 2025-06-05T23:16:52.2059592Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:16:52.2060753Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:16:52.2061242Z CMake. 2025-06-05T23:16:52.2061383Z 2025-06-05T23:16:52.2061698Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:16:52.2062352Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:16:52.2062968Z to work with policies introduced by or earlier. 2025-06-05T23:16:52.2063275Z 2025-06-05T23:16:52.2063280Z 2025-06-05T23:16:52.2063390Z -- Resolved buck2 as buck2. 2025-06-05T23:16:52.2063749Z -- Killing buck2 daemon 2025-06-05T23:16:52.2064089Z 'buck2 killall' 2025-06-05T23:16:52.2064450Z -- executorch: Generating source lists 2025-06-05T23:16:52.2065212Z -- executorch: Generating source file list /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/executorch_srcs.cmake 2025-06-05T23:16:52.2066350Z -- executorch: Using sources file /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/executorch_srcs.cmake 2025-06-05T23:16:52.2067425Z '/opt/conda/envs/py_3.10/bin/python' '-c' 'import importlib.util; print(importlib.util.find_spec('torch').submodule_search_locations[0])' 2025-06-05T23:16:52.2068092Z -- Generating operator lib: 2025-06-05T23:16:52.2068376Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:16:52.2068784Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:16:52.2069193Z -- ROOT_OPS: 2025-06-05T23:16:52.2069419Z -- INCLUDE_ALL_OPS: 2025-06-05T23:16:52.2070693Z Command - /opt/conda/envs/py_3.10/bin/python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/portable/portable_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/portable/functions.yaml" 2025-06-05T23:16:52.2072382Z -- Generating kernel bindings: 2025-06-05T23:16:52.2072675Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:16:52.2073066Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:16:52.2073491Z -- CUSTOM_OPS_YAML: 2025-06-05T23:16:52.2073739Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:16:52.2075629Z Generated files /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/portable/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/portable/portable_ops_lib/Functions.h;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/portable/portable_ops_lib/NativeFunctions.h 2025-06-05T23:16:52.2077547Z -- Generating operator lib: 2025-06-05T23:16:52.2077999Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:16:52.2078310Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:16:52.2078596Z -- DEPS: executorch_core 2025-06-05T23:16:52.2078881Z -- Generating operator lib: 2025-06-05T23:16:52.2079150Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:16:52.2079566Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:16:52.2079973Z -- ROOT_OPS: 2025-06-05T23:16:52.2080195Z -- INCLUDE_ALL_OPS: 2025-06-05T23:16:52.2081503Z Command - /opt/conda/envs/py_3.10/bin/python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/optimized/optimized_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/optimized/optimized.yaml" 2025-06-05T23:16:52.2082849Z -- Generating kernel bindings: 2025-06-05T23:16:52.2083141Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:16:52.2083542Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:16:52.2083976Z -- CUSTOM_OPS_YAML: 2025-06-05T23:16:52.2084222Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:16:52.2086161Z Generated files /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/optimized/optimized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/optimized/optimized_ops_lib/Functions.h;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/optimized/optimized_ops_lib/NativeFunctions.h 2025-06-05T23:16:52.2088086Z -- Generating operator lib: 2025-06-05T23:16:52.2088358Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:16:52.2088658Z -- KERNEL_LIBS: optimized_kernels 2025-06-05T23:16:52.2088944Z -- DEPS: executorch_core 2025-06-05T23:16:52.2089216Z -- Merging kernel yaml files: 2025-06-05T23:16:52.2089699Z -- FUNCTIONS_YAML: /pytorch/executorch/configurations/../kernels/optimized/optimized.yaml 2025-06-05T23:16:52.2090394Z -- FALLBACK_YAML: /pytorch/executorch/configurations/../kernels/portable/functions.yaml 2025-06-05T23:16:52.2091126Z -- OUTPUT_DIR: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations 2025-06-05T23:16:52.2091649Z -- Generating operator lib: 2025-06-05T23:16:52.2091948Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:16:52.2092548Z -- OPS_SCHEMA_YAML: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/merged.yaml 2025-06-05T23:16:52.2093131Z -- ROOT_OPS: 2025-06-05T23:16:52.2093355Z -- INCLUDE_ALL_OPS: 2025-06-05T23:16:52.2094837Z Command - /opt/conda/envs/py_3.10/bin/python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/optimized_native_cpu_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/merged.yaml" 2025-06-05T23:16:52.2096464Z -- Generating kernel bindings: 2025-06-05T23:16:52.2096896Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:16:52.2097594Z -- FUNCTIONS_YAML: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/merged.yaml 2025-06-05T23:16:52.2098193Z -- CUSTOM_OPS_YAML: 2025-06-05T23:16:52.2098440Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:16:52.2100450Z Generated files /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/optimized_native_cpu_ops_lib/Functions.h;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/optimized_native_cpu_ops_lib/NativeFunctions.h 2025-06-05T23:16:52.2102457Z -- Generating operator lib: 2025-06-05T23:16:52.2102759Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:16:52.2103157Z -- KERNEL_LIBS: optimized_kernels;optimized_portable_kernels 2025-06-05T23:16:52.2103536Z -- DEPS: executorch_core 2025-06-05T23:16:52.2104019Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:16:52.2104648Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:16:52.2105058Z CMake. 2025-06-05T23:16:52.2105169Z 2025-06-05T23:16:52.2105388Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:16:52.2105935Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:16:52.2106409Z to work with policies introduced by or earlier. 2025-06-05T23:16:52.2106659Z 2025-06-05T23:16:52.2106664Z 2025-06-05T23:16:52.2106769Z -- Looking for C++ include unistd.h 2025-06-05T23:16:52.2107090Z -- Looking for C++ include unistd.h - found 2025-06-05T23:16:52.2107403Z -- Looking for C++ include stdint.h 2025-06-05T23:16:52.2107718Z -- Looking for C++ include stdint.h - found 2025-06-05T23:16:52.2108040Z -- Looking for C++ include inttypes.h 2025-06-05T23:16:52.2108373Z -- Looking for C++ include inttypes.h - found 2025-06-05T23:16:52.2108718Z -- Looking for C++ include sys/types.h 2025-06-05T23:16:52.2109042Z -- Looking for C++ include sys/types.h - found 2025-06-05T23:16:52.2109376Z -- Looking for C++ include sys/stat.h 2025-06-05T23:16:52.2109689Z -- Looking for C++ include sys/stat.h - found 2025-06-05T23:16:52.2110016Z -- Looking for C++ include fnmatch.h 2025-06-05T23:16:52.2110326Z -- Looking for C++ include fnmatch.h - found 2025-06-05T23:16:52.2110652Z -- Looking for C++ include stddef.h 2025-06-05T23:16:52.2110955Z -- Looking for C++ include stddef.h - found 2025-06-05T23:16:52.2111274Z -- Check size of uint32_t 2025-06-05T23:16:52.2111549Z -- Check size of uint32_t - done 2025-06-05T23:16:52.2111823Z -- Looking for strtoll 2025-06-05T23:16:52.2112085Z -- Looking for strtoll - found 2025-06-05T23:16:52.2112471Z -- The ASM compiler identification is Clang with GNU-like command-line 2025-06-05T23:16:52.2112910Z -- Found assembler: /opt/cache/bin/cc 2025-06-05T23:16:52.2113248Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-06-05T23:16:52.2113851Z -- Found Python: /opt/conda/envs/py_3.10/bin/python3.10 (found version "3.10.16") found components: Interpreter 2025-06-05T23:16:52.2114416Z -- Generating microkernels.cmake 2025-06-05T23:16:52.2114797Z No microkernel found in src/reference/binary-elementwise.cc 2025-06-05T23:16:52.2115219Z No microkernel found in src/reference/packing.cc 2025-06-05T23:16:52.2115619Z No microkernel found in src/reference/unary-elementwise.cc 2025-06-05T23:16:52.2116365Z '/opt/conda/envs/py_3.10/bin/python' '-c' 'import importlib.util; print(importlib.util.find_spec('torch').submodule_search_locations[0])' 2025-06-05T23:16:52.2117052Z -- MKL_ARCH: None, set to ` intel64` by default 2025-06-05T23:16:52.2117392Z -- MKL_ROOT /opt/conda/envs/py_3.10 2025-06-05T23:16:52.2117700Z -- MKL_LINK: None, set to ` dynamic` by default 2025-06-05T23:16:52.2118174Z -- MKL_INTERFACE_FULL: None, set to ` intel_ilp64` by default 2025-06-05T23:16:52.2118665Z -- MKL_THREADING: None, set to ` intel_thread` by default 2025-06-05T23:16:52.2119042Z -- MKL_MPI: None, set to ` intelmpi` by default 2025-06-05T23:16:52.2119725Z CMake Warning at /opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/share/cmake/Torch/TorchConfig.cmake:22 (message): 2025-06-05T23:16:52.2120413Z static library kineto_LIBRARY-NOTFOUND not found. 2025-06-05T23:16:52.2120771Z Call Stack (most recent call first): 2025-06-05T23:16:52.2121435Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/share/cmake/Torch/TorchConfig.cmake:125 (append_torchlib_if_found) 2025-06-05T23:16:52.2122135Z tools/cmake/Utils.cmake:267 (find_package) 2025-06-05T23:16:52.2122471Z CMakeLists.txt:610 (find_package_torch) 2025-06-05T23:16:52.2122681Z 2025-06-05T23:16:52.2122685Z 2025-06-05T23:16:52.2122960Z -- Found Torch: /opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/lib/libtorch.so 2025-06-05T23:16:52.2123948Z -- executorch: Using source file list /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/extension/llm/custom_ops/../../../executorch_srcs.cmake 2025-06-05T23:16:52.2124733Z -- Generating operator lib: 2025-06-05T23:16:52.2125017Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:16:52.2125425Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:16:52.2125829Z -- ROOT_OPS: 2025-06-05T23:16:52.2126052Z -- INCLUDE_ALL_OPS: 2025-06-05T23:16:52.9631102Z Command - /opt/conda/envs/py_3.10/bin/python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/quantized/quantized.yaml" 2025-06-05T23:16:52.9633500Z -- Generating kernel bindings: 2025-06-05T23:16:52.9633948Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:16:52.9634446Z -- FUNCTIONS_YAML: 2025-06-05T23:16:52.9634878Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:16:52.9635620Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:16:52.9641915Z Generated files /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_lib/Functions.h;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_lib/NativeFunctions.h;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_lib/RegisterCPUCustomOps.cpp;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_lib/RegisterSchema.cpp;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_lib/CustomOpsNativeFunctions.h 2025-06-05T23:16:52.9647978Z -- Generating operator lib: 2025-06-05T23:16:52.9648462Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:16:52.9648956Z -- OPS_SCHEMA_YAML: 2025-06-05T23:16:52.9651890Z -- ROOT_OPS: quantized_decomposed::add.out;quantized_decomposed::choose_qparams.Tensor_out;quantized_decomposed::choose_qparams_per_token_asymmetric.out;quantized_decomposed::dequantize_per_channel.out;quantized_decomposed::dequantize_per_tensor.out;quantized_decomposed::dequantize_per_tensor.Tensor_out;quantized_decomposed::dequantize_per_token.out;quantized_decomposed::mixed_linear.out;quantized_decomposed::mixed_mm.out;quantized_decomposed::quantize_per_channel.out;quantized_decomposed::quantize_per_tensor.out;quantized_decomposed::quantize_per_tensor.Tensor_out;quantized_decomposed::quantize_per_token.out 2025-06-05T23:16:52.9654820Z -- INCLUDE_ALL_OPS: 2025-06-05T23:16:52.9659410Z Command - /opt/conda/envs/py_3.10/bin/python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_aot_lib/selected_operators.yaml;--root_ops="quantized_decomposed::add.out;quantized_decomposed::choose_qparams.Tensor_out;quantized_decomposed::choose_qparams_per_token_asymmetric.out;quantized_decomposed::dequantize_per_channel.out;quantized_decomposed::dequantize_per_tensor.out;quantized_decomposed::dequantize_per_tensor.Tensor_out;quantized_decomposed::dequantize_per_token.out;quantized_decomposed::mixed_linear.out;quantized_decomposed::mixed_mm.out;quantized_decomposed::quantize_per_channel.out;quantized_decomposed::quantize_per_tensor.out;quantized_decomposed::quantize_per_tensor.Tensor_out;quantized_decomposed::quantize_per_token.out" 2025-06-05T23:16:52.9665392Z -- Generating kernel bindings: 2025-06-05T23:16:52.9665902Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:16:52.9666207Z -- FUNCTIONS_YAML: 2025-06-05T23:16:52.9666797Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:16:52.9667558Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:16:52.9668096Z -- Generating custom ops aot lib: 2025-06-05T23:16:52.9668581Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:16:52.9669516Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/embeddingxb.cpp 2025-06-05T23:16:52.9670799Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_add.cpp 2025-06-05T23:16:52.9672105Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_choose_qparams.cpp 2025-06-05T23:16:52.9673491Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_dequantize.cpp 2025-06-05T23:16:52.9674880Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding.cpp 2025-06-05T23:16:52.9675684Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding2b.cpp 2025-06-05T23:16:52.9676492Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding4b.cpp 2025-06-05T23:16:52.9677308Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_mixed_linear.cpp 2025-06-05T23:16:52.9679134Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_mixed_mm.cpp 2025-06-05T23:16:52.9679928Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_quantize.cpp 2025-06-05T23:16:52.9680732Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/portable/cpu/util/reduce_util.cpp 2025-06-05T23:16:52.9681558Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../runtime/core/exec_aten/util/tensor_util_aten.cpp 2025-06-05T23:16:52.9682156Z -- Generating operator lib: 2025-06-05T23:16:52.9682445Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:16:52.9682884Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:16:52.9683341Z -- ROOT_OPS: 2025-06-05T23:16:52.9683713Z -- INCLUDE_ALL_OPS: 2025-06-05T23:16:52.9685285Z Command - /opt/conda/envs/py_3.10/bin/python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_pybind_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/quantized/quantized.yaml" 2025-06-05T23:16:52.9686687Z -- Generating kernel bindings: 2025-06-05T23:16:52.9686981Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:16:52.9687292Z -- FUNCTIONS_YAML: 2025-06-05T23:16:52.9687649Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:16:52.9688090Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:16:52.9688384Z -- Generating operator lib: 2025-06-05T23:16:52.9688678Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:16:52.9689004Z -- KERNEL_LIBS: quantized_pybind_kernels_lib 2025-06-05T23:16:52.9689532Z -- DEPS: portable_lib 2025-06-05T23:16:52.9689801Z -- Generating operator lib: 2025-06-05T23:16:52.9690071Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:16:52.9690460Z -- KERNEL_LIBS: quantized_kernels 2025-06-05T23:16:52.9690748Z -- DEPS: executorch_core 2025-06-05T23:16:52.9691021Z -- Configuring done (15.0s) 2025-06-05T23:16:52.9691284Z -- Generating done (0.4s) 2025-06-05T23:16:52.9691797Z -- Build files have been written to: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:16:52.9693036Z cmake --build /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out -j7 --config=Release --target portable_lib --target executorchcoreml --target custom_ops_aot_lib --target quantized_ops_aot_lib 2025-06-05T23:16:52.9694077Z [ 0%] Creating directories for 'flatbuffers_external_project' 2025-06-05T23:16:52.9694753Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-06-05T23:16:52.9695504Z [ 0%] Creating directories for 'flatcc_external_project' 2025-06-05T23:16:52.9696175Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-06-05T23:16:52.9697000Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-06-05T23:16:52.9697768Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-06-05T23:16:52.9698595Z [ 0%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/single.cpp.o 2025-06-05T23:16:52.9699201Z [ 0%] No download step for 'flatbuffers_external_project' 2025-06-05T23:16:52.9699592Z [ 0%] No download step for 'flatcc_external_project' 2025-06-05T23:16:52.9699962Z [ 0%] No update step for 'flatbuffers_external_project' 2025-06-05T23:16:52.9700340Z [ 0%] No update step for 'flatcc_external_project' 2025-06-05T23:16:52.9700715Z [ 0%] No patch step for 'flatbuffers_external_project' 2025-06-05T23:16:52.9701100Z [ 0%] No patch step for 'flatcc_external_project' 2025-06-05T23:16:52.9701614Z [ 1%] Performing configure step for 'flatbuffers_external_project' 2025-06-05T23:16:52.9702072Z [ 1%] Performing configure step for 'flatcc_external_project' 2025-06-05T23:16:52.9702436Z CMake Warning: 2025-06-05T23:16:52.9702725Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:16:52.9703005Z 2025-06-05T23:16:52.9703010Z 2025-06-05T23:16:52.9703095Z CMake Warning: 2025-06-05T23:16:52.9703392Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:16:52.9703656Z 2025-06-05T23:16:52.9703660Z 2025-06-05T23:16:52.9703882Z CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:16:52.9704445Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:16:52.9704842Z CMake. 2025-06-05T23:16:52.9704965Z 2025-06-05T23:16:52.9705186Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:16:52.9705730Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:16:52.9706209Z to work with policies introduced by or earlier. 2025-06-05T23:16:52.9706460Z 2025-06-05T23:16:52.9706465Z 2025-06-05T23:16:52.9706642Z fatal: No names found, cannot describe anything. 2025-06-05T23:16:52.9707193Z CMake Warning at CMake/Version.cmake:32 (message): 2025-06-05T23:16:52.9707767Z git describe failed with exit code: 128 2025-06-05T23:16:52.9707978Z 2025-06-05T23:16:52.9708141Z Make sure you cloned with tags or run 'git fetch --tags'. 2025-06-05T23:16:52.9708520Z Call Stack (most recent call first): 2025-06-05T23:16:52.9708827Z CMakeLists.txt:5 (include) 2025-06-05T23:16:52.9709000Z 2025-06-05T23:16:52.9709004Z 2025-06-05T23:16:52.9709110Z -- Proceeding with version: 24.3.25.0 2025-06-05T23:16:52.9709644Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-06-05T23:16:52.9710616Z [ 2%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-06-05T23:16:52.9711470Z [ 2%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/double.cpp.o 2025-06-05T23:16:54.0056196Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-06-05T23:16:54.0057275Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:16:54.0057889Z -- Detecting C compiler ABI info 2025-06-05T23:16:54.0058931Z [ 2%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o 2025-06-05T23:16:54.0060353Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-06-05T23:16:54.0061499Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o 2025-06-05T23:16:54.0062170Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:16:54.0062535Z -- Detecting CXX compiler ABI info 2025-06-05T23:16:54.0062870Z [ 2%] Linking C static library libpthreadpool.a 2025-06-05T23:16:54.0063213Z [ 2%] Built target pthreadpool 2025-06-05T23:16:54.0063725Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o 2025-06-05T23:16:54.0064507Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o 2025-06-05T23:16:54.0065071Z -- Detecting C compiler ABI info - done 2025-06-05T23:16:54.0065609Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o 2025-06-05T23:16:54.0066228Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:16:54.0066754Z -- Detecting C compile features 2025-06-05T23:16:54.0067268Z -- Detecting C compile features - done 2025-06-05T23:16:54.0067824Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:16:54.0068485Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:16:54.0069065Z -- Setting Clang compiler options 2025-06-05T23:16:54.0070299Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:16:54.0071406Z -- Configuring done (0.3s) 2025-06-05T23:16:54.0072217Z [ 2%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_single.cpp.o 2025-06-05T23:16:54.0073362Z [ 2%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_double.cpp.o 2025-06-05T23:16:54.0074238Z -- Generating done (0.0s) 2025-06-05T23:16:54.0075345Z -- Build files have been written to: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/src/flatcc_external_project-build 2025-06-05T23:16:54.0076721Z [ 2%] Performing build step for 'flatcc_external_project' 2025-06-05T23:16:54.0077352Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o 2025-06-05T23:16:54.0078235Z [ 3%] Building C object src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:16:54.0079272Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o 2025-06-05T23:16:54.0080503Z [ 2%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/xerbla.cpp.o 2025-06-05T23:16:54.0081884Z [ 2%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotm.c.o 2025-06-05T23:16:54.0083005Z [ 6%] Building C object src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:16:54.0083847Z [ 9%] Building C object src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:16:54.0084901Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o 2025-06-05T23:16:54.0086070Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:16:54.0086814Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:16:54.0087462Z -- Detecting CXX compile features 2025-06-05T23:16:54.0088001Z -- Detecting CXX compile features - done 2025-06-05T23:16:54.0088889Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o 2025-06-05T23:16:54.0089723Z -- Looking for strtof_l 2025-06-05T23:16:54.0090576Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:16:54.0091640Z [ 12%] Building C object src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:16:54.0092774Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:16:54.0094568Z [ 2%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-f16c-c8.c.o 2025-06-05T23:16:54.0096834Z [ 2%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9x-minmax-f16c-c8.c.o 2025-06-05T23:16:54.0099250Z [ 2%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-fma3-acc2.c.o 2025-06-05T23:16:54.0101006Z [ 15%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:16:54.0102333Z [ 2%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotmg.c.o 2025-06-05T23:16:54.0103823Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o 2025-06-05T23:16:54.0105252Z [ 2%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotm.c.o 2025-06-05T23:16:54.0106727Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:16:54.0108011Z [ 18%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:16:54.0108875Z -- Looking for strtof_l - found 2025-06-05T23:16:54.0109354Z -- Looking for strtoull_l 2025-06-05T23:16:54.0110215Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotmg.c.o 2025-06-05T23:16:54.0111765Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-06-05T23:16:54.0113389Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-06-05T23:16:54.0114804Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-06-05T23:16:54.0116078Z [ 21%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:16:54.0117724Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-fma3.c.o 2025-06-05T23:16:54.0119691Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/lsame.c.o 2025-06-05T23:16:54.0120700Z [ 21%] Built target flatccrt 2025-06-05T23:16:54.0121422Z [ 24%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/str_set.c.o 2025-06-05T23:16:54.0122467Z [ 27%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/ptr_set.c.o 2025-06-05T23:16:54.0123962Z [ 30%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/symbol_table.c.o 2025-06-05T23:16:54.0125520Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dspmv.c.o 2025-06-05T23:16:54.0127272Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-06-05T23:16:54.0128663Z [ 33%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/scope_table.c.o 2025-06-05T23:16:54.0130538Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ssbmv.c.o 2025-06-05T23:16:54.0132602Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-fma3.c.o 2025-06-05T23:16:54.0134225Z -- Looking for strtoull_l - found 2025-06-05T23:16:54.0134692Z -- Looking for realpath 2025-06-05T23:16:54.0135636Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-06-05T23:16:54.0136557Z [ 3%] Linking C static library libcpuinfo.a 2025-06-05T23:16:54.0137564Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-06-05T23:16:54.0138381Z [ 3%] Built target cpuinfo 2025-06-05T23:16:54.0139167Z [ 36%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/name_table.c.o 2025-06-05T23:16:54.0140375Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chbmv.c.o 2025-06-05T23:16:54.0141810Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/sspmv.c.o 2025-06-05T23:16:54.0143411Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-06-05T23:16:54.0144828Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-06-05T23:16:54.0146311Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhbmv.c.o 2025-06-05T23:16:54.0147546Z [ 39%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/schema_table.c.o 2025-06-05T23:16:54.0148393Z [ 4%] Built target indirection 2025-06-05T23:16:54.0149742Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-fma3.c.o 2025-06-05T23:16:54.0151703Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-06-05T23:16:54.0152855Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-06-05T23:16:54.0154318Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-06-05T23:16:54.0155178Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chpmv.c.o 2025-06-05T23:16:54.0156568Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dsbmv.c.o 2025-06-05T23:16:54.0157563Z [ 6%] Built target microparams-init 2025-06-05T23:16:54.0158367Z [ 42%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/value_set.c.o 2025-06-05T23:16:55.1717641Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhpmv.c.o 2025-06-05T23:16:55.1719245Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-06-05T23:16:55.1720220Z -- Looking for realpath - found 2025-06-05T23:16:55.1720795Z -- CMAKE_CXX_FLAGS: "-DFLATBUFFERS_MAX_ALIGNMENT=1024" 2025-06-05T23:16:55.1721436Z -- Configuring done (1.1s) 2025-06-05T23:16:55.1722136Z [ 45%] Building C object src/compiler/CMakeFiles/flatcc.dir/fileio.c.o 2025-06-05T23:16:55.1723258Z -- Generating done (0.0s) 2025-06-05T23:16:55.1724934Z -- Build files have been written to: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/src/flatbuffers_external_project-build 2025-06-05T23:16:55.1727486Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-u16.c.o 2025-06-05T23:16:55.1729101Z [ 6%] Performing build step for 'flatbuffers_external_project' 2025-06-05T23:16:55.1730663Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dtbmv.c.o 2025-06-05T23:16:55.1732779Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx512skx-u16.c.o 2025-06-05T23:16:55.1734437Z [ 2%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o 2025-06-05T23:16:55.1735471Z [ 48%] Building C object src/compiler/CMakeFiles/flatcc.dir/parser.c.o 2025-06-05T23:16:55.1736438Z [ 5%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o 2025-06-05T23:16:55.1737181Z [ 6%] Built target logging 2025-06-05T23:16:55.1737871Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o 2025-06-05T23:16:55.1739131Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/stbmv.c.o 2025-06-05T23:16:55.1741050Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-f16c-u16.c.o 2025-06-05T23:16:55.1742661Z [ 51%] Building C object src/compiler/CMakeFiles/flatcc.dir/semantics.c.o 2025-06-05T23:16:55.1743870Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ctbmv.c.o 2025-06-05T23:16:55.1745076Z [ 54%] Building C object src/compiler/CMakeFiles/flatcc.dir/coerce.c.o 2025-06-05T23:16:55.1746300Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ztbmv.c.o 2025-06-05T23:16:55.1747563Z [ 57%] Building C object src/compiler/CMakeFiles/flatcc.dir/flatcc.c.o 2025-06-05T23:16:55.1749198Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u1.c.o 2025-06-05T23:16:55.1751111Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/complexdots.c.o 2025-06-05T23:16:55.1753100Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u4.c.o 2025-06-05T23:16:55.1755379Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-u32.c.o 2025-06-05T23:16:55.1757001Z [ 10%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o 2025-06-05T23:16:55.1757859Z [ 13%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_binary.cpp.o 2025-06-05T23:16:55.1758858Z [ 60%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c.c.o 2025-06-05T23:16:55.1759697Z [ 7%] Linking CXX static library libeigen_blas.a 2025-06-05T23:16:55.1760596Z [ 63%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_reader.c.o 2025-06-05T23:16:55.1762374Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-u16.c.o 2025-06-05T23:16:55.1764877Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-gemm/gen/f16-f32acc-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:16:55.1767676Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-gemm/gen/f16-f32acc-gemm-4x16-minmax-avx2-broadcast.c.o 2025-06-05T23:16:55.1769561Z [ 66%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sort.c.o 2025-06-05T23:16:55.1770678Z [ 69%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_builder.c.o 2025-06-05T23:16:55.1772996Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-igemm/gen/f16-f32acc-igemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:16:55.1774744Z [ 7%] Built target eigen_blas 2025-06-05T23:16:55.1775933Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-06-05T23:16:55.1777295Z [ 15%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o 2025-06-05T23:16:55.1779688Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-igemm/gen/f16-f32acc-igemm-4x16-minmax-avx2-broadcast.c.o 2025-06-05T23:16:55.1781676Z [ 72%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_verifier.c.o 2025-06-05T23:16:55.1783611Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-avx512skx-c64.c.o 2025-06-05T23:16:55.1786193Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-f16c-c32.c.o 2025-06-05T23:16:55.1787734Z [ 7%] Built target normalization 2025-06-05T23:16:55.1789280Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-avx512skx-u64-acc4.c.o 2025-06-05T23:16:55.1791445Z [ 7%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-06-05T23:16:55.1792905Z [ 75%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sorter.c.o 2025-06-05T23:16:55.1794749Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-f16c-u32-acc4.c.o 2025-06-05T23:16:55.1797155Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear/gen/f16-ibilinear-fma3-c8.c.o 2025-06-05T23:16:55.1799540Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-maxpool/f16-maxpool-9p8x-minmax-f16c-c8.c.o 2025-06-05T23:16:55.1801252Z [ 18%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_csharp.cpp.o 2025-06-05T23:16:55.1802378Z [ 78%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_parser.c.o 2025-06-05T23:16:55.1804241Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9p8x-minmax-avx2-c8.c.o 2025-06-05T23:16:55.1805961Z [ 21%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o 2025-06-05T23:16:55.1806742Z [ 7%] Built target packing 2025-06-05T23:16:55.1807743Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-06-05T23:16:55.1809237Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-06-05T23:16:55.1810584Z [ 81%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_printer.c.o 2025-06-05T23:16:55.1812437Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9x-minmax-avx2-c8.c.o 2025-06-05T23:16:55.1813952Z [ 7%] Built target allocator 2025-06-05T23:16:55.1814664Z [ 23%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin.cpp.o 2025-06-05T23:16:55.1815844Z [ 26%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin_kmp.cpp.o 2025-06-05T23:16:55.1816979Z [ 84%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/builder.c.o 2025-06-05T23:16:55.1817779Z [ 7%] Built target cache 2025-06-05T23:16:55.1818471Z [ 87%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/emitter.c.o 2025-06-05T23:16:55.1819450Z [ 28%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o 2025-06-05T23:16:55.1820374Z [ 31%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_java.cpp.o 2025-06-05T23:16:55.1822007Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:16:55.1824731Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-u32.c.o 2025-06-05T23:16:55.1827232Z [ 90%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/refmap.c.o 2025-06-05T23:16:55.1829768Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/f16-rmax-f16c-u32.c.o 2025-06-05T23:16:55.1831606Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-06-05T23:16:55.1832979Z [ 93%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatcc.a 2025-06-05T23:16:55.1834076Z [ 34%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_ts.cpp.o 2025-06-05T23:16:55.1835011Z [ 36%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o 2025-06-05T23:16:55.1836189Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-06-05T23:16:55.1837198Z [ 93%] Built target flatcc 2025-06-05T23:16:55.1838147Z [ 96%] Building C object src/cli/CMakeFiles/flatcc_cli.dir/flatcc_cli.c.o 2025-06-05T23:16:55.1838936Z [ 8%] Built target datatype 2025-06-05T23:16:55.1840132Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-06-05T23:16:55.1841789Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-06-05T23:16:55.3635427Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-avx512skx-u64-acc4.c.o 2025-06-05T23:16:55.3636883Z [ 8%] Built target memory 2025-06-05T23:16:55.3638262Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-scalar-u2-acc2.c.o 2025-06-05T23:16:55.3639931Z [100%] Linking C executable /pytorch/executorch/third-party/flatcc/bin/flatcc 2025-06-05T23:16:55.3640749Z [ 8%] Built target microkernel-utils 2025-06-05T23:16:55.3642142Z [ 8%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-06-05T23:16:55.3643455Z [ 8%] Built target mutex 2025-06-05T23:16:55.3644458Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-06-05T23:16:55.3645973Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-06-05T23:16:55.3646915Z [100%] Built target flatcc_cli 2025-06-05T23:16:55.3647531Z [ 8%] Performing install step for 'flatcc_external_project' 2025-06-05T23:16:55.3648407Z [ 39%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o 2025-06-05T23:16:55.3649411Z [ 42%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o 2025-06-05T23:16:55.3651133Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-avx512skx-u64-acc4.c.o 2025-06-05T23:16:55.3652640Z [ 21%] Built target flatccrt 2025-06-05T23:16:55.3653131Z [ 93%] Built target flatcc 2025-06-05T23:16:55.3653639Z [ 8%] Built target operator-utils 2025-06-05T23:16:55.3654193Z [100%] Built target flatcc_cli 2025-06-05T23:16:55.3654728Z [ 8%] Built target operator-run 2025-06-05T23:16:55.3656265Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u2-acc2.c.o 2025-06-05T23:16:55.3658502Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vadd-f16c-u16.c.o 2025-06-05T23:16:55.3659870Z Install the project... 2025-06-05T23:16:55.3660366Z -- Install configuration: "" 2025-06-05T23:16:55.3661653Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc 2025-06-05T23:16:55.3663863Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc.h 2025-06-05T23:16:55.3666522Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_accessors.h 2025-06-05T23:16:55.3669080Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_alloc.h 2025-06-05T23:16:55.3671483Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_assert.h 2025-06-05T23:16:55.3673876Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_builder.h 2025-06-05T23:16:55.3676298Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_emitter.h 2025-06-05T23:16:55.3678684Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_endian.h 2025-06-05T23:16:55.3681127Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_epilogue.h 2025-06-05T23:16:55.3683593Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_flatbuffers.h 2025-06-05T23:16:55.3686049Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_identifier.h 2025-06-05T23:16:55.3688385Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_iov.h 2025-06-05T23:16:55.3690718Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_json_parser.h 2025-06-05T23:16:55.3693198Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_json_printer.h 2025-06-05T23:16:55.3695649Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_portable.h 2025-06-05T23:16:55.3698052Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_prologue.h 2025-06-05T23:16:55.3700443Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_refmap.h 2025-06-05T23:16:55.3702562Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_rtconfig.h 2025-06-05T23:16:55.3704979Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_types.h 2025-06-05T23:16:55.3707307Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_unaligned.h 2025-06-05T23:16:55.3709670Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_verifier.h 2025-06-05T23:16:55.3712075Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_version.h 2025-06-05T23:16:55.3714346Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable 2025-06-05T23:16:55.3716685Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/LICENSE 2025-06-05T23:16:55.3719116Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/README.md 2025-06-05T23:16:55.3721948Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_math.h 2025-06-05T23:16:55.3724335Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_parse.h 2025-06-05T23:16:55.3726731Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_print.h 2025-06-05T23:16:55.3729096Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include 2025-06-05T23:16:55.3731454Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/README 2025-06-05T23:16:55.3733927Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/linux 2025-06-05T23:16:55.3736405Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/linux/endian.h 2025-06-05T23:16:55.3738906Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std 2025-06-05T23:16:55.3741434Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/inttypes.h 2025-06-05T23:16:55.3744124Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdalign.h 2025-06-05T23:16:55.3746783Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdbool.h 2025-06-05T23:16:55.3749472Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdint.h 2025-06-05T23:16:55.3752109Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/paligned_alloc.h 2025-06-05T23:16:55.3754648Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pattributes.h 2025-06-05T23:16:55.3757160Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pbase64.h 2025-06-05T23:16:55.3759612Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pcrt.h 2025-06-05T23:16:55.8025402Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic.h 2025-06-05T23:16:55.8028066Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_pop.h 2025-06-05T23:16:55.8030695Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_push.h 2025-06-05T23:16:55.8033260Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pendian.h 2025-06-05T23:16:55.8035803Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pendian_detect.h 2025-06-05T23:16:55.8038176Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pinline.h 2025-06-05T23:16:55.8041021Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pinttypes.h 2025-06-05T23:16:55.8043524Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pmemaccess.h 2025-06-05T23:16:55.8046038Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/portable.h 2025-06-05T23:16:55.8048486Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/portable_basic.h 2025-06-05T23:16:55.8050980Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pparsefp.h 2025-06-05T23:16:55.8053456Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pparseint.h 2025-06-05T23:16:55.8055906Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pprintfp.h 2025-06-05T23:16:55.8058316Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pprintint.h 2025-06-05T23:16:55.8060794Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/prestrict.h 2025-06-05T23:16:55.8063296Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert.h 2025-06-05T23:16:55.8065882Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert_scope.h 2025-06-05T23:16:55.8068456Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdalign.h 2025-06-05T23:16:55.8070834Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdbool.h 2025-06-05T23:16:55.8073291Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdint.h 2025-06-05T23:16:55.8075767Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/punaligned.h 2025-06-05T23:16:55.8078416Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pversion.h 2025-06-05T23:16:55.8080924Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pwarnings.h 2025-06-05T23:16:55.8083333Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection 2025-06-05T23:16:55.8085716Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/README 2025-06-05T23:16:55.8088350Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_builder.h 2025-06-05T23:16:55.8091184Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_reader.h 2025-06-05T23:16:55.8094232Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_builder.h 2025-06-05T23:16:55.8097021Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_reader.h 2025-06-05T23:16:55.8099523Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_verifier.h 2025-06-05T23:16:55.8101959Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/support 2025-06-05T23:16:55.8104248Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/support/README 2025-06-05T23:16:55.8106636Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/support/cdump.h 2025-06-05T23:16:55.8109023Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/support/elapsed.h 2025-06-05T23:16:55.8111393Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/support/hexdump.h 2025-06-05T23:16:55.8113777Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/support/readfile.h 2025-06-05T23:16:55.8116051Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/lib/libflatccrt.a 2025-06-05T23:16:55.8118203Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/lib/libflatcc.a 2025-06-05T23:16:55.8120274Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/bin/flatcc 2025-06-05T23:16:55.8122453Z [ 8%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-06-05T23:16:55.8123878Z [ 8%] Completed 'flatcc_external_project' 2025-06-05T23:16:55.8124501Z [ 8%] Built target flatcc_external_project 2025-06-05T23:16:55.8125825Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vaddc-f16c-u16.c.o 2025-06-05T23:16:55.8128009Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-f16c-u8.c.o 2025-06-05T23:16:55.8130109Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-f16c-u8.c.o 2025-06-05T23:16:55.8131641Z [ 44%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o 2025-06-05T23:16:55.8132583Z [ 47%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o 2025-06-05T23:16:55.8133344Z [ 8%] Built target reference-ukernels 2025-06-05T23:16:55.8134605Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-06-05T23:16:55.8136780Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmax-f16c-u16.c.o 2025-06-05T23:16:55.8138328Z [ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o 2025-06-05T23:16:55.8139334Z [ 52%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o 2025-06-05T23:16:55.8140339Z [ 55%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_swift.cpp.o 2025-06-05T23:16:55.8141126Z [ 8%] Built target hardware-config 2025-06-05T23:16:55.8142004Z [ 57%] Building CXX object CMakeFiles/flatc.dir/src/file_name_saving_file_manager.cpp.o 2025-06-05T23:16:55.8143301Z [ 60%] Building CXX object CMakeFiles/flatc.dir/src/file_binary_writer.cpp.o 2025-06-05T23:16:55.8144415Z [ 63%] Building CXX object CMakeFiles/flatc.dir/src/file_writer.cpp.o 2025-06-05T23:16:55.8145960Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmaxc-f16c-u16.c.o 2025-06-05T23:16:55.8147445Z [ 65%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o 2025-06-05T23:16:55.8148680Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-06-05T23:16:55.8150605Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmin-f16c-u16.c.o 2025-06-05T23:16:57.0544236Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vminc-f16c-u16.c.o 2025-06-05T23:16:57.0545359Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-06-05T23:16:57.0546484Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmul-f16c-u16.c.o 2025-06-05T23:16:57.0547296Z [ 68%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o 2025-06-05T23:16:57.0548097Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmulc-f16c-u16.c.o 2025-06-05T23:16:57.0549978Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vprelu-f16c-u16.c.o 2025-06-05T23:16:57.0551850Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-06-05T23:16:57.0553667Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-06-05T23:16:57.0555116Z [ 71%] Building CXX object CMakeFiles/flatc.dir/src/binary_annotator.cpp.o 2025-06-05T23:16:57.0556103Z [ 73%] Building CXX object CMakeFiles/flatc.dir/src/annotated_binary_text_gen.cpp.o 2025-06-05T23:16:57.0557655Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vpreluc-f16c-u16.c.o 2025-06-05T23:16:57.0559069Z [ 76%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_lua.cpp.o 2025-06-05T23:16:57.0559905Z [ 78%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_nim.cpp.o 2025-06-05T23:16:57.0561263Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-06-05T23:16:57.0562643Z [ 81%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o 2025-06-05T23:16:57.0564095Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-f16c-u8.c.o 2025-06-05T23:16:57.0565992Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-06-05T23:16:57.0567719Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-06-05T23:16:57.0569453Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-06-05T23:16:57.0570854Z [ 84%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o 2025-06-05T23:16:57.0572239Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-06-05T23:16:57.0574129Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-f16c-u16.c.o 2025-06-05T23:16:57.0576217Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrsubc-f16c-u16.c.o 2025-06-05T23:16:57.0578204Z [ 86%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o 2025-06-05T23:16:57.0579420Z [ 89%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o 2025-06-05T23:16:57.0580863Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-06-05T23:16:57.0582720Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-06-05T23:16:57.0584694Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiff-f16c-u16.c.o 2025-06-05T23:16:57.0586602Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-06-05T23:16:57.0588360Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-06-05T23:16:57.0590000Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-06-05T23:16:57.0591797Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiffc-f16c-u16.c.o 2025-06-05T23:16:57.0593373Z [ 92%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/python_generator.cc.o 2025-06-05T23:16:57.0594930Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsub-f16c-u16.c.o 2025-06-05T23:16:57.0596917Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsubc-f16c-u16.c.o 2025-06-05T23:16:57.0598896Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vclamp/gen/f16-vclamp-f16c-u16.c.o 2025-06-05T23:16:57.0600697Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-06-05T23:16:57.0602405Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-06-05T23:16:57.0604199Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-06-05T23:16:57.0606171Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-velu/gen/f16-velu-avx2-rr1-p3-u16.c.o 2025-06-05T23:16:57.0607750Z [ 94%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/swift_generator.cc.o 2025-06-05T23:16:57.0608812Z [ 97%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/ts_generator.cc.o 2025-06-05T23:16:57.0610373Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vhswish/gen/f16-vhswish-f16c-u16.c.o 2025-06-05T23:16:57.0612174Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-06-05T23:16:57.0614026Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-06-05T23:16:57.0616131Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vlrelu/gen/f16-vlrelu-f16c-u16.c.o 2025-06-05T23:16:57.0618267Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-fma3-2x.c.o 2025-06-05T23:16:57.0620161Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-06-05T23:16:57.0621870Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndd-f16c-u16.c.o 2025-06-05T23:16:57.0623386Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndne-f16c-u16.c.o 2025-06-05T23:16:57.0625160Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndu-f16c-u16.c.o 2025-06-05T23:16:57.0626107Z [100%] Linking CXX executable flatc 2025-06-05T23:16:57.0627044Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndz-f16c-u16.c.o 2025-06-05T23:16:57.0628395Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-06-05T23:16:57.0629827Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrsqrt/gen/f16-vrsqrt-f16c-rsqrt-u32.c.o 2025-06-05T23:16:57.0631283Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-06-05T23:16:57.0632781Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-u32.c.o 2025-06-05T23:16:57.0634402Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-06-05T23:16:57.0635758Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-06-05T23:16:57.0637227Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-f16c-rsqrt-u32.c.o 2025-06-05T23:16:57.0638959Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-fma3-polynomial-p19h9t2-u32.c.o 2025-06-05T23:16:57.0640781Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u72.c.o 2025-06-05T23:16:57.0642503Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vabs-sse2-u16.c.o 2025-06-05T23:16:57.0644046Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vneg-sse2-u16.c.o 2025-06-05T23:16:57.0644988Z [ 13%] Built target operators 2025-06-05T23:16:57.0645628Z [ 13%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:16:57.0646670Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-06-05T23:16:57.8122014Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-06-05T23:16:57.8123322Z [ 13%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:16:57.8124606Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-06-05T23:16:57.8125896Z [ 14%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:16:57.8127536Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vsqr-f16c-u16.c.o 2025-06-05T23:16:57.8129088Z [ 14%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:16:57.8130521Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-06-05T23:16:57.8131971Z [ 14%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:16:57.8133233Z [ 14%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:16:57.8134695Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-06-05T23:16:57.8136483Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-06-05T23:16:57.8138599Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-06-05T23:16:57.8140399Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-scalar-c1.c.o 2025-06-05T23:16:57.8142237Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-06-05T23:16:57.8143560Z [ 14%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:16:57.8144369Z [ 14%] Built target flatccrt 2025-06-05T23:16:57.8145342Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-06-05T23:16:57.8146879Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-06-05T23:16:57.8148430Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-06-05T23:16:57.8150296Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-sse2-c4.c.o 2025-06-05T23:16:57.8152358Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-06-05T23:16:57.8154199Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-06-05T23:16:57.8155762Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-06-05T23:16:57.8157644Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-sse2-c4.c.o 2025-06-05T23:16:57.8159648Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-06-05T23:16:57.8161593Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-06-05T23:16:57.8163510Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-sse2-c4.c.o 2025-06-05T23:16:57.8165254Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-06-05T23:16:57.8166882Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-06-05T23:16:57.8168596Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-06-05T23:16:57.8170554Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:16:57.8172752Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-sse-c4.c.o 2025-06-05T23:16:57.8174970Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o 2025-06-05T23:16:57.8177064Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-sse-c4.c.o 2025-06-05T23:16:57.8179502Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o 2025-06-05T23:16:57.8181872Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.o 2025-06-05T23:16:57.8183813Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-06-05T23:16:57.8185931Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-06-05T23:16:57.8187492Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-06-05T23:16:57.8189486Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx512f.c.o 2025-06-05T23:16:57.8191756Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o 2025-06-05T23:16:57.8193885Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-06-05T23:16:57.8195661Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-06-05T23:16:57.8197297Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-06-05T23:16:57.8198985Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-06-05T23:16:57.8200127Z [100%] Built target flatc 2025-06-05T23:16:57.8201108Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-06-05T23:16:57.8202800Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-06-05T23:16:57.8204133Z [ 17%] Performing install step for 'flatbuffers_external_project' 2025-06-05T23:16:57.8205350Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-06-05T23:16:57.8207187Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o 2025-06-05T23:16:57.8209301Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-avx.c.o 2025-06-05T23:16:57.8211398Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-fma3.c.o 2025-06-05T23:16:57.8213297Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-06-05T23:16:57.8214932Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-06-05T23:16:57.8216547Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-06-05T23:16:57.8217534Z [100%] Built target flatc 2025-06-05T23:16:57.8218747Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-sse.c.o 2025-06-05T23:16:57.8220072Z Install the project... 2025-06-05T23:16:57.8220532Z -- Install configuration: "" 2025-06-05T23:16:57.8221726Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers 2025-06-05T23:16:57.8223831Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/allocator.h 2025-06-05T23:16:57.8226052Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/array.h 2025-06-05T23:16:57.8228275Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/base.h 2025-06-05T23:16:57.8230502Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/buffer.h 2025-06-05T23:16:57.8233029Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/buffer_ref.h 2025-06-05T23:16:57.8235358Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/code_generator.h 2025-06-05T23:16:58.2066294Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/code_generators.h 2025-06-05T23:16:58.2069318Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/default_allocator.h 2025-06-05T23:16:58.2070835Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/detached_buffer.h 2025-06-05T23:16:58.2072319Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/file_manager.h 2025-06-05T23:16:58.2073760Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffer_builder.h 2025-06-05T23:16:58.2075433Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffers.h 2025-06-05T23:16:58.2076811Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatc.h 2025-06-05T23:16:58.2079358Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flex_flat_util.h 2025-06-05T23:16:58.2080921Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flexbuffers.h 2025-06-05T23:16:58.2082185Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/grpc.h 2025-06-05T23:16:58.2083406Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/hash.h 2025-06-05T23:16:58.2084610Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/idl.h 2025-06-05T23:16:58.2085854Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/minireflect.h 2025-06-05T23:16:58.2087128Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch 2025-06-05T23:16:58.2088566Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch/flatc_pch.h 2025-06-05T23:16:58.2089879Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch/pch.h 2025-06-05T23:16:58.2091142Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/reflection.h 2025-06-05T23:16:58.2092443Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/reflection_generated.h 2025-06-05T23:16:58.2093850Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/registry.h 2025-06-05T23:16:58.2095407Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/stl_emulation.h 2025-06-05T23:16:58.2096858Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/string.h 2025-06-05T23:16:58.2098095Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/struct.h 2025-06-05T23:16:58.2099320Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/table.h 2025-06-05T23:16:58.2100549Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/util.h 2025-06-05T23:16:58.2101776Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/vector.h 2025-06-05T23:16:58.2103045Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/vector_downward.h 2025-06-05T23:16:58.2104324Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/verifier.h 2025-06-05T23:16:58.2105653Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config.cmake 2025-06-05T23:16:58.2107042Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/BuildFlatBuffers.cmake 2025-06-05T23:16:58.2108493Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config-version.cmake 2025-06-05T23:16:58.2109790Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/bin/flatc 2025-06-05T23:16:58.2110990Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets.cmake 2025-06-05T23:16:58.2112463Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets-noconfig.cmake 2025-06-05T23:16:58.2113366Z [ 18%] Completed 'flatbuffers_external_project' 2025-06-05T23:16:58.2114239Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.o 2025-06-05T23:16:58.2115098Z [ 18%] Built target flatbuffers_external_project 2025-06-05T23:16:58.2115871Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx.c.o 2025-06-05T23:16:58.2116649Z [ 18%] Generating common_schema headers 2025-06-05T23:16:58.2117247Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-06-05T23:16:58.2118073Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-06-05T23:16:58.2119334Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx512f.c.o 2025-06-05T23:16:58.2120106Z [ 18%] Built target common_schema 2025-06-05T23:16:58.2120466Z [ 19%] Generating xnnpack_schema headers 2025-06-05T23:16:58.2121225Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-fma3.c.o 2025-06-05T23:16:58.2122079Z [ 20%] Built target xnnpack_schema 2025-06-05T23:16:58.2123038Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2025-06-05T23:16:58.2123960Z [ 20%] Generating program_schema headers 2025-06-05T23:16:58.2124279Z [ 20%] Built target program_schema 2025-06-05T23:16:58.2125012Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o 2025-06-05T23:16:58.2126261Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-sse.c.o 2025-06-05T23:16:58.2127016Z [ 20%] Built target subgraph 2025-06-05T23:16:58.2127726Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx.c.o 2025-06-05T23:16:58.2128665Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-06-05T23:16:58.2129298Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-06-05T23:16:58.2130052Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-06-05T23:16:58.2131112Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx512f.c.o 2025-06-05T23:16:58.2132181Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-06-05T23:16:58.2133211Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-fma3.c.o 2025-06-05T23:16:58.2134193Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-06-05T23:16:58.2135925Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o 2025-06-05T23:16:58.2137541Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-06-05T23:16:59.3462453Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o 2025-06-05T23:16:59.3463614Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-06-05T23:16:59.3464821Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-06-05T23:16:59.3466057Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-06-05T23:16:59.3467271Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-06-05T23:16:59.3468480Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-06-05T23:16:59.3470213Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-sse.c.o 2025-06-05T23:16:59.3472619Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l32c16s1r-minmax-avx512f.c.o 2025-06-05T23:16:59.3474560Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-06-05T23:16:59.3475991Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-06-05T23:16:59.3478065Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c8s4r-minmax-fma3.c.o 2025-06-05T23:16:59.3479928Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-06-05T23:16:59.3481177Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-06-05T23:16:59.3483259Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c8s4r-minmax-avx.c.o 2025-06-05T23:16:59.3485162Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-06-05T23:16:59.3486845Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l16c4s4r-minmax-sse.c.o 2025-06-05T23:16:59.3489092Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx.c.o 2025-06-05T23:16:59.3491297Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx512f.c.o 2025-06-05T23:16:59.3493007Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-06-05T23:16:59.3494686Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-fma3.c.o 2025-06-05T23:16:59.3496473Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-06-05T23:16:59.3497616Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-06-05T23:16:59.3498731Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-06-05T23:16:59.3500445Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o 2025-06-05T23:16:59.3502624Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o 2025-06-05T23:16:59.3504689Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-sse.c.o 2025-06-05T23:16:59.3507050Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:16:59.3509028Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.o 2025-06-05T23:16:59.3510939Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.o 2025-06-05T23:16:59.3513432Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-2x4-acc2.c.o 2025-06-05T23:16:59.3515989Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4-acc2.c.o 2025-06-05T23:16:59.3518556Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.o 2025-06-05T23:16:59.3521168Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc3.c.o 2025-06-05T23:16:59.3523728Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:16:59.3525429Z [ 23%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:16:59.3526084Z [ 23%] Built target executorch_core 2025-06-05T23:16:59.3527696Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.o 2025-06-05T23:16:59.3530269Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:16:59.3532745Z [ 23%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-06-05T23:16:59.3533941Z [ 23%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr.cpp.o 2025-06-05T23:16:59.3535195Z [ 23%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr_maker.cpp.o 2025-06-05T23:16:59.3537135Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-4x4.c.o 2025-06-05T23:16:59.3539142Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-06-05T23:16:59.3540815Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-06-05T23:16:59.3542504Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-06-05T23:16:59.3544822Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.o 2025-06-05T23:16:59.3547370Z [ 24%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-06-05T23:16:59.3548605Z [ 24%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-06-05T23:16:59.3549533Z [ 24%] Linking CXX static library libextension_tensor.a 2025-06-05T23:16:59.3551122Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:16:59.3552606Z [ 24%] Built target extension_tensor 2025-06-05T23:16:59.3554005Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4.c.o 2025-06-05T23:16:59.3555875Z [ 25%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-06-05T23:16:59.3557545Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-u24.c.o 2025-06-05T23:16:59.3559333Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-06-05T23:16:59.3560883Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-06-05T23:16:59.3562711Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx512skx-u16.c.o 2025-06-05T23:16:59.3564767Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-f16c-u16.c.o 2025-06-05T23:16:59.3566965Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u4.c.o 2025-06-05T23:16:59.3568341Z [ 27%] Linking CXX static library libexecutorch.a 2025-06-05T23:16:59.3568889Z [ 27%] Built target executorch 2025-06-05T23:16:59.3569991Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u2.c.o 2025-06-05T23:16:59.3571024Z [ 27%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-06-05T23:16:59.3571864Z [ 27%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-06-05T23:16:59.3572852Z [ 27%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-06-05T23:16:59.3574411Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-06-05T23:16:59.3576149Z [ 27%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/file_data_loader.cpp.o 2025-06-05T23:17:01.1670723Z [ 27%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/mmap_data_loader.cpp.o 2025-06-05T23:17:01.1672505Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-06-05T23:17:01.1674314Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-u16.c.o 2025-06-05T23:17:01.1676234Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-06-05T23:17:01.1677976Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-06-05T23:17:01.1678957Z [ 27%] Linking CXX static library libextension_threadpool.a 2025-06-05T23:17:01.1680354Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-u8.c.o 2025-06-05T23:17:01.1681827Z [ 27%] Linking CXX static library libextension_data_loader.a 2025-06-05T23:17:01.1682558Z [ 27%] Built target extension_threadpool 2025-06-05T23:17:01.1683114Z [ 27%] Generating etdump headers 2025-06-05T23:17:01.1683673Z [ 27%] Built target extension_data_loader 2025-06-05T23:17:01.1684279Z [ 27%] Generating bundled_program headers 2025-06-05T23:17:01.1685356Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-06-05T23:17:01.1686797Z [ 27%] Building CXX object devtools/bundled_program/CMakeFiles/bundled_program.dir/bundled_program.cpp.o 2025-06-05T23:17:01.1688046Z [ 27%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/etdump_flatcc.cpp.o 2025-06-05T23:17:01.1689089Z [ 27%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/emitter.cpp.o 2025-06-05T23:17:01.1690706Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:17:01.1692981Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:17:01.1695243Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:17:01.1697320Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-06-05T23:17:01.1698900Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-06-05T23:17:01.1700775Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:17:01.1702252Z [ 27%] Linking CXX static library libbundled_program.a 2025-06-05T23:17:01.1702829Z [ 27%] Built target bundled_program 2025-06-05T23:17:01.1703698Z [ 27%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/buffer_data_sink.cpp.o 2025-06-05T23:17:01.1704857Z [ 27%] Building CXX object CMakeFiles/util.dir/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:17:01.1705936Z [ 27%] Building CXX object CMakeFiles/util.dir/extension/aten_util/aten_bridge.cpp.o 2025-06-05T23:17:01.1707297Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:17:01.1708691Z [ 27%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/BlasKernel.cpp.o 2025-06-05T23:17:01.1710054Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-06-05T23:17:01.1711868Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:17:01.1713658Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-06-05T23:17:01.1715489Z [ 27%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/file_data_sink.cpp.o 2025-06-05T23:17:01.1717173Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o 2025-06-05T23:17:01.1719009Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:17:01.1720606Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-06-05T23:17:01.1722370Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o 2025-06-05T23:17:01.1723621Z [ 28%] Linking CXX static library libetdump.a 2025-06-05T23:17:01.1724150Z [ 28%] Built target etdump 2025-06-05T23:17:01.1725391Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-sse-load1.c.o 2025-06-05T23:17:01.1727542Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o 2025-06-05T23:17:01.1729218Z [ 29%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/CPUBlas.cpp.o 2025-06-05T23:17:01.1730556Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-06-05T23:17:01.1731942Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:17:01.1733332Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:17:01.1734748Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:17:01.1736344Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o 2025-06-05T23:17:01.1737721Z [ 30%] Linking CXX static library libcpublas.a 2025-06-05T23:17:01.1738232Z [ 30%] Built target cpublas 2025-06-05T23:17:01.1739145Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:17:01.1740839Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o 2025-06-05T23:17:01.1742549Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-06-05T23:17:01.1744084Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:17:01.1745657Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:17:01.1746819Z [ 30%] Linking CXX static library libutil.a 2025-06-05T23:17:01.1747414Z [ 30%] Built target util 2025-06-05T23:17:01.1748919Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:17:01.1751092Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:17:01.1752568Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:17:01.1753955Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:17:01.1754986Z [ 30%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:17:01.1755586Z [ 30%] Built target kernels_util_all_deps 2025-06-05T23:17:01.1756508Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:17:01.1757748Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/binary_ops.cpp.o 2025-06-05T23:17:01.1759828Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o 2025-06-05T23:17:01.1761443Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:17:01.1762699Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:17:01.1763968Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:17:01.1765573Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o 2025-06-05T23:17:01.1767186Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:17:01.1768485Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:17:01.1769898Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:17:01.1771710Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2c4-minmax-sse.c.o 2025-06-05T23:17:01.1773306Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:17:01.1774971Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:17:01.1777285Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o 2025-06-05T23:17:01.1778999Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:17:01.1780501Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_c2r.cpp.o 2025-06-05T23:17:01.1781935Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_r2c.cpp.o 2025-06-05T23:17:04.1718879Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o 2025-06-05T23:17:04.1721161Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-sse-load1.c.o 2025-06-05T23:17:04.1723302Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:17:04.1724995Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:17:04.1726677Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:17:04.1728188Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:17:04.1729561Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:17:04.1731488Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-avx-broadcast.c.o 2025-06-05T23:17:04.1733493Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:17:04.1735047Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:17:04.1737188Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-fma3-broadcast.c.o 2025-06-05T23:17:04.1739141Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:17:04.1740795Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:17:04.1743378Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-7x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:17:04.1745470Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:17:04.1747599Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o 2025-06-05T23:17:04.1750033Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-sse-p8.c.o 2025-06-05T23:17:04.1752079Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:17:04.1754064Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o 2025-06-05T23:17:04.1756410Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-sse-c8.c.o 2025-06-05T23:17:04.1758762Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:17:04.1761370Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:17:04.1763464Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:17:04.1765589Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:17:04.1768125Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:17:04.1770243Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:17:04.1772219Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o 2025-06-05T23:17:04.1774193Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:17:04.1776129Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o 2025-06-05T23:17:04.1778278Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:17:04.1780212Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o 2025-06-05T23:17:04.1782174Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:17:04.1783827Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:17:04.1785742Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-sse-load1.c.o 2025-06-05T23:17:04.1787706Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:17:04.1789671Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o 2025-06-05T23:17:04.1791898Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2025-06-05T23:17:04.1794105Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o 2025-06-05T23:17:04.1796265Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_linear.cpp.o 2025-06-05T23:17:04.1797766Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:17:04.1799282Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:17:04.1801336Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:17:04.1803740Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2025-06-05T23:17:04.1805787Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:17:04.1807704Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-06-05T23:17:04.1810066Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2c4-minmax-sse.c.o 2025-06-05T23:17:04.1811908Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:17:04.1813295Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:17:04.1815144Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2025-06-05T23:17:04.1817217Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:17:04.1819198Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o 2025-06-05T23:17:04.1821416Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o 2025-06-05T23:17:04.1823451Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:17:04.1825511Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-sse-load1.c.o 2025-06-05T23:17:04.1828060Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-avx-broadcast.c.o 2025-06-05T23:17:04.1830085Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:17:04.1831642Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:17:04.1833712Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-fma3-broadcast-prfm.c.o 2025-06-05T23:17:04.1836295Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-7x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:17:04.1838316Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:17:04.1839926Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:17:04.1841854Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:17:04.1844311Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-sse-c4.c.o 2025-06-05T23:17:08.4374888Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:17:08.4381356Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:17:08.4383595Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-sse-c4.c.o 2025-06-05T23:17:08.4386100Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o 2025-06-05T23:17:08.4388144Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:17:08.4390190Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-sse-c4.c.o 2025-06-05T23:17:08.4392600Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:17:08.4394711Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:17:08.4396198Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:17:08.4398346Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:17:08.4400865Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:17:08.4403010Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:17:08.4404659Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:17:08.4406662Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:17:08.4409136Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-sse41-dup.c.o 2025-06-05T23:17:08.4411096Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:17:08.4413133Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-avx-broadcast.c.o 2025-06-05T23:17:08.4415813Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-avx2-broadcast.c.o 2025-06-05T23:17:08.4418424Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-fma3-broadcast.c.o 2025-06-05T23:17:08.4420477Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:17:08.4422464Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:17:08.4424886Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-sse41-dup.c.o 2025-06-05T23:17:08.4427476Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:17:08.4429507Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:17:08.4431044Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:17:08.4433472Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-7x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:17:08.4435683Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:17:08.4437262Z [ 38%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:17:08.4439282Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:17:08.4441358Z [ 38%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:17:08.4442870Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:17:08.4444897Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:17:08.4447514Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:17:08.4449554Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:17:08.4451025Z [ 39%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:17:08.4452970Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:17:08.4455734Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:17:08.4457817Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:17:08.4459841Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-sse41-dup.c.o 2025-06-05T23:17:08.4461899Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:17:08.4463811Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:17:08.4466263Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-sse41-dup.c.o 2025-06-05T23:17:08.4468276Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:17:08.4470468Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-avx-broadcast.c.o 2025-06-05T23:17:08.4472472Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:17:08.4474578Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-avx2-broadcast.c.o 2025-06-05T23:17:08.4477341Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-fma3-broadcast.c.o 2025-06-05T23:17:08.4480091Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:17:08.4482227Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-7x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:17:08.4484359Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:17:08.4486562Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-u32.c.o 2025-06-05T23:17:08.4488781Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-u64.c.o 2025-06-05T23:17:08.4490712Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:17:08.4492613Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-u128.c.o 2025-06-05T23:17:08.4495065Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u1.c.o 2025-06-05T23:17:08.4497624Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:17:08.4499596Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:17:08.4501546Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:17:08.4503797Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-u32.c.o 2025-06-05T23:17:10.7379951Z [ 40%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:17:10.7381869Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-u32.c.o 2025-06-05T23:17:10.7383824Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:17:10.7385775Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-u32.c.o 2025-06-05T23:17:10.7388128Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-u64.c.o 2025-06-05T23:17:10.7390061Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:17:10.7392079Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-u128.c.o 2025-06-05T23:17:10.7394081Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:17:10.7395691Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:17:10.7397779Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u1.c.o 2025-06-05T23:17:10.7400272Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:17:10.7402321Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:17:10.7404344Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:17:10.7406336Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:17:10.7408333Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-u32.c.o 2025-06-05T23:17:10.7411065Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc2.c.o 2025-06-05T23:17:10.7413748Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:17:10.7415702Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:17:10.7418116Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc2.c.o 2025-06-05T23:17:10.7421248Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.o 2025-06-05T23:17:10.7424383Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc2.c.o 2025-06-05T23:17:10.7426752Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:17:10.7428371Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:17:10.7430370Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-avx-c32.c.o 2025-06-05T23:17:10.7432831Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-avx512f-c64.c.o 2025-06-05T23:17:10.7435303Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-scalar.c.o 2025-06-05T23:17:10.7437700Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-sse-c16.c.o 2025-06-05T23:17:10.7440056Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-avx-u32-acc4.c.o 2025-06-05T23:17:10.7442411Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-avx512f-u64-acc4.c.o 2025-06-05T23:17:10.7444766Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc4.c.o 2025-06-05T23:17:10.7446788Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:17:10.7448511Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:17:10.7450527Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-sse-u16-acc4.c.o 2025-06-05T23:17:10.7452874Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-avx-u32-acc4.c.o 2025-06-05T23:17:10.7455369Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-avx512f-u64-acc4.c.o 2025-06-05T23:17:10.7457799Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc4.c.o 2025-06-05T23:17:10.7460140Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-sse-u16-acc4.c.o 2025-06-05T23:17:10.7462256Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:17:10.7464011Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:17:10.7465597Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:17:10.7467200Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:17:10.7469356Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-avx-u32-acc4.c.o 2025-06-05T23:17:10.7471261Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:17:10.7473235Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-avx512f-u64-acc4.c.o 2025-06-05T23:17:10.7475542Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2025-06-05T23:17:10.7477540Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:17:10.7479224Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:17:10.7481141Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-sse-u16-acc4.c.o 2025-06-05T23:17:10.7483368Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-sse.c.o 2025-06-05T23:17:10.7485661Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o 2025-06-05T23:17:10.7487853Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o 2025-06-05T23:17:10.7490040Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o 2025-06-05T23:17:10.7492309Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-avx-u16.c.o 2025-06-05T23:17:10.7494494Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-avx512f-u32.c.o 2025-06-05T23:17:10.7496603Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:17:10.7498312Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:17:10.7500275Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-scalar-u8.c.o 2025-06-05T23:17:10.7502398Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-sse-u8.c.o 2025-06-05T23:17:10.7504597Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-avx-u16.c.o 2025-06-05T23:17:10.7506567Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:17:10.7508580Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-avx512f-u32.c.o 2025-06-05T23:17:12.4473331Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u8.c.o 2025-06-05T23:17:12.4475377Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-sse-u8.c.o 2025-06-05T23:17:12.4477498Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-avx-u16.c.o 2025-06-05T23:17:12.4479820Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-avx512f-u32.c.o 2025-06-05T23:17:12.4481672Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:17:12.4483480Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:17:12.4485300Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:17:12.4487028Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:17:12.4489014Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u2.c.o 2025-06-05T23:17:12.4491214Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-sse-u8.c.o 2025-06-05T23:17:12.4493185Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:17:12.4495176Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-avx-u16.c.o 2025-06-05T23:17:12.4497497Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-avx512f-u32.c.o 2025-06-05T23:17:12.4499427Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:17:12.4501340Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u2.c.o 2025-06-05T23:17:12.4503423Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:17:12.4505484Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-sse-u8.c.o 2025-06-05T23:17:12.4507610Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:17:12.4509478Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:17:12.4511400Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-avx-u16.c.o 2025-06-05T23:17:12.4513606Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-avx512f-u32.c.o 2025-06-05T23:17:12.4515522Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:17:12.4517054Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:17:12.4518945Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-scalar-u8.c.o 2025-06-05T23:17:12.4520464Z [ 48%] Linking CXX static library liboptimized_kernels.a 2025-06-05T23:17:12.4521669Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:17:12.4523274Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:17:12.4524686Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:17:12.4526470Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-sse-u8.c.o 2025-06-05T23:17:12.4528601Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-avx-u16.c.o 2025-06-05T23:17:12.4530491Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:17:12.4531610Z [ 48%] Built target optimized_kernels 2025-06-05T23:17:12.4532765Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:17:12.4534784Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:17:12.4536672Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:17:12.4538703Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-avx512f-u32.c.o 2025-06-05T23:17:12.4540753Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:17:12.4542722Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u8.c.o 2025-06-05T23:17:12.4544639Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:17:12.4546185Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:17:12.4547967Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-sse-u8.c.o 2025-06-05T23:17:12.4550131Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-avx-u16.c.o 2025-06-05T23:17:12.4552066Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:17:12.4553989Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-avx512f-u32.c.o 2025-06-05T23:17:12.4555917Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:17:12.4557564Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:17:12.4559320Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:17:12.4561300Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2025-06-05T23:17:12.4563265Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:17:12.4565229Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-sse-u8.c.o 2025-06-05T23:17:12.4567198Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:17:12.4569201Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-avx-u16.c.o 2025-06-05T23:17:12.4571085Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:17:12.4572572Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:17:12.4574116Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:17:12.4575795Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:17:12.4577417Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:17:12.4579193Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-avx512f-u32.c.o 2025-06-05T23:17:12.4581195Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:17:12.4583232Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-scalar-u8.c.o 2025-06-05T23:17:12.4585804Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-sse-u8.c.o 2025-06-05T23:17:12.4588000Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-avx-u16.c.o 2025-06-05T23:17:12.4589998Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:17:12.4591765Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:17:12.4593461Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:17:12.4595081Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:17:12.4596676Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:17:13.8370262Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-avx512f-u32.c.o 2025-06-05T23:17:13.8372579Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-scalar-u8.c.o 2025-06-05T23:17:13.8374619Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:17:13.8376689Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-sse-u8.c.o 2025-06-05T23:17:13.8378920Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-avx-u16.c.o 2025-06-05T23:17:13.8380949Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:17:13.8382778Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:17:13.8384870Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-avx512f-u32.c.o 2025-06-05T23:17:13.8387115Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u8.c.o 2025-06-05T23:17:13.8389136Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:17:13.8391134Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-sse-u8.c.o 2025-06-05T23:17:13.8393336Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-avx-u16.c.o 2025-06-05T23:17:13.8395225Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:17:13.8397200Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-avx512f-u32.c.o 2025-06-05T23:17:13.8399148Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:17:13.8400765Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:17:13.8402701Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u8.c.o 2025-06-05T23:17:13.8404928Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-sse2-u8.c.o 2025-06-05T23:17:13.8406825Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:17:13.8408749Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:17:13.8410930Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-avx-u16.c.o 2025-06-05T23:17:13.8412869Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:17:13.8414761Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-avx512f-u32.c.o 2025-06-05T23:17:13.8417059Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u8.c.o 2025-06-05T23:17:13.8419054Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:17:13.8421032Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-sse2-u8.c.o 2025-06-05T23:17:13.8423237Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-avx-u16.c.o 2025-06-05T23:17:13.8425154Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:17:13.8427171Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-avx512f-u32.c.o 2025-06-05T23:17:13.8429475Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u2.c.o 2025-06-05T23:17:13.8431702Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-sse-u8.c.o 2025-06-05T23:17:13.8433907Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-avx-u16.c.o 2025-06-05T23:17:13.8436249Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-avx512f-u32.c.o 2025-06-05T23:17:13.8438326Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:17:13.8440387Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u8.c.o 2025-06-05T23:17:13.8442362Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:17:13.8443991Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:17:13.8445947Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-sse2-u8.c.o 2025-06-05T23:17:13.8448183Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-avx-u16.c.o 2025-06-05T23:17:13.8450497Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-avx512f-u32.c.o 2025-06-05T23:17:13.8452758Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u8.c.o 2025-06-05T23:17:13.8454652Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:17:13.8456294Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:17:13.8457927Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:17:13.8459900Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-sse-u8.c.o 2025-06-05T23:17:13.8462357Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx-u16.c.o 2025-06-05T23:17:13.8464720Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx512f-u32.c.o 2025-06-05T23:17:13.8467034Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u8.c.o 2025-06-05T23:17:13.8469327Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-sse-u8.c.o 2025-06-05T23:17:13.8471565Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx-u16.c.o 2025-06-05T23:17:13.8473923Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx512f-u32.c.o 2025-06-05T23:17:13.8475998Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:17:13.8477908Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:17:13.8479581Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:17:13.8481339Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:17:13.8483427Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u8.c.o 2025-06-05T23:17:13.8485335Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:17:13.8487268Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-sse-u8.c.o 2025-06-05T23:17:13.8489512Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-avx-u16.c.o 2025-06-05T23:17:13.8491446Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:17:13.8493125Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:17:13.8494991Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-avx512f-u32.c.o 2025-06-05T23:17:13.8497265Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-scalar-u8.c.o 2025-06-05T23:17:15.3840666Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:17:15.3842559Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-sse-u8.c.o 2025-06-05T23:17:15.3844759Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-avx-u16.c.o 2025-06-05T23:17:15.3846967Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-avx512f-u32.c.o 2025-06-05T23:17:15.3848890Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:17:15.3850767Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u8.c.o 2025-06-05T23:17:15.3852607Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:17:15.3854153Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:17:15.3856396Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-sse-u8.c.o 2025-06-05T23:17:15.3858386Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:17:15.3859936Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:17:15.3861790Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-avx-u16.c.o 2025-06-05T23:17:15.3863988Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-avx512f-u16.c.o 2025-06-05T23:17:15.3865840Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:17:15.3867781Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u4.c.o 2025-06-05T23:17:15.3869734Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:17:15.3871630Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-sse-u8.c.o 2025-06-05T23:17:15.3873803Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-avx512f-u32.c.o 2025-06-05T23:17:15.3875982Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-fma3-u16.c.o 2025-06-05T23:17:15.3878421Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2025-06-05T23:17:15.3880602Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-sse-u8.c.o 2025-06-05T23:17:15.3882382Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:17:15.3883949Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:17:15.3885838Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx.c.o 2025-06-05T23:17:15.3888057Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx512f.c.o 2025-06-05T23:17:15.3890025Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:17:15.3891667Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:17:15.3893345Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:17:15.3895360Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-06-05T23:17:15.3897455Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:17:15.3899243Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:17:15.3900899Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:17:15.3902718Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-sse2.c.o 2025-06-05T23:17:15.3904664Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:17:15.3906320Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:17:15.3908629Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx.c.o 2025-06-05T23:17:15.3910994Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx512f.c.o 2025-06-05T23:17:15.3912953Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:17:15.3914561Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:17:15.3916386Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:17:15.3918608Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-06-05T23:17:15.3920925Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-sse2.c.o 2025-06-05T23:17:15.3923185Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:17:15.3925314Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:17:15.3927247Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:17:15.3929125Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:17:15.3931231Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx.c.o 2025-06-05T23:17:15.3933275Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:17:15.3935399Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx512f.c.o 2025-06-05T23:17:15.3938363Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-06-05T23:17:15.3940726Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:17:15.3942507Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:17:15.3944588Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-sse2.c.o 2025-06-05T23:17:15.3946669Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:17:15.3948444Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:17:15.3950033Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:17:15.3952235Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:17:15.3954333Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-u32.c.o 2025-06-05T23:17:15.3956758Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-u56.c.o 2025-06-05T23:17:15.3958838Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:17:15.3960844Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:17:15.3963067Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-u128.c.o 2025-06-05T23:17:15.3965131Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:17:15.3966806Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:17:16.5243746Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:17:16.5244870Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u2.c.o 2025-06-05T23:17:16.5245957Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:17:16.5247087Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u4.c.o 2025-06-05T23:17:16.5248301Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-u12.c.o 2025-06-05T23:17:16.5249449Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-scalar-exp.c.o 2025-06-05T23:17:16.5250428Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:17:16.5251313Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:17:16.5252777Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-avx-rational-12-10-div.c.o 2025-06-05T23:17:16.5254642Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-avx512f-rational-12-10-nr.c.o 2025-06-05T23:17:16.5256616Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-fma3-rational-12-10-div.c.o 2025-06-05T23:17:16.5258069Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-06-05T23:17:16.5259331Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-sse2-rational-12-10-div.c.o 2025-06-05T23:17:16.5260672Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-avx-u16.c.o 2025-06-05T23:17:16.5262128Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-avx512f-u16.c.o 2025-06-05T23:17:16.5264064Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-fma3-u16.c.o 2025-06-05T23:17:16.5265455Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u4.c.o 2025-06-05T23:17:16.5266603Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-sse-u8.c.o 2025-06-05T23:17:16.5267768Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-avx2-rational-3-3-div.c.o 2025-06-05T23:17:16.5268601Z [ 62%] Linking CXX static library liboptimized_portable_kernels.a 2025-06-05T23:17:16.5269481Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-avx512f-rational-3-3-div.c.o 2025-06-05T23:17:16.5271271Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-fma3-rational-3-3-div.c.o 2025-06-05T23:17:16.5272773Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-scalar-rational-3-3-div.c.o 2025-06-05T23:17:16.5274543Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-sse2-rational-3-3-div.c.o 2025-06-05T23:17:16.5276615Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-avx-u16.c.o 2025-06-05T23:17:16.5278984Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-avx512f-u16.c.o 2025-06-05T23:17:16.5296942Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2025-06-05T23:17:16.5299148Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-sse-u8.c.o 2025-06-05T23:17:16.5301175Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-sse41-u8.c.o 2025-06-05T23:17:16.5303338Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2025-06-05T23:17:16.5305040Z [ 62%] Built target optimized_portable_kernels 2025-06-05T23:17:16.5305609Z [ 62%] Merging kernel yaml files 2025-06-05T23:17:16.5306867Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-sse-2x.c.o 2025-06-05T23:17:16.5308861Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u8.c.o 2025-06-05T23:17:16.5310706Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-avx-u16.c.o 2025-06-05T23:17:16.5312550Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-avx512f-u16.c.o 2025-06-05T23:17:16.5314458Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u1.c.o 2025-06-05T23:17:16.5316511Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u4.c.o 2025-06-05T23:17:16.5318588Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-sse2-u8.c.o 2025-06-05T23:17:16.5320585Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-sse41-u8.c.o 2025-06-05T23:17:16.5322552Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-avx-u16.c.o 2025-06-05T23:17:16.5323682Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-avx512f-u16.c.o 2025-06-05T23:17:16.5324833Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u1.c.o 2025-06-05T23:17:16.5325695Z [ 64%] Generating selected_operators.yaml for optimized_native_cpu_ops_lib 2025-06-05T23:17:16.5327317Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u4.c.o 2025-06-05T23:17:16.5329393Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-sse2-u8.c.o 2025-06-05T23:17:16.5331418Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-sse41-u8.c.o 2025-06-05T23:17:16.5333255Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-avx-u16.c.o 2025-06-05T23:17:16.5334373Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-avx512f-u16.c.o 2025-06-05T23:17:16.5335500Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u1.c.o 2025-06-05T23:17:16.5336751Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u4.c.o 2025-06-05T23:17:16.5337877Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-sse2-u8.c.o 2025-06-05T23:17:16.5338955Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-sse41-u8.c.o 2025-06-05T23:17:16.5340605Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-avx-u16.c.o 2025-06-05T23:17:16.5341828Z [ 65%] Generating code for kernel registration 2025-06-05T23:17:16.5343148Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-avx512f-u16.c.o 2025-06-05T23:17:16.5344502Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u1.c.o 2025-06-05T23:17:16.5345652Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u4.c.o 2025-06-05T23:17:16.5346768Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-sse2-u8.c.o 2025-06-05T23:17:16.5348420Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-sse41-u8.c.o 2025-06-05T23:17:17.6440271Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-avx-rsqrt-u16.c.o 2025-06-05T23:17:17.6442393Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-avx512f-rsqrt-u32.c.o 2025-06-05T23:17:17.6444526Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-fma3-rsqrt-u16.c.o 2025-06-05T23:17:17.6446617Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u1.c.o 2025-06-05T23:17:17.6448686Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u4.c.o 2025-06-05T23:17:17.6450795Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-sse-rsqrt-u8.c.o 2025-06-05T23:17:17.6452892Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-u40.c.o 2025-06-05T23:17:17.6455065Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-u40.c.o 2025-06-05T23:17:17.6457594Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u64.c.o 2025-06-05T23:17:17.6460047Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u2.c.o 2025-06-05T23:17:17.6462399Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-u8.c.o 2025-06-05T23:17:17.6465530Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-u8.c.o 2025-06-05T23:17:17.6467854Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-avx-rsqrt-u16.c.o 2025-06-05T23:17:17.6470010Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-rsqrt-u16.c.o 2025-06-05T23:17:17.6472010Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-rsqrt-u16.c.o 2025-06-05T23:17:17.6474099Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u1.c.o 2025-06-05T23:17:17.6476240Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-sse-rsqrt-u12.c.o 2025-06-05T23:17:17.6479133Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-avx-rational-9-8-div.c.o 2025-06-05T23:17:17.6481434Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-avx512f-rational-9-8-nr.c.o 2025-06-05T23:17:17.6483687Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-fma3-rational-9-8-div.c.o 2025-06-05T23:17:17.6485893Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-scalar-rational-9-8-div.c.o 2025-06-05T23:17:17.6488071Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-sse2-rational-9-8-div.c.o 2025-06-05T23:17:17.6490134Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-avx.c.o 2025-06-05T23:17:17.6492050Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-avx512f.c.o 2025-06-05T23:17:17.6493994Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-scalar.c.o 2025-06-05T23:17:17.6496006Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-sse2.c.o 2025-06-05T23:17:17.6497866Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-avx.c.o 2025-06-05T23:17:17.6499778Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-avx512f.c.o 2025-06-05T23:17:17.6501691Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-scalar.c.o 2025-06-05T23:17:17.6503571Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-sse2.c.o 2025-06-05T23:17:17.6505451Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-avx.c.o 2025-06-05T23:17:17.6507359Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-avx512f.c.o 2025-06-05T23:17:17.6509324Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-scalar.c.o 2025-06-05T23:17:17.6511229Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-sse2.c.o 2025-06-05T23:17:17.6513425Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:17:17.6516252Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:17:17.6518730Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:17:17.6521338Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:17:17.6523762Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:17:17.6526482Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:17:17.6529110Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:17:17.6531515Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:17:17.6533799Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:17:17.6536367Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:17:17.6538832Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-avx-ld128.c.o 2025-06-05T23:17:17.6541364Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:17:17.6543995Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-sse41-ld128.c.o 2025-06-05T23:17:17.6546701Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:17:17.6549470Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x4c8-minmax-sse41-ld128.c.o 2025-06-05T23:17:17.6551921Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:17:17.6554209Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:17:17.6556531Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4c8-minmax-avx-ld128.c.o 2025-06-05T23:17:17.6558978Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:17:18.7088836Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:17:18.7091057Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx-madd-prfm.c.o 2025-06-05T23:17:18.7093578Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:17:18.7095968Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:17:18.7097657Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:17:18.7099303Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4c8-minmax-ssse3-madd.c.o 2025-06-05T23:17:18.7101141Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:17:18.7102845Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:17:18.7104471Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:17:18.7106181Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4c8-minmax-ssse3-madd.c.o 2025-06-05T23:17:18.7108511Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:17:18.7110907Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx-madd-prfm.c.o 2025-06-05T23:17:18.7113152Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:17:18.7115557Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-10x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:17:18.7117959Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:17:18.7120649Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:17:18.7123323Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x2-minmax-scalar.c.o 2025-06-05T23:17:18.7125789Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:17:18.7128366Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:17:18.7130794Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:17:18.7133431Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:17:18.7135723Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x2-minmax-scalar.c.o 2025-06-05T23:17:18.7137878Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:17:18.7140481Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:17:18.7142815Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:17:18.7144196Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8c8-minmax-avx2.c.o 2025-06-05T23:17:18.7145575Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-8x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:17:18.7147604Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-10x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:17:18.7150234Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:17:18.7153031Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:17:18.7155723Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x2-minmax-scalar.c.o 2025-06-05T23:17:18.7158307Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4-minmax-scalar.c.o 2025-06-05T23:17:18.7160895Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:17:18.7163453Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:17:18.7166038Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:17:18.7168534Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x2-minmax-scalar.c.o 2025-06-05T23:17:18.7171087Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4-minmax-scalar.c.o 2025-06-05T23:17:18.7173197Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:17:18.7175637Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:17:18.7178668Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8c8-minmax-avx2.c.o 2025-06-05T23:17:18.7180471Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:17:18.7181905Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:17:18.7183650Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:17:18.7186044Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:17:18.7189044Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:17:18.7191476Z [ 72%] Building CXX object configurations/CMakeFiles/optimized_native_cpu_ops_lib.dir/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:17:18.7193991Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:17:18.7196523Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:17:19.4621502Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.o 2025-06-05T23:17:19.4623539Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.o 2025-06-05T23:17:19.4625758Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:17:19.4628102Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:17:19.4630374Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:17:19.4632787Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:17:19.4634279Z [ 74%] Linking CXX static library liboptimized_native_cpu_ops_lib.a 2025-06-05T23:17:19.4635868Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:17:19.4638426Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:17:19.4639959Z [ 74%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:17:19.4641499Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.o 2025-06-05T23:17:19.4644041Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.o 2025-06-05T23:17:19.4646409Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-avx2-u16.c.o 2025-06-05T23:17:19.4648611Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-u32.c.o 2025-06-05T23:17:19.4650737Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-u16.c.o 2025-06-05T23:17:19.4652954Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-u32.c.o 2025-06-05T23:17:19.4655185Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u1.c.o 2025-06-05T23:17:19.4657466Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u4.c.o 2025-06-05T23:17:19.4659615Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-u32.c.o 2025-06-05T23:17:19.4662159Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-u16.c.o 2025-06-05T23:17:19.4664313Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-goi-scalar.c.o 2025-06-05T23:17:19.4666598Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-goi-scalar.c.o 2025-06-05T23:17:19.4669198Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:17:19.4672012Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:17:19.4674802Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:17:19.4677497Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:17:19.4680232Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:17:19.4682625Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:17:19.4685243Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:17:19.4688005Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:17:19.4691151Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:17:19.4693646Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:17:19.4696316Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:17:19.4698893Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:17:19.4702783Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:17:19.4705394Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:17:19.4707849Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:17:19.4710385Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:17:19.4713049Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:17:19.4714795Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:17:19.4716582Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:17:19.4718032Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:17:19.4719484Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:17:19.4720934Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:17:19.4722377Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:17:19.4723796Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:17:19.4725214Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:17:19.4726640Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512vnni-prfm.c.o 2025-06-05T23:17:19.4728042Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:17:19.4729425Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:17:20.3916602Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:17:20.3919439Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:17:20.3922529Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:17:20.3925235Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:17:20.3928098Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:17:20.3930894Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:17:20.3933654Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:17:20.3936496Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:17:20.3939214Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:17:20.3941895Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:17:20.3945033Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:17:20.3947903Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512vnni-prfm.c.o 2025-06-05T23:17:20.3950726Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:17:20.3953602Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:17:20.3956472Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:17:20.3959345Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:17:20.3962100Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:17:20.3964887Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:17:20.3967692Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:17:20.3970434Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:17:20.3973183Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:17:20.3976120Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:17:20.3979127Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:17:20.3981852Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:17:20.3984591Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:17:20.3987334Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:17:20.3989860Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-7x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:17:20.3992705Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:17:20.3995389Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x16c8-gemm-goi-scalar.c.o 2025-06-05T23:17:20.3997985Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-avx2-c64.c.o 2025-06-05T23:17:20.4000594Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-avx512skx-c64.c.o 2025-06-05T23:17:20.4003355Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-sse41-c64.c.o 2025-06-05T23:17:20.4005955Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.o 2025-06-05T23:17:20.4008391Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx2-u64-acc2.c.o 2025-06-05T23:17:20.4010708Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx512skx-u128-acc2.c.o 2025-06-05T23:17:20.4013104Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx512vnni-u128-acc2.c.o 2025-06-05T23:17:20.4015403Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u4.c.o 2025-06-05T23:17:20.4017729Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-ssse3-u32-acc2.c.o 2025-06-05T23:17:20.4020113Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:17:20.4022604Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:17:20.4025213Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:17:20.4027562Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u4.c.o 2025-06-05T23:17:20.4029847Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u1.c.o 2025-06-05T23:17:20.4032228Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:17:20.4034730Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:17:20.4037208Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:17:20.4039790Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:17:20.4042353Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:17:20.4044864Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u1.c.o 2025-06-05T23:17:20.4047265Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u4.c.o 2025-06-05T23:17:20.4049731Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:17:21.1890592Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:17:21.1893036Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-avx-u32.c.o 2025-06-05T23:17:21.1895214Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-avx2-u32.c.o 2025-06-05T23:17:21.1897962Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u1.c.o 2025-06-05T23:17:21.1900188Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u4.c.o 2025-06-05T23:17:21.1902344Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-sse2-u32.c.o 2025-06-05T23:17:21.1904364Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-sse41-u32.c.o 2025-06-05T23:17:21.1906396Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-ssse3-u32.c.o 2025-06-05T23:17:21.1908510Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx-u32.c.o 2025-06-05T23:17:21.1910790Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx2-u32.c.o 2025-06-05T23:17:21.1913151Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u4.c.o 2025-06-05T23:17:21.1915574Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u4.c.o 2025-06-05T23:17:21.1917929Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse2-u32.c.o 2025-06-05T23:17:21.1920188Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse41-u32.c.o 2025-06-05T23:17:21.1922469Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-ssse3-u32.c.o 2025-06-05T23:17:21.1924919Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:17:21.1927478Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u4.c.o 2025-06-05T23:17:21.1930032Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:17:21.1932679Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:17:21.1935341Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:17:21.1938038Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u4.c.o 2025-06-05T23:17:21.1940652Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:17:21.1943360Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:17:21.1946114Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o 2025-06-05T23:17:21.1948789Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-sse2-c8.c.o 2025-06-05T23:17:21.1951441Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o 2025-06-05T23:17:21.1954342Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-sse2-c8.c.o 2025-06-05T23:17:21.1956948Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.o 2025-06-05T23:17:21.1959643Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:17:21.1962349Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:17:21.1965593Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:17:21.1968612Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:17:21.1971409Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:17:21.1974142Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:17:21.1976924Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:17:21.1979750Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:17:21.1982420Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.o 2025-06-05T23:17:21.1985119Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:17:21.1988068Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:17:21.1990826Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:17:21.1993573Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:17:21.1996290Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:17:21.1998963Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:17:21.2001448Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-u32.c.o 2025-06-05T23:17:21.2003776Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-u16.c.o 2025-06-05T23:17:21.2006140Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-u32.c.o 2025-06-05T23:17:21.2008498Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u1.c.o 2025-06-05T23:17:21.2010822Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u4.c.o 2025-06-05T23:17:21.2013512Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-u32.c.o 2025-06-05T23:17:21.2015924Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-u16.c.o 2025-06-05T23:17:21.2018443Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:17:21.2021080Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:17:21.2023674Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:17:22.0915935Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:17:22.0918548Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:17:22.0921104Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:17:22.0923625Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:17:22.0926118Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:17:22.0928690Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:17:22.0931173Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:17:22.0933767Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:17:22.0936369Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:17:22.0938874Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:17:22.0941379Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:17:22.0944067Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:17:22.0946795Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:17:22.0949370Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:17:22.0951986Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:17:22.0954561Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:17:22.0957014Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:17:22.0959976Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:17:22.0962655Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:17:22.0964931Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:17:22.0966245Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:17:22.0967532Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:17:22.0968823Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:17:22.0970094Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:17:22.0971382Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:17:22.0972829Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-ssse3-c64.c.o 2025-06-05T23:17:22.0974664Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-scalar.c.o 2025-06-05T23:17:22.0976609Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-avx2-u64-acc2.c.o 2025-06-05T23:17:22.0977952Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u4.c.o 2025-06-05T23:17:22.0979121Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-sse2-u32-acc2.c.o 2025-06-05T23:17:22.0980316Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:17:22.0982289Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:17:22.0984293Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:17:22.0986364Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u1.c.o 2025-06-05T23:17:22.0988365Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u4.c.o 2025-06-05T23:17:22.0990583Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:17:22.0992545Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:17:22.0994411Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:17:22.0996675Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:17:22.0999017Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:17:22.1001448Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u1.c.o 2025-06-05T23:17:22.1003246Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2025-06-05T23:17:22.1005151Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:17:22.1007110Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:17:22.1008862Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-avx-u32.c.o 2025-06-05T23:17:22.1010491Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-avx2-u32.c.o 2025-06-05T23:17:22.1012262Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u1.c.o 2025-06-05T23:17:22.1013925Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u4.c.o 2025-06-05T23:17:22.1015736Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-sse2-u32.c.o 2025-06-05T23:17:22.1017598Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-sse41-u32.c.o 2025-06-05T23:17:22.1019479Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-ssse3-u32.c.o 2025-06-05T23:17:22.1021328Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx-u32.c.o 2025-06-05T23:17:22.1023192Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx2-u32.c.o 2025-06-05T23:17:22.1025219Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u4.c.o 2025-06-05T23:17:22.8514506Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u4.c.o 2025-06-05T23:17:22.8516645Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse2-u32.c.o 2025-06-05T23:17:22.8518684Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse41-u32.c.o 2025-06-05T23:17:22.8520799Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-ssse3-u32.c.o 2025-06-05T23:17:22.8523018Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:17:22.8525369Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u4.c.o 2025-06-05T23:17:22.8527716Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:17:22.8530175Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:17:22.8532613Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:17:22.8534929Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u4.c.o 2025-06-05T23:17:22.8537829Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:17:22.8540163Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:17:22.8542305Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-avx2.c.o 2025-06-05T23:17:22.8544466Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-avx512f.c.o 2025-06-05T23:17:22.8546623Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-scalar.c.o 2025-06-05T23:17:22.8548847Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o 2025-06-05T23:17:22.8551075Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-sse2-c8.c.o 2025-06-05T23:17:22.8553185Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-sse41-c16.c.o 2025-06-05T23:17:22.8554896Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:17:22.8556119Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse2-c16.c.o 2025-06-05T23:17:22.8557342Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse41-c16.c.o 2025-06-05T23:17:22.8558510Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-avx2-u128.c.o 2025-06-05T23:17:22.8559679Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-avx512skx-u256.c.o 2025-06-05T23:17:22.8560780Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-sse2-u64.c.o 2025-06-05T23:17:22.8561858Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-scalar-u4.c.o 2025-06-05T23:17:22.8562925Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-sse41-u64.c.o 2025-06-05T23:17:22.8564052Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o 2025-06-05T23:17:22.8565222Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-sse2-c8.c.o 2025-06-05T23:17:22.8566427Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-sse41-c16.c.o 2025-06-05T23:17:22.8567558Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2025-06-05T23:17:22.8568708Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:17:22.8569927Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-sse2-c16.c.o 2025-06-05T23:17:22.8571050Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-scalar-u2.c.o 2025-06-05T23:17:22.8572203Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-sse2-u16.c.o 2025-06-05T23:17:22.8573404Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-avx2-u128.c.o 2025-06-05T23:17:22.8574852Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-avx512skx-u256.c.o 2025-06-05T23:17:22.8576325Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2025-06-05T23:17:22.8578275Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-avx2-u16-prfm.c.o 2025-06-05T23:17:22.8579790Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-sse2-u64.c.o 2025-06-05T23:17:22.8581062Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x64-gemm-goi-scalar-int-u4.c.o 2025-06-05T23:17:22.8582386Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-16x16-reuse-switch-avx2.c.o 2025-06-05T23:17:22.8584139Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o 2025-06-05T23:17:22.8585441Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-sse2.c.o 2025-06-05T23:17:22.8586917Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o 2025-06-05T23:17:22.8588110Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-4x4-ssse3.c.o 2025-06-05T23:17:22.8589330Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-avx-u4.c.o 2025-06-05T23:17:22.8590538Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16s4-gemm-goi-avx-u4.c.o 2025-06-05T23:17:22.8591806Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-scalar-float-u4.c.o 2025-06-05T23:17:22.8593413Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2c4-gemm-goi-sse2-u4.c.o 2025-06-05T23:17:22.8594673Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x32-gemm-goi-avx512f-u4-prfm.c.o 2025-06-05T23:17:22.8595972Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x4-gemm-goi-scalar-float-u4.c.o 2025-06-05T23:17:22.8597235Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-sse2-u4.c.o 2025-06-05T23:17:22.8598459Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o 2025-06-05T23:17:22.8599841Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-8x8-reuse-multi-avx.c.o 2025-06-05T23:17:22.8601069Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/x32-transposec-4x4-sse.c.o 2025-06-05T23:17:24.0842806Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-06-05T23:17:24.0844270Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-sse2.c.o 2025-06-05T23:17:24.0845544Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-scalar.c.o 2025-06-05T23:17:24.0846569Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-sse2.c.o 2025-06-05T23:17:24.0847602Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-scalar.c.o 2025-06-05T23:17:24.0848619Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-sse2.c.o 2025-06-05T23:17:24.0849654Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-scalar.c.o 2025-06-05T23:17:24.0850800Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-sse2.c.o 2025-06-05T23:17:24.0852636Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-scalar.c.o 2025-06-05T23:17:24.0855141Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-sse2.c.o 2025-06-05T23:17:24.0857291Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-sse2.c.o 2025-06-05T23:17:24.0858709Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o 2025-06-05T23:17:24.0860010Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x4-reuse-multi-avx.c.o 2025-06-05T23:17:24.0861178Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx-u64.c.o 2025-06-05T23:17:24.0862374Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx2-u128.c.o 2025-06-05T23:17:24.0863768Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-u64.c.o 2025-06-05T23:17:24.0864951Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-u128.c.o 2025-06-05T23:17:24.0866090Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-scalar-u4.c.o 2025-06-05T23:17:24.0867199Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-scalar-f32qp8-u1.c.o 2025-06-05T23:17:24.0868371Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u2.c.o 2025-06-05T23:17:24.0869613Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u2.c.o 2025-06-05T23:17:24.0870823Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u2.c.o 2025-06-05T23:17:24.0872038Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u2.c.o 2025-06-05T23:17:24.0873491Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-sse2.c.o 2025-06-05T23:17:24.0874756Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o 2025-06-05T23:17:24.0876267Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-32x32-reuse-switch-avx2.c.o 2025-06-05T23:17:24.0877459Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-scalar.c.o 2025-06-05T23:17:24.0878725Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-sse2.c.o 2025-06-05T23:17:24.0879743Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-scalar.c.o 2025-06-05T23:17:24.0880759Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-sse2.c.o 2025-06-05T23:17:24.0881764Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-scalar.c.o 2025-06-05T23:17:24.0882780Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-sse2.c.o 2025-06-05T23:17:24.0883798Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-scalar.c.o 2025-06-05T23:17:24.0884817Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-sse2.c.o 2025-06-05T23:17:24.0885872Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o 2025-06-05T23:17:24.0886937Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-scalar-u16.c.o 2025-06-05T23:17:24.0887987Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-sse2-u64.c.o 2025-06-05T23:17:24.0889025Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p16-sse2-u16.c.o 2025-06-05T23:17:24.0890100Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p4-scalar-u16.c.o 2025-06-05T23:17:24.0891255Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-transposev/xx-transposev-1x1-scalar-memcpy.c.o 2025-06-05T23:17:24.0892375Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-06-05T23:17:24.0893403Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-06-05T23:17:24.0894486Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-06-05T23:17:24.0895615Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-06-05T23:17:24.0896735Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-06-05T23:17:24.0898641Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-06-05T23:17:24.0900512Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-06-05T23:17:24.0902467Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-06-05T23:17:24.0904346Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-06-05T23:17:24.0905547Z [ 97%] Linking C static library libmicrokernels-prod.a 2025-06-05T23:17:24.0906213Z [ 97%] Built target microkernels-prod 2025-06-05T23:17:24.0906787Z [ 97%] Generating build_identifier.c 2025-06-05T23:17:24.0908180Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-06-05T23:17:24.0910053Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-06-05T23:17:24.0911840Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-06-05T23:17:24.0913447Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-06-05T23:17:24.0915042Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-06-05T23:17:24.0916715Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-06-05T23:17:24.0918351Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-06-05T23:17:24.0920051Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-06-05T23:17:24.0921652Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-06-05T23:17:24.0923101Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-06-05T23:17:24.0924699Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-06-05T23:17:33.9918289Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-06-05T23:17:33.9920188Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-06-05T23:17:33.9922023Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-06-05T23:17:33.9923884Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-06-05T23:17:33.9925970Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-06-05T23:17:33.9927952Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-06-05T23:17:33.9929541Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-06-05T23:17:33.9931252Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-06-05T23:17:33.9933065Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-06-05T23:17:33.9935018Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-06-05T23:17:33.9937030Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-06-05T23:17:33.9938858Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-06-05T23:17:33.9940673Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-06-05T23:17:33.9942477Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-06-05T23:17:33.9944269Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-06-05T23:17:33.9946025Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-06-05T23:17:33.9947630Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-06-05T23:17:33.9949348Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-06-05T23:17:33.9951035Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-06-05T23:17:33.9952206Z [100%] Linking CXX static library libXNNPACK.a 2025-06-05T23:17:33.9952793Z [100%] Built target XNNPACK 2025-06-05T23:17:33.9953813Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNExecutor.cpp.o 2025-06-05T23:17:33.9955380Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNCompiler.cpp.o 2025-06-05T23:17:33.9956958Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNWeightsCache.cpp.o 2025-06-05T23:17:33.9958538Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNHeader.cpp.o 2025-06-05T23:17:33.9960090Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNPACKBackend.cpp.o 2025-06-05T23:17:33.9961799Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/profiling/XNNProfiler.cpp.o 2025-06-05T23:17:33.9963043Z [100%] Linking CXX static library libxnnpack_backend.a 2025-06-05T23:17:33.9963737Z [100%] Built target xnnpack_backend 2025-06-05T23:17:33.9964682Z [100%] Building CXX object CMakeFiles/portable_lib.dir/extension/pybindings/pybindings.cpp.o 2025-06-05T23:17:33.9965954Z [100%] Linking CXX shared library _portable_lib.cpython-310-x86_64-linux-gnu.so 2025-06-05T23:17:33.9966817Z [100%] Built target portable_lib 2025-06-05T23:17:33.9967839Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_util.dir/runtime/util/json_util.cpp.o 2025-06-05T23:17:33.9969574Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/memory_buffer.cpp.o 2025-06-05T23:17:33.9971526Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/inmemory_filesystem.cpp.o 2025-06-05T23:17:33.9973595Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/reversed_memory_stream.cpp.o 2025-06-05T23:17:33.9975657Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/memory_stream.cpp.o 2025-06-05T23:17:33.9976945Z Linking CXX static library libcoreml_util.a 2025-06-05T23:17:33.9977754Z Built target coreml_util 2025-06-05T23:17:33.9978330Z Linking CXX static library libcoreml_inmemoryfs.a 2025-06-05T23:17:33.9979010Z Built target coreml_inmemoryfs 2025-06-05T23:17:33.9980301Z Building CXX object backends/apple/coreml/CMakeFiles/executorchcoreml.dir/runtime/inmemoryfs/inmemory_filesystem_py.cpp.o 2025-06-05T23:17:33.9982427Z Building CXX object backends/apple/coreml/CMakeFiles/executorchcoreml.dir/runtime/inmemoryfs/inmemory_filesystem_utils.cpp.o 2025-06-05T23:17:33.9984115Z Linking CXX shared library executorchcoreml.cpython-310-x86_64-linux-gnu.so 2025-06-05T23:17:33.9985002Z Built target executorchcoreml 2025-06-05T23:17:33.9985595Z [ 1%] Built target flatbuffers_external_project 2025-06-05T23:17:33.9986257Z [ 1%] Built target flatcc_external_project 2025-06-05T23:17:33.9986858Z [ 2%] Built target pthreadpool 2025-06-05T23:17:33.9987386Z [ 3%] Built target xnnpack_schema 2025-06-05T23:17:33.9987972Z [ 3%] Built target common_schema 2025-06-05T23:17:33.9988523Z [ 4%] Built target cpuinfo 2025-06-05T23:17:33.9989004Z [ 6%] Built target logging 2025-06-05T23:17:33.9989508Z [ 7%] Built target flatccrt 2025-06-05T23:17:33.9990006Z [ 7%] Built target indirection 2025-06-05T23:17:33.9990562Z [ 7%] Built target microparams-init 2025-06-05T23:17:33.9991126Z [ 8%] Built target eigen_blas 2025-06-05T23:17:33.9991656Z [ 8%] Built target normalization 2025-06-05T23:17:33.9992195Z [ 8%] Built target datatype 2025-06-05T23:17:33.9992702Z [ 8%] Built target memory 2025-06-05T23:17:33.9993228Z [ 8%] Built target microkernel-utils 2025-06-05T23:17:33.9993980Z [ 8%] Built target mutex 2025-06-05T23:17:33.9996244Z [ 8%] Built target operator-utils 2025-06-05T23:17:33.9997036Z [ 8%] Built target reference-ukernels 2025-06-05T23:17:33.9997622Z [ 8%] Built target program_schema 2025-06-05T23:17:33.9998181Z [ 8%] Built target operator-run 2025-06-05T23:17:33.9998732Z [ 8%] Built target hardware-config 2025-06-05T23:17:33.9999280Z [ 8%] Built target packing 2025-06-05T23:17:33.9999790Z [ 8%] Built target allocator 2025-06-05T23:17:34.0000282Z [ 8%] Built target cache 2025-06-05T23:17:34.0000765Z [ 11%] Built target operators 2025-06-05T23:17:34.0001299Z [ 12%] Built target executorch_core 2025-06-05T23:17:34.0001872Z [ 12%] Built target extension_data_loader 2025-06-05T23:17:34.0002496Z [ 12%] Built target extension_threadpool 2025-06-05T23:17:34.0003077Z [ 12%] Built target extension_tensor 2025-06-05T23:17:34.0003648Z [ 13%] Built target executorch 2025-06-05T23:17:34.0004148Z [ 16%] Built target subgraph 2025-06-05T23:17:34.0004665Z [ 16%] Built target bundled_program 2025-06-05T23:17:34.0005201Z [ 17%] Built target cpublas 2025-06-05T23:17:34.0005702Z [ 17%] Built target etdump 2025-06-05T23:17:34.0006223Z [ 18%] Built target kernels_util_all_deps 2025-06-05T23:17:34.0006790Z [ 18%] Built target util 2025-06-05T23:17:34.0007247Z [ 19%] Built target optimized_kernels 2025-06-05T23:17:34.0007854Z [ 34%] Built target optimized_portable_kernels 2025-06-05T23:17:34.0008521Z [ 34%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:17:34.0009159Z [ 97%] Built target microkernels-prod 2025-06-05T23:17:34.0009723Z [100%] Built target XNNPACK 2025-06-05T23:17:34.0010235Z [100%] Built target xnnpack_backend 2025-06-05T23:17:34.0010790Z [100%] Built target portable_lib 2025-06-05T23:17:34.0011815Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fallback.cpp.o 2025-06-05T23:17:34.0013518Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fast_hadamard_transform.cpp.o 2025-06-05T23:17:34.0015185Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_sdpa.cpp.o 2025-06-05T23:17:34.0016858Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_update_cache.cpp.o 2025-06-05T23:17:34.0018630Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/spinquant/fast_hadamard_transform.cpp.o 2025-06-05T23:17:34.0022085Z [100%] Building C object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/spinquant/third-party/FFHT/fht_avx.c.o 2025-06-05T23:17:34.0023817Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_sdpa_aot.cpp.o 2025-06-05T23:17:34.0025548Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fast_hadamard_transform_aten.cpp.o 2025-06-05T23:17:34.0027263Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_tile_crop.cpp.o 2025-06-05T23:17:34.0028889Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_tile_crop_aot.cpp.o 2025-06-05T23:17:34.0030118Z [100%] Linking CXX shared library libcustom_ops_aot_lib.so 2025-06-05T23:17:34.0030777Z [100%] Built target custom_ops_aot_lib 2025-06-05T23:17:34.0031414Z [ 1%] Built target flatbuffers_external_project 2025-06-05T23:17:34.0032057Z [ 1%] Built target flatcc_external_project 2025-06-05T23:17:34.0032666Z [ 2%] Built target pthreadpool 2025-06-05T23:17:34.0033175Z [ 3%] Built target cpuinfo 2025-06-05T23:17:34.0033684Z [ 4%] Built target xnnpack_schema 2025-06-05T23:17:34.0034230Z [ 4%] Built target common_schema 2025-06-05T23:17:34.0034781Z [ 6%] Built target eigen_blas 2025-06-05T23:17:34.0035291Z [ 7%] Built target flatccrt 2025-06-05T23:17:34.0035791Z [ 8%] Built target logging 2025-06-05T23:17:34.0036307Z [ 8%] Built target indirection 2025-06-05T23:17:34.0037004Z [ 8%] Built target microparams-init 2025-06-05T23:17:34.0037577Z [ 8%] Built target normalization 2025-06-05T23:17:34.0038184Z [ 8%] Built target datatype 2025-06-05T23:17:34.0038699Z [ 8%] Built target program_schema 2025-06-05T23:17:34.0039261Z [ 8%] Built target reference-ukernels 2025-06-05T23:17:34.0039850Z [ 8%] Built target hardware-config 2025-06-05T23:17:34.0040401Z [ 8%] Built target allocator 2025-06-05T23:17:34.0040910Z [ 8%] Built target packing 2025-06-05T23:17:34.0041411Z [ 8%] Built target cache 2025-06-05T23:17:34.0041874Z [ 8%] Built target memory 2025-06-05T23:17:34.0042391Z [ 8%] Built target microkernel-utils 2025-06-05T23:17:34.0042931Z [ 8%] Built target mutex 2025-06-05T23:17:34.0043442Z [ 8%] Built target operator-utils 2025-06-05T23:17:34.0043994Z [ 8%] Built target operator-run 2025-06-05T23:17:34.0044543Z [ 9%] Built target executorch_core 2025-06-05T23:17:34.0045082Z [ 12%] Built target operators 2025-06-05T23:17:34.0045631Z [ 12%] Built target extension_data_loader 2025-06-05T23:17:34.0046215Z [ 12%] Built target extension_threadpool 2025-06-05T23:17:34.0046828Z [ 12%] Built target extension_tensor 2025-06-05T23:17:39.7170616Z [ 13%] Built target executorch 2025-06-05T23:17:39.7171023Z [ 15%] Built target subgraph 2025-06-05T23:17:39.7171310Z [ 16%] Built target kernels_util_all_deps 2025-06-05T23:17:39.7171636Z [ 16%] Built target bundled_program 2025-06-05T23:17:39.7171917Z [ 18%] Built target cpublas 2025-06-05T23:17:39.7172183Z [ 18%] Built target etdump 2025-06-05T23:17:39.7172459Z [ 19%] Built target optimized_kernels 2025-06-05T23:17:39.7172745Z [ 19%] Built target util 2025-06-05T23:17:39.7173029Z [ 33%] Built target optimized_portable_kernels 2025-06-05T23:17:39.7173370Z [ 33%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:17:39.7173713Z [ 95%] Built target microkernels-prod 2025-06-05T23:17:39.7174003Z [ 97%] Built target XNNPACK 2025-06-05T23:17:39.7174301Z [ 97%] Built target xnnpack_backend 2025-06-05T23:17:39.7174590Z [ 97%] Built target portable_lib 2025-06-05T23:17:39.7175255Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:17:39.7176106Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_add.cpp.o 2025-06-05T23:17:39.7176963Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:17:39.7178004Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:17:39.7179079Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding.cpp.o 2025-06-05T23:17:39.7180129Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:17:39.7181338Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:17:39.7182293Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:17:39.7183213Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:17:39.7184121Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_quantize.cpp.o 2025-06-05T23:17:39.7184842Z [ 98%] Linking CXX static library libquantized_pybind_kernels_lib.a 2025-06-05T23:17:39.7185326Z [ 98%] Built target quantized_pybind_kernels_lib 2025-06-05T23:17:39.7185939Z [ 98%] Generating selected_operators.yaml for quantized_ops_pybind_lib 2025-06-05T23:17:39.7186377Z [ 98%] Generating code for kernel registration 2025-06-05T23:17:39.7187257Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_pybind_lib.dir/quantized_ops_pybind_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:17:39.7188432Z [ 98%] Linking CXX static library libquantized_ops_pybind_lib.a 2025-06-05T23:17:39.7188996Z [ 98%] Built target quantized_ops_pybind_lib 2025-06-05T23:17:39.7189407Z [ 98%] Generating selected_operators.yaml for quantized_ops_aot_lib 2025-06-05T23:17:39.7192422Z quantized_decomposed::add.out quantized_decomposed::choose_qparams.Tensor_out quantized_decomposed::choose_qparams_per_token_asymmetric.out quantized_decomposed::dequantize_per_channel.out quantized_decomposed::dequantize_per_tensor.out quantized_decomposed::dequantize_per_tensor.Tensor_out quantized_decomposed::dequantize_per_token.out quantized_decomposed::mixed_linear.out quantized_decomposed::mixed_mm.out quantized_decomposed::quantize_per_channel.out quantized_decomposed::quantize_per_tensor.out quantized_decomposed::quantize_per_tensor.Tensor_out quantized_decomposed::quantize_per_token.out 2025-06-05T23:17:39.7195107Z [ 98%] Generating code for kernel registration 2025-06-05T23:17:39.7195827Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/quantized_ops_aot_lib/RegisterCPUCustomOps.cpp.o 2025-06-05T23:17:39.7196901Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/quantized_ops_aot_lib/RegisterSchema.cpp.o 2025-06-05T23:17:39.7197799Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:17:39.7198712Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_add.cpp.o 2025-06-05T23:17:39.7199506Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:17:39.7200404Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:17:39.7201214Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding.cpp.o 2025-06-05T23:17:39.7202038Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:17:39.7202868Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:17:39.7203686Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:17:39.7204534Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:17:39.7205466Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_quantize.cpp.o 2025-06-05T23:17:39.7206337Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/__/portable/cpu/util/reduce_util.cpp.o 2025-06-05T23:17:39.7207396Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/__/__/runtime/core/exec_aten/util/tensor_util_aten.cpp.o 2025-06-05T23:17:39.7208148Z [100%] Linking CXX shared library libquantized_ops_aot_lib.so 2025-06-05T23:17:39.7208546Z [100%] Built target quantized_ops_aot_lib 2025-06-05T23:17:39.7208841Z running build_py 2025-06-05T23:17:39.7209182Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:17:39.7209814Z copying src/executorch/codegen/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:17:39.7210575Z copying src/executorch/codegen/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:17:39.7211353Z copying src/executorch/codegen/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:17:39.7212181Z copying src/executorch/codegen/parse.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:17:39.7212813Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools 2025-06-05T23:17:39.7213446Z copying src/executorch/devtools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools 2025-06-05T23:17:39.7214175Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7214836Z copying src/executorch/exir/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7215844Z copying src/executorch/exir/_warnings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7216576Z copying src/executorch/exir/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7217315Z copying src/executorch/exir/control_flow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7218075Z copying src/executorch/exir/delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7218978Z copying src/executorch/exir/dim_order_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7219757Z copying src/executorch/exir/dynamic_shape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7220524Z copying src/executorch/exir/error.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7221296Z copying src/executorch/exir/graph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7222037Z copying src/executorch/exir/graph_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7222859Z copying src/executorch/exir/lowered_backend_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7223638Z copying src/executorch/exir/memory.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7224402Z copying src/executorch/exir/memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7225293Z copying src/executorch/exir/pass_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7226049Z copying src/executorch/exir/pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7226822Z copying src/executorch/exir/print_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7227597Z copying src/executorch/exir/scalar_type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7228337Z copying src/executorch/exir/schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7229049Z copying src/executorch/exir/sym_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7229772Z copying src/executorch/exir/tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7230480Z copying src/executorch/exir/tracer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7231197Z copying src/executorch/exir/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7232022Z copying src/executorch/exir/version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7232740Z copying src/executorch/exir/wrap.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:39.7233346Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime 2025-06-05T23:17:39.7233966Z copying src/executorch/runtime/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime 2025-06-05T23:17:39.7234590Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:17:39.7235283Z copying src/executorch/util/activation_memory_profiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:17:39.7236108Z copying src/executorch/util/collect_env.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:17:39.7625687Z copying src/executorch/util/python_profiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:17:39.7626418Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:17:39.7627143Z copying src/executorch/backends/arm/arm_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:17:39.7628351Z copying src/executorch/backends/arm/arm_vela.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:17:39.7629257Z copying src/executorch/backends/arm/ethosu_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:17:39.7630227Z copying src/executorch/backends/arm/ethosu_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:17:39.7631184Z copying src/executorch/backends/arm/process_node.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:17:39.7632101Z copying src/executorch/backends/arm/tosa_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:17:39.7633273Z copying src/executorch/backends/arm/tosa_mapping.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:17:39.7634302Z copying src/executorch/backends/arm/tosa_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:17:39.7635271Z copying src/executorch/backends/arm/tosa_quant_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:17:39.7636237Z copying src/executorch/backends/arm/tosa_specification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:17:39.7637162Z copying src/executorch/backends/arm/tosa_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:17:39.7638064Z copying src/executorch/backends/arm/vgf_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:17:39.7638983Z copying src/executorch/backends/arm/vgf_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:17:39.7639735Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:17:39.7640796Z copying src/executorch/backends/example/example_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:17:39.7641855Z copying src/executorch/backends/example/example_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:17:39.7642920Z copying src/executorch/backends/example/example_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:17:39.7643986Z copying src/executorch/backends/example/test_example_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:17:39.7644798Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:17:39.7645586Z copying src/executorch/backends/mediatek/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:17:39.7646573Z copying src/executorch/backends/mediatek/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:17:39.7647607Z copying src/executorch/backends/mediatek/preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:17:39.7648474Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:17:39.7649392Z copying src/executorch/backends/nxp/neutron_node_extraction.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:17:39.7650743Z copying src/executorch/backends/nxp/neutron_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:17:39.7651988Z copying src/executorch/backends/nxp/neutron_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:17:39.7652954Z copying src/executorch/backends/nxp/nxp_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:17:39.7653693Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:17:39.7654470Z copying src/executorch/backends/openvino/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:17:39.7655741Z copying src/executorch/backends/openvino/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:17:39.7656822Z copying src/executorch/backends/openvino/preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:17:39.7657677Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm 2025-06-05T23:17:39.7658668Z copying src/executorch/backends/qualcomm/qnn_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm 2025-06-05T23:17:39.7659622Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:17:39.7660441Z copying src/executorch/backends/transforms/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:17:39.7661476Z copying src/executorch/backends/transforms/addmm_mm_to_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:17:39.7662591Z copying src/executorch/backends/transforms/convert_dtype_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:17:39.7663693Z copying src/executorch/backends/transforms/decompose_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:17:39.7664827Z copying src/executorch/backends/transforms/duplicate_dynamic_quant_chain.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:17:39.7666000Z copying src/executorch/backends/transforms/fuse_batch_norm_with_conv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:17:39.7667109Z copying src/executorch/backends/transforms/fuse_conv_with_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:17:39.7668309Z copying src/executorch/backends/transforms/fuse_view_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:17:39.7669626Z copying src/executorch/backends/transforms/mean_to_sum_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:17:39.7670806Z copying src/executorch/backends/transforms/rank_0_to_rank_1.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:17:39.7672096Z copying src/executorch/backends/transforms/remove_clone_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:17:39.7673233Z copying src/executorch/backends/transforms/remove_getitem_op.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:17:39.7674474Z copying src/executorch/backends/transforms/replace_scalar_with_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:17:39.7675621Z copying src/executorch/backends/transforms/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:17:39.7676817Z copying src/executorch/backends/transforms/view_copy_to_squeeze_unsqueeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:17:39.7677943Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:17:39.7678764Z copying src/executorch/backends/vulkan/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:17:39.7679767Z copying src/executorch/backends/vulkan/custom_ops_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:17:39.7680858Z copying src/executorch/backends/vulkan/op_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:17:39.7681847Z copying src/executorch/backends/vulkan/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:17:39.7683079Z copying src/executorch/backends/vulkan/vulkan_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:17:39.7684143Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:17:39.7685133Z copying src/executorch/backends/xnnpack/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:17:39.7686259Z copying src/executorch/backends/xnnpack/xnnpack_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:17:39.7687136Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-06-05T23:17:39.7687982Z copying src/executorch/backends/apple/mps/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-06-05T23:17:39.7689014Z copying src/executorch/backends/apple/mps/mps_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-06-05T23:17:39.7689916Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler 2025-06-05T23:17:39.7690862Z copying src/executorch/backends/apple/coreml/compiler/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler 2025-06-05T23:17:39.7692208Z copying src/executorch/backends/apple/coreml/compiler/coreml_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler 2025-06-05T23:17:39.7693205Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition 2025-06-05T23:17:39.7694391Z copying src/executorch/backends/apple/coreml/partition/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition 2025-06-05T23:17:39.8053228Z copying src/executorch/backends/apple/coreml/partition/coreml_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition 2025-06-05T23:17:39.8054303Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer 2025-06-05T23:17:39.8055338Z copying src/executorch/backends/apple/coreml/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer 2025-06-05T23:17:39.8056649Z copying src/executorch/backends/apple/coreml/quantizer/coreml_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer 2025-06-05T23:17:39.8057649Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test 2025-06-05T23:17:39.8058717Z copying src/executorch/backends/apple/coreml/test/test_coreml_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test 2025-06-05T23:17:39.8059996Z copying src/executorch/backends/apple/coreml/test/test_coreml_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test 2025-06-05T23:17:39.8060987Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/runtime/test 2025-06-05T23:17:39.8062061Z copying src/executorch/backends/apple/coreml/runtime/test/export_stateful_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/runtime/test 2025-06-05T23:17:39.8063095Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8064016Z copying src/executorch/backends/apple/mps/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8065350Z copying src/executorch/backends/apple/mps/operators/activation_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8066586Z copying src/executorch/backends/apple/mps/operators/binary_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8067794Z copying src/executorch/backends/apple/mps/operators/clamp_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8069003Z copying src/executorch/backends/apple/mps/operators/constant_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8070503Z copying src/executorch/backends/apple/mps/operators/convolution_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8071861Z copying src/executorch/backends/apple/mps/operators/indexing_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8073109Z copying src/executorch/backends/apple/mps/operators/linear_algebra_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8074368Z copying src/executorch/backends/apple/mps/operators/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8075625Z copying src/executorch/backends/apple/mps/operators/normalization_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8076870Z copying src/executorch/backends/apple/mps/operators/op_clone.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8078400Z copying src/executorch/backends/apple/mps/operators/op_getitem.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8079622Z copying src/executorch/backends/apple/mps/operators/op_quant_dequant.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8080848Z copying src/executorch/backends/apple/mps/operators/op_skip_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8082040Z copying src/executorch/backends/apple/mps/operators/pad_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8083226Z copying src/executorch/backends/apple/mps/operators/pooling_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8084435Z copying src/executorch/backends/apple/mps/operators/range_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8085743Z copying src/executorch/backends/apple/mps/operators/reduce_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8086942Z copying src/executorch/backends/apple/mps/operators/shape_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8088131Z copying src/executorch/backends/apple/mps/operators/unary_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:17:39.8089042Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition 2025-06-05T23:17:39.8089963Z copying src/executorch/backends/apple/mps/partition/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition 2025-06-05T23:17:39.8091184Z copying src/executorch/backends/apple/mps/partition/mps_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition 2025-06-05T23:17:39.8092308Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization 2025-06-05T23:17:39.8093338Z copying src/executorch/backends/apple/mps/serialization/mps_graph_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization 2025-06-05T23:17:39.8094688Z copying src/executorch/backends/apple/mps/serialization/mps_graph_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization 2025-06-05T23:17:39.8095761Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:17:39.8096628Z copying src/executorch/backends/apple/mps/test/test_mps.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:17:39.8097749Z copying src/executorch/backends/apple/mps/test/test_mps_binary_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:17:39.8099259Z copying src/executorch/backends/apple/mps/test/test_mps_indexing_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:17:39.8100435Z copying src/executorch/backends/apple/mps/test/test_mps_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:17:39.8101571Z copying src/executorch/backends/apple/mps/test/test_mps_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:17:39.8102727Z copying src/executorch/backends/apple/mps/test/test_mps_unary_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:17:39.8103858Z copying src/executorch/backends/apple/mps/test/test_mps_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:17:39.8104740Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils 2025-06-05T23:17:39.8105711Z copying src/executorch/backends/apple/mps/utils/mps_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils 2025-06-05T23:17:39.8106844Z copying src/executorch/backends/apple/mps/utils/quant_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils 2025-06-05T23:17:39.8107709Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8108500Z copying src/executorch/backends/arm/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8109492Z copying src/executorch/backends/arm/_passes/_debug_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8110615Z copying src/executorch/backends/arm/_passes/annotate_channels_last_dim_order_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8111786Z copying src/executorch/backends/arm/_passes/annotate_decomposed_matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8113044Z copying src/executorch/backends/arm/_passes/arm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8114071Z copying src/executorch/backends/arm/_passes/arm_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8115103Z copying src/executorch/backends/arm/_passes/arm_pass_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8116173Z copying src/executorch/backends/arm/_passes/broadcast_args_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8117238Z copying src/executorch/backends/arm/_passes/cast_int64_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8118279Z copying src/executorch/backends/arm/_passes/cast_to_int32_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8119552Z copying src/executorch/backends/arm/_passes/conv1d_unsqueeze_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8464949Z copying src/executorch/backends/arm/_passes/convert_any_default_dim_dims_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8466160Z copying src/executorch/backends/arm/_passes/convert_expand_copy_to_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8467323Z copying src/executorch/backends/arm/_passes/convert_full_like_to_full_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8468432Z copying src/executorch/backends/arm/_passes/convert_int_pow_to_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8469535Z copying src/executorch/backends/arm/_passes/convert_minmax_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8470882Z copying src/executorch/backends/arm/_passes/convert_split_to_slice.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8472115Z copying src/executorch/backends/arm/_passes/convert_squeezes_to_view.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8485679Z copying src/executorch/backends/arm/_passes/convert_to_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8487032Z copying src/executorch/backends/arm/_passes/decompose_cosine_similarity_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8488188Z copying src/executorch/backends/arm/_passes/decompose_div_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8489272Z copying src/executorch/backends/arm/_passes/decompose_gelu_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8490418Z copying src/executorch/backends/arm/_passes/decompose_groupnorm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8491578Z copying src/executorch/backends/arm/_passes/decompose_layernorm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8492689Z copying src/executorch/backends/arm/_passes/decompose_leaky_relu_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8493958Z copying src/executorch/backends/arm/_passes/decompose_linalg_vector_norm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8495162Z copying src/executorch/backends/arm/_passes/decompose_linear_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8496287Z copying src/executorch/backends/arm/_passes/decompose_meandim_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8497388Z copying src/executorch/backends/arm/_passes/decompose_ne_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8498440Z copying src/executorch/backends/arm/_passes/decompose_select.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8499527Z copying src/executorch/backends/arm/_passes/decompose_silu_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8500763Z copying src/executorch/backends/arm/_passes/decompose_softmax_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8501910Z copying src/executorch/backends/arm/_passes/decompose_softmax_unstable_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8503062Z copying src/executorch/backends/arm/_passes/decompose_sqrt_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8504137Z copying src/executorch/backends/arm/_passes/decompose_sum_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8505216Z copying src/executorch/backends/arm/_passes/decompose_var_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8506355Z copying src/executorch/backends/arm/_passes/fold_qdq_with_annotated_qparams_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8507495Z copying src/executorch/backends/arm/_passes/fuse_batchnorm2d_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8508686Z copying src/executorch/backends/arm/_passes/fuse_constant_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8510080Z copying src/executorch/backends/arm/_passes/fuse_equal_placeholders_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8511235Z copying src/executorch/backends/arm/_passes/fuse_quantized_activation_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8512369Z copying src/executorch/backends/arm/_passes/insert_rescales_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8513434Z copying src/executorch/backends/arm/_passes/insert_table_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8514500Z copying src/executorch/backends/arm/_passes/match_arg_ranks_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8515745Z copying src/executorch/backends/arm/_passes/match_where_self_arg_dtype_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8516841Z copying src/executorch/backends/arm/_passes/mm_to_bmm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8517880Z copying src/executorch/backends/arm/_passes/remove_clone_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8518959Z copying src/executorch/backends/arm/_passes/replace_inf_values_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8520089Z copying src/executorch/backends/arm/_passes/replace_scalar_with_tensor_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8521243Z copying src/executorch/backends/arm/_passes/scalars_to_attribute_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8522363Z copying src/executorch/backends/arm/_passes/size_adjust_conv2d_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8523590Z copying src/executorch/backends/arm/_passes/unsqueeze_before_repeat_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8524782Z copying src/executorch/backends/arm/_passes/unsqueeze_scalar_placeholders_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:17:39.8525755Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:17:39.8526682Z copying src/executorch/backends/arm/operator_support/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:17:39.8527910Z copying src/executorch/backends/arm/operator_support/convolution_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:17:39.8529166Z copying src/executorch/backends/arm/operator_support/ethos_u55_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:17:39.8530418Z copying src/executorch/backends/arm/operator_support/minmax_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:17:39.8531812Z copying src/executorch/backends/arm/operator_support/pool_2d_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:17:39.8533046Z copying src/executorch/backends/arm/operator_support/reduce_sum_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:17:39.8534314Z copying src/executorch/backends/arm/operator_support/right_shift_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:17:39.8535623Z copying src/executorch/backends/arm/operator_support/sin_cos_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:17:39.8536871Z copying src/executorch/backends/arm/operator_support/slice_copy_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:17:39.8538387Z copying src/executorch/backends/arm/operator_support/to_copy_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:17:39.8539655Z copying src/executorch/backends/arm/operator_support/tosa_supported_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:17:39.8540623Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8541469Z copying src/executorch/backends/arm/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8925516Z copying src/executorch/backends/arm/operators/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8926698Z copying src/executorch/backends/arm/operators/op_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8927777Z copying src/executorch/backends/arm/operators/op_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8928873Z copying src/executorch/backends/arm/operators/op_amax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8929965Z copying src/executorch/backends/arm/operators/op_amin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8931043Z copying src/executorch/backends/arm/operators/op_any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8932177Z copying src/executorch/backends/arm/operators/op_avg_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8933344Z copying src/executorch/backends/arm/operators/op_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8934445Z copying src/executorch/backends/arm/operators/op_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8935563Z copying src/executorch/backends/arm/operators/op_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8936667Z copying src/executorch/backends/arm/operators/op_constant_pad_nd.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8937765Z copying src/executorch/backends/arm/operators/op_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8938831Z copying src/executorch/backends/arm/operators/op_cos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8939927Z copying src/executorch/backends/arm/operators/op_eq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8940977Z copying src/executorch/backends/arm/operators/op_erf.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8942024Z copying src/executorch/backends/arm/operators/op_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8943190Z copying src/executorch/backends/arm/operators/op_ge.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8944230Z copying src/executorch/backends/arm/operators/op_gt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8945252Z copying src/executorch/backends/arm/operators/op_le.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8946290Z copying src/executorch/backends/arm/operators/op_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8947330Z copying src/executorch/backends/arm/operators/op_lt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8948622Z copying src/executorch/backends/arm/operators/op_max_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8949721Z copying src/executorch/backends/arm/operators/op_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8950814Z copying src/executorch/backends/arm/operators/op_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8951892Z copying src/executorch/backends/arm/operators/op_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8953038Z copying src/executorch/backends/arm/operators/op_neg.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8954160Z copying src/executorch/backends/arm/operators/op_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8955346Z copying src/executorch/backends/arm/operators/op_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8956430Z copying src/executorch/backends/arm/operators/op_reciprocal.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8957522Z copying src/executorch/backends/arm/operators/op_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8958603Z copying src/executorch/backends/arm/operators/op_rescale.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8959717Z copying src/executorch/backends/arm/operators/op_rshift_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8960805Z copying src/executorch/backends/arm/operators/op_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8961896Z copying src/executorch/backends/arm/operators/op_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8962959Z copying src/executorch/backends/arm/operators/op_sin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8964096Z copying src/executorch/backends/arm/operators/op_slice.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8965274Z copying src/executorch/backends/arm/operators/op_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8966310Z copying src/executorch/backends/arm/operators/op_sum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8967367Z copying src/executorch/backends/arm/operators/op_table.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8968433Z copying src/executorch/backends/arm/operators/op_tanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8969494Z copying src/executorch/backends/arm/operators/op_to_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8970605Z copying src/executorch/backends/arm/operators/op_to_dim_order_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8971734Z copying src/executorch/backends/arm/operators/op_transpose.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8972963Z copying src/executorch/backends/arm/operators/op_upsample_bilinear2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8974147Z copying src/executorch/backends/arm/operators/op_upsample_nearest2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8975424Z copying src/executorch/backends/arm/operators/op_view.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8976576Z copying src/executorch/backends/arm/operators/op_where.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8977898Z copying src/executorch/backends/arm/operators/operator_validation_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8979133Z copying src/executorch/backends/arm/operators/ops_binary.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8980368Z copying src/executorch/backends/arm/operators/ops_identity.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8981465Z copying src/executorch/backends/arm/operators/ops_unary.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:17:39.8982296Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:17:39.8983140Z copying src/executorch/backends/arm/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:17:39.8984213Z copying src/executorch/backends/arm/quantizer/arm_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:17:39.8985345Z copying src/executorch/backends/arm/quantizer/arm_quantizer_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:17:39.8986540Z copying src/executorch/backends/arm/quantizer/quantization_annotator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:17:39.8987741Z copying src/executorch/backends/arm/quantizer/quantization_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:17:39.8988673Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/scripts 2025-06-05T23:17:39.8989568Z copying src/executorch/backends/arm/scripts/parse_test_names.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/scripts 2025-06-05T23:17:39.8990409Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:17:39.8991185Z copying src/executorch/backends/arm/test/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:17:39.9391966Z copying src/executorch/backends/arm/test/conftest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:17:39.9393470Z copying src/executorch/backends/arm/test/runner_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:17:39.9394479Z copying src/executorch/backends/arm/test/test_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:17:39.9395250Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/util 2025-06-05T23:17:39.9396095Z copying src/executorch/backends/arm/util/arm_model_evaluator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/util 2025-06-05T23:17:39.9396933Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:17:39.9397826Z copying src/executorch/backends/arm/test/misc/test_bn_relu_folding_qat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:17:39.9399141Z copying src/executorch/backends/arm/test/misc/test_custom_partition.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:17:39.9400285Z copying src/executorch/backends/arm/test/misc/test_debug_feats.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:17:39.9401430Z copying src/executorch/backends/arm/test/misc/test_dim_order_guards.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:17:39.9402589Z copying src/executorch/backends/arm/test/misc/test_lifted_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:17:39.9403966Z copying src/executorch/backends/arm/test/misc/test_model_evaluator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:17:39.9405149Z copying src/executorch/backends/arm/test/misc/test_multiple_delegates.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:17:39.9406555Z copying src/executorch/backends/arm/test/misc/test_multiple_outputs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:17:39.9407869Z copying src/executorch/backends/arm/test/misc/test_non_persistent_buffers.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:17:39.9409263Z copying src/executorch/backends/arm/test/misc/test_partition_decomposed_quantized_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:17:39.9410552Z copying src/executorch/backends/arm/test/misc/test_tosa_spec.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:17:39.9411526Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:17:39.9412485Z copying src/executorch/backends/arm/test/models/test_conformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:17:39.9413797Z copying src/executorch/backends/arm/test/models/test_deit_tiny_arm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:17:39.9415038Z copying src/executorch/backends/arm/test/models/test_dl3_arm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:17:39.9416175Z copying src/executorch/backends/arm/test/models/test_llama.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:17:39.9417297Z copying src/executorch/backends/arm/test/models/test_lstm_arm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:17:39.9418479Z copying src/executorch/backends/arm/test/models/test_mobilenet_v2_arm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:17:39.9419672Z copying src/executorch/backends/arm/test/models/test_mobilenet_v3_arm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:17:39.9420862Z copying src/executorch/backends/arm/test/models/test_nn_functional.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:17:39.9422035Z copying src/executorch/backends/arm/test/models/test_nn_modules.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:17:39.9423304Z copying src/executorch/backends/arm/test/models/test_torch_functions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:17:39.9424477Z copying src/executorch/backends/arm/test/models/test_w2l_arm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:17:39.9425338Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9426159Z copying src/executorch/backends/arm/test/ops/test_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9427198Z copying src/executorch/backends/arm/test/ops/test_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9428257Z copying src/executorch/backends/arm/test/ops/test_alias_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9429338Z copying src/executorch/backends/arm/test/ops/test_amax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9430392Z copying src/executorch/backends/arm/test/ops/test_amin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9431687Z copying src/executorch/backends/arm/test/ops/test_any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9432748Z copying src/executorch/backends/arm/test/ops/test_arange.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9433785Z copying src/executorch/backends/arm/test/ops/test_at.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9434851Z copying src/executorch/backends/arm/test/ops/test_avg_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9435954Z copying src/executorch/backends/arm/test/ops/test_batch_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9437035Z copying src/executorch/backends/arm/test/ops/test_bitwise.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9438148Z copying src/executorch/backends/arm/test/ops/test_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9439296Z copying src/executorch/backends/arm/test/ops/test_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9440338Z copying src/executorch/backends/arm/test/ops/test_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9441396Z copying src/executorch/backends/arm/test/ops/test_clone.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9442480Z copying src/executorch/backends/arm/test/ops/test_constant_pad_nd.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9443583Z copying src/executorch/backends/arm/test/ops/test_conv1d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9444653Z copying src/executorch/backends/arm/test/ops/test_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9445841Z copying src/executorch/backends/arm/test/ops/test_conv3d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9446929Z copying src/executorch/backends/arm/test/ops/test_conv_combos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9448067Z copying src/executorch/backends/arm/test/ops/test_conv_constant_pad_nd.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9449162Z copying src/executorch/backends/arm/test/ops/test_cos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9450246Z copying src/executorch/backends/arm/test/ops/test_depthwise_conv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9451322Z copying src/executorch/backends/arm/test/ops/test_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9452426Z copying src/executorch/backends/arm/test/ops/test_eq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9453487Z copying src/executorch/backends/arm/test/ops/test_erf.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9454513Z copying src/executorch/backends/arm/test/ops/test_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9455643Z copying src/executorch/backends/arm/test/ops/test_expand.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9456702Z copying src/executorch/backends/arm/test/ops/test_eye.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9457731Z copying src/executorch/backends/arm/test/ops/test_full.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9868390Z copying src/executorch/backends/arm/test/ops/test_ge.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9869555Z copying src/executorch/backends/arm/test/ops/test_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9870623Z copying src/executorch/backends/arm/test/ops/test_group_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9871685Z copying src/executorch/backends/arm/test/ops/test_gt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9872760Z copying src/executorch/backends/arm/test/ops/test_hardsigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9873861Z copying src/executorch/backends/arm/test/ops/test_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9874969Z copying src/executorch/backends/arm/test/ops/test_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9876274Z copying src/executorch/backends/arm/test/ops/test_layer_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9877390Z copying src/executorch/backends/arm/test/ops/test_le.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9878615Z copying src/executorch/backends/arm/test/ops/test_leaky_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9879732Z copying src/executorch/backends/arm/test/ops/test_linalg_vector_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9880853Z copying src/executorch/backends/arm/test/ops/test_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9881915Z copying src/executorch/backends/arm/test/ops/test_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9883150Z copying src/executorch/backends/arm/test/ops/test_logical.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9884243Z copying src/executorch/backends/arm/test/ops/test_logsoftmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9885367Z copying src/executorch/backends/arm/test/ops/test_lshift.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9886500Z copying src/executorch/backends/arm/test/ops/test_lt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9887556Z copying src/executorch/backends/arm/test/ops/test_matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9888622Z copying src/executorch/backends/arm/test/ops/test_max_pool.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9889930Z copying src/executorch/backends/arm/test/ops/test_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9891075Z copying src/executorch/backends/arm/test/ops/test_mean_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9892141Z copying src/executorch/backends/arm/test/ops/test_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9893195Z copying src/executorch/backends/arm/test/ops/test_mm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9894224Z copying src/executorch/backends/arm/test/ops/test_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9895327Z copying src/executorch/backends/arm/test/ops/test_ne.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9896693Z copying src/executorch/backends/arm/test/ops/test_neg.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9897862Z copying src/executorch/backends/arm/test/ops/test_ones.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9899029Z copying src/executorch/backends/arm/test/ops/test_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9900170Z copying src/executorch/backends/arm/test/ops/test_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9901328Z copying src/executorch/backends/arm/test/ops/test_reciprocal.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9902540Z copying src/executorch/backends/arm/test/ops/test_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9903680Z copying src/executorch/backends/arm/test/ops/test_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9904982Z copying src/executorch/backends/arm/test/ops/test_rshift.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9906103Z copying src/executorch/backends/arm/test/ops/test_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9907303Z copying src/executorch/backends/arm/test/ops/test_scalar_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9908467Z copying src/executorch/backends/arm/test/ops/test_scalars.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9909651Z copying src/executorch/backends/arm/test/ops/test_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9910763Z copying src/executorch/backends/arm/test/ops/test_select.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9912108Z copying src/executorch/backends/arm/test/ops/test_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9913325Z copying src/executorch/backends/arm/test/ops/test_sigmoid_16bit.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9914497Z copying src/executorch/backends/arm/test/ops/test_sigmoid_32bit.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9915697Z copying src/executorch/backends/arm/test/ops/test_silu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9916784Z copying src/executorch/backends/arm/test/ops/test_sin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9917947Z copying src/executorch/backends/arm/test/ops/test_slice.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9919177Z copying src/executorch/backends/arm/test/ops/test_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9920351Z copying src/executorch/backends/arm/test/ops/test_split.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9921468Z copying src/executorch/backends/arm/test/ops/test_sqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9922630Z copying src/executorch/backends/arm/test/ops/test_squeeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9923750Z copying src/executorch/backends/arm/test/ops/test_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9924909Z copying src/executorch/backends/arm/test/ops/test_sum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9926338Z copying src/executorch/backends/arm/test/ops/test_tanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9927401Z copying src/executorch/backends/arm/test/ops/test_to_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9928469Z copying src/executorch/backends/arm/test/ops/test_unary.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9929533Z copying src/executorch/backends/arm/test/ops/test_unsqueeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9930682Z copying src/executorch/backends/arm/test/ops/test_upsample_bilinear2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9931848Z copying src/executorch/backends/arm/test/ops/test_upsample_nearest2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9933123Z copying src/executorch/backends/arm/test/ops/test_var.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9934169Z copying src/executorch/backends/arm/test/ops/test_view.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9935270Z copying src/executorch/backends/arm/test/ops/test_where.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:39.9936327Z copying src/executorch/backends/arm/test/ops/test_zeros.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:17:40.0220074Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0221080Z copying src/executorch/backends/arm/test/passes/test_broadcast_args_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0222333Z copying src/executorch/backends/arm/test/passes/test_cast_int64_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0223599Z copying src/executorch/backends/arm/test/passes/test_convert_expand_copy_to_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0224865Z copying src/executorch/backends/arm/test/passes/test_convert_int_pow_to_muls.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0226308Z copying src/executorch/backends/arm/test/passes/test_convert_split_to_slice.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0227554Z copying src/executorch/backends/arm/test/passes/test_convert_to_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0228825Z copying src/executorch/backends/arm/test/passes/test_decompose_cosine_similarity_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0230133Z copying src/executorch/backends/arm/test/passes/test_decompose_div_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0231379Z copying src/executorch/backends/arm/test/passes/test_decompose_layernorm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0232810Z copying src/executorch/backends/arm/test/passes/test_decompose_linalg_vector_norm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0234174Z copying src/executorch/backends/arm/test/passes/test_decompose_meandim_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0235497Z copying src/executorch/backends/arm/test/passes/test_decompose_softmax_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0236974Z copying src/executorch/backends/arm/test/passes/test_decompose_var_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0238188Z copying src/executorch/backends/arm/test/passes/test_fold_qdq_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0239391Z copying src/executorch/backends/arm/test/passes/test_fuse_batchnorm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0240829Z copying src/executorch/backends/arm/test/passes/test_fuse_constant_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0242137Z copying src/executorch/backends/arm/test/passes/test_fuse_equal_placeholders_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0243422Z copying src/executorch/backends/arm/test/passes/test_insert_table_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0244687Z copying src/executorch/backends/arm/test/passes/test_ioquantization_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0245919Z copying src/executorch/backends/arm/test/passes/test_remove_clone_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0247273Z copying src/executorch/backends/arm/test/passes/test_rescale_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0248522Z copying src/executorch/backends/arm/test/passes/test_unsqueeze_before_repeat_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:17:40.0249491Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/quantizer 2025-06-05T23:17:40.0250468Z copying src/executorch/backends/arm/test/quantizer/test_generic_annotater.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/quantizer 2025-06-05T23:17:40.0251433Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-06-05T23:17:40.0252286Z copying src/executorch/backends/arm/test/tester/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-06-05T23:17:40.0253436Z copying src/executorch/backends/arm/test/tester/analyze_output_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-06-05T23:17:40.0254796Z copying src/executorch/backends/arm/test/tester/arm_tester.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-06-05T23:17:40.0256014Z copying src/executorch/backends/arm/test/tester/test_pipeline.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-06-05T23:17:40.0256919Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tosautil 2025-06-05T23:17:40.0257806Z copying src/executorch/backends/arm/test/tosautil/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tosautil 2025-06-05T23:17:40.0258771Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib 2025-06-05T23:17:40.0259880Z copying src/executorch/backends/arm/third-party/serialization_lib/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib 2025-06-05T23:17:40.0261062Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:17:40.0262571Z copying src/executorch/backends/arm/third-party/serialization_lib/python/serializer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:17:40.0264349Z copying src/executorch/backends/arm/third-party/serialization_lib/python/serializer/tosa_serializer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:17:40.0265858Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0267279Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/ArithmeticRightShiftAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0269071Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/Attribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0270959Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/AxisAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0272691Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/ClampAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0274441Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/CondIfAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0276170Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/ConvAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0278224Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/CustomAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0279914Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/DType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0281593Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/FFTAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0283377Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/FullyConnectedAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0285326Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/MatMulAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0287148Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/MulAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0497898Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/NegateAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0499635Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/Op.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0501290Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/PadAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0503012Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/PoolAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0504830Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/RFFTAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0506865Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/RescaleAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0508620Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/ReshapeAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0510375Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0512087Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeMode.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0514047Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/SliceAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0515776Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TableAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0517478Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TileAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0519200Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaBasicBlock.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0520899Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaGraph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0522588Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaOperator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0524377Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaRegion.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0526198Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaTensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0527978Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0529795Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeConvAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0531541Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/Version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0533238Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/WhileLoopAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0535004Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:40.0536282Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts 2025-06-05T23:17:40.0537721Z copying src/executorch/backends/arm/third-party/serialization_lib/test/scripts/test_npy_fileio.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts 2025-06-05T23:17:40.0539064Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit 2025-06-05T23:17:40.0540429Z copying src/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit/xunit.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit 2025-06-05T23:17:40.0541796Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:17:40.0543249Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conanfile.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:17:40.0544723Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan 2025-06-05T23:17:40.0546218Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/build.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan 2025-06-05T23:17:40.0547759Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:17:40.0549426Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/generate_goldens.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:17:40.0551724Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/golden_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:17:40.0553289Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:17:40.0554812Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:17:40.0556771Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:17:40.0558294Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:17:40.0560134Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/sample_binary.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:17:40.0561700Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:17:40.0563330Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check-grpc-generated-code.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:17:40.0565476Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check_generate_code.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:17:40.0783979Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_code.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:17:40.0786139Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_grpc_examples.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:17:40.0788207Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:17:40.0789752Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:40.0791329Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test_generated.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:40.0793411Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_flexbuffers_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:40.0795467Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:40.0797301Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package 2025-06-05T23:17:40.0799135Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package/conanfile.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package 2025-06-05T23:17:40.0800824Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp 2025-06-05T23:17:40.0802448Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp 2025-06-05T23:17:40.0804308Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp 2025-06-05T23:17:40.0805989Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp 2025-06-05T23:17:40.0807636Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart 2025-06-05T23:17:40.0809273Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart 2025-06-05T23:17:40.0810888Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go 2025-06-05T23:17:40.0812695Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go 2025-06-05T23:17:40.0814476Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java 2025-06-05T23:17:40.0816408Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java 2025-06-05T23:17:40.0818035Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin 2025-06-05T23:17:40.0819749Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin 2025-06-05T23:17:40.0821525Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster 2025-06-05T23:17:40.0823202Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster 2025-06-05T23:17:40.0824854Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua 2025-06-05T23:17:40.0826526Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua 2025-06-05T23:17:40.0828416Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim 2025-06-05T23:17:40.0830135Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim 2025-06-05T23:17:40.0831767Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php 2025-06-05T23:17:40.0833380Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php 2025-06-05T23:17:40.0834988Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:17:40.0836586Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Galaxy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:17:40.0838663Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Universe.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:17:40.0840744Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:17:40.0842806Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:17:40.0844415Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust 2025-06-05T23:17:40.0846128Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust 2025-06-05T23:17:40.0847826Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift 2025-06-05T23:17:40.0849482Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift 2025-06-05T23:17:40.0851097Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts 2025-06-05T23:17:40.0852711Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts 2025-06-05T23:17:40.0978251Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests 2025-06-05T23:17:40.0979895Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests/grpctest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests 2025-06-05T23:17:40.0981601Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter 2025-06-05T23:17:40.0983454Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/client.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter 2025-06-05T23:17:40.0986013Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/server.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter 2025-06-05T23:17:40.0987902Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:17:40.0989892Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloReply.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:17:40.0992637Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloRequest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:17:40.0995235Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:17:40.0997837Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/greeter_grpc_fb.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:17:40.0999868Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame 2025-06-05T23:17:40.1001885Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame 2025-06-05T23:17:40.1004448Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/MonsterExtra.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame 2025-06-05T23:17:40.1006835Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame 2025-06-05T23:17:40.1008641Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:17:40.1010567Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:17:40.1013075Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInC.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:17:40.1015778Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:17:40.1018254Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:17:40.1020108Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC 2025-06-05T23:17:40.1021992Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC 2025-06-05T23:17:40.1024541Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC 2025-06-05T23:17:40.1026407Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars 2025-06-05T23:17:40.1028370Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/OptionalByte.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars 2025-06-05T23:17:40.1030953Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/ScalarStuff.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars 2025-06-05T23:17:40.1033584Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars 2025-06-05T23:17:40.1035614Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1037558Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1040166Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1042775Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1045463Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1048179Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayStruct.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1180334Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayTable.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1182946Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1185489Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1188185Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1190756Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedStruct.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1193321Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1196019Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1198837Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1201413Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1204269Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1206932Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1209460Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestEnum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1212329Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1215092Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1217653Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1220169Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1222858Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/monster_test_grpc_fb.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:40.1224836Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2 2025-06-05T23:17:40.1226780Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2 2025-06-05T23:17:40.1229322Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2 2025-06-05T23:17:40.1231440Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:17:40.1233550Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:17:40.1236337Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Color.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:17:40.1239163Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/NestedUnionTest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:17:40.1242020Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:17:40.1244916Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:17:40.1247811Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Vec3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:17:40.1250825Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:17:40.1436907Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:17:40.1439057Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:17:40.1441886Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:17:40.1444703Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:17:40.1447524Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:17:40.1450669Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:17:40.1452954Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:40.1454811Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:40.1457315Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/_version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:40.1459703Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:40.1461955Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/compat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:40.1464186Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/encode.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:40.1466451Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/flexbuffers.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:40.1468759Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/number_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:40.1471013Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/packer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:40.1473521Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/table.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:40.1475847Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:40.1477742Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:40.1479695Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/AdvancedFeatures.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:40.1482453Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/BaseType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:40.1484993Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Enum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:40.1487447Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/EnumVal.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:40.1490065Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Field.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:40.1492525Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/KeyValue.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:40.1495058Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Object.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:40.1497657Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/RPCCall.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:40.1500113Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:40.1502598Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/SchemaFile.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:40.1505304Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Service.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:40.1507757Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:40.1595008Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:40.1596880Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:17:40.1598770Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/InParentNamespace.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:17:40.1601904Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/MonsterExtra.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:17:40.1604132Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:17:40.1605921Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:17:40.1607839Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/generate_annotations.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:17:40.1609721Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:40.1611460Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_cpp_tests.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:40.1613733Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_kotlin_tests.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:40.1615954Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_schema_tests.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:40.1618472Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:40.1620692Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_ts_tests.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:40.1622792Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/main.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:40.1624701Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim 2025-06-05T23:17:40.1626494Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim/testnim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim 2025-06-05T23:17:40.1628217Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:17:40.1630223Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/OptionalByte.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:17:40.1632724Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/ScalarStuff.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:17:40.1635590Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:17:40.1637381Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:17:40.1639103Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/TypeScriptTest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:17:40.1640762Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1642511Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Ability.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1644783Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1647227Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1649618Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1651991Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayStruct.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1654471Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayTable.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1657040Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Color.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1659477Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/LongEnum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1661924Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Monster.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1664398Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedStruct.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1666958Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Race.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1680219Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Referrable.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1682921Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Stat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1685655Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1688100Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1690492Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1692759Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestEnum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1695200Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1697601Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1699887Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Vec3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1702124Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1704424Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/monster_test_grpc_fb.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:40.1706202Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2 2025-06-05T23:17:40.1707972Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/Monster.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2 2025-06-05T23:17:40.1710244Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2 2025-06-05T23:17:40.1712224Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:17:40.1714409Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:17:40.1717204Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Color.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:17:40.1719748Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/NestedUnionTest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:17:40.1722451Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:17:40.1725168Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:17:40.1727791Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Vec3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:17:40.1730423Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:17:40.1732376Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:17:40.1734386Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:17:40.1736941Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInC.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:17:40.1739631Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:17:40.1742266Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:17:40.1744135Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC 2025-06-05T23:17:40.1746357Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC 2025-06-05T23:17:40.1748907Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC 2025-06-05T23:17:40.1750835Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:17:40.2128779Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:17:40.2131639Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:17:40.2134568Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:17:40.2137720Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:17:40.2140474Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:17:40.2142080Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2143023Z copying src/executorch/backends/cadence/aot/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2144122Z copying src/executorch/backends/cadence/aot/compiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2145191Z copying src/executorch/backends/cadence/aot/compiler_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2146375Z copying src/executorch/backends/cadence/aot/decompose_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2147464Z copying src/executorch/backends/cadence/aot/export_example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2148524Z copying src/executorch/backends/cadence/aot/fuse_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2149712Z copying src/executorch/backends/cadence/aot/graph_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2150812Z copying src/executorch/backends/cadence/aot/memory_constraints.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2152141Z copying src/executorch/backends/cadence/aot/memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2153861Z copying src/executorch/backends/cadence/aot/ops_registrations.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2155204Z copying src/executorch/backends/cadence/aot/pass_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2156430Z copying src/executorch/backends/cadence/aot/passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2157724Z copying src/executorch/backends/cadence/aot/ref_implementations.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2158929Z copying src/executorch/backends/cadence/aot/remove_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2160330Z copying src/executorch/backends/cadence/aot/reorder_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2162215Z copying src/executorch/backends/cadence/aot/replace_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2164248Z copying src/executorch/backends/cadence/aot/simplify_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2165661Z copying src/executorch/backends/cadence/aot/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:40.2166486Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:17:40.2167350Z copying src/executorch/backends/cadence/runtime/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:17:40.2168450Z copying src/executorch/backends/cadence/runtime/executor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:17:40.2169576Z copying src/executorch/backends/cadence/runtime/runtime.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:17:40.2170699Z copying src/executorch/backends/cadence/runtime/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:17:40.2171541Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:17:40.2172398Z copying src/executorch/backends/cadence/utils/facto_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:17:40.2173479Z copying src/executorch/backends/cadence/utils/gen_header.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:17:40.2174599Z copying src/executorch/backends/cadence/utils/post_compilation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:17:40.2175588Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-06-05T23:17:40.2176553Z copying src/executorch/backends/cadence/aot/quantizer/fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-06-05T23:17:40.2178005Z copying src/executorch/backends/cadence/aot/quantizer/patterns.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-06-05T23:17:40.2179265Z copying src/executorch/backends/cadence/aot/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-06-05T23:17:40.2180514Z copying src/executorch/backends/cadence/aot/quantizer/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-06-05T23:17:40.2181445Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:17:40.2182404Z copying src/executorch/backends/cadence/aot/tests/test_decompose_ops_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:17:40.2183674Z copying src/executorch/backends/cadence/aot/tests/test_fusion_ops_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:17:40.2185414Z copying src/executorch/backends/cadence/aot/tests/test_graph_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:17:40.2187647Z copying src/executorch/backends/cadence/aot/tests/test_memory_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:17:40.2188895Z copying src/executorch/backends/cadence/aot/tests/test_pass_filter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:17:40.2190120Z copying src/executorch/backends/cadence/aot/tests/test_remove_ops_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:17:40.2191377Z copying src/executorch/backends/cadence/aot/tests/test_reorder_ops_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:17:40.2192636Z copying src/executorch/backends/cadence/aot/tests/test_replace_ops_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:17:40.2194185Z copying src/executorch/backends/cadence/aot/tests/test_simplify_ops_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:17:40.2195956Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO 2025-06-05T23:17:40.2196891Z copying src/executorch/backends/cadence/utils/FACTO/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO 2025-06-05T23:17:40.2197854Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:17:40.2198940Z copying src/executorch/backends/cadence/utils/FACTO/calibrator/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:17:40.2200328Z copying src/executorch/backends/cadence/utils/FACTO/calibrator/runner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:17:40.2201665Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:17:40.2409668Z copying src/executorch/backends/cadence/utils/FACTO/examples/example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:17:40.2411121Z copying src/executorch/backends/cadence/utils/FACTO/examples/minimal_example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:17:40.2412561Z copying src/executorch/backends/cadence/utils/FACTO/examples/random_seed.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:17:40.2413625Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto 2025-06-05T23:17:40.2414625Z copying src/executorch/backends/cadence/utils/FACTO/facto/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto 2025-06-05T23:17:40.2415763Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-06-05T23:17:40.2417023Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-06-05T23:17:40.2418253Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:17:40.2419452Z copying src/executorch/backends/cadence/utils/FACTO/facto/specdb/db.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:17:40.2421010Z copying src/executorch/backends/cadence/utils/FACTO/facto/specdb/default.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:17:40.2422582Z copying src/executorch/backends/cadence/utils/FACTO/facto/specdb/dtypes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:17:40.2424470Z copying src/executorch/backends/cadence/utils/FACTO/facto/specdb/function.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:17:40.2425777Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:17:40.2427177Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:17:40.2428976Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/engine.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:17:40.2430811Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:17:40.2432188Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:17:40.2433589Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:17:40.2435394Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/engine.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:17:40.2437218Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:17:40.2439035Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:17:40.2440434Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:17:40.2441859Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:17:40.2443686Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/engine.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:17:40.2445530Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:17:40.2447238Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/solve.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:17:40.2448534Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:17:40.2449762Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:17:40.2451376Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:17:40.2452652Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:17:40.2453881Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:17:40.2455750Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/random_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:17:40.2457039Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:17:40.2458324Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:17:40.2460063Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:17:40.2461747Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:17:40.2463428Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/solve.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:17:40.2465115Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/space.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:17:40.2466785Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:17:40.2468502Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:17:40.2469809Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:40.2470997Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_engine.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:40.2472595Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_generator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:40.2474221Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_attributes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:40.2475818Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_generator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:40.2477454Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:40.2479265Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_engine.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:40.2480847Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_solver.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:40.2780609Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_constraints.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:40.2782577Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_meta_arg_engine.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:40.2784190Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_specs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:40.2786203Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_structural_engine.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:40.2787812Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_generation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:40.2789401Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_solving.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:40.2790990Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_space.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:40.2792737Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:40.2793817Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops 2025-06-05T23:17:40.2794656Z copying src/executorch/backends/cortex_m/ops/operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops 2025-06-05T23:17:40.2795483Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-06-05T23:17:40.2796427Z copying src/executorch/backends/cortex_m/passes/replace_quant_nodes_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-06-05T23:17:40.2797363Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test 2025-06-05T23:17:40.2798242Z copying src/executorch/backends/cortex_m/test/test_replace_quant_nodes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test 2025-06-05T23:17:40.2799384Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:17:40.2800613Z copying src/executorch/backends/example/example_backend_delegate_passes/merge_to_dim_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:17:40.2802227Z copying src/executorch/backends/example/example_backend_delegate_passes/permute_memory_formats_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:17:40.2803430Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:17:40.2804487Z copying src/executorch/backends/example/example_operators/adaptive_avg_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:17:40.2805782Z copying src/executorch/backends/example/example_operators/add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:17:40.2807052Z copying src/executorch/backends/example/example_operators/conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:17:40.2808432Z copying src/executorch/backends/example/example_operators/conv_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:17:40.2809823Z copying src/executorch/backends/example/example_operators/dropout.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:17:40.2811103Z copying src/executorch/backends/example/example_operators/flatten.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:17:40.2812366Z copying src/executorch/backends/example/example_operators/linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:17:40.2813773Z copying src/executorch/backends/example/example_operators/op_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:17:40.2815277Z copying src/executorch/backends/example/example_operators/ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:17:40.2816590Z copying src/executorch/backends/example/example_operators/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:17:40.2817544Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes 2025-06-05T23:17:40.2818417Z copying src/executorch/backends/mediatek/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes 2025-06-05T23:17:40.2819630Z copying src/executorch/backends/mediatek/_passes/decompose_scaled_dot_product_attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes 2025-06-05T23:17:40.2820636Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:17:40.2821529Z copying src/executorch/backends/mediatek/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:17:40.2822938Z copying src/executorch/backends/mediatek/quantizer/annotator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:17:40.2824253Z copying src/executorch/backends/mediatek/quantizer/qconfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:17:40.2825484Z copying src/executorch/backends/mediatek/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:17:40.2826511Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-06-05T23:17:40.2827493Z copying src/executorch/backends/nxp/aten_passes/fuse_batch_norm_with_conv_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-06-05T23:17:40.2828859Z copying src/executorch/backends/nxp/aten_passes/fuse_batch_norm_with_linear_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-06-05T23:17:40.2830238Z copying src/executorch/backends/nxp/aten_passes/neutron_aten_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-06-05T23:17:40.2831189Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-06-05T23:17:40.2832084Z copying src/executorch/backends/nxp/backend/edge_helper.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-06-05T23:17:40.2833298Z copying src/executorch/backends/nxp/backend/edge_program_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-06-05T23:17:40.2834511Z copying src/executorch/backends/nxp/backend/neutron_converter_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-06-05T23:17:40.2835805Z copying src/executorch/backends/nxp/backend/node_format_inference.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-06-05T23:17:40.2836728Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:17:40.2837712Z copying src/executorch/backends/nxp/quantizer/neutron_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:17:40.2839064Z copying src/executorch/backends/nxp/quantizer/patterns.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:17:40.2840339Z copying src/executorch/backends/nxp/quantizer/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:17:40.2841290Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:17:40.2842230Z copying src/executorch/backends/nxp/tests/executorch_pipeline.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:17:40.2843541Z copying src/executorch/backends/nxp/tests/executors.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:17:40.2844767Z copying src/executorch/backends/nxp/tests/exported_program_vizualize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:17:40.2845893Z copying src/executorch/backends/nxp/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:17:40.2847059Z copying src/executorch/backends/nxp/tests/test_batch_norm_fusion.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:17:40.2848317Z copying src/executorch/backends/nxp/tests/test_neutron_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:17:40.2849546Z copying src/executorch/backends/nxp/tests/test_neutron_converter_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:17:40.3091253Z copying src/executorch/backends/nxp/tests/test_node_format_inference.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:17:40.3092426Z copying src/executorch/backends/nxp/tests/test_operator_selector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:17:40.3093532Z copying src/executorch/backends/nxp/tests/test_qdq_clustering_conv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:17:40.3094624Z copying src/executorch/backends/nxp/tests/test_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:17:40.3095542Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-06-05T23:17:40.3096490Z copying src/executorch/backends/nxp/backend/ir/conversion_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-06-05T23:17:40.3097701Z copying src/executorch/backends/nxp/backend/ir/conversion_context.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-06-05T23:17:40.3098833Z copying src/executorch/backends/nxp/backend/ir/logger.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-06-05T23:17:40.3099963Z copying src/executorch/backends/nxp/backend/ir/tensor_formatting.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-06-05T23:17:40.3100906Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:17:40.3101894Z copying src/executorch/backends/nxp/backend/ir/converter/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:17:40.3103244Z copying src/executorch/backends/nxp/backend/ir/converter/node_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:17:40.3104645Z copying src/executorch/backends/nxp/backend/ir/converter/quantization_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:17:40.3106023Z copying src/executorch/backends/nxp/backend/ir/converter/tensor_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:17:40.3107019Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib 2025-06-05T23:17:40.3107902Z copying src/executorch/backends/nxp/backend/ir/lib/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib 2025-06-05T23:17:40.3108856Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:17:40.3109937Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:17:40.3111801Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/tflite_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:17:40.3112958Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:17:40.3114175Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:17:40.3115860Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/graph_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:17:40.3117307Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/operator_rules.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:17:40.3118731Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:17:40.3120183Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/pattern_matcher.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:17:40.3121629Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/tensor_rules.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:17:40.3122721Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:17:40.3124003Z copying src/executorch/backends/nxp/backend/ir/converter/builder/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:17:40.3125602Z copying src/executorch/backends/nxp/backend/ir/converter/builder/aten_model_builder_director.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:17:40.3127169Z copying src/executorch/backends/nxp/backend/ir/converter/builder/model_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:17:40.3128779Z copying src/executorch/backends/nxp/backend/ir/converter/builder/quantization_verification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:17:40.3130012Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:17:40.3131165Z copying src/executorch/backends/nxp/backend/ir/converter/conversion/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:17:40.3132869Z copying src/executorch/backends/nxp/backend/ir/converter/conversion/aten_translator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:17:40.3134538Z copying src/executorch/backends/nxp/backend/ir/converter/conversion/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:17:40.3136167Z copying src/executorch/backends/nxp/backend/ir/converter/conversion/translator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:17:40.3137400Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters 2025-06-05T23:17:40.3138611Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters 2025-06-05T23:17:40.3139906Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:40.3141333Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:40.3143392Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/addmm_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:40.3145332Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/avg_pool_2d_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:40.3147329Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/constant_pad_nd_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:40.3149313Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/convolution_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:40.3151281Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/max_pool_2d_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:40.3153204Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/mm_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:40.3155145Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/permute_copy_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:40.3157501Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_dequantize_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:40.3159627Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_quantize_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:40.3461033Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/relu_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:40.3462972Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/softmax_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:40.3465120Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/view_copy_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:40.3466654Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:17:40.3467971Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/shared/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:17:40.3469710Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/shared/recurrent_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:17:40.3471746Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/shared/reduce_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:17:40.3473806Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/shared/reshape_transposition.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:17:40.3475104Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3476354Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ATan2Options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3477958Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/AbsOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3479444Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ActivationFunctionType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3480910Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/AddNOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3482487Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/AddOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3483937Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ArgMaxOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3485351Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ArgMinOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3486814Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/AssignVariableOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3488319Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BatchMatMulOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3489831Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BatchToSpaceNDOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3491420Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceLSTMOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3493076Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceRNNOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3494604Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BitcastOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3496398Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BitwiseXorOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3497882Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BroadcastToOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3499333Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BucketizeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3500721Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Buffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3502105Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOperator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3503525Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3504955Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3506873Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/CallOnceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3508278Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/CallOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3509658Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/CastOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3511051Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/CombinerType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3512710Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ConcatEmbeddingsOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3514302Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ConcatenationOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3515757Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Conv2DOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3517154Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Conv3DOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3518542Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/CosOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3519913Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/CumsumOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3521367Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/CustomOptionsFormat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3523033Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/CustomQuantization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3524470Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DensifyOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3525935Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DepthToSpaceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3527448Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DepthwiseConv2DOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3528943Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DequantizeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3530515Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DilateOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3532006Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DimensionMetadata.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3831832Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DimensionType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3833274Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DivOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3834755Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DynamicUpdateSliceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3836791Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/EmbeddingLookupSparseOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3838372Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/EqualOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3839761Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ExpOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3841170Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ExpandDimsOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3842695Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/FakeQuantOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3844390Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/FillOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3845798Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/FloorDivOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3847238Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/FloorModOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3848712Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3850309Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptionsWeightsFormat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3852171Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/GatherNdOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3853585Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/GatherOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3855047Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/GeluOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3856489Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/GreaterEqualOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3857989Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/GreaterOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3859676Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/HardSwishOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3861164Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/HashtableFindOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3862674Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/HashtableImportOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3864241Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/HashtableOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3865802Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/HashtableSizeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3867457Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/IfOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3868892Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Int32Vector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3870287Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/L2NormOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3871731Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3873436Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3874945Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LSTMKernelType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3876347Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LSTMOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3877941Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LeakyReluOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3879385Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LessEqualOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3880891Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LessOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3882601Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LocalResponseNormalizationOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3884175Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LogSoftmaxOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3885633Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LogicalAndOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3887086Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LogicalNotOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3888526Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LogicalOrOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3890164Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/MatrixDiagOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3891735Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/MatrixSetDiagOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3893240Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/MaximumMinimumOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3894674Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Metadata.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3896138Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadMode.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3897588Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3899349Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3900768Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/MulOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3902148Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/NegOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3903629Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV4Options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.3921590Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV5Options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4200062Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/NotEqualOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4201545Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/OneHotOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4202935Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Operator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4204310Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/OperatorCode.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4205905Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/PackOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4207301Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/PadOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4208683Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/PadV2Options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4210048Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Padding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4211421Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Pool2DOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4212889Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/PowOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4214342Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/QuantizationDetails.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4215917Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/QuantizationParameters.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4217395Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/QuantizeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4218806Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/RNNOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4220348Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/RandomOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4221744Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/RangeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4223138Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/RankOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4224829Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ReadVariableOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4226322Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowFunction.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4227971Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4229435Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ReducerOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4230852Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ReshapeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4232332Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ResizeBilinearOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4233879Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ResizeNearestNeighborOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4235544Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ReverseSequenceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4237041Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ReverseV2Options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4238459Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Rfft2dOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4239911Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/RightShiftOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4241343Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/RngAlgorithm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4242865Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SVDFOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4244285Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ScatterNdOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4245734Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SegmentSumOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4247161Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SelectOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4248595Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SelectV2Options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4250137Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SequenceRNNOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4251561Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ShapeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4252949Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SignOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4254339Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SignatureDef.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4255968Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SkipGramOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4257391Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SliceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4258874Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SoftmaxOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4260347Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SpaceToBatchNDOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4261845Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SpaceToDepthOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4263319Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SparseIndexVector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4264803Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SparseToDenseOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4266297Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SparsityParameters.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4267804Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SplitOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4269211Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SplitVOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4270627Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SquareOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4600851Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SquaredDifferenceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4602584Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SqueezeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4604125Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloBroadcastInDimOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4605708Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloCompareOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4607311Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonDirection.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4608885Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4610552Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloConcatenateOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4612153Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloConvolutionOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4613744Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloCustomCallOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4615642Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloDotGeneralOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4617344Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloDynamicSliceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4619144Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloGatherOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4620650Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloIotaOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4622154Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloPadOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4623694Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloPrecisionConfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4625329Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4627132Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceWindowOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4628783Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloRngBitGeneratorOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4630395Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloScatterOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4631935Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloSliceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4633661Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloSortOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4635212Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloTransposeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4636759Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloWhileOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4638246Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StridedSliceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4639668Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SubGraph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4641152Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SubOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4642488Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4643828Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/TensorMap.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4645190Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/TensorType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4646556Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/TileOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4648331Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/TopKV2Options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4649784Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/TransposeConvOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4651260Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/TransposeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4652678Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Uint16Vector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4654054Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Uint8Vector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4655790Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/UnidirectionalSequenceLSTMOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4657343Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/UniqueOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4658736Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/UnpackOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4660225Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMaxOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4661798Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMinOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4663581Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentProdOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4665162Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentSumOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4666673Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/VarHandleOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4668091Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/VariantSubType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4669606Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/WhereOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4671004Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/WhileOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4672425Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ZerosLikeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4673796Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:40.4886780Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4888233Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4889991Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/abs_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4891963Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_n_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4893674Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4895595Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_max_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4897360Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_min_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4899145Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/average_pool_2d_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4900946Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/batch_mat_mul_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4902911Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_lstm_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4904852Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_rnn_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4906749Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bitwise_xor_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4908541Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/broadcast_to_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4910384Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cast_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4912164Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/concatenation_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4913985Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_2d_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4915713Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_3d_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4917541Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cum_sum_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4919306Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depth_to_space_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4921138Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depthwise_conv_2d_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4923065Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/dequantize_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4924919Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/div_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4926627Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/equal_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4928357Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/exp_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4930097Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/floor_mod_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4931869Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/fully_connected_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4933816Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_nd_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4935627Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4937465Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gelu_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4939230Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_equal_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4941005Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4942772Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/hard_swish_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4944556Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/leaky_relu_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4946384Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_equal_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4948311Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4950047Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/log_softmax_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4951864Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_and_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4953784Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_not_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.4955652Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_or_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5195448Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lrn_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5197269Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lstm_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5199148Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/max_pool_2d_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5201033Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/maximum_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5202918Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mean_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5204697Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/minimum_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5206459Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mirror_pad_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5208245Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mul_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5210100Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/multinomial_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5211839Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/neg_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5213611Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/not_equal_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5215416Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/one_hot_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5217371Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5219100Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_v2_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5220859Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pow_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5222866Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/quantize_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5224775Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/range_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5226610Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_max_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5228401Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_min_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5230181Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_prod_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5231943Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reshape_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5233961Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_bilinear_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5235965Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_nearest_neighbor_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5238097Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reverse_sequence_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5239907Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/scatter_nd_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5241677Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/select_v2_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5243481Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/shape_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5245559Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sign_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5247467Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/slice_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5249216Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/softmax_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5250988Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/space_to_depth_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5252753Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5254724Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_v_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5256530Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/square_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5258576Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squared_difference_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5260388Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squeeze_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5262166Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/strided_slice_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5263972Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sub_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5265683Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sum_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5498528Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/tile_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5500332Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_conv_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5502207Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5504069Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_lstm_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5506150Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_rnn_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:40.5507780Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-06-05T23:17:40.5509201Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/custom_options/flex_transpose_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-06-05T23:17:40.5510501Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:17:40.5511693Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/meta/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:17:40.5513164Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/meta/meta.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:17:40.5514748Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/meta/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:17:40.5516161Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5517524Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5519279Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/base_optimization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5521131Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/combine_hard_sigmoid_and_mul_to_hard_swish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5523147Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/eliminate_dead_branches.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5524984Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_activation_functions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5526887Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_fully_connected_and_add_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5528810Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_quanitze_into_preceding_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5530717Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/keep_one_empty_buffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5532530Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/move_relu_before_concat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5534462Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/permute_fully_connected_weights_after_reshape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5536400Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_cast_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5538354Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_quantize_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5540173Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_reshape_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5542025Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_transpose_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5543931Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/remove_unused_tensors_and_buffers.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5545971Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/replace_average_pool_before_fully_connected_with_sum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:40.5547531Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:40.5548846Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_avg_pool2d_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:40.5550525Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_constant_pad_nd_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:40.5552169Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_conv_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:40.5553829Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_linear_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:40.5555478Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_max_pool_2d_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:40.5557191Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_permute_copy_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:40.5558912Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_relu_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:40.5560539Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_softmax_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:40.5562177Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_view_copy_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:40.5563341Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:17:40.5564295Z copying src/executorch/backends/openvino/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:17:40.5565462Z copying src/executorch/backends/openvino/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:17:40.5566382Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests 2025-06-05T23:17:40.5567332Z copying src/executorch/backends/openvino/tests/test_runner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests 2025-06-05T23:17:40.5917240Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/models 2025-06-05T23:17:40.5918298Z copying src/executorch/backends/openvino/tests/models/test_classification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/models 2025-06-05T23:17:40.5919332Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:17:40.5920338Z copying src/executorch/backends/openvino/tests/ops/base_openvino_op_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:17:40.5921580Z copying src/executorch/backends/openvino/tests/ops/test_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:17:40.5922741Z copying src/executorch/backends/openvino/tests/ops/test_addmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:17:40.5924010Z copying src/executorch/backends/openvino/tests/ops/test_arange.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:17:40.5925271Z copying src/executorch/backends/openvino/tests/ops/test_batch_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:17:40.5926769Z copying src/executorch/backends/openvino/tests/ops/test_convolution.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:17:40.5928021Z copying src/executorch/backends/openvino/tests/ops/test_mean.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:17:40.5929223Z copying src/executorch/backends/openvino/tests/ops/test_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:17:40.5930426Z copying src/executorch/backends/openvino/tests/ops/test_pooling.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:17:40.5931721Z copying src/executorch/backends/openvino/tests/ops/test_unary_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:17:40.5932960Z copying src/executorch/backends/openvino/tests/ops/test_view.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:17:40.5933875Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5934740Z copying src/executorch/backends/qualcomm/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5936010Z copying src/executorch/backends/qualcomm/_passes/annotate_adaptive_avg_pool1d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5937251Z copying src/executorch/backends/qualcomm/_passes/annotate_quant_attrs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5938437Z copying src/executorch/backends/qualcomm/_passes/annotate_stack.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5939673Z copying src/executorch/backends/qualcomm/_passes/annotate_unbind.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5940879Z copying src/executorch/backends/qualcomm/_passes/build_quant_io.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5942032Z copying src/executorch/backends/qualcomm/_passes/convert_bmm_to_matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5943279Z copying src/executorch/backends/qualcomm/_passes/convert_conv1d_to_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5944485Z copying src/executorch/backends/qualcomm/_passes/convert_square_to_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5945644Z copying src/executorch/backends/qualcomm/_passes/decompose_any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5946915Z copying src/executorch/backends/qualcomm/_passes/decompose_cdist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5948116Z copying src/executorch/backends/qualcomm/_passes/decompose_einsum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5949337Z copying src/executorch/backends/qualcomm/_passes/decompose_expm1.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5950602Z copying src/executorch/backends/qualcomm/_passes/decompose_linalg_vector_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5951804Z copying src/executorch/backends/qualcomm/_passes/decompose_roll.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5953004Z copying src/executorch/backends/qualcomm/_passes/decompose_silu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5954451Z copying src/executorch/backends/qualcomm/_passes/expand_broadcast_tensor_shape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5955687Z copying src/executorch/backends/qualcomm/_passes/fixed_linear_keep_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5956862Z copying src/executorch/backends/qualcomm/_passes/fold_qdq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5958012Z copying src/executorch/backends/qualcomm/_passes/fuse_consecutive_cast.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5959230Z copying src/executorch/backends/qualcomm/_passes/fuse_consecutive_transpose.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5960492Z copying src/executorch/backends/qualcomm/_passes/i64_to_i32.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5961677Z copying src/executorch/backends/qualcomm/_passes/insert_io_qdq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5962824Z copying src/executorch/backends/qualcomm/_passes/insert_requantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5964005Z copying src/executorch/backends/qualcomm/_passes/layout_transform.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5965247Z copying src/executorch/backends/qualcomm/_passes/lift_constant_scalar_operands.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5966461Z copying src/executorch/backends/qualcomm/_passes/qnn_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5967670Z copying src/executorch/backends/qualcomm/_passes/recompose_pixel_unshuffle.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5968964Z copying src/executorch/backends/qualcomm/_passes/recompose_rms_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5970213Z copying src/executorch/backends/qualcomm/_passes/reduce_dynamic_range.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5971393Z copying src/executorch/backends/qualcomm/_passes/remove_0d_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5972556Z copying src/executorch/backends/qualcomm/_passes/remove_redundancy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5973743Z copying src/executorch/backends/qualcomm/_passes/replace_arange_args.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5975047Z copying src/executorch/backends/qualcomm/_passes/replace_index_put_input.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5976256Z copying src/executorch/backends/qualcomm/_passes/replace_inf_values.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5977451Z copying src/executorch/backends/qualcomm/_passes/tag_quant_io.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5978782Z copying src/executorch/backends/qualcomm/_passes/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:17:40.5979654Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.5980545Z copying src/executorch/backends/qualcomm/builders/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.5981940Z copying src/executorch/backends/qualcomm/builders/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.5983101Z copying src/executorch/backends/qualcomm/builders/op_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6345118Z copying src/executorch/backends/qualcomm/builders/op_adaptive_avg_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6346355Z copying src/executorch/backends/qualcomm/builders/op_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6347490Z copying src/executorch/backends/qualcomm/builders/op_amax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6348618Z copying src/executorch/backends/qualcomm/builders/op_and.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6350023Z copying src/executorch/backends/qualcomm/builders/op_arange.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6352053Z copying src/executorch/backends/qualcomm/builders/op_argmin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6353226Z copying src/executorch/backends/qualcomm/builders/op_avg_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6354400Z copying src/executorch/backends/qualcomm/builders/op_batch_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6355547Z copying src/executorch/backends/qualcomm/builders/op_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6356654Z copying src/executorch/backends/qualcomm/builders/op_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6357795Z copying src/executorch/backends/qualcomm/builders/op_ceil.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6359516Z copying src/executorch/backends/qualcomm/builders/op_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6361168Z copying src/executorch/backends/qualcomm/builders/op_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6362307Z copying src/executorch/backends/qualcomm/builders/op_cos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6363437Z copying src/executorch/backends/qualcomm/builders/op_cum_sum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6364588Z copying src/executorch/backends/qualcomm/builders/op_depth_to_space.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6365806Z copying src/executorch/backends/qualcomm/builders/op_dequantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6366943Z copying src/executorch/backends/qualcomm/builders/op_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6368934Z copying src/executorch/backends/qualcomm/builders/op_elu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6370301Z copying src/executorch/backends/qualcomm/builders/op_embedding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6371444Z copying src/executorch/backends/qualcomm/builders/op_eq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6372564Z copying src/executorch/backends/qualcomm/builders/op_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6373974Z copying src/executorch/backends/qualcomm/builders/op_expand.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6375565Z copying src/executorch/backends/qualcomm/builders/op_full.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6377450Z copying src/executorch/backends/qualcomm/builders/op_full_like.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6378799Z copying src/executorch/backends/qualcomm/builders/op_gather.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6379921Z copying src/executorch/backends/qualcomm/builders/op_ge.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6381041Z copying src/executorch/backends/qualcomm/builders/op_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6382261Z copying src/executorch/backends/qualcomm/builders/op_group_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6384399Z copying src/executorch/backends/qualcomm/builders/op_gt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6385750Z copying src/executorch/backends/qualcomm/builders/op_hardsigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6386955Z copying src/executorch/backends/qualcomm/builders/op_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6388121Z copying src/executorch/backends/qualcomm/builders/op_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6389280Z copying src/executorch/backends/qualcomm/builders/op_index.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6390626Z copying src/executorch/backends/qualcomm/builders/op_index_put.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6392700Z copying src/executorch/backends/qualcomm/builders/op_instance_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6393921Z copying src/executorch/backends/qualcomm/builders/op_layer_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6395075Z copying src/executorch/backends/qualcomm/builders/op_le.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6396194Z copying src/executorch/backends/qualcomm/builders/op_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6397340Z copying src/executorch/backends/qualcomm/builders/op_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6398758Z copying src/executorch/backends/qualcomm/builders/op_log_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6400732Z copying src/executorch/backends/qualcomm/builders/op_logical_not.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6401906Z copying src/executorch/backends/qualcomm/builders/op_lt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6403029Z copying src/executorch/backends/qualcomm/builders/op_matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6404172Z copying src/executorch/backends/qualcomm/builders/op_max.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6405319Z copying src/executorch/backends/qualcomm/builders/op_max_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6407417Z copying src/executorch/backends/qualcomm/builders/op_mean_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6408980Z copying src/executorch/backends/qualcomm/builders/op_min.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6410101Z copying src/executorch/backends/qualcomm/builders/op_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6411228Z copying src/executorch/backends/qualcomm/builders/op_ne.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6412343Z copying src/executorch/backends/qualcomm/builders/op_neg.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6413453Z copying src/executorch/backends/qualcomm/builders/op_or.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6415321Z copying src/executorch/backends/qualcomm/builders/op_pad.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6416922Z copying src/executorch/backends/qualcomm/builders/op_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6418045Z copying src/executorch/backends/qualcomm/builders/op_prelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6419203Z copying src/executorch/backends/qualcomm/builders/op_quantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6420340Z copying src/executorch/backends/qualcomm/builders/op_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6820425Z copying src/executorch/backends/qualcomm/builders/op_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6821669Z copying src/executorch/backends/qualcomm/builders/op_reshape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6822821Z copying src/executorch/backends/qualcomm/builders/op_resize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6824747Z copying src/executorch/backends/qualcomm/builders/op_rms_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6826269Z copying src/executorch/backends/qualcomm/builders/op_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6827436Z copying src/executorch/backends/qualcomm/builders/op_scalar_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6828629Z copying src/executorch/backends/qualcomm/builders/op_select_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6829841Z copying src/executorch/backends/qualcomm/builders/op_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6831219Z copying src/executorch/backends/qualcomm/builders/op_sin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6833166Z copying src/executorch/backends/qualcomm/builders/op_skip_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6834345Z copying src/executorch/backends/qualcomm/builders/op_slice_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6835508Z copying src/executorch/backends/qualcomm/builders/op_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6836686Z copying src/executorch/backends/qualcomm/builders/op_space_to_depth.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6838150Z copying src/executorch/backends/qualcomm/builders/op_split_with_sizes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6840262Z copying src/executorch/backends/qualcomm/builders/op_sqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6841622Z copying src/executorch/backends/qualcomm/builders/op_squeeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6842765Z copying src/executorch/backends/qualcomm/builders/op_stack.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6843895Z copying src/executorch/backends/qualcomm/builders/op_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6845053Z copying src/executorch/backends/qualcomm/builders/op_sum_int_list.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6846608Z copying src/executorch/backends/qualcomm/builders/op_tanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6848394Z copying src/executorch/backends/qualcomm/builders/op_to.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6849515Z copying src/executorch/backends/qualcomm/builders/op_topk.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6850671Z copying src/executorch/backends/qualcomm/builders/op_transpose.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6851839Z copying src/executorch/backends/qualcomm/builders/op_unbind.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6853345Z copying src/executorch/backends/qualcomm/builders/op_unsqueeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6855380Z copying src/executorch/backends/qualcomm/builders/op_upsample_bilinear2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6856661Z copying src/executorch/backends/qualcomm/builders/op_upsample_nearest2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6857848Z copying src/executorch/backends/qualcomm/builders/op_where.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6859026Z copying src/executorch/backends/qualcomm/builders/qnn_constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6860358Z copying src/executorch/backends/qualcomm/builders/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:17:40.6862049Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/debugger 2025-06-05T23:17:40.6863041Z copying src/executorch/backends/qualcomm/debugger/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/debugger 2025-06-05T23:17:40.6863924Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:17:40.6864857Z copying src/executorch/backends/qualcomm/partition/common_defs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:17:40.6866080Z copying src/executorch/backends/qualcomm/partition/qnn_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:17:40.6867394Z copying src/executorch/backends/qualcomm/partition/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:17:40.6869101Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:17:40.6870326Z copying src/executorch/backends/qualcomm/quantizer/annotators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:17:40.6871573Z copying src/executorch/backends/qualcomm/quantizer/custom_annotation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:17:40.6872796Z copying src/executorch/backends/qualcomm/quantizer/qconfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:17:40.6874000Z copying src/executorch/backends/qualcomm/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:17:40.6875755Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-06-05T23:17:40.6876940Z copying src/executorch/backends/qualcomm/serialization/qc_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-06-05T23:17:40.6878457Z copying src/executorch/backends/qualcomm/serialization/qc_schema_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-06-05T23:17:40.6879436Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:17:40.6880287Z copying src/executorch/backends/qualcomm/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:17:40.6881413Z copying src/executorch/backends/qualcomm/tests/test_qnn_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:17:40.6882536Z copying src/executorch/backends/qualcomm/tests/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:17:40.6883844Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:17:40.6885471Z copying src/executorch/backends/qualcomm/utils/constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:17:40.6887387Z copying src/executorch/backends/qualcomm/utils/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:17:40.6888315Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:17:40.6889453Z copying src/executorch/backends/qualcomm/quantizer/observers/per_block_param_observer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:17:40.6890952Z copying src/executorch/backends/qualcomm/quantizer/observers/per_channel_param_observer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:17:40.6892251Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test 2025-06-05T23:17:40.6894138Z copying src/executorch/backends/transforms/test/test_create_delete_constant_placeholder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test 2025-06-05T23:17:40.6896452Z copying src/executorch/backends/transforms/test/test_duplicate_dynamic_quant_chain.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test 2025-06-05T23:17:40.6897729Z copying src/executorch/backends/transforms/test/test_rank_0_to_rank_1.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test 2025-06-05T23:17:40.6898624Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:17:40.7267040Z copying src/executorch/backends/vulkan/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:17:40.7268198Z copying src/executorch/backends/vulkan/_passes/fuse_quantized_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:17:40.7269344Z copying src/executorch/backends/vulkan/_passes/insert_prepack_nodes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:17:40.7270798Z copying src/executorch/backends/vulkan/_passes/int4_weight_only_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:17:40.7272540Z copying src/executorch/backends/vulkan/_passes/remove_asserts.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:17:40.7274277Z copying src/executorch/backends/vulkan/_passes/remove_local_scalar_dense_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:17:40.7275477Z copying src/executorch/backends/vulkan/_passes/remove_redundant_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:17:40.7276659Z copying src/executorch/backends/vulkan/_passes/squeeze_unsqueeze_inputs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:17:40.7277994Z copying src/executorch/backends/vulkan/_passes/tag_memory_meta_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:17:40.7279159Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/partitioner 2025-06-05T23:17:40.7280950Z copying src/executorch/backends/vulkan/partitioner/vulkan_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/partitioner 2025-06-05T23:17:40.7281938Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/quantizer 2025-06-05T23:17:40.7282880Z copying src/executorch/backends/vulkan/quantizer/vulkan_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/quantizer 2025-06-05T23:17:40.7283788Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime 2025-06-05T23:17:40.7284674Z copying src/executorch/backends/vulkan/runtime/gen_vulkan_spv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime 2025-06-05T23:17:40.7285877Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:17:40.7287634Z copying src/executorch/backends/vulkan/serialization/vulkan_graph_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:17:40.7288981Z copying src/executorch/backends/vulkan/serialization/vulkan_graph_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:17:40.7290298Z copying src/executorch/backends/vulkan/serialization/vulkan_graph_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:17:40.7291273Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-06-05T23:17:40.7292149Z copying src/executorch/backends/vulkan/test/test_serialization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-06-05T23:17:40.7293270Z copying src/executorch/backends/vulkan/test/test_vulkan_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-06-05T23:17:40.7295125Z copying src/executorch/backends/vulkan/test/test_vulkan_delegate_header.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-06-05T23:17:40.7296757Z copying src/executorch/backends/vulkan/test/test_vulkan_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-06-05T23:17:40.7297637Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests 2025-06-05T23:17:40.7298559Z copying src/executorch/backends/vulkan/test/op_tests/cases.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests 2025-06-05T23:17:40.7299773Z copying src/executorch/backends/vulkan/test/op_tests/generate_op_benchmarks.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests 2025-06-05T23:17:40.7301086Z copying src/executorch/backends/vulkan/test/op_tests/generate_op_correctness_tests.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests 2025-06-05T23:17:40.7302354Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:17:40.7303359Z copying src/executorch/backends/vulkan/test/op_tests/utils/aten_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:17:40.7305201Z copying src/executorch/backends/vulkan/test/op_tests/utils/gen_benchmark_vk.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:17:40.7307154Z copying src/executorch/backends/vulkan/test/op_tests/utils/gen_computegraph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:17:40.7308520Z copying src/executorch/backends/vulkan/test/op_tests/utils/gen_correctness_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:17:40.7309886Z copying src/executorch/backends/vulkan/test/op_tests/utils/gen_correctness_vk.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:17:40.7311204Z copying src/executorch/backends/vulkan/test/op_tests/utils/test_suite.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:17:40.7312196Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/volk 2025-06-05T23:17:40.7313305Z copying src/executorch/backends/vulkan/third-party/volk/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/volk 2025-06-05T23:17:40.7315297Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:17:40.7316605Z copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/apiconventions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:17:40.7318291Z copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/cgenerator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:17:40.7319930Z copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/conventions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:17:40.7321565Z copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/generator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:17:40.7323174Z copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/genvk.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:17:40.7325610Z copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/reg.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:17:40.7328383Z copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/vkconventions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:17:40.7329822Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-06-05T23:17:40.7331199Z copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools/util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-06-05T23:17:40.7332993Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-06-05T23:17:40.7335456Z copying src/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis/GpuMemDumpVis.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-06-05T23:17:40.7337032Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:17:40.7337895Z copying src/executorch/backends/xnnpack/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:17:40.7339061Z copying src/executorch/backends/xnnpack/_passes/channels_last_tagged_reshape_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:17:40.7340515Z copying src/executorch/backends/xnnpack/_passes/conv1d_unsqueeze_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:17:40.7342610Z copying src/executorch/backends/xnnpack/_passes/convert_to_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:17:40.7343867Z copying src/executorch/backends/xnnpack/_passes/convert_to_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:17:40.7686848Z copying src/executorch/backends/xnnpack/_passes/convert_to_upsample_bilinear2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:17:40.7688231Z copying src/executorch/backends/xnnpack/_passes/decompose_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:17:40.7689385Z copying src/executorch/backends/xnnpack/_passes/fuse_activation_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:17:40.7690583Z copying src/executorch/backends/xnnpack/_passes/fuse_batch_norm_with_conv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:17:40.7691774Z copying src/executorch/backends/xnnpack/_passes/prelu_reshape_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:17:40.7692941Z copying src/executorch/backends/xnnpack/_passes/tag_implicit_q_dq_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:17:40.7694105Z copying src/executorch/backends/xnnpack/_passes/xnnpack_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:17:40.7695060Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7695951Z copying src/executorch/backends/xnnpack/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7697118Z copying src/executorch/backends/xnnpack/operators/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7698275Z copying src/executorch/backends/xnnpack/operators/op_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7699409Z copying src/executorch/backends/xnnpack/operators/op_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7700903Z copying src/executorch/backends/xnnpack/operators/op_addmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7703080Z copying src/executorch/backends/xnnpack/operators/op_avg_pooling2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7705027Z copying src/executorch/backends/xnnpack/operators/op_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7706185Z copying src/executorch/backends/xnnpack/operators/op_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7707323Z copying src/executorch/backends/xnnpack/operators/op_ceiling.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7708483Z copying src/executorch/backends/xnnpack/operators/op_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7709898Z copying src/executorch/backends/xnnpack/operators/op_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7711043Z copying src/executorch/backends/xnnpack/operators/op_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7712254Z copying src/executorch/backends/xnnpack/operators/op_dynamic_dequantize_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7714094Z copying src/executorch/backends/xnnpack/operators/op_dynamic_quantize_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7715986Z copying src/executorch/backends/xnnpack/operators/op_elu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7717125Z copying src/executorch/backends/xnnpack/operators/op_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7718269Z copying src/executorch/backends/xnnpack/operators/op_floor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7719414Z copying src/executorch/backends/xnnpack/operators/op_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7720562Z copying src/executorch/backends/xnnpack/operators/op_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7722372Z copying src/executorch/backends/xnnpack/operators/op_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7724617Z copying src/executorch/backends/xnnpack/operators/op_leaky_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7726168Z copying src/executorch/backends/xnnpack/operators/op_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7727328Z copying src/executorch/backends/xnnpack/operators/op_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7728538Z copying src/executorch/backends/xnnpack/operators/op_matrix_multiplication.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7729776Z copying src/executorch/backends/xnnpack/operators/op_max_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7731947Z copying src/executorch/backends/xnnpack/operators/op_max_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7733136Z copying src/executorch/backends/xnnpack/operators/op_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7734304Z copying src/executorch/backends/xnnpack/operators/op_mean_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7735582Z copying src/executorch/backends/xnnpack/operators/op_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7736748Z copying src/executorch/backends/xnnpack/operators/op_multiply.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7737921Z copying src/executorch/backends/xnnpack/operators/op_negate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7739085Z copying src/executorch/backends/xnnpack/operators/op_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7740229Z copying src/executorch/backends/xnnpack/operators/op_prelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7741532Z copying src/executorch/backends/xnnpack/operators/op_quant_dequant.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7742765Z copying src/executorch/backends/xnnpack/operators/op_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7743911Z copying src/executorch/backends/xnnpack/operators/op_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7745052Z copying src/executorch/backends/xnnpack/operators/op_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7746506Z copying src/executorch/backends/xnnpack/operators/op_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7748707Z copying src/executorch/backends/xnnpack/operators/op_skip_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7750624Z copying src/executorch/backends/xnnpack/operators/op_slice_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7751811Z copying src/executorch/backends/xnnpack/operators/op_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7752976Z copying src/executorch/backends/xnnpack/operators/op_square.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7754163Z copying src/executorch/backends/xnnpack/operators/op_square_root.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7755671Z copying src/executorch/backends/xnnpack/operators/op_squeeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7757598Z copying src/executorch/backends/xnnpack/operators/op_static_constant_pad.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7758901Z copying src/executorch/backends/xnnpack/operators/op_static_resize_bilinear_2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7760126Z copying src/executorch/backends/xnnpack/operators/op_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.7761276Z copying src/executorch/backends/xnnpack/operators/op_to_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.8112047Z copying src/executorch/backends/xnnpack/operators/quant_params.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:17:40.8113043Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-06-05T23:17:40.8113974Z copying src/executorch/backends/xnnpack/partition/configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-06-05T23:17:40.8115715Z copying src/executorch/backends/xnnpack/partition/xnnpack_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-06-05T23:17:40.8117284Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer 2025-06-05T23:17:40.8118253Z copying src/executorch/backends/xnnpack/quantizer/xnnpack_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer 2025-06-05T23:17:40.8119521Z copying src/executorch/backends/xnnpack/quantizer/xnnpack_quantizer_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer 2025-06-05T23:17:40.8120513Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:17:40.8121525Z copying src/executorch/backends/xnnpack/serialization/xnnpack_graph_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:17:40.8122886Z copying src/executorch/backends/xnnpack/serialization/xnnpack_graph_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:17:40.8124159Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test 2025-06-05T23:17:40.8125023Z copying src/executorch/backends/xnnpack/test/test_xnnpack_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test 2025-06-05T23:17:40.8126677Z copying src/executorch/backends/xnnpack/test/test_xnnpack_utils_classes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test 2025-06-05T23:17:40.8128232Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party 2025-06-05T23:17:40.8129248Z copying src/executorch/backends/xnnpack/third-party/generate-cpuinfo-wrappers.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party 2025-06-05T23:17:40.8130236Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:17:40.8131085Z copying src/executorch/backends/xnnpack/utils/configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:17:40.8132198Z copying src/executorch/backends/xnnpack/utils/quant_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:17:40.8133279Z copying src/executorch/backends/xnnpack/utils/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:17:40.8134377Z copying src/executorch/backends/xnnpack/utils/xnnpack_constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:17:40.8135779Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:17:40.8137443Z copying src/executorch/backends/xnnpack/partition/config/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:17:40.8138774Z copying src/executorch/backends/xnnpack/partition/config/gemm_configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:17:40.8140175Z copying src/executorch/backends/xnnpack/partition/config/generic_node_configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:17:40.8141926Z copying src/executorch/backends/xnnpack/partition/config/node_configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:17:40.8143980Z copying src/executorch/backends/xnnpack/partition/config/quant_affine_configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:17:40.8145380Z copying src/executorch/backends/xnnpack/partition/config/xnnpack_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:17:40.8146414Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs 2025-06-05T23:17:40.8147461Z copying src/executorch/backends/xnnpack/partition/graphs/bilinear_2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs 2025-06-05T23:17:40.8149698Z copying src/executorch/backends/xnnpack/partition/graphs/sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs 2025-06-05T23:17:40.8150768Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:17:40.8151715Z copying src/executorch/backends/xnnpack/test/models/deeplab_v3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:17:40.8152891Z copying src/executorch/backends/xnnpack/test/models/edsr.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:17:40.8154093Z copying src/executorch/backends/xnnpack/test/models/emformer_rnnt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:17:40.8155453Z copying src/executorch/backends/xnnpack/test/models/inception_v3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:17:40.8156731Z copying src/executorch/backends/xnnpack/test/models/inception_v4.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:17:40.8158095Z copying src/executorch/backends/xnnpack/test/models/llama2_et_example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:17:40.8159341Z copying src/executorch/backends/xnnpack/test/models/mobilebert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:17:40.8160575Z copying src/executorch/backends/xnnpack/test/models/mobilenet_v2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:17:40.8162639Z copying src/executorch/backends/xnnpack/test/models/mobilenet_v3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:17:40.8164121Z copying src/executorch/backends/xnnpack/test/models/resnet.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:17:40.8165360Z copying src/executorch/backends/xnnpack/test/models/torchvision_vit.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:17:40.8166607Z copying src/executorch/backends/xnnpack/test/models/very_big_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:17:40.8168410Z copying src/executorch/backends/xnnpack/test/models/w2l.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:17:40.8169719Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8170610Z copying src/executorch/backends/xnnpack/test/ops/test_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8171751Z copying src/executorch/backends/xnnpack/test/ops/test_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8172916Z copying src/executorch/backends/xnnpack/test/ops/test_avgpool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8175086Z copying src/executorch/backends/xnnpack/test/ops/test_bilinear2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8176431Z copying src/executorch/backends/xnnpack/test/ops/test_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8177725Z copying src/executorch/backends/xnnpack/test/ops/test_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8178864Z copying src/executorch/backends/xnnpack/test/ops/test_ceil.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8180570Z copying src/executorch/backends/xnnpack/test/ops/test_check_quant_params.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8182375Z copying src/executorch/backends/xnnpack/test/ops/test_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8183525Z copying src/executorch/backends/xnnpack/test/ops/test_conv1d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8184679Z copying src/executorch/backends/xnnpack/test/ops/test_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8185818Z copying src/executorch/backends/xnnpack/test/ops/test_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8188036Z copying src/executorch/backends/xnnpack/test/ops/test_elu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8189455Z copying src/executorch/backends/xnnpack/test/ops/test_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8514269Z copying src/executorch/backends/xnnpack/test/ops/test_floor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8515482Z copying src/executorch/backends/xnnpack/test/ops/test_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8516650Z copying src/executorch/backends/xnnpack/test/ops/test_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8517823Z copying src/executorch/backends/xnnpack/test/ops/test_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8519005Z copying src/executorch/backends/xnnpack/test/ops/test_leaky_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8520199Z copying src/executorch/backends/xnnpack/test/ops/test_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8522107Z copying src/executorch/backends/xnnpack/test/ops/test_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8523627Z copying src/executorch/backends/xnnpack/test/ops/test_lstm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8524763Z copying src/executorch/backends/xnnpack/test/ops/test_max_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8525918Z copying src/executorch/backends/xnnpack/test/ops/test_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8527097Z copying src/executorch/backends/xnnpack/test/ops/test_maxpool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8529086Z copying src/executorch/backends/xnnpack/test/ops/test_mean_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8531329Z copying src/executorch/backends/xnnpack/test/ops/test_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8532651Z copying src/executorch/backends/xnnpack/test/ops/test_multiply.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8533914Z copying src/executorch/backends/xnnpack/test/ops/test_negate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8535135Z copying src/executorch/backends/xnnpack/test/ops/test_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8536286Z copying src/executorch/backends/xnnpack/test/ops/test_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8537437Z copying src/executorch/backends/xnnpack/test/ops/test_prelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8538643Z copying src/executorch/backends/xnnpack/test/ops/test_quantize_per_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8539834Z copying src/executorch/backends/xnnpack/test/ops/test_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8540979Z copying src/executorch/backends/xnnpack/test/ops/test_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8542120Z copying src/executorch/backends/xnnpack/test/ops/test_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8543258Z copying src/executorch/backends/xnnpack/test/ops/test_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8545759Z copying src/executorch/backends/xnnpack/test/ops/test_slice_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8547976Z copying src/executorch/backends/xnnpack/test/ops/test_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8549141Z copying src/executorch/backends/xnnpack/test/ops/test_sqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8550298Z copying src/executorch/backends/xnnpack/test/ops/test_square.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8551494Z copying src/executorch/backends/xnnpack/test/ops/test_static_constant_pad.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8553042Z copying src/executorch/backends/xnnpack/test/ops/test_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:40.8554666Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:17:40.8555666Z copying src/executorch/backends/xnnpack/test/passes/test_activation_fusion.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:17:40.8556977Z copying src/executorch/backends/xnnpack/test/passes/test_batch_norm_fusion.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:17:40.8558326Z copying src/executorch/backends/xnnpack/test/passes/test_channels_last_tagged_reshape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:17:40.8560118Z copying src/executorch/backends/xnnpack/test/passes/test_convert_to_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:17:40.8562635Z copying src/executorch/backends/xnnpack/test/passes/test_decompose_cat_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:17:40.8564345Z copying src/executorch/backends/xnnpack/test/passes/test_remove_get_item_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:17:40.8565669Z copying src/executorch/backends/xnnpack/test/passes/test_tag_implicit_q_dq_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:17:40.8566682Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:17:40.8567711Z copying src/executorch/backends/xnnpack/test/quantizer/test_pt2e_quantization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:17:40.8569087Z copying src/executorch/backends/xnnpack/test/quantizer/test_representation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:17:40.8570462Z copying src/executorch/backends/xnnpack/test/quantizer/test_xnnpack_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:17:40.8571500Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization 2025-06-05T23:17:40.8572596Z copying src/executorch/backends/xnnpack/test/serialization/test_serialization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization 2025-06-05T23:17:40.8574003Z copying src/executorch/backends/xnnpack/test/serialization/test_xnnheader.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization 2025-06-05T23:17:40.8575117Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester 2025-06-05T23:17:40.8576035Z copying src/executorch/backends/xnnpack/test/tester/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester 2025-06-05T23:17:40.8577762Z copying src/executorch/backends/xnnpack/test/tester/tester.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester 2025-06-05T23:17:40.8579693Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:17:40.8581635Z copying src/executorch/backends/xnnpack/third-party/FP16/configure.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:17:40.8582672Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:17:40.8583705Z copying src/executorch/backends/xnnpack/third-party/FXdiv/configure.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:17:40.8584719Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:17:40.8585771Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/configure.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:17:40.8586849Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:17:40.8587953Z copying src/executorch/backends/xnnpack/third-party/pthreadpool/configure.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:17:40.8589093Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:17:40.8590256Z copying src/executorch/backends/xnnpack/third-party/FP16/include/fp16/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:17:40.9100947Z copying src/executorch/backends/xnnpack/third-party/FP16/include/fp16/avx.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:17:40.9102474Z copying src/executorch/backends/xnnpack/third-party/FP16/include/fp16/avx2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:17:40.9103676Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-06-05T23:17:40.9104931Z copying src/executorch/backends/xnnpack/third-party/FP16/test/peachpy/stubs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-06-05T23:17:40.9107067Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:17:40.9108321Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:17:40.9109867Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_files_changed.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:17:40.9111524Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/scripts/generate-build-identifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:17:40.9113861Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/scripts/sort-filenames.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:17:40.9115359Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9116582Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-argmaxpool-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9118278Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9121035Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc2chw-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9122941Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-multipass-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9124606Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-unipass-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9126302Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv2d-chw-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9128893Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-gemm-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9130514Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-chw-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9132138Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9133929Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-norm-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9136395Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9138018Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddexpminusmax-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9139687Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddextexp-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9141357Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddstoreexpminusmax-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9143992Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-benchmark.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9146932Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9149177Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9150747Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-spmm-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9152313Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vbinary-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9154099Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vmulcaddc-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9157317Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleexpminusmax-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9159362Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleextexp-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9160966Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vunary-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9162473Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/primes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9164949Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/update-microkernels.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9166519Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/xngen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9167983Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/xnncommon.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:40.9169130Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:17:40.9170375Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/scripts/android-device-dump.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:17:40.9173514Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/scripts/arm-linux-filesystem-dump.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:17:40.9175666Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/scripts/parse-x86-cpuid-dump.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:17:40.9176898Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:17:40.9178303Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/configure.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:17:40.9179345Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:17:40.9180043Z copying src/executorch/codegen/api/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:17:40.9181556Z copying src/executorch/codegen/api/custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:17:40.9183150Z copying src/executorch/codegen/api/et_cpp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:17:40.9184780Z copying src/executorch/codegen/api/unboxing.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:17:40.9479482Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:17:40.9480593Z copying src/executorch/codegen/test/test_executorch_custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:17:40.9481610Z copying src/executorch/codegen/test/test_executorch_gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:17:40.9482628Z copying src/executorch/codegen/test/test_executorch_signatures.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:17:40.9483642Z copying src/executorch/codegen/test/test_executorch_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:17:40.9484656Z copying src/executorch/codegen/test/test_executorch_unboxing.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:17:40.9485691Z copying src/executorch/codegen/test/test_selective_build.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:17:40.9486954Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:17:40.9487722Z copying src/executorch/codegen/tools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:17:40.9488715Z copying src/executorch/codegen/tools/gen_all_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:17:40.9489650Z copying src/executorch/codegen/tools/gen_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:17:40.9490552Z copying src/executorch/codegen/tools/gen_ops_def.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:17:40.9491518Z copying src/executorch/codegen/tools/gen_selected_op_variants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:17:40.9492494Z copying src/executorch/codegen/tools/merge_yaml.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:17:40.9493407Z copying src/executorch/codegen/tools/yaml_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:17:40.9494148Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:17:40.9494899Z copying src/executorch/codegen/api/types/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:17:40.9496009Z copying src/executorch/codegen/api/types/signatures.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:17:40.9497124Z copying src/executorch/codegen/api/types/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:17:40.9497932Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-06-05T23:17:40.9498853Z copying src/executorch/codegen/tools/test/test_gen_all_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-06-05T23:17:40.9499915Z copying src/executorch/codegen/tools/test/test_gen_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-06-05T23:17:40.9501016Z copying src/executorch/codegen/tools/test/test_gen_oplist_real_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-06-05T23:17:40.9502163Z copying src/executorch/codegen/tools/test/test_gen_selected_op_variants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-06-05T23:17:40.9503035Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-06-05T23:17:40.9503866Z copying src/executorch/devtools/backend_debug/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-06-05T23:17:40.9504942Z copying src/executorch/devtools/backend_debug/delegation_info.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-06-05T23:17:40.9505802Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:17:40.9506715Z copying src/executorch/devtools/bundled_program/config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:17:40.9507876Z copying src/executorch/devtools/bundled_program/core.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:17:40.9509185Z copying src/executorch/devtools/bundled_program/version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:17:40.9510178Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-06-05T23:17:40.9510999Z copying src/executorch/devtools/debug_format/base_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-06-05T23:17:40.9512037Z copying src/executorch/devtools/debug_format/et_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-06-05T23:17:40.9512820Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:17:40.9513755Z copying src/executorch/devtools/etdump/schema_flatcc.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:17:40.9514743Z copying src/executorch/devtools/etdump/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:17:40.9515504Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:17:40.9516366Z copying src/executorch/devtools/etrecord/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:17:40.9517325Z copying src/executorch/devtools/etrecord/_etrecord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:17:40.9518152Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:17:40.9519099Z copying src/executorch/devtools/inspector/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:17:40.9520249Z copying src/executorch/devtools/inspector/_inspector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:17:40.9521287Z copying src/executorch/devtools/inspector/_inspector_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:17:40.9522387Z copying src/executorch/devtools/inspector/_intermediate_output_capturer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:17:40.9523498Z copying src/executorch/devtools/inspector/inspector_cli.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:17:40.9524345Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/size_analysis_tool 2025-06-05T23:17:40.9525252Z copying src/executorch/devtools/size_analysis_tool/size_analysis_tool.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/size_analysis_tool 2025-06-05T23:17:40.9526461Z copying src/executorch/devtools/size_analysis_tool/size_analysis_tool_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/size_analysis_tool 2025-06-05T23:17:40.9527391Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:17:40.9528225Z copying src/executorch/devtools/visualization/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:17:40.9529358Z copying src/executorch/devtools/visualization/visualization_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:17:40.9530609Z copying src/executorch/devtools/visualization/visualization_utils_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:17:40.9531653Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug/tests 2025-06-05T23:17:40.9532603Z copying src/executorch/devtools/backend_debug/tests/test_delegation_info.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug/tests 2025-06-05T23:17:40.9533559Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-06-05T23:17:40.9534497Z copying src/executorch/devtools/bundled_program/schema/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-06-05T23:17:40.9535824Z copying src/executorch/devtools/bundled_program/schema/bundled_program_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-06-05T23:17:40.9536835Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-06-05T23:17:40.9537911Z copying src/executorch/devtools/bundled_program/serialize/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-06-05T23:17:40.9538849Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test 2025-06-05T23:17:40.9539853Z copying src/executorch/devtools/bundled_program/test/test_bundle_data.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test 2025-06-05T23:17:40.9541259Z copying src/executorch/devtools/bundled_program/test/test_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test 2025-06-05T23:17:40.9542452Z copying src/executorch/devtools/bundled_program/test/test_end2end.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test 2025-06-05T23:17:40.9543380Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/util 2025-06-05T23:17:40.9544291Z copying src/executorch/devtools/bundled_program/util/test_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/util 2025-06-05T23:17:40.9545243Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/test 2025-06-05T23:17:40.9902725Z copying src/executorch/devtools/bundled_program/schema/test/test_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/test 2025-06-05T23:17:40.9903836Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/test 2025-06-05T23:17:40.9904935Z copying src/executorch/devtools/bundled_program/serialize/test/test_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/test 2025-06-05T23:17:40.9905943Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/tests 2025-06-05T23:17:40.9906802Z copying src/executorch/devtools/etdump/tests/serialize_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/tests 2025-06-05T23:17:40.9907750Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/tests 2025-06-05T23:17:40.9908670Z copying src/executorch/devtools/etrecord/tests/etrecord_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/tests 2025-06-05T23:17:40.9909605Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:17:40.9910574Z copying src/executorch/devtools/inspector/tests/event_blocks_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:17:40.9911803Z copying src/executorch/devtools/inspector/tests/inspector_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:17:40.9913007Z copying src/executorch/devtools/inspector/tests/inspector_test_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:17:40.9914243Z copying src/executorch/devtools/inspector/tests/inspector_utils_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:17:40.9915526Z copying src/executorch/devtools/inspector/tests/intermediate_output_capturer_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:17:40.9916525Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:17:40.9917463Z copying src/executorch/examples/llm_pte_finetuning/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:17:40.9918585Z copying src/executorch/examples/llm_pte_finetuning/model_exporter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:17:40.9919769Z copying src/executorch/examples/llm_pte_finetuning/model_loading_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:17:40.9920900Z copying src/executorch/examples/llm_pte_finetuning/runner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:17:40.9922025Z copying src/executorch/examples/llm_pte_finetuning/training_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:17:40.9923051Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:17:40.9924613Z copying src/executorch/examples/models/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:17:40.9926079Z copying src/executorch/examples/models/checkpoint.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:17:40.9927053Z copying src/executorch/examples/models/model_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:17:40.9928030Z copying src/executorch/examples/models/model_factory.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:17:40.9928849Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-06-05T23:17:40.9929753Z copying src/executorch/examples/apple/coreml/llama/export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-06-05T23:17:40.9931208Z copying src/executorch/examples/apple/coreml/llama/llama_transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-06-05T23:17:40.9933302Z copying src/executorch/examples/apple/coreml/llama/run.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-06-05T23:17:40.9934451Z copying src/executorch/examples/apple/coreml/llama/test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-06-05T23:17:40.9935688Z copying src/executorch/examples/apple/coreml/llama/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-06-05T23:17:40.9936592Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-06-05T23:17:40.9937649Z copying src/executorch/examples/apple/coreml/scripts/debugger_cli.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-06-05T23:17:40.9939886Z copying src/executorch/examples/apple/coreml/scripts/export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-06-05T23:17:40.9941291Z copying src/executorch/examples/apple/coreml/scripts/extract_coreml_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-06-05T23:17:40.9942607Z copying src/executorch/examples/apple/coreml/scripts/inspector_cli.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-06-05T23:17:40.9943892Z copying src/executorch/examples/apple/coreml/scripts/inspector_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-06-05T23:17:40.9944970Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts 2025-06-05T23:17:40.9946690Z copying src/executorch/examples/apple/mps/scripts/bench_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts 2025-06-05T23:17:40.9948100Z copying src/executorch/examples/apple/mps/scripts/mps_example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts 2025-06-05T23:17:40.9949030Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3 2025-06-05T23:17:40.9949919Z copying src/executorch/examples/models/deeplab_v3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3 2025-06-05T23:17:40.9951016Z copying src/executorch/examples/models/deeplab_v3/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3 2025-06-05T23:17:40.9952022Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:17:40.9953514Z copying src/executorch/examples/models/edsr/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:17:40.9954817Z copying src/executorch/examples/models/edsr/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:17:40.9955663Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam 2025-06-05T23:17:40.9956712Z copying src/executorch/examples/models/efficient_sam/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam 2025-06-05T23:17:40.9957945Z copying src/executorch/examples/models/efficient_sam/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam 2025-06-05T23:17:40.9958850Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt 2025-06-05T23:17:40.9959861Z copying src/executorch/examples/models/emformer_rnnt/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt 2025-06-05T23:17:40.9962017Z copying src/executorch/examples/models/emformer_rnnt/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt 2025-06-05T23:17:40.9963012Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3 2025-06-05T23:17:40.9963927Z copying src/executorch/examples/models/inception_v3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3 2025-06-05T23:17:40.9965099Z copying src/executorch/examples/models/inception_v3/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3 2025-06-05T23:17:40.9965993Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4 2025-06-05T23:17:40.9967325Z copying src/executorch/examples/models/inception_v4/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4 2025-06-05T23:17:40.9969158Z copying src/executorch/examples/models/inception_v4/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4 2025-06-05T23:17:40.9970057Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:17:40.9970887Z copying src/executorch/examples/models/llama/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:17:40.9971943Z copying src/executorch/examples/models/llama/attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:17:40.9973068Z copying src/executorch/examples/models/llama/eval_llama.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:17:40.9975141Z copying src/executorch/examples/models/llama/eval_llama_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:17:40.9976423Z copying src/executorch/examples/models/llama/export_llama.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:17:41.0293143Z copying src/executorch/examples/models/llama/export_llama_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:17:41.0294326Z copying src/executorch/examples/models/llama/fairseq2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:17:41.0295479Z copying src/executorch/examples/models/llama/hf_download.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:17:41.0296661Z copying src/executorch/examples/models/llama/install_requirement_helper.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:17:41.0298259Z copying src/executorch/examples/models/llama/llama_transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:17:41.0300196Z copying src/executorch/examples/models/llama/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:17:41.0301500Z copying src/executorch/examples/models/llama/model_args.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:17:41.0302644Z copying src/executorch/examples/models/llama/norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:17:41.0303743Z copying src/executorch/examples/models/llama/rope.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:17:41.0305359Z copying src/executorch/examples/models/llama/static_attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:17:41.0307191Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision 2025-06-05T23:17:41.0308311Z copying src/executorch/examples/models/llama3_2_vision/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision 2025-06-05T23:17:41.0309428Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:17:41.0310342Z copying src/executorch/examples/models/llava/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:17:41.0311476Z copying src/executorch/examples/models/llava/export_llava.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:17:41.0312675Z copying src/executorch/examples/models/llava/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:17:41.0314306Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:17:41.0315569Z copying src/executorch/examples/models/lstm/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:17:41.0316748Z copying src/executorch/examples/models/lstm/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:17:41.0317633Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:17:41.0318637Z copying src/executorch/examples/models/mobilebert/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:17:41.0319896Z copying src/executorch/examples/models/mobilebert/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:17:41.0341573Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2 2025-06-05T23:17:41.0342628Z copying src/executorch/examples/models/mobilenet_v2/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2 2025-06-05T23:17:41.0343772Z copying src/executorch/examples/models/mobilenet_v2/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2 2025-06-05T23:17:41.0344683Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3 2025-06-05T23:17:41.0345588Z copying src/executorch/examples/models/mobilenet_v3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3 2025-06-05T23:17:41.0346982Z copying src/executorch/examples/models/mobilenet_v3/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3 2025-06-05T23:17:41.0348683Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini-lora 2025-06-05T23:17:41.0350508Z copying src/executorch/examples/models/phi-3-mini-lora/export_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini-lora 2025-06-05T23:17:41.0351731Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:17:41.0352630Z copying src/executorch/examples/models/phi-3-mini/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:17:41.0353729Z copying src/executorch/examples/models/phi-3-mini/eager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:17:41.0354881Z copying src/executorch/examples/models/phi-3-mini/export_phi-3-mini.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:17:41.0356818Z copying src/executorch/examples/models/phi-3-mini/phi_3_mini.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:17:41.0358244Z copying src/executorch/examples/models/phi-3-mini/static_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:17:41.0359343Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini 2025-06-05T23:17:41.0360210Z copying src/executorch/examples/models/phi_4_mini/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini 2025-06-05T23:17:41.0361349Z copying src/executorch/examples/models/phi_4_mini/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini 2025-06-05T23:17:41.0362251Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5 2025-06-05T23:17:41.0363083Z copying src/executorch/examples/models/qwen2_5/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5 2025-06-05T23:17:41.0364700Z copying src/executorch/examples/models/qwen2_5/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5 2025-06-05T23:17:41.0366151Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-06-05T23:17:41.0366979Z copying src/executorch/examples/models/qwen3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-06-05T23:17:41.0368064Z copying src/executorch/examples/models/qwen3/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-06-05T23:17:41.0368921Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:17:41.0369758Z copying src/executorch/examples/models/resnet/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:17:41.0370821Z copying src/executorch/examples/models/resnet/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:17:41.0371647Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-06-05T23:17:41.0372787Z copying src/executorch/examples/models/smollm2/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-06-05T23:17:41.0374676Z copying src/executorch/examples/models/smollm2/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-06-05T23:17:41.0375670Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-06-05T23:17:41.0376478Z copying src/executorch/examples/models/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-06-05T23:17:41.0377507Z copying src/executorch/examples/models/test/test_export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-06-05T23:17:41.0378570Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit 2025-06-05T23:17:41.0379513Z copying src/executorch/examples/models/torchvision_vit/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit 2025-06-05T23:17:41.0380734Z copying src/executorch/examples/models/torchvision_vit/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit 2025-06-05T23:17:41.0382265Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model 2025-06-05T23:17:41.0383843Z copying src/executorch/examples/models/toy_model/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model 2025-06-05T23:17:41.0385637Z copying src/executorch/examples/models/toy_model/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model 2025-06-05T23:17:41.0386495Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:17:41.0387391Z copying src/executorch/examples/models/wav2letter/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:17:41.0388530Z copying src/executorch/examples/models/wav2letter/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:17:41.0389758Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:17:41.0392066Z copying src/executorch/examples/models/efficient_sam/efficient_sam_core/build_efficient_sam.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:17:41.0645434Z copying src/executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:17:41.0647048Z copying src/executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_decoder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:17:41.0648689Z copying src/executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_encoder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:17:41.0650456Z copying src/executorch/examples/models/efficient_sam/efficient_sam_core/mlp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:17:41.0653361Z copying src/executorch/examples/models/efficient_sam/efficient_sam_core/two_way_transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:17:41.0655159Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate 2025-06-05T23:17:41.0656118Z copying src/executorch/examples/models/llama/evaluate/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate 2025-06-05T23:17:41.0657346Z copying src/executorch/examples/models/llama/evaluate/eager_eval.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate 2025-06-05T23:17:41.0658357Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-06-05T23:17:41.0660074Z copying src/executorch/examples/models/llama/experimental/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-06-05T23:17:41.0661962Z copying src/executorch/examples/models/llama/experimental/load_gguf_q4_0.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-06-05T23:17:41.0663326Z copying src/executorch/examples/models/llama/experimental/subclass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-06-05T23:17:41.0664686Z copying src/executorch/examples/models/llama/experimental/test_subclass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-06-05T23:17:41.0665689Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner 2025-06-05T23:17:41.0667249Z copying src/executorch/examples/models/llama/runner/eager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner 2025-06-05T23:17:41.0668955Z copying src/executorch/examples/models/llama/runner/generation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner 2025-06-05T23:17:41.0670248Z copying src/executorch/examples/models/llama/runner/native.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner 2025-06-05T23:17:41.0671251Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0672364Z copying src/executorch/examples/models/llama/source_transformation/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0674745Z copying src/executorch/examples/models/llama/source_transformation/apply_spin_quant_r1_r2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0676881Z copying src/executorch/examples/models/llama/source_transformation/attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0678551Z copying src/executorch/examples/models/llama/source_transformation/attention_sink.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0680072Z copying src/executorch/examples/models/llama/source_transformation/custom_kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0681980Z copying src/executorch/examples/models/llama/source_transformation/lora.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0684814Z copying src/executorch/examples/models/llama/source_transformation/pre_quantization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0686720Z copying src/executorch/examples/models/llama/source_transformation/prune_vocab.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0688188Z copying src/executorch/examples/models/llama/source_transformation/quantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0689649Z copying src/executorch/examples/models/llama/source_transformation/rms_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0692099Z copying src/executorch/examples/models/llama/source_transformation/rope.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0694514Z copying src/executorch/examples/models/llama/source_transformation/sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0696101Z copying src/executorch/examples/models/llama/source_transformation/spin_quant.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0697616Z copying src/executorch/examples/models/llama/source_transformation/test_attention_sink.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0700062Z copying src/executorch/examples/models/llama/source_transformation/test_quantized_kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0701782Z copying src/executorch/examples/models/llama/source_transformation/test_quantized_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0703383Z copying src/executorch/examples/models/llama/source_transformation/test_sdpa_with_quantized_kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0704948Z copying src/executorch/examples/models/llama/source_transformation/vulkan_rope.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:41.0706015Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:17:41.0706978Z copying src/executorch/examples/models/llama/tests/test_export_llama_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:17:41.0709430Z copying src/executorch/examples/models/llama/tests/test_pre_quantization_transforms.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:17:41.0711982Z copying src/executorch/examples/models/llama/tests/test_replace_kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:17:41.0713867Z copying src/executorch/examples/models/llama/tests/test_ring_attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:17:41.0715384Z copying src/executorch/examples/models/llama/tests/test_ring_kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:17:41.0716626Z copying src/executorch/examples/models/llama/tests/test_simple_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:17:41.0717865Z copying src/executorch/examples/models/llama/tests/test_static_attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:17:41.0719288Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tokenizer 2025-06-05T23:17:41.0721139Z copying src/executorch/examples/models/llama/tokenizer/tiktoken.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tokenizer 2025-06-05T23:17:41.0723112Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:17:41.0724930Z copying src/executorch/examples/models/llama3_2_vision/preprocess/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:17:41.0726449Z copying src/executorch/examples/models/llama3_2_vision/preprocess/export_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:17:41.0727887Z copying src/executorch/examples/models/llama3_2_vision/preprocess/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:17:41.1089790Z copying src/executorch/examples/models/llama3_2_vision/preprocess/test_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:17:41.1090953Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:17:41.1092014Z copying src/executorch/examples/models/llama3_2_vision/runner/eager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:17:41.1093351Z copying src/executorch/examples/models/llama3_2_vision/runner/exported.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:17:41.1094699Z copying src/executorch/examples/models/llama3_2_vision/runner/generation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:17:41.1096116Z copying src/executorch/examples/models/llama3_2_vision/runner/native.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:17:41.1097595Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder 2025-06-05T23:17:41.1099406Z copying src/executorch/examples/models/llama3_2_vision/text_decoder/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder 2025-06-05T23:17:41.1100688Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:17:41.1101858Z copying src/executorch/examples/models/llama3_2_vision/vision_encoder/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:17:41.1103294Z copying src/executorch/examples/models/llama3_2_vision/vision_encoder/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:17:41.1104452Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:17:41.1105634Z copying src/executorch/examples/models/llama3_2_vision/text_decoder/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:17:41.1107899Z copying src/executorch/examples/models/llama3_2_vision/text_decoder/test/test_text_decoder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:17:41.1109882Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:17:41.1111165Z copying src/executorch/examples/models/llama3_2_vision/vision_encoder/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:17:41.1112755Z copying src/executorch/examples/models/llama3_2_vision/vision_encoder/test/test_vision_encoder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:17:41.1113904Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test 2025-06-05T23:17:41.1114808Z copying src/executorch/examples/models/llava/test/test_llava.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test 2025-06-05T23:17:41.1115985Z copying src/executorch/examples/models/llava/test/test_pte.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test 2025-06-05T23:17:41.1116876Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/moshi/mimi 2025-06-05T23:17:41.1117762Z copying src/executorch/examples/models/moshi/mimi/test_mimi.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/moshi/mimi 2025-06-05T23:17:41.1118683Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:17:41.1119998Z copying src/executorch/exir/_serialize/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:17:41.1121325Z copying src/executorch/exir/_serialize/_cord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:17:41.1122353Z copying src/executorch/exir/_serialize/_dataclass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:17:41.1123285Z copying src/executorch/exir/_serialize/_flatbuffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:17:41.1124326Z copying src/executorch/exir/_serialize/_named_data_store.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:17:41.1125263Z copying src/executorch/exir/_serialize/_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:17:41.1126157Z copying src/executorch/exir/_serialize/_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:17:41.1127099Z copying src/executorch/exir/_serialize/data_serializer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:17:41.1128023Z copying src/executorch/exir/_serialize/padding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:17:41.1129120Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:17:41.1130487Z copying src/executorch/exir/backend/backend_api.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:17:41.1131563Z copying src/executorch/exir/backend/backend_details.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:17:41.1132597Z copying src/executorch/exir/backend/compile_spec_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:17:41.1133634Z copying src/executorch/exir/backend/operator_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:17:41.1135051Z copying src/executorch/exir/backend/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:17:41.1136725Z copying src/executorch/exir/backend/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:17:41.1137539Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:17:41.1138431Z copying src/executorch/exir/capture/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:17:41.1139358Z copying src/executorch/exir/capture/_capture.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:17:41.1140420Z copying src/executorch/exir/capture/_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:17:41.1142021Z copying src/executorch/exir/capture/_unlift.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:17:41.1142935Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:17:41.1143716Z copying src/executorch/exir/dialects/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:17:41.1144575Z copying src/executorch/exir/dialects/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:17:41.1145263Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:17:41.1146040Z copying src/executorch/exir/emit/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:17:41.1147564Z copying src/executorch/exir/emit/_emit_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:17:41.1148734Z copying src/executorch/exir/emit/_emitter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:17:41.1149473Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:17:41.1150211Z copying src/executorch/exir/operator/convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:17:41.1151114Z copying src/executorch/exir/operator/manip.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:17:41.1151976Z copying src/executorch/exir/operator/util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:17:41.1153090Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1154391Z copying src/executorch/exir/passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1155418Z copying src/executorch/exir/passes/_quant_patterns_and_replacements.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1156490Z copying src/executorch/exir/passes/const_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1157444Z copying src/executorch/exir/passes/constant_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1158619Z copying src/executorch/exir/passes/debug_handle_generator_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1160490Z copying src/executorch/exir/passes/dim_order_ops_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1161548Z copying src/executorch/exir/passes/dynamic_shape_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1162654Z copying src/executorch/exir/passes/executorch_prim_ops_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1163693Z copying src/executorch/exir/passes/external_constants_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1639709Z copying src/executorch/exir/passes/init_mutable_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1640764Z copying src/executorch/exir/passes/insert_write_back_for_buffers_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1641810Z copying src/executorch/exir/passes/memory_format_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1642780Z copying src/executorch/exir/passes/memory_planning_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1644181Z copying src/executorch/exir/passes/normalize_transpose_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1645225Z copying src/executorch/exir/passes/normalize_view_copy_base_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1646195Z copying src/executorch/exir/passes/pass_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1647208Z copying src/executorch/exir/passes/prune_empty_tensors_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1648227Z copying src/executorch/exir/passes/quant_fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1649313Z copying src/executorch/exir/passes/quantize_io_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1650299Z copying src/executorch/exir/passes/remove_graph_asserts_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1651319Z copying src/executorch/exir/passes/remove_mixed_type_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1652302Z copying src/executorch/exir/passes/remove_noop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1653295Z copying src/executorch/exir/passes/remove_unused_parameters_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1654344Z copying src/executorch/exir/passes/replace_aten_with_edge_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1655559Z copying src/executorch/exir/passes/replace_broken_ops_with_function_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1656803Z copying src/executorch/exir/passes/replace_edge_with_backend_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1657827Z copying src/executorch/exir/passes/replace_sym_size_op_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1658859Z copying src/executorch/exir/passes/replace_view_copy_with_view_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1659871Z copying src/executorch/exir/passes/scalar_to_tensor_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1660820Z copying src/executorch/exir/passes/spec_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1661755Z copying src/executorch/exir/passes/sym_shape_eval_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1662682Z copying src/executorch/exir/passes/sym_to_tensor_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1663736Z copying src/executorch/exir/passes/weights_to_outputs_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:17:41.1664519Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:17:41.1665214Z copying src/executorch/exir/program/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:17:41.1666106Z copying src/executorch/exir/program/_fake_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:17:41.1666992Z copying src/executorch/exir/program/_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:17:41.1667695Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:17:41.1668369Z copying src/executorch/exir/serde/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:17:41.1669234Z copying src/executorch/exir/serde/export_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:17:41.1670211Z copying src/executorch/exir/serde/schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:17:41.1671195Z copying src/executorch/exir/serde/schema_check.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:17:41.1672142Z copying src/executorch/exir/serde/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:17:41.1672989Z copying src/executorch/exir/serde/union.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:17:41.1673652Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1674342Z copying src/executorch/exir/tests/asr_joiner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1675180Z copying src/executorch/exir/tests/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1676071Z copying src/executorch/exir/tests/control_flow_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1677037Z copying src/executorch/exir/tests/dynamic_shape_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1678112Z copying src/executorch/exir/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1679002Z copying src/executorch/exir/tests/test_arg_validator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1679896Z copying src/executorch/exir/tests/test_capture.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1680877Z copying src/executorch/exir/tests/test_common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1681785Z copying src/executorch/exir/tests/test_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1682685Z copying src/executorch/exir/tests/test_dim_order_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1683823Z copying src/executorch/exir/tests/test_dynamic_shape_propagation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1684889Z copying src/executorch/exir/tests/test_error.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1685777Z copying src/executorch/exir/tests/test_joint_graph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1686727Z copying src/executorch/exir/tests/test_memory_format_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1687719Z copying src/executorch/exir/tests/test_memory_format_ops_pass_aten.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1688752Z copying src/executorch/exir/tests/test_memory_format_ops_pass_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1689730Z copying src/executorch/exir/tests/test_memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1690663Z copying src/executorch/exir/tests/test_op_convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1691580Z copying src/executorch/exir/tests/test_pass_infra.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1692564Z copying src/executorch/exir/tests/test_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1693466Z copying src/executorch/exir/tests/test_print_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1694442Z copying src/executorch/exir/tests/test_prune_empty_tensors_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1695491Z copying src/executorch/exir/tests/test_quant_fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1696577Z copying src/executorch/exir/tests/test_quantization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1697581Z copying src/executorch/exir/tests/test_quantize_io_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1698583Z copying src/executorch/exir/tests/test_remove_unused_parameters_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1699665Z copying src/executorch/exir/tests/test_remove_view_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1700617Z copying src/executorch/exir/tests/test_serde.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1701479Z copying src/executorch/exir/tests/test_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1702332Z copying src/executorch/exir/tests/test_tracer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1703236Z copying src/executorch/exir/tests/test_verification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.1704146Z copying src/executorch/exir/tests/test_warnings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.2099147Z copying src/executorch/exir/tests/transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:17:41.2099970Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:17:41.2100766Z copying src/executorch/exir/verification/arg_validator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:17:41.2101768Z copying src/executorch/exir/verification/dev_html.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:17:41.2102773Z copying src/executorch/exir/verification/interpreter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:17:41.2103796Z copying src/executorch/exir/verification/verifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:17:41.2104596Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:17:41.2105384Z copying src/executorch/exir/_serialize/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:17:41.2106350Z copying src/executorch/exir/_serialize/test/test_cord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:17:41.2107368Z copying src/executorch/exir/_serialize/test/test_flatbuffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:17:41.2108424Z copying src/executorch/exir/_serialize/test/test_named_data_store.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:17:41.2109475Z copying src/executorch/exir/_serialize/test/test_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:17:41.2110362Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-06-05T23:17:41.2111450Z copying src/executorch/exir/backend/canonical_partitioners/all_node_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-06-05T23:17:41.2112860Z copying src/executorch/exir/backend/canonical_partitioners/config_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-06-05T23:17:41.2114437Z copying src/executorch/exir/backend/canonical_partitioners/duplicate_constant_node_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-06-05T23:17:41.2116136Z copying src/executorch/exir/backend/canonical_partitioners/duplicate_dequant_node_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-06-05T23:17:41.2117579Z copying src/executorch/exir/backend/canonical_partitioners/pattern_op_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-06-05T23:17:41.2118870Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2119718Z copying src/executorch/exir/backend/test/backend_with_compiler_demo.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2120890Z copying src/executorch/exir/backend/test/backend_with_delegate_mapping_demo.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2122045Z copying src/executorch/exir/backend/test/backend_with_named_data_map.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2123353Z copying src/executorch/exir/backend/test/backend_with_preprocess_all_demo.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2124488Z copying src/executorch/exir/backend/test/hta_partitioner_demo.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2125561Z copying src/executorch/exir/backend/test/op_partitioner_demo.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2126614Z copying src/executorch/exir/backend/test/qnn_backend_demo.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2127717Z copying src/executorch/exir/backend/test/test_backend_with_named_data_map.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2128793Z copying src/executorch/exir/backend/test/test_backends.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2129844Z copying src/executorch/exir/backend/test/test_backends_lifted.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2130906Z copying src/executorch/exir/backend/test/test_backends_nested.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2132198Z copying src/executorch/exir/backend/test/test_compatibility.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2133346Z copying src/executorch/exir/backend/test/test_debug_handle_map.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2134548Z copying src/executorch/exir/backend/test/test_delegate_map_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2135719Z copying src/executorch/exir/backend/test/test_graph_partition.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2136829Z copying src/executorch/exir/backend/test/test_lowered_backend_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2137911Z copying src/executorch/exir/backend/test/test_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2138956Z copying src/executorch/exir/backend/test/test_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2140014Z copying src/executorch/exir/backend/test/test_to_backend_multi_method.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2141337Z copying src/executorch/exir/backend/test/test_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:17:41.2142188Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos 2025-06-05T23:17:41.2143093Z copying src/executorch/exir/backend/test/demos/test_delegate_aten_mode.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos 2025-06-05T23:17:41.2144297Z copying src/executorch/exir/backend/test/demos/test_xnnpack_qnnpack.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos 2025-06-05T23:17:41.2145204Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc 2025-06-05T23:17:41.2146362Z copying src/executorch/exir/backend/test/demos/rpc/executor_backend_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc 2025-06-05T23:17:41.2147725Z copying src/executorch/exir/backend/test/demos/rpc/executor_backend_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc 2025-06-05T23:17:41.2148969Z copying src/executorch/exir/backend/test/demos/rpc/test_rpc.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc 2025-06-05T23:17:41.2149944Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend 2025-06-05T23:17:41.2150882Z copying src/executorch/exir/dialects/backend/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend 2025-06-05T23:17:41.2151909Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:17:41.2152830Z copying src/executorch/exir/dialects/edge/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:17:41.2153584Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/test 2025-06-05T23:17:41.2154423Z copying src/executorch/exir/dialects/test/test_exir_dialect_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/test 2025-06-05T23:17:41.2155287Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend/test 2025-06-05T23:17:41.2156207Z copying src/executorch/exir/dialects/backend/test/test_backend_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend/test 2025-06-05T23:17:41.2157113Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg 2025-06-05T23:17:41.2157938Z copying src/executorch/exir/dialects/edge/arg/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg 2025-06-05T23:17:41.2158992Z copying src/executorch/exir/dialects/edge/arg/type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg 2025-06-05T23:17:41.2159835Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype 2025-06-05T23:17:41.2160821Z copying src/executorch/exir/dialects/edge/dtype/runner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype 2025-06-05T23:17:41.2161988Z copying src/executorch/exir/dialects/edge/dtype/supported.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype 2025-06-05T23:17:41.2163291Z copying src/executorch/exir/dialects/edge/dtype/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype 2025-06-05T23:17:41.2164147Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op 2025-06-05T23:17:41.2164954Z copying src/executorch/exir/dialects/edge/op/api.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op 2025-06-05T23:17:41.2564398Z copying src/executorch/exir/dialects/edge/op/sample_input.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op 2025-06-05T23:17:41.2565391Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec 2025-06-05T23:17:41.2566385Z copying src/executorch/exir/dialects/edge/spec/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec 2025-06-05T23:17:41.2567506Z copying src/executorch/exir/dialects/edge/spec/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec 2025-06-05T23:17:41.2568360Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/test 2025-06-05T23:17:41.2569298Z copying src/executorch/exir/dialects/edge/test/test_edge_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/test 2025-06-05T23:17:41.2570421Z copying src/executorch/exir/dialects/edge/test/test_edge_yaml.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/test 2025-06-05T23:17:41.2571567Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op/test 2025-06-05T23:17:41.2572550Z copying src/executorch/exir/dialects/edge/op/test/test_api.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op/test 2025-06-05T23:17:41.2573570Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/test 2025-06-05T23:17:41.2574323Z copying src/executorch/exir/emit/test/test_emit.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/test 2025-06-05T23:17:41.2575324Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/test 2025-06-05T23:17:41.2576153Z copying src/executorch/exir/operator/test/test_operator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/test 2025-06-05T23:17:41.2576954Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:17:41.2577979Z copying src/executorch/exir/program/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:17:41.2579020Z copying src/executorch/exir/program/test/test_fake_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:17:41.2580048Z copying src/executorch/exir/program/test/test_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:17:41.2580866Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/test 2025-06-05T23:17:41.2581820Z copying src/executorch/exir/verification/test/test_verifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/test 2025-06-05T23:17:41.2582835Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:17:41.2583649Z copying src/executorch/extension/export_util/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:17:41.2584646Z copying src/executorch/extension/export_util/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:17:41.2585458Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor 2025-06-05T23:17:41.2586274Z copying src/executorch/extension/flat_tensor/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor 2025-06-05T23:17:41.2587052Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:17:41.2587858Z copying src/executorch/extension/gguf_util/convert_main.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:17:41.2588856Z copying src/executorch/extension/gguf_util/converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:17:41.2589851Z copying src/executorch/extension/gguf_util/load_gguf.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:17:41.2590650Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:17:41.2591489Z copying src/executorch/extension/pybindings/portable_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:17:41.2592325Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree 2025-06-05T23:17:41.2593077Z copying src/executorch/extension/pytree/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree 2025-06-05T23:17:41.2593846Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training 2025-06-05T23:17:41.2594631Z copying src/executorch/extension/training/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training 2025-06-05T23:17:41.2595511Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-06-05T23:17:41.2596449Z copying src/executorch/extension/flat_tensor/serialize/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-06-05T23:17:41.2597663Z copying src/executorch/extension/flat_tensor/serialize/flat_tensor_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-06-05T23:17:41.2599339Z copying src/executorch/extension/flat_tensor/serialize/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-06-05T23:17:41.2600283Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/test 2025-06-05T23:17:41.2601217Z copying src/executorch/extension/flat_tensor/test/test_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/test 2025-06-05T23:17:41.2602231Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/converters 2025-06-05T23:17:41.2603237Z copying src/executorch/extension/gguf_util/converters/llama_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/converters 2025-06-05T23:17:41.2604165Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:17:41.2605020Z copying src/executorch/extension/llm/custom_ops/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:17:41.2606099Z copying src/executorch/extension/llm/custom_ops/custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:17:41.2607221Z copying src/executorch/extension/llm/custom_ops/model_sharding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:17:41.2608351Z copying src/executorch/extension/llm/custom_ops/op_tile_crop_aot.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:17:41.2609504Z copying src/executorch/extension/llm/custom_ops/preprocess_custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:17:41.2610725Z copying src/executorch/extension/llm/custom_ops/test_preprocess_custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:17:41.2611939Z copying src/executorch/extension/llm/custom_ops/test_quantized_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:17:41.2613106Z copying src/executorch/extension/llm/custom_ops/test_sdpa_with_kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:17:41.2614277Z copying src/executorch/extension/llm/custom_ops/test_update_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:17:41.2615202Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:17:41.2616119Z copying src/executorch/extension/llm/export/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:17:41.2617154Z copying src/executorch/extension/llm/export/builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:17:41.2618336Z copying src/executorch/extension/llm/export/export_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:17:41.2619499Z copying src/executorch/extension/llm/export/partitioner_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:17:41.2620598Z copying src/executorch/extension/llm/export/quantizer_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:17:41.2621769Z copying src/executorch/extension/llm/export/test_export_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:17:41.2622628Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:17:41.2623435Z copying src/executorch/extension/llm/modules/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:17:41.2624525Z copying src/executorch/extension/llm/modules/_position_embeddings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:17:41.2625805Z copying src/executorch/extension/llm/modules/attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:17:41.2626863Z copying src/executorch/extension/llm/modules/kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:17:41.2627736Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers 2025-06-05T23:17:41.2628591Z copying src/executorch/extension/llm/tokenizers/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers 2025-06-05T23:17:41.2629500Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant 2025-06-05T23:17:41.2892461Z copying src/executorch/extension/llm/custom_ops/spinquant/special_hadamard_code_gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant 2025-06-05T23:17:41.2893894Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:17:41.2895224Z copying src/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:17:41.2897158Z copying src/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:17:41.2898366Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test 2025-06-05T23:17:41.2899322Z copying src/executorch/extension/llm/export/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test 2025-06-05T23:17:41.2900467Z copying src/executorch/extension/llm/export/test/test_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test 2025-06-05T23:17:41.2901362Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-06-05T23:17:41.2902264Z copying src/executorch/extension/llm/modules/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-06-05T23:17:41.2903431Z copying src/executorch/extension/llm/modules/test/test_attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-06-05T23:17:41.2904611Z copying src/executorch/extension/llm/modules/test/test_kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-06-05T23:17:41.2905841Z copying src/executorch/extension/llm/modules/test/test_position_embeddings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-06-05T23:17:41.2906888Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:17:41.2908004Z copying src/executorch/extension/llm/tokenizers/pytorch_tokenizers/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:17:41.2909478Z copying src/executorch/extension/llm/tokenizers/pytorch_tokenizers/constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:17:41.2910964Z copying src/executorch/extension/llm/tokenizers/pytorch_tokenizers/hf_tokenizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:17:41.2912444Z copying src/executorch/extension/llm/tokenizers/pytorch_tokenizers/llama2c.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:17:41.2914109Z copying src/executorch/extension/llm/tokenizers/pytorch_tokenizers/tiktoken.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:17:41.2915393Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test 2025-06-05T23:17:41.2916636Z copying src/executorch/extension/llm/tokenizers/test/test_tiktoken.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test 2025-06-05T23:17:41.2917765Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-06-05T23:17:41.2919270Z copying src/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-06-05T23:17:41.2920757Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:17:41.2922276Z copying src/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:17:41.2924179Z copying src/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:17:41.2925485Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:17:41.2926931Z copying src/executorch/extension/llm/tokenizers/third-party/abseil-cpp/conanfile.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:17:41.2928752Z copying src/executorch/extension/llm/tokenizers/third-party/abseil-cpp/create_lts.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:17:41.2930167Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:17:41.2931626Z copying src/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/abseil.podspec.gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:17:41.2933084Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:17:41.2934435Z copying src/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/copts.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:17:41.2936462Z copying src/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/generate_copts.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:17:41.2938014Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-06-05T23:17:41.2939470Z copying src/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts/check_structure.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-06-05T23:17:41.2940923Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-06-05T23:17:41.2942402Z copying src/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl/filterbr.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-06-05T23:17:41.2944107Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-06-05T23:17:41.2945638Z copying src/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate/amalgamate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-06-05T23:17:41.2947058Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:17:41.2948634Z copying src/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer/nlohmann-json.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:17:41.2950366Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-06-05T23:17:41.2951946Z copying src/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis/generate_natvis.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-06-05T23:17:41.2953800Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-06-05T23:17:41.2955299Z copying src/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header/serve_header.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-06-05T23:17:41.2956817Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:41.2958222Z copying src/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateCommon.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:41.2960392Z copying src/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateTest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:41.2962153Z copying src/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcd.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:41.2964051Z copying src/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpHeader.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:41.3074516Z copying src/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpTables.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:41.3076231Z copying src/executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateCommon.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:41.3078110Z copying src/executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateDates.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:41.3079766Z copying src/executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateRelease.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:41.3081030Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-06-05T23:17:41.3082283Z copying src/executorch/extension/llm/tokenizers/third-party/re2/benchlog/benchplot.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-06-05T23:17:41.3083618Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:17:41.3084973Z copying src/executorch/extension/llm/tokenizers/third-party/re2/python/re2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:17:41.3086555Z copying src/executorch/extension/llm/tokenizers/third-party/re2/python/re2_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:17:41.3088140Z copying src/executorch/extension/llm/tokenizers/third-party/re2/python/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:17:41.3089321Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:17:41.3090768Z copying src/executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_casefold.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:17:41.3092352Z copying src/executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_groups.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:17:41.3094101Z copying src/executorch/extension/llm/tokenizers/third-party/re2/re2/unicode.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:17:41.3095679Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-06-05T23:17:41.3097067Z copying src/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-06-05T23:17:41.3098486Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-06-05T23:17:41.3099825Z copying src/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-06-05T23:17:41.3101187Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:17:41.3102744Z copying src/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:17:41.3104902Z copying src/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/sentencepiece_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:17:41.3106513Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:17:41.3108158Z copying src/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:17:41.3110280Z copying src/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/_version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:17:41.3112480Z copying src/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_model_pb2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:17:41.3115088Z copying src/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_pb2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:17:41.3116760Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:17:41.3118094Z copying src/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:17:41.3119779Z copying src/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:17:41.3121629Z copying src/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/hf_tokenizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:17:41.3123551Z copying src/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/llama2c.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:17:41.3125268Z copying src/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tiktoken.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:17:41.3126588Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools 2025-06-05T23:17:41.3127959Z copying src/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools 2025-06-05T23:17:41.3129345Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:17:41.3130838Z copying src/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:17:41.3132928Z copying src/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:17:41.3134435Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/module/test/resources 2025-06-05T23:17:41.3135563Z copying src/executorch/extension/module/test/resources/gen_bundled_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/module/test/resources 2025-06-05T23:17:41.3136553Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-06-05T23:17:41.3137445Z copying src/executorch/extension/pybindings/test/make_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-06-05T23:17:41.3138693Z copying src/executorch/extension/pybindings/test/test_backend_pybinding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-06-05T23:17:41.3139928Z copying src/executorch/extension/pybindings/test/test_pybindings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-06-05T23:17:41.3140818Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/test 2025-06-05T23:17:41.3141633Z copying src/executorch/extension/pytree/test/test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/test 2025-06-05T23:17:41.3142465Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-06-05T23:17:41.3143438Z copying src/executorch/extension/training/pybindings/_training_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-06-05T23:17:41.3144426Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR 2025-06-05T23:17:41.3145410Z copying src/executorch/extension/training/examples/XOR/export_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR 2025-06-05T23:17:42.5589843Z copying src/executorch/extension/training/examples/XOR/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR 2025-06-05T23:17:42.5590909Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR/test 2025-06-05T23:17:42.5592783Z copying src/executorch/extension/training/examples/XOR/test/test_export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR/test 2025-06-05T23:17:42.5594488Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/test 2025-06-05T23:17:42.5595505Z copying src/executorch/extension/training/pybindings/test/test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/test 2025-06-05T23:17:42.5596882Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:17:42.5597649Z copying src/executorch/kernels/quantized/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:17:42.5598455Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test 2025-06-05T23:17:42.5599348Z copying src/executorch/kernels/quantized/test/test_out_variants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test 2025-06-05T23:17:42.5601410Z copying src/executorch/kernels/quantized/test/test_quant_dequant_per_token.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test 2025-06-05T23:17:42.5602837Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test 2025-06-05T23:17:42.5603581Z copying src/executorch/runtime/test/test_runtime.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test 2025-06-05T23:17:42.5604278Z running egg_info 2025-06-05T23:17:42.5604549Z creating executorch.egg-info 2025-06-05T23:17:42.5604894Z writing executorch.egg-info/PKG-INFO 2025-06-05T23:17:42.5605331Z writing dependency_links to executorch.egg-info/dependency_links.txt 2025-06-05T23:17:42.5605840Z writing entry points to executorch.egg-info/entry_points.txt 2025-06-05T23:17:42.5606308Z writing requirements to executorch.egg-info/requires.txt 2025-06-05T23:17:42.5606761Z writing top-level names to executorch.egg-info/top_level.txt 2025-06-05T23:17:42.5607226Z writing manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:17:42.5607691Z reading manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:17:42.5608296Z adding license file 'LICENSE' 2025-06-05T23:17:42.5608871Z writing manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:17:42.5609919Z copying src/executorch/exir/delegate.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:17:42.5610972Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:17:42.5611632Z copying src/executorch/schema/program.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:17:42.5612507Z copying src/executorch/schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:17:42.5613575Z copying src/executorch/backends/apple/coreml/executorchcoreml.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml 2025-06-05T23:17:42.5614815Z copying src/executorch/backends/apple/mps/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization 2025-06-05T23:17:42.5616170Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/schema 2025-06-05T23:17:42.5618328Z copying src/executorch/backends/arm/third-party/serialization_lib/schema/tosa.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/schema 2025-06-05T23:17:42.5620388Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/pnpm-lock.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:17:42.5621933Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:17:42.5623477Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/analysis_options.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:17:42.5626757Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/pubspec.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:17:42.5629209Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/py.typed -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:17:42.5630776Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection 2025-06-05T23:17:42.5632646Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection/reflection.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection 2025-06-05T23:17:42.5635877Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/monster.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:17:42.5638168Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check-grpc-generated-code.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:17:42.5639787Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap 2025-06-05T23:17:42.5641984Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap/snapcraft.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap 2025-06-05T23:17:42.5644908Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MutatingBool.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5647090Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/alignment_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5649125Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/arrays_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5652580Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/dictionary_lookup.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5654794Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/included_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5656908Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/includer_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5659764Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/keyword_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5662350Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_extra.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5664524Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5666726Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/more_defaults.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5670110Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nan_inf_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5672308Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_inline_table_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5821261Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_type_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5823382Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_union_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5825437Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5827534Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/private_annotation_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5829622Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/required_strings.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5831669Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/rust_namer_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5833647Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5835672Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/type_field_collsion.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5837763Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_underlying_type_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5839852Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_value_collision.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5841902Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/vector_has_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:42.5843526Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs 2025-06-05T23:17:42.5845474Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs/animal.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs 2025-06-05T23:17:42.5847395Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers 2025-06-05T23:17:42.5849225Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers/bench.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers 2025-06-05T23:17:42.5850976Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:17:42.5852564Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/bool_structs.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:17:42.5854663Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/list_of_enums.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:17:42.5856815Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/monster_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:17:42.5858430Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo 2025-06-05T23:17:42.5860085Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/hero.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo 2025-06-05T23:17:42.5862236Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/net.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo 2025-06-05T23:17:42.5863863Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema 2025-06-05T23:17:42.5865509Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema/basic.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema 2025-06-05T23:17:42.5867666Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/greeter.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples 2025-06-05T23:17:42.5869337Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter 2025-06-05T23:17:42.5871085Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter/greeter.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter 2025-06-05T23:17:42.5872873Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector 2025-06-05T23:17:42.5874751Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector/union_vector.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector 2025-06-05T23:17:42.5876664Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit 2025-06-05T23:17:42.5878465Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/test_64bit.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit 2025-06-05T23:17:42.5880699Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:17:42.5883075Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary_old.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:17:42.5884884Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test 2025-06-05T23:17:42.5886619Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v1.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test 2025-06-05T23:17:42.5888911Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v2.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test 2025-06-05T23:17:42.6046744Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/enum_val_attributes.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:42.6049049Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:42.6052323Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo_with_ns.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:42.6054032Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test 2025-06-05T23:17:42.6055858Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/include_test1.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test 2025-06-05T23:17:42.6058814Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/order.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test 2025-06-05T23:17:42.6062026Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field 2025-06-05T23:17:42.6065341Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field/key_field_sample.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field 2025-06-05T23:17:42.6067195Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums 2025-06-05T23:17:42.6069203Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums/enums.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums 2025-06-05T23:17:42.6072072Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:17:42.6073854Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test1.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:17:42.6076148Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test2.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:17:42.6079161Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test1.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:17:42.6083041Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test2.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:17:42.6085429Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test1.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test 2025-06-05T23:17:42.6087761Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test2.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test 2025-06-05T23:17:42.6090336Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test 2025-06-05T23:17:42.6092541Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test1.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test 2025-06-05T23:17:42.6095114Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test2.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test 2025-06-05T23:17:42.6097634Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test3.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test 2025-06-05T23:17:42.6100518Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:42.6102230Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:42.6104475Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_id.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:42.6107895Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:42.6111460Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include_id.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:42.6113751Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:42.6117116Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix_id.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:42.6119426Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:42.6121682Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_id.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:42.6125699Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:42.6128365Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include_id.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:42.6130765Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:42.6260043Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix_id.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:42.6262353Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/typescript_keywords.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:17:42.6264281Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector 2025-06-05T23:17:42.6267094Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector/union_vector.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector 2025-06-05T23:17:42.6268938Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution 2025-06-05T23:17:42.6270902Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v1.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution 2025-06-05T23:17:42.6275048Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v2.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution 2025-06-05T23:17:42.6277098Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:17:42.6278943Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:17:42.6282250Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_foo.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:17:42.6284471Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_ns.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:17:42.6286172Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz 2025-06-05T23:17:42.6288229Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz 2025-06-05T23:17:42.6292164Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz_with_ns.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz 2025-06-05T23:17:42.6293941Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub 2025-06-05T23:17:42.6295838Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/include_test2.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub 2025-06-05T23:17:42.6299293Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/no_namespace.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub 2025-06-05T23:17:42.6301408Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests 2025-06-05T23:17:42.6303589Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_import.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests 2025-06-05T23:17:42.6306282Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_no_include.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests 2025-06-05T23:17:42.6308455Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers 2025-06-05T23:17:42.6312320Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers/fuzzer.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers 2025-06-05T23:17:42.6314451Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex 2025-06-05T23:17:42.6316335Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex/arrays_test_complex.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex 2025-06-05T23:17:42.6318274Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir 2025-06-05T23:17:42.6321479Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/one.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir 2025-06-05T23:17:42.6324266Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/pnpm-lock.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir 2025-06-05T23:17:42.6327224Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/two.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir 2025-06-05T23:17:42.6329962Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir 2025-06-05T23:17:42.6331736Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_include.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir 2025-06-05T23:17:42.6334357Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_transitive_include.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir 2025-06-05T23:17:42.6336916Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/schemas 2025-06-05T23:17:42.6337938Z copying src/executorch/backends/arm/tosa/schemas/tosa_0.80.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/schemas 2025-06-05T23:17:42.6339084Z copying src/executorch/backends/arm/tosa/schemas/tosa_1.0.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/schemas 2025-06-05T23:17:42.6340197Z copying src/executorch/backends/cadence/aot/functions.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:42.6341318Z copying src/executorch/backends/cadence/aot/functions_fusion_g3.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:42.6343303Z copying src/executorch/backends/cadence/aot/functions_hifi.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:17:42.6622799Z copying src/executorch/backends/cortex_m/ops/operators.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops 2025-06-05T23:17:42.6624048Z copying src/executorch/backends/qualcomm/serialization/qc_compiler_spec.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-06-05T23:17:42.6625221Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/aot/ir 2025-06-05T23:17:42.6626210Z copying src/executorch/backends/qualcomm/aot/ir/qcir.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/aot/ir 2025-06-05T23:17:42.6627813Z copying src/executorch/backends/vulkan/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:17:42.6629582Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6630981Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6632497Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_texture3d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6634028Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_optimized.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6636019Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/arange.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6638242Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/avg_pool2d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6639783Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/batchnorm.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6641239Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/binary_op.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6642860Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/bitw8_image_to_nchw_nobitw8buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6645531Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6647208Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_nchw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6648637Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/clone.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6650047Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv1d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6652153Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6654216Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6655818Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_output_tile.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6657363Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_prepack_weights.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6659498Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_sned_output_tile.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6661831Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_prepack_weights.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6663570Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6665008Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw_s1p0.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6666492Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6669209Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d_prepack_weights.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6671029Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/copy_channel_offset.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6672542Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/copy_offset.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6674024Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/copy_packed_dim_offset.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6675504Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/embedding.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6678206Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/flip.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6679887Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/full.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6681327Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/grid_priors.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6682786Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/image_to_nchw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6684231Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/index_select.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6686493Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/index_select_channel.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6688602Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/kv_cache_update.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6690083Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6691561Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_coop.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6693573Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_tiled.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6695943Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_coop.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6697505Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_tiled.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6699238Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/max_pool2d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6701342Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/native_layer_norm.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6703658Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_bitw8_image_nobitw8buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6705220Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6970005Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_image.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6971483Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/no_op.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6973048Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/pack_int4_linear_weight_transposed_interleaved.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6975284Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/pad_channel.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6977405Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/pad_height_width.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6979091Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/permute.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6980526Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/reduce.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6982155Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/repeat.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6984594Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_channel.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6986156Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_interleave.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6987667Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/rotary_embedding.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6989259Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_attn_weight_scale_and_mask.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6991583Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/softmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6993406Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/tan.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6994845Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6996337Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_texture.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.6998538Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/unary_op.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.7000738Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/upsample_2d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.7002249Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/var_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.7003695Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/var_texture3d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.7005127Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/view.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.7007614Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/where.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:42.7008776Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl 2025-06-05T23:17:42.7009698Z copying src/executorch/backends/vulkan/test/glsl/all_shaders.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl 2025-06-05T23:17:42.7010940Z copying src/executorch/backends/vulkan/test/glsl/dynamic_dispatch_test.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl 2025-06-05T23:17:42.7012239Z copying src/executorch/backends/vulkan/test/glsl/reference_matmul_common.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl 2025-06-05T23:17:42.7013559Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:17:42.7015513Z copying src/executorch/backends/vulkan/tools/gpuinfo/glsl/buf_bandwidth.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:17:42.7017052Z copying src/executorch/backends/vulkan/tools/gpuinfo/glsl/buf_cacheline_size.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:17:42.7018427Z copying src/executorch/backends/vulkan/tools/gpuinfo/glsl/reg_count.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:17:42.7019787Z copying src/executorch/backends/vulkan/tools/gpuinfo/glsl/tex_bandwidth.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:17:42.7021655Z copying src/executorch/backends/vulkan/tools/gpuinfo/glsl/tex_cacheline_concurr.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:17:42.7023795Z copying src/executorch/backends/vulkan/tools/gpuinfo/glsl/warp_size.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:17:42.7025202Z copying src/executorch/backends/xnnpack/serialization/runtime_schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:17:42.7026478Z copying src/executorch/backends/xnnpack/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:17:42.7027796Z copying src/executorch/backends/xnnpack/third-party/generate-cpuinfo-wrappers.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party 2025-06-05T23:17:42.7029912Z copying src/executorch/backends/xnnpack/third-party/FP16/confu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:17:42.7031583Z copying src/executorch/backends/xnnpack/third-party/FXdiv/confu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:17:42.7033527Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/confu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:17:42.7034909Z copying src/executorch/backends/xnnpack/third-party/pthreadpool/confu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:17:42.7037069Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/scripts/generate-build-identifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:17:42.7039378Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/scripts/sort-filenames.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:17:42.7040570Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7041743Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/bf16-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7043260Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-conv-hwc2chw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7045895Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-dwconv2d-chw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7047584Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7049168Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-igemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7050737Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rdsum.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7365554Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rsum.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7367104Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7368613Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear-chw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7370133Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7372833Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-igemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7374559Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-raddstoreexpminusmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7376153Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7377740Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmin.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7380220Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rminmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7382185Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rsum.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7383673Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-spmm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7385202Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-vmulcaddc-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7387225Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-argmaxpool.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7389486Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7391065Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc2chw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7392585Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-dwconv2d-chw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7394120Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-goi-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7395641Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7397130Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-relu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7398601Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7400082Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemminc-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7402387Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear-chw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7404417Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7405938Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7407455Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-relu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7408932Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7410411Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ppmm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7411949Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc4w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7413688Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7416090Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-relu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7418118Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7419655Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddexpminusmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7421185Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddextexp.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7422761Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddstoreexpminusmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7424303Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rdsum.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7425740Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7427182Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmin.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7429079Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rminmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7431308Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rsum.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7432860Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-spmm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7434390Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vmulcaddc-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7436648Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleexpminusmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7438770Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleextexp.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7440346Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qb4w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7441940Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc4w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7632562Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7634800Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-igemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7636607Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qb4w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7638760Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc4w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7640666Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7642624Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-igemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7644462Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qb4w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7646413Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qc4w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7648213Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-gemm-minmax-fp32.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7649888Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-igemm-minmax-fp32.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7651460Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rdsum-minmax-fp32.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7652966Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rsum.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7654794Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-fp32.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7656809Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-rndnu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7658959Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-fp32.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7661080Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-rndnu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7663074Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rdsum.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7665036Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rsum.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7666781Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/s8-ibilinear.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7682363Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/u8-ibilinear.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7683995Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/u8-lut32norm.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7685474Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/u8-rmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7687174Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/x8-lut.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:42.7688880Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-argmaxpool-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7690560Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7692271Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc2chw-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7693925Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-multipass-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7695936Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-unipass-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7697965Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv2d-chw-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7699604Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-gemm-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7701298Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-chw-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7702932Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7704511Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-norm-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7706189Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7707796Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddexpminusmax-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7709425Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddextexp-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7711112Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddstoreexpminusmax-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7712801Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-benchmark.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7714846Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7716463Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7718144Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-spmm-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7719860Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vbinary-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.7721459Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vmulcaddc-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.8721350Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleexpminusmax-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.8723271Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleextexp-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.8725323Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vunary-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.8727339Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/update-microkernels.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:42.8729297Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/scripts/android-device-dump.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:17:42.8731316Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/scripts/arm-linux-filesystem-dump.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:17:42.8733251Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/scripts/parse-x86-cpuid-dump.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:17:42.8735228Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/confu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:17:42.8736798Z copying src/executorch/devtools/etdump/etdump_schema_flatcc.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:17:42.8737915Z copying src/executorch/devtools/etdump/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:17:42.8739174Z copying src/executorch/devtools/bundled_program/schema/bundled_program_schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-06-05T23:17:42.8740574Z copying src/executorch/devtools/bundled_program/schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-06-05T23:17:42.8741920Z copying src/executorch/examples/llm_pte_finetuning/llama3_config.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:17:42.8743224Z copying src/executorch/examples/llm_pte_finetuning/phi3_alpaca_code_config.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:17:42.8744496Z copying src/executorch/examples/llm_pte_finetuning/phi3_config.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:17:42.8745794Z copying src/executorch/examples/llm_pte_finetuning/qwen_05b_config.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:17:42.8747048Z copying src/executorch/examples/models/phi-3-mini/export_phi-3-mini.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:17:42.8748209Z copying src/executorch/exir/dialects/edge/edge.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:17:42.8749586Z copying src/executorch/extension/pybindings/pybindings.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:17:42.8750916Z copying src/executorch/extension/flat_tensor/serialize/flat_tensor.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-06-05T23:17:42.8752228Z copying src/executorch/extension/flat_tensor/serialize/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-06-05T23:17:42.8753852Z copying src/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/abseil.podspec.gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:17:42.8755837Z copying src/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer/nlohmann-json.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:17:42.8757600Z copying src/executorch/extension/training/pybindings/_training_lib.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-06-05T23:17:42.8758800Z copying src/executorch/kernels/quantized/quantized.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:17:42.8760014Z copying src/executorch/kernels/quantized/test/supported_features_def.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test 2025-06-05T23:17:42.8760991Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/kernel/test 2025-06-05T23:17:42.8761889Z copying src/executorch/runtime/kernel/test/functions.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/kernel/test 2025-06-05T23:17:42.8762881Z copying schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:17:42.8763890Z copying schema/program.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:17:42.8765110Z copying devtools/bundled_program/schema/bundled_program_schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-06-05T23:17:42.8766468Z copying devtools/bundled_program/schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-06-05T23:17:42.8767398Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/share/cmake 2025-06-05T23:17:42.8768377Z copying tools/cmake/executorch-wheel-config.cmake -> pip-out/lib.linux-x86_64-cpython-310/executorch/share/cmake/executorch-config.cmake 2025-06-05T23:17:42.8769363Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8770226Z copying runtime/core/array_ref.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8771220Z copying runtime/core/data_loader.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8772193Z copying runtime/core/defines.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8773163Z copying runtime/core/error.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8774256Z copying runtime/core/evalue.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8775217Z copying runtime/core/event_tracer.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8776140Z copying runtime/core/event_tracer_hooks.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8777290Z copying runtime/core/event_tracer_hooks_delegate.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8778588Z copying runtime/core/freeable_buffer.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8779918Z copying runtime/core/function_ref.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8781024Z copying runtime/core/hierarchical_allocator.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8782058Z copying runtime/core/memory_allocator.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8783165Z copying runtime/core/named_data_map.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8784059Z copying runtime/core/result.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8785018Z copying runtime/core/span.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8785906Z copying runtime/core/tag.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8786799Z copying runtime/core/tensor_layout.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8787944Z copying runtime/core/tensor_shape_dynamism.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:17:42.8788845Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten 2025-06-05T23:17:42.8789759Z copying runtime/core/exec_aten/exec_aten.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten 2025-06-05T23:17:42.8790899Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:17:42.8792036Z copying runtime/core/exec_aten/testing_util/tensor_factory.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:17:42.8793519Z copying runtime/core/exec_aten/testing_util/tensor_util.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:17:42.8853543Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:17:42.8854610Z copying runtime/core/exec_aten/util/dim_order_util.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:17:42.8856441Z copying runtime/core/exec_aten/util/scalar_type_util.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:17:42.8857941Z copying runtime/core/exec_aten/util/tensor_dimension_limit.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:17:42.8859209Z copying runtime/core/exec_aten/util/tensor_shape_to_c_string.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:17:42.8860545Z copying runtime/core/exec_aten/util/tensor_util.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:17:42.8861610Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:42.8862601Z copying runtime/core/portable_type/bfloat16.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:42.8863812Z copying runtime/core/portable_type/bfloat16_math.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:42.8864975Z copying runtime/core/portable_type/bits_types.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:42.8866106Z copying runtime/core/portable_type/complex.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:42.8867528Z copying runtime/core/portable_type/device.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:42.8868754Z copying runtime/core/portable_type/half.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:42.8869927Z copying runtime/core/portable_type/optional.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:42.8871081Z copying runtime/core/portable_type/qint_types.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:42.8872486Z copying runtime/core/portable_type/scalar.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:42.8873682Z copying runtime/core/portable_type/scalar_type.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:42.8875050Z copying runtime/core/portable_type/string_view.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:42.8876275Z copying runtime/core/portable_type/tensor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:42.8877824Z copying runtime/core/portable_type/tensor_impl.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:42.8879071Z copying runtime/core/portable_type/tensor_options.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:42.8880346Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:17:42.8881639Z copying runtime/core/portable_type/c10/c10/macros/Export.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:17:42.8883067Z copying runtime/core/portable_type/c10/c10/macros/Macros.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:17:42.8884281Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:42.8885478Z copying runtime/core/portable_type/c10/c10/util/BFloat16-inl.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:42.8886905Z copying runtime/core/portable_type/c10/c10/util/BFloat16-math.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:42.8888330Z copying runtime/core/portable_type/c10/c10/util/BFloat16.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:42.8890092Z copying runtime/core/portable_type/c10/c10/util/Half-inl.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:42.8891739Z copying runtime/core/portable_type/c10/c10/util/Half.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:42.8893170Z copying runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:42.8894905Z copying runtime/core/portable_type/c10/c10/util/bit_cast.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:42.8896545Z copying runtime/core/portable_type/c10/c10/util/complex.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:42.8898446Z copying runtime/core/portable_type/c10/c10/util/complex_math.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:42.8900139Z copying runtime/core/portable_type/c10/c10/util/complex_utils.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:42.8901844Z copying runtime/core/portable_type/c10/c10/util/floating_point_utils.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:42.8903519Z copying runtime/core/portable_type/c10/c10/util/irange.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:42.8904564Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:17:42.8905409Z copying runtime/kernel/kernel_includes.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:17:42.8906440Z copying runtime/kernel/kernel_runtime_context.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:17:42.8907455Z copying runtime/kernel/operator_registry.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:17:42.8908498Z copying runtime/kernel/thread_parallel_interface.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:17:42.8909408Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/test 2025-06-05T23:17:42.8910279Z copying runtime/kernel/test/test_util.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/test 2025-06-05T23:17:42.8911151Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:17:42.8911993Z copying runtime/platform/abort.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:17:42.8912941Z copying runtime/platform/assert.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:17:42.8913895Z copying runtime/platform/clock.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:17:42.8914857Z copying runtime/platform/compat_unistd.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:17:42.8915847Z copying runtime/platform/compiler.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:17:42.8916796Z copying runtime/platform/log.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:17:42.8917729Z copying runtime/platform/platform.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:17:42.8918709Z copying runtime/platform/profiler.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:17:42.8919670Z copying runtime/platform/runtime.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:17:42.8920630Z copying runtime/platform/system.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:17:42.8921574Z copying runtime/platform/types.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:17:42.8922419Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-06-05T23:17:42.9648341Z copying runtime/platform/test/pal_spy.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-06-05T23:17:42.9649573Z copying runtime/platform/test/stub_platform.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-06-05T23:17:42.9650999Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-06-05T23:17:42.9652061Z copying extension/kernel_util/make_boxed_from_unboxed_functor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-06-05T23:17:42.9653404Z copying extension/kernel_util/meta_programming.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-06-05T23:17:42.9654608Z copying extension/kernel_util/type_list.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-06-05T23:17:42.9655772Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:17:42.9656616Z copying extension/tensor/tensor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:17:42.9657955Z copying extension/tensor/tensor_accessor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:17:42.9659165Z copying extension/tensor/tensor_ptr.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:17:42.9660282Z copying extension/tensor/tensor_ptr_maker.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:17:42.9661369Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:17:42.9662415Z copying extension/threadpool/cpuinfo_utils.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:17:42.9663712Z copying extension/threadpool/threadpool.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:17:42.9665204Z copying extension/threadpool/threadpool_guard.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:17:42.9665917Z running build_ext 2025-06-05T23:17:42.9666459Z creating /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin 2025-06-05T23:17:42.9667854Z copying /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/bin/flatc -> /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin 2025-06-05T23:17:42.9669428Z copying tools/wheel/pip_data_bin_init.py.in -> /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin/__init__.py 2025-06-05T23:17:42.9670710Z copying /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/_portable_lib.cpython-310-x86_64-linux-gnu.so -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:17:42.9672637Z copying /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/backends/apple/coreml/executorchcoreml.cpython-310-x86_64-linux-gnu.so -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml 2025-06-05T23:17:42.9674641Z copying /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/extension/llm/custom_ops/libcustom_ops_aot_lib.so -> /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:17:42.9676556Z copying /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/libquantized_ops_aot_lib.so -> /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:17:42.9677790Z installing to pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:17:42.9678218Z running install 2025-06-05T23:17:42.9678511Z running install_lib 2025-06-05T23:17:42.9678786Z creating pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:17:42.9679150Z creating pip-out/bdist.linux-x86_64/wheel/executorch 2025-06-05T23:17:42.9679591Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen 2025-06-05T23:17:42.9680373Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen 2025-06-05T23:17:42.9681794Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen 2025-06-05T23:17:42.9682921Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen 2025-06-05T23:17:42.9683981Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/parse.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen 2025-06-05T23:17:42.9684740Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/api 2025-06-05T23:17:42.9685568Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/api 2025-06-05T23:17:42.9686670Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/custom_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/api 2025-06-05T23:17:42.9687877Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/et_cpp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/api 2025-06-05T23:17:42.9688960Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/unboxing.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/api 2025-06-05T23:17:42.9689908Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/api/types 2025-06-05T23:17:42.9690777Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/api/types 2025-06-05T23:17:42.9692097Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types/signatures.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/api/types 2025-06-05T23:17:42.9693348Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types/types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/api/types 2025-06-05T23:17:42.9694299Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/test 2025-06-05T23:17:42.9695508Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test/test_executorch_custom_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/test 2025-06-05T23:17:42.9696962Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test/test_executorch_gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/test 2025-06-05T23:17:42.9698408Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test/test_executorch_signatures.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/test 2025-06-05T23:17:42.9699909Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test/test_executorch_types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/test 2025-06-05T23:17:42.9701363Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test/test_executorch_unboxing.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/test 2025-06-05T23:17:42.9702684Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test/test_selective_build.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/test 2025-06-05T23:17:42.9703656Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/tools 2025-06-05T23:17:42.9704532Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-06-05T23:17:42.9705762Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/gen_all_oplist.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-06-05T23:17:42.9707001Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/gen_oplist.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-06-05T23:17:42.9708240Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/gen_ops_def.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-06-05T23:17:42.9709634Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/gen_selected_op_variants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-06-05T23:17:42.9710964Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/merge_yaml.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-06-05T23:17:42.9712158Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/yaml_util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-06-05T23:17:42.9713190Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/tools/test 2025-06-05T23:17:42.9714125Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test/test_gen_all_oplist.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools/test 2025-06-05T23:17:42.9715575Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test/test_gen_oplist.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools/test 2025-06-05T23:17:42.9717027Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test/test_gen_oplist_real_model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools/test 2025-06-05T23:17:42.9718465Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test/test_gen_selected_op_variants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools/test 2025-06-05T23:17:42.9719798Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools 2025-06-05T23:17:42.9772784Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools 2025-06-05T23:17:42.9773921Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/backend_debug 2025-06-05T23:17:42.9774985Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/backend_debug 2025-06-05T23:17:42.9776442Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug/delegation_info.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/backend_debug 2025-06-05T23:17:42.9777547Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/backend_debug/tests 2025-06-05T23:17:42.9778946Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug/tests/test_delegation_info.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/backend_debug/tests 2025-06-05T23:17:42.9780046Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program 2025-06-05T23:17:42.9781174Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/config.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program 2025-06-05T23:17:42.9782555Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/core.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program 2025-06-05T23:17:42.9784036Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program 2025-06-05T23:17:42.9785185Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/schema 2025-06-05T23:17:42.9786365Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/schema 2025-06-05T23:17:42.9788010Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/bundled_program_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/schema 2025-06-05T23:17:42.9789253Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/schema/test 2025-06-05T23:17:42.9790624Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/test/test_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/schema/test 2025-06-05T23:17:42.9792620Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/bundled_program_schema.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/schema 2025-06-05T23:17:42.9794421Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/scalar_type.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/schema 2025-06-05T23:17:42.9795558Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/serialize 2025-06-05T23:17:42.9796821Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/serialize 2025-06-05T23:17:42.9797992Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/serialize/test 2025-06-05T23:17:42.9799453Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/test/test_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/serialize/test 2025-06-05T23:17:42.9801270Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/bundled_program_schema.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/serialize 2025-06-05T23:17:42.9803088Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/scalar_type.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/serialize 2025-06-05T23:17:42.9804268Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/test 2025-06-05T23:17:42.9805574Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test/test_bundle_data.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/test 2025-06-05T23:17:42.9807037Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test/test_config.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/test 2025-06-05T23:17:42.9808769Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test/test_end2end.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/test 2025-06-05T23:17:42.9809945Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/util 2025-06-05T23:17:42.9810984Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/util/test_util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/util 2025-06-05T23:17:42.9812189Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/debug_format 2025-06-05T23:17:42.9813135Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format/base_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/debug_format 2025-06-05T23:17:42.9814621Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format/et_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/debug_format 2025-06-05T23:17:42.9815634Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etdump 2025-06-05T23:17:42.9816591Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/schema_flatcc.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/etdump 2025-06-05T23:17:42.9817924Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/etdump 2025-06-05T23:17:42.9818989Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etdump/tests 2025-06-05T23:17:42.9819989Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/tests/serialize_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/etdump/tests 2025-06-05T23:17:42.9821542Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/etdump_schema_flatcc.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/etdump 2025-06-05T23:17:42.9822993Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/scalar_type.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/etdump 2025-06-05T23:17:42.9824035Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etrecord 2025-06-05T23:17:42.9824929Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/etrecord 2025-06-05T23:17:42.9826415Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/_etrecord.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/etrecord 2025-06-05T23:17:42.9827315Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etrecord/tests 2025-06-05T23:17:42.9828459Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/tests/etrecord_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/etrecord/tests 2025-06-05T23:17:42.9829440Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/inspector 2025-06-05T23:17:42.9830539Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector 2025-06-05T23:17:42.9831867Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/_inspector.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector 2025-06-05T23:17:42.9833447Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/_inspector_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector 2025-06-05T23:17:42.9835058Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/_intermediate_output_capturer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector 2025-06-05T23:17:42.9836586Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/inspector_cli.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector 2025-06-05T23:17:42.9837721Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/inspector/tests 2025-06-05T23:17:42.9838922Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests/event_blocks_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/tests 2025-06-05T23:17:42.9840532Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests/inspector_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/tests 2025-06-05T23:17:42.9842377Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests/inspector_test_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/tests 2025-06-05T23:17:42.9844156Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests/inspector_utils_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/tests 2025-06-05T23:17:42.9907071Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests/intermediate_output_capturer_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/tests 2025-06-05T23:17:42.9908430Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/size_analysis_tool 2025-06-05T23:17:42.9909587Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/size_analysis_tool/size_analysis_tool.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/size_analysis_tool 2025-06-05T23:17:42.9911141Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/size_analysis_tool/size_analysis_tool_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/size_analysis_tool 2025-06-05T23:17:42.9912394Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/visualization 2025-06-05T23:17:42.9913366Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/visualization 2025-06-05T23:17:42.9915339Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization/visualization_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/visualization 2025-06-05T23:17:42.9917081Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization/visualization_utils_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/visualization 2025-06-05T23:17:42.9918294Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir 2025-06-05T23:17:42.9919063Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9920231Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_warnings.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9921297Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/common.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9922534Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/control_flow.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9923731Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/delegate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9924865Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dim_order_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9926148Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dynamic_shape.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9927236Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/error.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9928418Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/graph.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9929454Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/graph_module.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9930822Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/lowered_backend_module.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9931973Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/memory.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9933185Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/memory_planning.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9934291Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/pass_base.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9935359Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/pass_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9936384Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/print_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9937503Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/scalar_type.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9938488Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9939602Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/sym_util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9940619Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9941722Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tracer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9942737Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9943831Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9944943Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/wrap.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:42.9945900Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/_serialize 2025-06-05T23:17:42.9946742Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:17:42.9948062Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/_cord.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:17:42.9949451Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/_dataclass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:17:42.9950826Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/_flatbuffer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:17:42.9952218Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/_named_data_store.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:17:42.9953688Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:17:42.9955037Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:17:42.9956452Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/data_serializer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:17:42.9957732Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/padding.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:17:42.9958587Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/_serialize/test 2025-06-05T23:17:42.9959818Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize/test 2025-06-05T23:17:42.9961055Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test/test_cord.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize/test 2025-06-05T23:17:42.9962531Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test/test_flatbuffer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize/test 2025-06-05T23:17:42.9964051Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test/test_named_data_store.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize/test 2025-06-05T23:17:42.9965372Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test/test_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize/test 2025-06-05T23:17:42.9966858Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/scalar_type.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:17:42.9968171Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/program.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:17:42.9969088Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend 2025-06-05T23:17:42.9969932Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/backend_api.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend 2025-06-05T23:17:42.9971310Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/backend_details.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend 2025-06-05T23:17:42.9972531Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/compile_spec_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend 2025-06-05T23:17:42.9973939Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/operator_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend 2025-06-05T23:17:42.9975620Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend 2025-06-05T23:17:42.9976766Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend 2025-06-05T23:17:42.9978031Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/canonical_partitioners 2025-06-05T23:17:43.0026050Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners/all_node_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/canonical_partitioners 2025-06-05T23:17:43.0027948Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners/config_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/canonical_partitioners 2025-06-05T23:17:43.0029835Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners/duplicate_constant_node_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/canonical_partitioners 2025-06-05T23:17:43.0031729Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners/duplicate_dequant_node_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/canonical_partitioners 2025-06-05T23:17:43.0033516Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners/pattern_op_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/canonical_partitioners 2025-06-05T23:17:43.0034717Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test 2025-06-05T23:17:43.0035795Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/backend_with_compiler_demo.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0037340Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/backend_with_delegate_mapping_demo.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0038956Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/backend_with_named_data_map.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0040536Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/backend_with_preprocess_all_demo.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0041945Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/hta_partitioner_demo.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0043471Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/op_partitioner_demo.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0044957Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/qnn_backend_demo.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0046311Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_backend_with_named_data_map.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0047847Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_backends.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0049285Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_backends_lifted.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0050635Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_backends_nested.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0052467Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_compatibility.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0053990Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_debug_handle_map.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0055621Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_delegate_map_builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0057245Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_graph_partition.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0058912Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_lowered_backend_module.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0060483Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0061901Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0063361Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_to_backend_multi_method.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0064727Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:17:43.0065687Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test/demos 2025-06-05T23:17:43.0066769Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/test_delegate_aten_mode.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test/demos 2025-06-05T23:17:43.0068336Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/test_xnnpack_qnnpack.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test/demos 2025-06-05T23:17:43.0069603Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test/demos/rpc 2025-06-05T23:17:43.0070837Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc/executor_backend_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test/demos/rpc 2025-06-05T23:17:43.0072613Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc/executor_backend_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test/demos/rpc 2025-06-05T23:17:43.0074404Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc/test_rpc.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test/demos/rpc 2025-06-05T23:17:43.0075661Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/capture 2025-06-05T23:17:43.0076497Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/capture 2025-06-05T23:17:43.0077974Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture/_capture.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/capture 2025-06-05T23:17:43.0079322Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture/_config.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/capture 2025-06-05T23:17:43.0080551Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture/_unlift.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/capture 2025-06-05T23:17:43.0081538Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects 2025-06-05T23:17:43.0082381Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects 2025-06-05T23:17:43.0083935Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects 2025-06-05T23:17:43.0084954Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/backend 2025-06-05T23:17:43.0086013Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend/_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/backend 2025-06-05T23:17:43.0087059Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/backend/test 2025-06-05T23:17:43.0088246Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend/test/test_backend_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/backend/test 2025-06-05T23:17:43.0089452Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge 2025-06-05T23:17:43.0090400Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge 2025-06-05T23:17:43.0091301Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/arg 2025-06-05T23:17:43.0092378Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/arg 2025-06-05T23:17:43.0093757Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg/type.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/arg 2025-06-05T23:17:43.0094822Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/dtype 2025-06-05T23:17:43.0095914Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype/runner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/dtype 2025-06-05T23:17:43.0097495Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype/supported.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/dtype 2025-06-05T23:17:43.0154796Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/dtype 2025-06-05T23:17:43.0156115Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/op 2025-06-05T23:17:43.0157059Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op/api.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/op 2025-06-05T23:17:43.0158632Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op/sample_input.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/op 2025-06-05T23:17:43.0159785Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/op/test 2025-06-05T23:17:43.0160865Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op/test/test_api.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/op/test 2025-06-05T23:17:43.0162038Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/spec 2025-06-05T23:17:43.0162997Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec/gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/spec 2025-06-05T23:17:43.0164490Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/spec 2025-06-05T23:17:43.0165441Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/test 2025-06-05T23:17:43.0166603Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/test/test_edge_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/test 2025-06-05T23:17:43.0168159Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/test/test_edge_yaml.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/test 2025-06-05T23:17:43.0169736Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/edge.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge 2025-06-05T23:17:43.0170787Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/test 2025-06-05T23:17:43.0171906Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/test/test_exir_dialect_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/test 2025-06-05T23:17:43.0172853Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/emit 2025-06-05T23:17:43.0173779Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/emit 2025-06-05T23:17:43.0174883Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/_emit_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/emit 2025-06-05T23:17:43.0176248Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/_emitter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/emit 2025-06-05T23:17:43.0177033Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/emit/test 2025-06-05T23:17:43.0178269Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/test/test_emit.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/emit/test 2025-06-05T23:17:43.0179129Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/operator 2025-06-05T23:17:43.0180083Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/convert.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/operator 2025-06-05T23:17:43.0181297Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/manip.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/operator 2025-06-05T23:17:43.0182604Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/operator 2025-06-05T23:17:43.0183440Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/operator/test 2025-06-05T23:17:43.0184609Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/test/test_operator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/operator/test 2025-06-05T23:17:43.0185518Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/passes 2025-06-05T23:17:43.0186441Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0187694Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/_quant_patterns_and_replacements.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0189120Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/const_prop_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0190469Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/constant_prop_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0191943Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/debug_handle_generator_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0193237Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/dim_order_ops_registry.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0194616Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/dynamic_shape_prop_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0196064Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/executorch_prim_ops_registry.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0197402Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/external_constants_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0198941Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/init_mutable_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0200756Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/insert_write_back_for_buffers_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0202252Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/memory_format_ops_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0203631Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/memory_planning_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0205118Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/normalize_transpose_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0206593Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/normalize_view_copy_base_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0208108Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/pass_registry.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0209314Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/prune_empty_tensors_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0210713Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/quant_fusion_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0212043Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/quantize_io_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0213262Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/remove_graph_asserts_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0214697Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/remove_mixed_type_operators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0216016Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/remove_noop_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0217359Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/remove_unused_parameters_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0218779Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/replace_aten_with_edge_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0220099Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/replace_broken_ops_with_function_ops_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0221651Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/replace_edge_with_backend_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0223114Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/replace_sym_size_op_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0224437Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/replace_view_copy_with_view_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0225835Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/scalar_to_tensor_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0282961Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/spec_prop_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0284322Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/sym_shape_eval_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0285596Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/sym_to_tensor_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0287199Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/weights_to_outputs_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:17:43.0288227Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/program 2025-06-05T23:17:43.0289141Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/program 2025-06-05T23:17:43.0290443Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/_fake_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/program 2025-06-05T23:17:43.0291682Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/program 2025-06-05T23:17:43.0292698Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/program/test 2025-06-05T23:17:43.0293652Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/program/test 2025-06-05T23:17:43.0295126Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test/test_fake_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/program/test 2025-06-05T23:17:43.0296503Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test/test_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/program/test 2025-06-05T23:17:43.0297570Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/serde 2025-06-05T23:17:43.0298422Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/serde 2025-06-05T23:17:43.0299665Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde/export_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/serde 2025-06-05T23:17:43.0300893Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde/schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/serde 2025-06-05T23:17:43.0302208Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde/schema_check.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/serde 2025-06-05T23:17:43.0303428Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde/serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/serde 2025-06-05T23:17:43.0304675Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde/union.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/serde 2025-06-05T23:17:43.0305542Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/tests 2025-06-05T23:17:43.0306432Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/asr_joiner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0307672Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/common.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0309001Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/control_flow_models.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0310493Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/dynamic_shape_models.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0311686Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/models.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0313085Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_arg_validator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0314305Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_capture.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0315647Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_common.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0317169Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_delegate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0318385Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_dim_order_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0319800Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_dynamic_shape_propagation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0321103Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_error.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0322357Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_joint_graph.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0323708Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_memory_format_ops_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0325103Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_memory_format_ops_pass_aten.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0326545Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_memory_format_ops_pass_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0327938Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_memory_planning.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0329239Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_op_convert.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0330511Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_pass_infra.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0331650Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0333067Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_print_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0334313Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_prune_empty_tensors_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0335829Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_quant_fusion_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0337095Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_quantization.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0338454Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_quantize_io_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0340001Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_remove_unused_parameters_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0341241Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_remove_view_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0342599Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_serde.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0343711Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0345042Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_tracer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0346565Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_verification.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0347727Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_warnings.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0349091Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/transformer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:17:43.0349949Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/verification 2025-06-05T23:17:43.0351112Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/arg_validator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/verification 2025-06-05T23:17:43.0352373Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/dev_html.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/verification 2025-06-05T23:17:43.0353805Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/interpreter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/verification 2025-06-05T23:17:43.0407304Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/verifier.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/verification 2025-06-05T23:17:43.0408448Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/verification/test 2025-06-05T23:17:43.0409444Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/test/test_verifier.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/verification/test 2025-06-05T23:17:43.0410776Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/delegate.pyi -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:17:43.0411519Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime 2025-06-05T23:17:43.0412339Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/runtime 2025-06-05T23:17:43.0413209Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/test 2025-06-05T23:17:43.0414060Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test/test_runtime.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/runtime/test 2025-06-05T23:17:43.0415206Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/kernel 2025-06-05T23:17:43.0415757Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/kernel/test 2025-06-05T23:17:43.0416798Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/kernel/test/functions.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/runtime/kernel/test 2025-06-05T23:17:43.0417799Z creating pip-out/bdist.linux-x86_64/wheel/executorch/util 2025-06-05T23:17:43.0418606Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/util/activation_memory_profiler.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/util 2025-06-05T23:17:43.0419889Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/util/collect_env.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/util 2025-06-05T23:17:43.0420920Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/util/python_profiler.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/util 2025-06-05T23:17:43.0421901Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends 2025-06-05T23:17:43.0422387Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm 2025-06-05T23:17:43.0423219Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/arm_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:17:43.0424545Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/arm_vela.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:17:43.0425742Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/ethosu_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:17:43.0427365Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/ethosu_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:17:43.0428770Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/process_node.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:17:43.0429938Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:17:43.0431306Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa_mapping.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:17:43.0432474Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:17:43.0433893Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa_quant_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:17:43.0435140Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa_specification.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:17:43.0436445Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:17:43.0437789Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/vgf_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:17:43.0438949Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/vgf_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:17:43.0439991Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/_passes 2025-06-05T23:17:43.0440950Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0442366Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/_debug_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0443789Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/annotate_channels_last_dim_order_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0445411Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/annotate_decomposed_matmul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0446735Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/arm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0448155Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/arm_pass_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0449595Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/arm_pass_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0451019Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/broadcast_args_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0452491Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/cast_int64_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0453783Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/cast_to_int32_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0455342Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/conv1d_unsqueeze_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0457120Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_any_default_dim_dims_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0458623Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_expand_copy_to_repeat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0460142Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_full_like_to_full_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0461727Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_int_pow_to_mul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0463057Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_minmax_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0464556Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_split_to_slice.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0466128Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_squeezes_to_view.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0467457Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_to_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0468976Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_cosine_similarity_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0470576Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_div_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0471914Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_gelu_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0473382Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_groupnorm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0474946Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_layernorm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0514894Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_leaky_relu_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0516577Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_linalg_vector_norm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0518239Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_linear_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0519608Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_meandim_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0521187Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_ne_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0522682Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_select.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0524125Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_silu_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0525958Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_softmax_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0527575Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_softmax_unstable_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0529080Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_sqrt_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0530555Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_sum_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0532050Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_var_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0533463Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/fold_qdq_with_annotated_qparams_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0535098Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/fuse_batchnorm2d_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0536664Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/fuse_constant_ops_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0538070Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/fuse_equal_placeholders_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0539646Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/fuse_quantized_activation_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0541166Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/insert_rescales_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0542507Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/insert_table_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0543992Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/match_arg_ranks_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0545496Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/match_where_self_arg_dtype_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0546908Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/mm_to_bmm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0548441Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/remove_clone_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0549920Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/replace_inf_values_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0551371Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/replace_scalar_with_tensor_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0552880Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/scalars_to_attribute_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0554378Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/size_adjust_conv2d_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0555915Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/unsqueeze_before_repeat_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0557499Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/unsqueeze_scalar_placeholders_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:17:43.0558566Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/operator_support 2025-06-05T23:17:43.0559737Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:17:43.0561442Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/convolution_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:17:43.0563061Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/ethos_u55_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:17:43.0564727Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/minmax_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:17:43.0566375Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/pool_2d_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:17:43.0568072Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/reduce_sum_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:17:43.0569626Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/right_shift_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:17:43.0571308Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/sin_cos_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:17:43.0572992Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/slice_copy_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:17:43.0574613Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/to_copy_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:17:43.0576306Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/tosa_supported_operators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:17:43.0577521Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/operators 2025-06-05T23:17:43.0578737Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0580335Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/node_visitor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0581754Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_abs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0583103Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0584513Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_amax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0626198Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_amin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0628065Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_any.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0629538Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_avg_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0630920Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_bmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0632441Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_cat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0633968Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0635466Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_constant_pad_nd.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0636981Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0638499Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_cos.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0639870Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_eq.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0641346Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_erf.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0642934Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_exp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0644322Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_ge.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0645815Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_gt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0647321Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_le.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0648658Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_log.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0650130Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_lt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0651595Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_max_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0652984Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_maximum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0654511Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_minimum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0656015Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_mul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0657581Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_neg.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0659210Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_permute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0660616Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_pow.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0662184Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_reciprocal.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0663852Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_repeat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0665272Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_rescale.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0666805Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_rshift_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0668485Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_rsqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0669907Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_sigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0671286Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_sin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0672812Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_slice.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0674178Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_sub.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0675597Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_sum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0677074Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_table.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0678611Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_tanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0680162Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_to_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0681668Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_to_dim_order_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0683099Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_transpose.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0684717Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_upsample_bilinear2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0686414Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_upsample_nearest2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0687797Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_view.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0689266Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_where.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0691028Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/operator_validation_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0692565Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/ops_binary.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0694026Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/ops_identity.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0695582Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/ops_unary.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:17:43.0696589Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/quantizer 2025-06-05T23:17:43.0697694Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/quantizer 2025-06-05T23:17:43.0739691Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer/arm_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/quantizer 2025-06-05T23:17:43.0741241Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer/arm_quantizer_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/quantizer 2025-06-05T23:17:43.0742927Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer/quantization_annotator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/quantizer 2025-06-05T23:17:43.0744512Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer/quantization_config.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/quantizer 2025-06-05T23:17:43.0745746Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/scripts 2025-06-05T23:17:43.0746808Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/scripts/parse_test_names.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/scripts 2025-06-05T23:17:43.0747898Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test 2025-06-05T23:17:43.0748850Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/common.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test 2025-06-05T23:17:43.0750277Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/conftest.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test 2025-06-05T23:17:43.0751579Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/runner_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test 2025-06-05T23:17:43.0752986Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/test_model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test 2025-06-05T23:17:43.0754032Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/misc 2025-06-05T23:17:43.0755035Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_bn_relu_folding_qat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:17:43.0756565Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_custom_partition.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:17:43.0757967Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_debug_feats.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:17:43.0759441Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_dim_order_guards.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:17:43.0761132Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_lifted_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:17:43.0762624Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_model_evaluator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:17:43.0764264Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_multiple_delegates.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:17:43.0765940Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_multiple_outputs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:17:43.0767514Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_non_persistent_buffers.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:17:43.0769096Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_partition_decomposed_quantized_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:17:43.0770774Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_tosa_spec.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:17:43.0771792Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/models 2025-06-05T23:17:43.0772902Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_conformer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:17:43.0774461Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_deit_tiny_arm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:17:43.0775927Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_dl3_arm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:17:43.0777471Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_llama.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:17:43.0779138Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_lstm_arm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:17:43.0780600Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_mobilenet_v2_arm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:17:43.0782304Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_mobilenet_v3_arm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:17:43.0784032Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_nn_functional.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:17:43.0785501Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_nn_modules.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:17:43.0787184Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_torch_functions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:17:43.0788868Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_w2l_arm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:17:43.0790005Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/ops 2025-06-05T23:17:43.0791043Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_abs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0792808Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0794413Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_alias_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0795965Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_amax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0797372Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_amin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0798912Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_any.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0800507Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_arange.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0801923Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_at.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0803391Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_avg_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0805103Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_batch_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0806634Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_bitwise.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0808061Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_bmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0809571Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_cat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0811077Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0851337Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_clone.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0852867Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_constant_pad_nd.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0854389Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_conv1d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0855845Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0857311Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_conv3d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0858842Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_conv_combos.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0860286Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_conv_constant_pad_nd.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0861796Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_cos.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0863481Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_depthwise_conv.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0864887Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_div.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0866291Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_eq.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0867680Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_erf.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0868961Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_exp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0870353Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_expand.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0871653Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_eye.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0873142Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_full.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0874582Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_ge.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0875924Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_gelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0877457Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_group_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0878969Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_gt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0880405Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_hardsigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0881935Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_hardswish.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0883326Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_hardtanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0884824Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_layer_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0886304Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_le.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0887672Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_leaky_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0889281Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_linalg_vector_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0890720Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0892071Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_log.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0893980Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_logical.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0895573Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_logsoftmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0896926Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_lshift.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0898402Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_lt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0899897Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_matmul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0901243Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_max_pool.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0902670Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_maximum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0904091Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_mean_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0905512Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_minimum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0906892Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_mm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0908182Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_mul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0909668Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_ne.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0911116Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_neg.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0912469Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_ones.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0913978Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_permute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0915339Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_pow.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0916789Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_reciprocal.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0918269Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0919572Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_repeat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0921120Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_rshift.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0957922Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_rsqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0959870Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_scalar_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0961503Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_scalars.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0962960Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0964299Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_select.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0965843Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0967361Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sigmoid_16bit.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0968759Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sigmoid_32bit.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0970297Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_silu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0971759Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0973059Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_slice.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0974579Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_softmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0976169Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_split.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0977499Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0979178Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_squeeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0980672Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sub.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0981966Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0983459Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_tanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0984894Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_to_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0986276Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_unary.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0987796Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_unsqueeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0989297Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_upsample_bilinear2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0991010Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_upsample_nearest2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0992574Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_var.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0994040Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_view.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0995342Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_where.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0996845Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_zeros.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:17:43.0997805Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/passes 2025-06-05T23:17:43.0999059Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_broadcast_args_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1000722Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_cast_int64_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1002228Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_convert_expand_copy_to_repeat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1003963Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_convert_int_pow_to_muls.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1005653Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_convert_split_to_slice.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1007332Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_convert_to_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1008918Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_cosine_similarity_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1010581Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_div_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1012277Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_layernorm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1014039Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_linalg_vector_norm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1015721Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_meandim_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1017400Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_softmax_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1019096Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_var_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1020733Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_fold_qdq_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1022489Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_fuse_batchnorm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1024030Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_fuse_constant_ops_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1025761Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_fuse_equal_placeholders_ops_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1027495Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_insert_table_ops_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1029139Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_ioquantization_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1054070Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_remove_clone_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1055801Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_rescale_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1057440Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_unsqueeze_before_repeat_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:17:43.1058536Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/quantizer 2025-06-05T23:17:43.1059780Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/quantizer/test_generic_annotater.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/quantizer 2025-06-05T23:17:43.1061132Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/tester 2025-06-05T23:17:43.1062272Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/tester 2025-06-05T23:17:43.1064087Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester/analyze_output_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/tester 2025-06-05T23:17:43.1065828Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester/arm_tester.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/tester 2025-06-05T23:17:43.1067680Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester/test_pipeline.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/tester 2025-06-05T23:17:43.1068953Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/tosautil 2025-06-05T23:17:43.1070071Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tosautil/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/tosautil 2025-06-05T23:17:43.1071228Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/util 2025-06-05T23:17:43.1072215Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/util/arm_model_evaluator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/util 2025-06-05T23:17:43.1073347Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party 2025-06-05T23:17:43.1074206Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib 2025-06-05T23:17:43.1075539Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/setup.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib 2025-06-05T23:17:43.1077004Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python 2025-06-05T23:17:43.1078214Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:17:43.1079727Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/serializer/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:17:43.1082027Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/serializer/tosa_serializer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:17:43.1083856Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1085694Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/ArithmeticRightShiftAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1087988Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/Attribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1090154Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/AxisAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1092214Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/ClampAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1094286Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/CondIfAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1096499Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/ConvAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1098671Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/CustomAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1100759Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/DType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1102822Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/FFTAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1104903Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/FullyConnectedAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1107081Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/MatMulAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1109159Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/MulAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1111488Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/NegateAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1113552Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/Op.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1115559Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/PadAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1117707Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/PoolAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1119887Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/RFFTAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1122068Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/RescaleAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1124271Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/ReshapeAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1126463Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1143670Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeMode.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1146083Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/SliceAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1148532Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TableAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1150741Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TileAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1152983Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaBasicBlock.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1155092Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaGraph.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1157181Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaOperator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1159472Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaRegion.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1161609Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaTensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1163899Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1166194Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeConvAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1168382Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/Version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1170643Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/WhileLoopAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1172760Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:17:43.1174134Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test 2025-06-05T23:17:43.1175209Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test/scripts 2025-06-05T23:17:43.1176752Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts/test_npy_fileio.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/test/scripts 2025-06-05T23:17:43.1178514Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit 2025-06-05T23:17:43.1180244Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit/xunit.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit 2025-06-05T23:17:43.1181864Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party 2025-06-05T23:17:43.1182804Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:17:43.1183966Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conanfile.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:17:43.1184537Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan 2025-06-05T23:17:43.1185570Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/build.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan 2025-06-05T23:17:43.1186216Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package 2025-06-05T23:17:43.1187588Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package/conanfile.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package 2025-06-05T23:17:43.1188226Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:17:43.1189492Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/generate_goldens.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:17:43.1209525Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/golden_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:17:43.1210165Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp 2025-06-05T23:17:43.1211467Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp 2025-06-05T23:17:43.1212097Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp 2025-06-05T23:17:43.1213277Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp 2025-06-05T23:17:43.1214000Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart 2025-06-05T23:17:43.1215237Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart 2025-06-05T23:17:43.1215731Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go 2025-06-05T23:17:43.1217031Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go 2025-06-05T23:17:43.1217551Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java 2025-06-05T23:17:43.1218898Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java 2025-06-05T23:17:43.1224757Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin 2025-06-05T23:17:43.1226126Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin 2025-06-05T23:17:43.1226697Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster 2025-06-05T23:17:43.1228071Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster 2025-06-05T23:17:43.1228681Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua 2025-06-05T23:17:43.1229789Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua 2025-06-05T23:17:43.1230440Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim 2025-06-05T23:17:43.1231619Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim 2025-06-05T23:17:43.1232124Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php 2025-06-05T23:17:43.1233418Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php 2025-06-05T23:17:43.1233914Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:17:43.1235093Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Galaxy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:17:43.1236210Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Universe.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:17:43.1237363Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:17:43.1238544Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:17:43.1239064Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust 2025-06-05T23:17:43.1240381Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust 2025-06-05T23:17:43.1240892Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift 2025-06-05T23:17:43.1242105Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift 2025-06-05T23:17:43.1242704Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts 2025-06-05T23:17:43.1243932Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts 2025-06-05T23:17:43.1244536Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema 2025-06-05T23:17:43.1245759Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema/basic.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema 2025-06-05T23:17:43.1246232Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:17:43.1247475Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:17:43.1248521Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/setup.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:17:43.1249127Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:43.1250421Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:43.1251738Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/_version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:43.1252953Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:43.1254237Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/compat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:43.1255549Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/encode.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:43.1256954Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/flexbuffers.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:43.1258145Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/number_types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:43.1259498Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/packer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:43.1297538Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/table.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:43.1300621Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:17:43.1302954Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:43.1305382Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/AdvancedFeatures.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:43.1308677Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/BaseType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:43.1311699Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Enum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:43.1314800Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/EnumVal.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:43.1317673Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Field.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:43.1320717Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/KeyValue.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:43.1323770Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Object.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:43.1326992Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/RPCCall.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:43.1330083Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:43.1333420Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/SchemaFile.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:43.1337319Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Service.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:43.1340530Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Type.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:43.1343827Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:17:43.1346782Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/py.typed -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:17:43.1348686Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:17:43.1350502Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/sample_binary.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:17:43.1353082Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/monster.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:17:43.1354829Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:17:43.1356728Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check_generate_code.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:17:43.1359222Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_code.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:17:43.1362015Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_grpc_examples.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:17:43.1365263Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:17:43.1368235Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check-grpc-generated-code.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:17:43.1370318Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1372417Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test_generated.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1374984Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_flexbuffers_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1377422Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1379435Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:17:43.1381374Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/InParentNamespace.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:17:43.1384177Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/MonsterExtra.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:17:43.1386783Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:17:43.1388784Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1390835Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Ability.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1393814Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Any.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1396717Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1399634Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1402684Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayStruct.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1405488Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayTable.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1408469Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Color.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1411213Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/LongEnum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1414105Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Monster.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1417075Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedStruct.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1419791Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Race.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1422462Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Referrable.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1425252Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Stat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1428251Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1431163Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1434268Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1437209Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestEnum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1440177Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1443159Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1445846Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Vec3.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1448624Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1451569Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/monster_test_grpc_fb.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:17:43.1453708Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:17:43.1455942Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Any.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:17:43.1458971Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Color.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:17:43.1462030Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/NestedUnionTest.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:17:43.1465159Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:17:43.1468360Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:17:43.1471457Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Vec3.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:17:43.1474492Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:17:43.1476665Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2 2025-06-05T23:17:43.1479059Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/Monster.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2 2025-06-05T23:17:43.1481978Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2 2025-06-05T23:17:43.1483970Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:17:43.1486006Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/generate_annotations.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:17:43.1489079Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:17:43.1491927Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary_old.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:17:43.1494024Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:43.1496039Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_cpp_tests.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:43.1498646Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_kotlin_tests.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:43.1501293Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_schema_tests.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:43.1503878Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:43.1506807Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_ts_tests.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:43.1509402Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/main.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:43.1511903Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/enum_val_attributes.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:43.1514658Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:43.1517245Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo_with_ns.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:17:43.1519255Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:17:43.1521168Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:17:43.1523742Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_foo.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:17:43.1526232Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_ns.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:17:43.1528042Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz 2025-06-05T23:17:43.1529928Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz 2025-06-05T23:17:43.1532585Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz_with_ns.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz 2025-06-05T23:17:43.1534580Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim 2025-06-05T23:17:43.1536578Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim/testnim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim 2025-06-05T23:17:43.1538520Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:17:43.1540659Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/OptionalByte.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:17:43.1543388Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/ScalarStuff.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:17:43.1546159Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:17:43.1548284Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:17:43.1550177Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/TypeScriptTest.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:17:43.1552725Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/typescript_keywords.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:17:43.1554725Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex 2025-06-05T23:17:43.1556871Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex/arrays_test_complex.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex 2025-06-05T23:17:43.1559256Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir 2025-06-05T23:17:43.1561300Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/one.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir 2025-06-05T23:17:43.1564629Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/pnpm-lock.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir 2025-06-05T23:17:43.1567746Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/two.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir 2025-06-05T23:17:43.1569934Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir 2025-06-05T23:17:43.1572079Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_include.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir 2025-06-05T23:17:43.1575278Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_transitive_include.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir 2025-06-05T23:17:43.1578000Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test 2025-06-05T23:17:43.1579290Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:17:43.1581769Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:17:43.1585211Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInC.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:17:43.1588418Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:17:43.1591510Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:17:43.1593982Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:17:43.1596688Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:17:43.1600297Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:17:43.1603764Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:17:43.1607170Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:17:43.1610814Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:17:43.1613340Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC 2025-06-05T23:17:43.1616070Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC 2025-06-05T23:17:43.1619329Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC 2025-06-05T23:17:43.1622822Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test1.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test 2025-06-05T23:17:43.1625977Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test2.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test 2025-06-05T23:17:43.1628917Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MutatingBool.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1631668Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/alignment_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1634198Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/arrays_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1636985Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/dictionary_lookup.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1639634Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/included_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1642354Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/includer_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1645115Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/keyword_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1647815Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_extra.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1650299Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1652976Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/more_defaults.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1655426Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nan_inf_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1658230Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_inline_table_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1661143Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_type_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1663629Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_union_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1666331Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1668989Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/private_annotation_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1671638Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/required_strings.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1674380Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/rust_namer_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1677306Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1680431Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/type_field_collsion.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1683123Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_underlying_type_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1686594Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_value_collision.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1689330Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/vector_has_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:17:43.1691357Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit 2025-06-05T23:17:43.1693393Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/test_64bit.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit 2025-06-05T23:17:43.1695774Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution 2025-06-05T23:17:43.1698282Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v1.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution 2025-06-05T23:17:43.1701301Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v2.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution 2025-06-05T23:17:43.1703674Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test 2025-06-05T23:17:43.1705903Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v1.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test 2025-06-05T23:17:43.1708850Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v2.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test 2025-06-05T23:17:43.1710881Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test 2025-06-05T23:17:43.1713068Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/include_test1.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test 2025-06-05T23:17:43.1715716Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/order.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test 2025-06-05T23:17:43.1717718Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub 2025-06-05T23:17:43.1719785Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/include_test2.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub 2025-06-05T23:17:43.1722739Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/no_namespace.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub 2025-06-05T23:17:43.1724771Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field 2025-06-05T23:17:43.1726736Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field/key_field_sample.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field 2025-06-05T23:17:43.1728922Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums 2025-06-05T23:17:43.1731172Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums/enums.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums 2025-06-05T23:17:43.1733356Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:17:43.1735514Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test1.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:17:43.1738471Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test2.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:17:43.1741303Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test1.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:17:43.1744118Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test2.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:17:43.1746438Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test 2025-06-05T23:17:43.1748874Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test1.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test 2025-06-05T23:17:43.1752321Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test2.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test 2025-06-05T23:17:43.1755749Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test3.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test 2025-06-05T23:17:43.1758127Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:43.1760324Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:43.1763421Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_id.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:43.1766535Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:43.1769756Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include_id.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:43.1773106Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:43.1776207Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix_id.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:43.1779179Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:43.1782013Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_id.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:43.1784880Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:43.1787886Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include_id.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:43.1790985Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:43.1794003Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix_id.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:17:43.1796209Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector 2025-06-05T23:17:43.1798419Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector/union_vector.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector 2025-06-05T23:17:43.1800548Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift 2025-06-05T23:17:43.1801886Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests 2025-06-05T23:17:43.1803424Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests 2025-06-05T23:17:43.1806001Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_import.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests 2025-06-05T23:17:43.1809739Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_no_include.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests 2025-06-05T23:17:43.1812227Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources 2025-06-05T23:17:43.1813788Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers 2025-06-05T23:17:43.1816647Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers/fuzzer.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers 2025-06-05T23:17:43.1819284Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc 2025-06-05T23:17:43.1820506Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests 2025-06-05T23:17:43.1822682Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests/grpctest.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests 2025-06-05T23:17:43.1824881Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples 2025-06-05T23:17:43.1826336Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python 2025-06-05T23:17:43.1827905Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter 2025-06-05T23:17:43.1830287Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/client.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter 2025-06-05T23:17:43.1833310Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/server.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter 2025-06-05T23:17:43.1835784Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:17:43.1838566Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloReply.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:17:43.1842142Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloRequest.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:17:43.1845542Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:17:43.1848701Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/greeter_grpc_fb.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:17:43.1851708Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/greeter.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples 2025-06-05T23:17:43.1853700Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples 2025-06-05T23:17:43.1855053Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter 2025-06-05T23:17:43.1857098Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter/greeter.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter 2025-06-05T23:17:43.1859181Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java 2025-06-05T23:17:43.1860415Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src 2025-06-05T23:17:43.1861759Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test 2025-06-05T23:17:43.1863180Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java 2025-06-05T23:17:43.1864600Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame 2025-06-05T23:17:43.1866891Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame 2025-06-05T23:17:43.1870014Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/MonsterExtra.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame 2025-06-05T23:17:43.1873049Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame 2025-06-05T23:17:43.1875318Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1877846Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1881016Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1884613Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1888080Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1891273Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayStruct.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1894584Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayTable.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1897872Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1901020Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1904188Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1907402Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedStruct.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1911103Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1914551Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1918011Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1921352Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1924723Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1927944Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1931101Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestEnum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1934443Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1937787Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1940956Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1944070Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1947208Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/monster_test_grpc_fb.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:17:43.1949549Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:17:43.1952113Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Any.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:17:43.1955474Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Color.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:17:43.1959144Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/NestedUnionTest.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:17:43.1962714Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:17:43.1966204Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:17:43.1969714Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Vec3.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:17:43.1973565Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:17:43.1975986Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2 2025-06-05T23:17:43.1978587Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2 2025-06-05T23:17:43.1981738Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2 2025-06-05T23:17:43.1984096Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:17:43.1986354Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:17:43.1989738Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInC.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:17:43.1993036Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:17:43.1996368Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:17:43.1998686Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:17:43.2001251Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:17:43.2004663Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:17:43.2008169Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:17:43.2011644Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:17:43.2015040Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:17:43.2017486Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC 2025-06-05T23:17:43.2019792Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC 2025-06-05T23:17:43.2022677Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC 2025-06-05T23:17:43.2025033Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars 2025-06-05T23:17:43.2027395Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/OptionalByte.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars 2025-06-05T23:17:43.2030648Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/ScalarStuff.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars 2025-06-05T23:17:43.2033839Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars 2025-06-05T23:17:43.2036248Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector 2025-06-05T23:17:43.2038839Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector/union_vector.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector 2025-06-05T23:17:43.2041440Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/pnpm-lock.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:17:43.2043606Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:17:43.2045599Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/analysis_options.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:17:43.2048432Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/pubspec.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:17:43.2050560Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:17:43.2052598Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/bool_structs.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:17:43.2055314Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/list_of_enums.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:17:43.2058209Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/monster_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:17:43.2060261Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection 2025-06-05T23:17:43.2062634Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection/reflection.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection 2025-06-05T23:17:43.2064905Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap 2025-06-05T23:17:43.2066853Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap/snapcraft.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap 2025-06-05T23:17:43.2068982Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android 2025-06-05T23:17:43.2070342Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app 2025-06-05T23:17:43.2071898Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src 2025-06-05T23:17:43.2073493Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main 2025-06-05T23:17:43.2075068Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs 2025-06-05T23:17:43.2077322Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs/animal.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs 2025-06-05T23:17:43.2079784Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks 2025-06-05T23:17:43.2081240Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp 2025-06-05T23:17:43.2082733Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers 2025-06-05T23:17:43.2085043Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers/bench.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers 2025-06-05T23:17:43.2087218Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples 2025-06-05T23:17:43.2088488Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo 2025-06-05T23:17:43.2090606Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/hero.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo 2025-06-05T23:17:43.2093369Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/net.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo 2025-06-05T23:17:43.2095357Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/schema 2025-06-05T23:17:43.2096891Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/schema/tosa.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/schema 2025-06-05T23:17:43.2098196Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/tosa 2025-06-05T23:17:43.2098841Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/tosa/schemas 2025-06-05T23:17:43.2099953Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/schemas/tosa_0.80.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/tosa/schemas 2025-06-05T23:17:43.2101510Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/schemas/tosa_1.0.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/tosa/schemas 2025-06-05T23:17:43.2102611Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example 2025-06-05T23:17:43.2103689Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example 2025-06-05T23:17:43.2105295Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example 2025-06-05T23:17:43.2107313Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example 2025-06-05T23:17:43.2109032Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/test_example_delegate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example 2025-06-05T23:17:43.2110380Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:17:43.2111900Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend_delegate_passes/merge_to_dim_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:17:43.2114056Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend_delegate_passes/permute_memory_formats_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:17:43.2115542Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example/example_operators 2025-06-05T23:17:43.2116928Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/adaptive_avg_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:17:43.2118917Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:17:43.2120688Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:17:43.2122741Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/conv_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:17:43.2124708Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/dropout.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:17:43.2126487Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/flatten.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:17:43.2128209Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:17:43.2130045Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/op_base.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:17:43.2132005Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:17:43.2133806Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:17:43.2135152Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek 2025-06-05T23:17:43.2136140Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek 2025-06-05T23:17:43.2137665Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek 2025-06-05T23:17:43.2139203Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek 2025-06-05T23:17:43.2140504Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek/_passes 2025-06-05T23:17:43.2141771Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek/_passes 2025-06-05T23:17:43.2143531Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes/decompose_scaled_dot_product_attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek/_passes 2025-06-05T23:17:43.2144878Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek/quantizer 2025-06-05T23:17:43.2146085Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek/quantizer 2025-06-05T23:17:43.2147756Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer/annotator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek/quantizer 2025-06-05T23:17:43.2149480Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer/qconfig.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek/quantizer 2025-06-05T23:17:43.2151170Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer/quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek/quantizer 2025-06-05T23:17:43.2152395Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp 2025-06-05T23:17:43.2153589Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/neutron_node_extraction.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp 2025-06-05T23:17:43.2155356Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/neutron_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp 2025-06-05T23:17:43.2156953Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/neutron_pass_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp 2025-06-05T23:17:43.2158477Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/nxp_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp 2025-06-05T23:17:43.2159443Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/aten_passes 2025-06-05T23:17:43.2160599Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes/fuse_batch_norm_with_conv_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/aten_passes 2025-06-05T23:17:43.2162185Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes/fuse_batch_norm_with_linear_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/aten_passes 2025-06-05T23:17:43.2163829Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes/neutron_aten_pass_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/aten_passes 2025-06-05T23:17:43.2165052Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend 2025-06-05T23:17:43.2166152Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/edge_helper.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend 2025-06-05T23:17:43.2168069Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/edge_program_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend 2025-06-05T23:17:43.2169749Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/neutron_converter_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend 2025-06-05T23:17:43.2171436Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/node_format_inference.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend 2025-06-05T23:17:43.2172666Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir 2025-06-05T23:17:43.2174200Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/conversion_config.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir 2025-06-05T23:17:43.2176052Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/conversion_context.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir 2025-06-05T23:17:43.2177916Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/logger.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir 2025-06-05T23:17:43.2179669Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tensor_formatting.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir 2025-06-05T23:17:43.2180953Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:17:43.2182327Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter 2025-06-05T23:17:43.2184310Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter 2025-06-05T23:17:43.2186199Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/quantization_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter 2025-06-05T23:17:43.2188198Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/tensor_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter 2025-06-05T23:17:43.2189582Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:17:43.2191018Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:17:43.2193150Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder/aten_model_builder_director.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:17:43.2195413Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder/model_builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:17:43.2197592Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder/quantization_verification.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:17:43.2199255Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:17:43.2200715Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:17:43.2202997Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion/aten_translator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:17:43.2205256Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion/common.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:17:43.2207182Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion/translator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:17:43.2208666Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters 2025-06-05T23:17:43.2210628Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters 2025-06-05T23:17:43.2212472Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:43.2214403Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:43.2217270Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/addmm_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:43.2219776Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/avg_pool_2d_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:43.2222233Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/constant_pad_nd_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:43.2224868Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/convolution_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:43.2227419Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/max_pool_2d_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:43.2229886Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/mm_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:43.2232409Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/permute_copy_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:43.2235025Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_dequantize_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:43.2237607Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_quantize_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:43.2240079Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/relu_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:43.2242621Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/softmax_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:43.2245228Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/view_copy_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:17:43.2247250Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:17:43.2248869Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:17:43.2251027Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared/recurrent_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:17:43.2253259Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared/reduce_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:17:43.2255566Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared/reshape_transposition.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:17:43.2257172Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/lib 2025-06-05T23:17:43.2258346Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib 2025-06-05T23:17:43.2259494Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2260850Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ATan2Options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2262668Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/AbsOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2264669Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ActivationFunctionType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2266509Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/AddNOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2268292Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/AddOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2270176Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ArgMaxOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2271978Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ArgMinOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2274064Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/AssignVariableOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2275985Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BatchMatMulOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2278045Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BatchToSpaceNDOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2280202Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceLSTMOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2282656Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceRNNOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2284830Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BitcastOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2286763Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BitwiseXorOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2288767Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BroadcastToOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2290699Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BucketizeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2292572Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Buffer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2294539Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOperator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2296742Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2298835Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2300946Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/CallOnceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2302810Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/CallOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2304776Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/CastOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2306628Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/CombinerType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2308633Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ConcatEmbeddingsOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2310950Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ConcatenationOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2312938Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Conv2DOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2314894Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Conv3DOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2316861Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/CosOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2318881Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/CumsumOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2321166Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/CustomOptionsFormat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2323123Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/CustomQuantization.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2325088Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DensifyOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2327222Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DepthToSpaceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2329330Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DepthwiseConv2DOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2331562Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DequantizeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2333552Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DilateOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2335675Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DimensionMetadata.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2337866Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DimensionType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2340105Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DivOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2342191Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DynamicUpdateSliceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2344652Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/EmbeddingLookupSparseOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2346561Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/EqualOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2348270Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ExpOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2350131Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ExpandDimsOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2352172Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/FakeQuantOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2354185Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/FillOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2356503Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/FloorDivOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2358293Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/FloorModOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2360537Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2362909Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptionsWeightsFormat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2364977Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/GatherNdOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2366793Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/GatherOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2368537Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/GeluOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2370304Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/GreaterEqualOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2372225Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/GreaterOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2373973Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/HardSwishOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2375959Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/HashtableFindOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2378018Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/HashtableImportOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2380132Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/HashtableOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2382062Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/HashtableSizeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2383937Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/IfOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2385792Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Int32Vector.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2387789Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/L2NormOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2389763Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2392012Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2394111Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LSTMKernelType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2395996Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LSTMOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2397902Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LeakyReluOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2399911Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LessEqualOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2401902Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LessOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2403862Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LocalResponseNormalizationOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2405972Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LogSoftmaxOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2407965Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LogicalAndOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2410012Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LogicalNotOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2411933Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LogicalOrOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2413886Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/MatrixDiagOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2415985Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/MatrixSetDiagOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2418118Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/MaximumMinimumOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2420040Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Metadata.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2421827Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadMode.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2423732Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2425526Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2427457Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/MulOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2429281Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/NegOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2431209Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV4Options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2433371Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV5Options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2435365Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/NotEqualOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2437379Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/OneHotOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2439263Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Operator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2441113Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/OperatorCode.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2442975Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/PackOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2444819Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/PadOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2446738Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/PadV2Options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2448641Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Padding.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2450564Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Pool2DOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2452379Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/PowOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2454236Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/QuantizationDetails.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2456743Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/QuantizationParameters.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2458857Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/QuantizeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2460726Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/RNNOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2462538Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/RandomOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2464596Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/RangeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2466493Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/RankOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2468483Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ReadVariableOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2469326Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowFunction.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2470378Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2471250Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ReducerOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2472074Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ReshapeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2473058Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ResizeBilinearOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2474076Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ResizeNearestNeighborOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2475015Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ReverseSequenceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2476025Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ReverseV2Options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2477000Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Rfft2dOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2478031Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/RightShiftOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2478952Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/RngAlgorithm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2479799Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SVDFOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2480722Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ScatterNdOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2481666Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SegmentSumOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2482457Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SelectOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2483574Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SelectV2Options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2484559Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SequenceRNNOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2485381Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ShapeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2486272Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SignOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2487052Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SignatureDef.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2488061Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SkipGramOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2488871Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SliceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2489778Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SoftmaxOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2490822Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SpaceToBatchNDOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2491676Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SpaceToDepthOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2492581Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SparseIndexVector.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2493537Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SparseToDenseOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2494416Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SparsityParameters.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2495425Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SplitOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2496201Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SplitVOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2497218Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SquareOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2498138Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SquaredDifferenceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2499014Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SqueezeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2500358Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloBroadcastInDimOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2501284Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloCompareOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2502248Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonDirection.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2503252Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2504295Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloConcatenateOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2505216Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloConvolutionOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2506241Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloCustomCallOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2507271Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloDotGeneralOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2508314Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloDynamicSliceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2509320Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloGatherOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2510309Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloIotaOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2511164Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloPadOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2512187Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloPrecisionConfig.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2513173Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2514069Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceWindowOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2515171Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloRngBitGeneratorOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2516139Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloScatterOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2517099Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloSliceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2518005Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloSortOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2518879Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloTransposeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2519828Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloWhileOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2520732Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StridedSliceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2521617Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SubGraph.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2522508Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SubOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2523335Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2524232Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/TensorMap.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2525099Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/TensorType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2526027Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/TileOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2526830Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/TopKV2Options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2527808Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/TransposeConvOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2528720Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/TransposeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2529567Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Uint16Vector.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2530907Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Uint8Vector.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2531878Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/UnidirectionalSequenceLSTMOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2532794Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/UniqueOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2533881Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/UnpackOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2535025Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMaxOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2535934Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMinOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2537090Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentProdOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2538226Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentSumOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2539197Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/VarHandleOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2540122Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/VariantSubType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2541135Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/WhereOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2542031Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/WhileOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2543055Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ZerosLikeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2543825Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:17:43.2544243Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:17:43.2545087Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:17:43.2546029Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/tflite_model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:17:43.2546495Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2547567Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2548615Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/abs_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2549804Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_n_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2550939Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2552260Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_max_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2553388Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_min_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2554468Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/average_pool_2d_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2555611Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/batch_mat_mul_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2556824Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_lstm_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2557948Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_rnn_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2559067Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bitwise_xor_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2560184Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/broadcast_to_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2561320Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cast_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2562398Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/concatenation_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2563543Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_2d_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2564614Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_3d_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2565660Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cum_sum_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2566778Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depth_to_space_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2567982Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depthwise_conv_2d_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2569205Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/dequantize_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2570325Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/div_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2571382Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/equal_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2572427Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/exp_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2573601Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/floor_mod_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2574784Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/fully_connected_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2575943Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_nd_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2577072Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2578371Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gelu_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2579386Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_equal_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2580479Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2581628Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/hard_swish_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2582793Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/leaky_relu_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2583899Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_equal_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2584941Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2586350Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/log_softmax_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2587488Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_and_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2588583Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_not_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2589661Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_or_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2590723Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lrn_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2591865Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lstm_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2592923Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/max_pool_2d_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2593969Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/maximum_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2595095Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mean_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2596097Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/minimum_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2597149Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mirror_pad_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2598247Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mul_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2599373Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/multinomial_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2600752Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/neg_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2601788Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/not_equal_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2603113Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/one_hot_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2604229Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2605286Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_v2_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2606417Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pow_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2607578Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/quantize_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2608691Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/range_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2609888Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_max_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2610990Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_min_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2612024Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_prod_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2613139Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reshape_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2614269Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_bilinear_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2615515Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_nearest_neighbor_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2616574Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reverse_sequence_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2617605Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/scatter_nd_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2618697Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/select_v2_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2620268Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/shape_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2621486Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sign_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2622626Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/slice_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2623731Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/softmax_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2624857Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/space_to_depth_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2625918Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2627006Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_v_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2627979Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/square_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2629061Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squared_difference_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2630156Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squeeze_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2631325Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/strided_slice_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2632413Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sub_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2633399Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sum_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2634524Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/tile_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2635590Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_conv_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2636823Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2638001Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_lstm_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2639232Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_rnn_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:17:43.2639654Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-06-05T23:17:43.2640801Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/custom_options/flex_transpose_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-06-05T23:17:43.2641206Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:17:43.2642199Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:17:43.2643081Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta/meta.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:17:43.2643980Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta/types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:17:43.2644346Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:17:43.2645250Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:17:43.2646092Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/graph_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:17:43.2647000Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/operator_rules.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:17:43.2647863Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:17:43.2648771Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/pattern_matcher.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:17:43.2649726Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/tensor_rules.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:17:43.2650118Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2651203Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2652263Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/base_optimization.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2653500Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/combine_hard_sigmoid_and_mul_to_hard_swish.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2654674Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/eliminate_dead_branches.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2655910Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_activation_functions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2657140Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_fully_connected_and_add_operators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2658185Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_quanitze_into_preceding_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2659291Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/keep_one_empty_buffer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2660446Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/move_relu_before_concat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2661703Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/permute_fully_connected_weights_after_reshape.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2662737Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_cast_operators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2663867Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_quantize_operators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2664999Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_reshape_operators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2666107Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_transpose_operators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2667357Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/remove_unused_tensors_and_buffers.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2668806Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/replace_average_pool_before_fully_connected_with_sum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:17:43.2669279Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/quantizer 2025-06-05T23:17:43.2670076Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer/neutron_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/quantizer 2025-06-05T23:17:43.2670911Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer/patterns.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/quantizer 2025-06-05T23:17:43.2671866Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/quantizer 2025-06-05T23:17:43.2672230Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests 2025-06-05T23:17:43.2673164Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/executorch_pipeline.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:17:43.2673927Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/executors.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:17:43.2674665Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/exported_program_vizualize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:17:43.2675293Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/models.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:17:43.2676065Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_batch_norm_fusion.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:17:43.2676722Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_neutron_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:17:43.2677769Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_neutron_converter_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:17:43.2678546Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_node_format_inference.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:17:43.2679377Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_operator_selector.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:17:43.2680052Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_qdq_clustering_conv.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:17:43.2680817Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:17:43.2681106Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir 2025-06-05T23:17:43.2681382Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir/converter 2025-06-05T23:17:43.2681734Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:43.2682837Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_avg_pool2d_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:43.2683969Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_constant_pad_nd_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:43.2684863Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_conv_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:43.2686267Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_linear_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:43.2687314Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_max_pool_2d_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:43.2688519Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_permute_copy_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:43.2689726Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_relu_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:43.2690802Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_softmax_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:43.2691949Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_view_copy_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:17:43.2692175Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino 2025-06-05T23:17:43.2692904Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino 2025-06-05T23:17:43.2693632Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino 2025-06-05T23:17:43.2694415Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino 2025-06-05T23:17:43.2694724Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/quantizer 2025-06-05T23:17:43.2695642Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/quantizer 2025-06-05T23:17:43.2696397Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer/quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/quantizer 2025-06-05T23:17:43.2696638Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests 2025-06-05T23:17:43.2697478Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/test_runner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests 2025-06-05T23:17:43.2697757Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests/models 2025-06-05T23:17:43.2698552Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/models/test_classification.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/models 2025-06-05T23:17:43.2698935Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests/ops 2025-06-05T23:17:43.2699664Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/base_openvino_op_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:17:43.2700449Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:17:43.2701150Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_addmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:17:43.2702481Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_arange.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:17:43.2703210Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_batch_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:17:43.2704045Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_convolution.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:17:43.2704854Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_mean.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:17:43.2705671Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_permute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:17:43.2706344Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_pooling.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:17:43.2707191Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_unary_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:17:43.2707856Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_view.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:17:43.2708184Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm 2025-06-05T23:17:43.2708844Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/qnn_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm 2025-06-05T23:17:43.2709107Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2709896Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2710595Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/annotate_adaptive_avg_pool1d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2711469Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/annotate_quant_attrs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2712112Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/annotate_stack.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2712937Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/annotate_unbind.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2713639Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/build_quant_io.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2714424Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/convert_bmm_to_matmul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2715226Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/convert_conv1d_to_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2715960Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/convert_square_to_pow.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2716780Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_any.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2717568Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_cdist.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2718398Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_einsum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2719129Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_expm1.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2719935Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_linalg_vector_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2720642Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_roll.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2721408Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_silu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2722238Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/expand_broadcast_tensor_shape.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2722970Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/fixed_linear_keep_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2723771Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/fold_qdq.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2724453Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/fuse_consecutive_cast.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2725334Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/fuse_consecutive_transpose.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2726106Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/i64_to_i32.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2726936Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/insert_io_qdq.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2727637Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/insert_requantize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2728446Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/layout_transform.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2729267Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/lift_constant_scalar_operands.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2729965Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/qnn_pass_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2730786Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/recompose_pixel_unshuffle.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2731493Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/recompose_rms_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2732463Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/reduce_dynamic_range.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2733121Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/remove_0d_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2733970Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/remove_redundancy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2734646Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/replace_arange_args.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2735584Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/replace_index_put_input.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2736278Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/replace_inf_values.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2737098Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/tag_quant_io.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2737719Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:17:43.2738096Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2738767Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2739602Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/node_visitor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2740240Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_abs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2741126Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_adaptive_avg_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2741763Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2742557Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_amax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2743249Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_and.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2744186Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_arange.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2745065Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_argmin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2745782Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_avg_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2746592Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_batch_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2747288Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_bmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2748168Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_cat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2748805Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_ceil.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2749742Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2750383Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2751230Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_cos.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2751881Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_cum_sum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2752706Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_depth_to_space.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2753386Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_dequantize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2754252Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_div.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2754912Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_elu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2755743Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_embedding.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2756422Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_eq.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2757092Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_exp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2757732Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_expand.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2758507Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_full.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2759216Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_full_like.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2759956Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_gather.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2760580Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_ge.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2761215Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_gelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2762058Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_group_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2762826Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_gt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2763762Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_hardsigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2764620Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_hardswish.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2765413Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_hardtanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2766315Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_index.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2767166Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_index_put.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2767928Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_instance_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2768803Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_layer_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2769569Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_le.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2770391Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2771235Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_log.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2772010Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_log_softmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2772861Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_logical_not.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2773620Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_lt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2774461Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_matmul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2775391Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_max.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2776113Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_max_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2776944Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_mean_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2777887Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_min.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2778656Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_mul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2779586Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_ne.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2780211Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_neg.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2780995Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_or.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2781636Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_pad.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2782430Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_pow.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2783074Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_prelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2783916Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_quantize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2784592Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2785483Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_repeat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2786261Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_reshape.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2787009Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_resize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2787723Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_rms_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2788589Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_rsqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2789280Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_scalar_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2790126Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_select_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2790858Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_sigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2791729Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_sin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2792503Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_skip_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2793245Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_slice_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2794044Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_softmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2794909Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_space_to_depth.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2795689Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_split_with_sizes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2796477Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_sqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2797232Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_squeeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2797939Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_stack.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2798798Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_sub.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2799670Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_sum_int_list.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2800463Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_tanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2801267Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_to.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2802135Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_topk.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2802997Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_transpose.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2803813Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_unbind.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2804613Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_unsqueeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2805479Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_upsample_bilinear2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2806375Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_upsample_nearest2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2807100Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_where.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2808020Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/qnn_constants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2808822Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:17:43.2809175Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/debugger 2025-06-05T23:17:43.2809902Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/debugger/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/debugger 2025-06-05T23:17:43.2810430Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/partition 2025-06-05T23:17:43.2811367Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition/common_defs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/partition 2025-06-05T23:17:43.2812284Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition/qnn_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/partition 2025-06-05T23:17:43.2813024Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/partition 2025-06-05T23:17:43.2813406Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/quantizer 2025-06-05T23:17:43.2814180Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/annotators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/quantizer 2025-06-05T23:17:43.2815192Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/custom_annotation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/quantizer 2025-06-05T23:17:43.2815856Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/qconfig.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/quantizer 2025-06-05T23:17:43.2816688Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/quantizer 2025-06-05T23:17:43.2816994Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:17:43.2817991Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers/per_block_param_observer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:17:43.2818873Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers/per_channel_param_observer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:17:43.2819193Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/serialization 2025-06-05T23:17:43.2820006Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization/qc_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/serialization 2025-06-05T23:17:43.2820942Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization/qc_schema_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/serialization 2025-06-05T23:17:43.2821839Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization/qc_compiler_spec.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/serialization 2025-06-05T23:17:43.2822192Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/tests 2025-06-05T23:17:43.2823122Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests/models.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/tests 2025-06-05T23:17:43.2824220Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests/test_qnn_delegate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/tests 2025-06-05T23:17:43.2825036Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/tests 2025-06-05T23:17:43.2825310Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/utils 2025-06-05T23:17:43.2826064Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils/constants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/utils 2025-06-05T23:17:43.2826739Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/utils 2025-06-05T23:17:43.2827183Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/aot 2025-06-05T23:17:43.2827530Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/aot/ir 2025-06-05T23:17:43.2828152Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/aot/ir/qcir.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/aot/ir 2025-06-05T23:17:43.2828376Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/transforms 2025-06-05T23:17:43.2829146Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:17:43.2829776Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/addmm_mm_to_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:17:43.2830606Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/convert_dtype_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:17:43.2831239Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/decompose_sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:17:43.2832070Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/duplicate_dynamic_quant_chain.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:17:43.2832791Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/fuse_batch_norm_with_conv.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:17:43.2833468Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/fuse_conv_with_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:17:43.2834158Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/fuse_view_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:17:43.2834848Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/mean_to_sum_div.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:17:43.2835560Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/rank_0_to_rank_1.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:17:43.2836236Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/remove_clone_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:17:43.2837073Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/remove_getitem_op.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:17:43.2837725Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/replace_scalar_with_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:17:43.2838534Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:17:43.2839261Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/view_copy_to_squeeze_unsqueeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:17:43.2839604Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/transforms/test 2025-06-05T23:17:43.2840491Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test/test_create_delete_constant_placeholder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms/test 2025-06-05T23:17:43.2841513Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test/test_duplicate_dynamic_quant_chain.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms/test 2025-06-05T23:17:43.2842548Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test/test_rank_0_to_rank_1.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms/test 2025-06-05T23:17:43.2842767Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan 2025-06-05T23:17:43.2843384Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan 2025-06-05T23:17:43.2844100Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/custom_ops_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan 2025-06-05T23:17:43.2844821Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/op_registry.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan 2025-06-05T23:17:43.2845462Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan 2025-06-05T23:17:43.2846347Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/vulkan_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan 2025-06-05T23:17:43.2846686Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/_passes 2025-06-05T23:17:43.2847474Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:17:43.2848124Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/fuse_quantized_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:17:43.2849073Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/insert_prepack_nodes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:17:43.2849872Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/int4_weight_only_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:17:43.2850695Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/remove_asserts.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:17:43.2851557Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/remove_local_scalar_dense_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:17:43.2852248Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/remove_redundant_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:17:43.2852988Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/squeeze_unsqueeze_inputs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:17:43.2853758Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/tag_memory_meta_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:17:43.2854023Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/partitioner 2025-06-05T23:17:43.2854822Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/partitioner/vulkan_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/partitioner 2025-06-05T23:17:43.2855242Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/quantizer 2025-06-05T23:17:43.2855920Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/quantizer/vulkan_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/quantizer 2025-06-05T23:17:43.2856168Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime 2025-06-05T23:17:43.2857043Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/gen_vulkan_spv.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime 2025-06-05T23:17:43.2857547Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph 2025-06-05T23:17:43.2857895Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph/ops 2025-06-05T23:17:43.2858253Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2859299Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2860197Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_texture3d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2884790Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_optimized.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2885942Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/arange.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2886847Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/avg_pool2d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2887932Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/batchnorm.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2888833Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/binary_op.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2889877Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/bitw8_image_to_nchw_nobitw8buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2890833Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2891672Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_nchw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2892625Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/clone.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2893417Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv1d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2894376Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2895336Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2896269Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_output_tile.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2897280Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_prepack_weights.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2898480Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_sned_output_tile.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2899419Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_prepack_weights.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2900382Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2901280Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw_s1p0.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2902191Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2903277Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d_prepack_weights.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2904264Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/copy_channel_offset.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2905164Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/copy_offset.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2906240Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/copy_packed_dim_offset.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2907209Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/embedding.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2908020Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/flip.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2909010Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/full.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2909911Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/grid_priors.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2910821Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/image_to_nchw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2911880Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/index_select.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2912804Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/index_select_channel.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2913759Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/kv_cache_update.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2914848Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2915667Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_coop.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2916669Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_tiled.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2917631Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_coop.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2918449Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_tiled.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2919420Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/max_pool2d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2920272Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/native_layer_norm.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2921258Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_bitw8_image_nobitw8buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2948651Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2949500Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_image.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2950512Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/no_op.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2951654Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/pack_int4_linear_weight_transposed_interleaved.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2952573Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/pad_channel.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2953630Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/pad_height_width.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2954539Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/permute.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2955433Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/reduce.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2956426Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/repeat.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2957346Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_channel.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2958413Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_interleave.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2959370Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/rotary_embedding.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2960240Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_attn_weight_scale_and_mask.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2961211Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/softmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2961966Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/tan.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2962999Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2963948Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_texture.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2964776Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/unary_op.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2965796Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/upsample_2d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2966575Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/var_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2967576Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/var_texture3d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2968329Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/view.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2969301Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/where.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:17:43.2969589Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/serialization 2025-06-05T23:17:43.2970524Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization/vulkan_graph_builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/serialization 2025-06-05T23:17:43.2971248Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization/vulkan_graph_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/serialization 2025-06-05T23:17:43.2972190Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization/vulkan_graph_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/serialization 2025-06-05T23:17:43.2972877Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization/schema.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/serialization 2025-06-05T23:17:43.2973391Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test 2025-06-05T23:17:43.2974094Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/test_serialization.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test 2025-06-05T23:17:43.2974867Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/test_vulkan_delegate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test 2025-06-05T23:17:43.2975596Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/test_vulkan_delegate_header.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test 2025-06-05T23:17:43.2976323Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/test_vulkan_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test 2025-06-05T23:17:43.2976681Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/op_tests 2025-06-05T23:17:43.2977330Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/cases.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests 2025-06-05T23:17:43.2978385Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/generate_op_benchmarks.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests 2025-06-05T23:17:43.2979124Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/generate_op_correctness_tests.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests 2025-06-05T23:17:43.2979473Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:17:43.2980324Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils/aten_types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:17:43.2981164Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils/gen_benchmark_vk.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:17:43.2982005Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils/gen_computegraph.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:17:43.2982892Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils/gen_correctness_base.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:17:43.3003937Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils/gen_correctness_vk.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:17:43.3023734Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils/test_suite.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:17:43.3024248Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/glsl 2025-06-05T23:17:43.3025461Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl/all_shaders.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/glsl 2025-06-05T23:17:43.3026794Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl/dynamic_dispatch_test.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/glsl 2025-06-05T23:17:43.3028181Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl/reference_matmul_common.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/glsl 2025-06-05T23:17:43.3028675Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party 2025-06-05T23:17:43.3029372Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/volk 2025-06-05T23:17:43.3030830Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/volk/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/volk 2025-06-05T23:17:43.3031453Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers 2025-06-05T23:17:43.3032133Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:17:43.3033848Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/apiconventions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:17:43.3035552Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/cgenerator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:17:43.3037226Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/conventions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:17:43.3038845Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/generator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:17:43.3040453Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/genvk.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:17:43.3042058Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/reg.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:17:43.3043839Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/vkconventions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:17:43.3044620Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-06-05T23:17:43.3046361Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools/util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-06-05T23:17:43.3047026Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator 2025-06-05T23:17:43.3047755Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools 2025-06-05T23:17:43.3048609Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-06-05T23:17:43.3050701Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis/GpuMemDumpVis.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-06-05T23:17:43.3051142Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools 2025-06-05T23:17:43.3051618Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools/gpuinfo 2025-06-05T23:17:43.3052116Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:17:43.3053542Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl/buf_bandwidth.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:17:43.3055341Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl/buf_cacheline_size.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:17:43.3056725Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl/reg_count.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:17:43.3058149Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl/tex_bandwidth.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:17:43.3059626Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl/tex_cacheline_concurr.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:17:43.3060956Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl/warp_size.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:17:43.3061386Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack 2025-06-05T23:17:43.3062360Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack 2025-06-05T23:17:43.3063488Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/xnnpack_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack 2025-06-05T23:17:43.3063906Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/_passes 2025-06-05T23:17:43.3064961Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:17:43.3066254Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/channels_last_tagged_reshape_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:17:43.3067555Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/conv1d_unsqueeze_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:17:43.3068755Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/convert_to_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:17:43.3069925Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/convert_to_sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:17:43.3071250Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/convert_to_upsample_bilinear2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:17:43.3072433Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/decompose_cat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:17:43.3073691Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/fuse_activation_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:17:43.3074954Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/fuse_batch_norm_with_conv.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:17:43.3076149Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/prelu_reshape_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:17:43.3077382Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/tag_implicit_q_dq_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:17:43.3078738Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/xnnpack_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:17:43.3079496Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3094032Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3095397Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/node_visitor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3096575Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_abs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3097747Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3098969Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_addmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3100237Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_avg_pooling2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3101430Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_bmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3102609Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_cat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3103849Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_ceiling.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3105072Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3106272Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3107455Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_div.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3108785Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_dynamic_dequantize_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3110077Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_dynamic_quantize_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3111289Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_elu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3112453Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_exp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3113662Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_floor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3114856Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_gelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3116089Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_hardswish.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3117509Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_hardtanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3118719Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_leaky_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3119868Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3121035Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_log.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3122373Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_matrix_multiplication.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3123594Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_max_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3124806Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_max_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3126028Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_maximum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3127251Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_mean_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3128476Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_minimum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3129664Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_multiply.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3130864Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_negate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3132068Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_permute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3133207Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_prelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3134462Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_quant_dequant.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3135716Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3136855Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_rsqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3138052Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3139235Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_sigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3140419Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_skip_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3141844Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_slice_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3143036Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_softmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3144237Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_square.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3145465Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_square_root.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3146634Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_squeeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3147953Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_static_constant_pad.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3149308Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_static_resize_bilinear_2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3166971Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_sub.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3167835Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_to_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3168722Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/quant_params.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:17:43.3169088Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition 2025-06-05T23:17:43.3169893Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/configs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition 2025-06-05T23:17:43.3170826Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/xnnpack_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition 2025-06-05T23:17:43.3171169Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition/config 2025-06-05T23:17:43.3172103Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition/config 2025-06-05T23:17:43.3173057Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config/gemm_configs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition/config 2025-06-05T23:17:43.3173890Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config/generic_node_configs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition/config 2025-06-05T23:17:43.3174793Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config/node_configs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition/config 2025-06-05T23:17:43.3175795Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config/quant_affine_configs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition/config 2025-06-05T23:17:43.3176767Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config/xnnpack_config.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition/config 2025-06-05T23:17:43.3177126Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition/graphs 2025-06-05T23:17:43.3178443Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs/bilinear_2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition/graphs 2025-06-05T23:17:43.3179442Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs/sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition/graphs 2025-06-05T23:17:43.3179699Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/quantizer 2025-06-05T23:17:43.3180632Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer/xnnpack_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/quantizer 2025-06-05T23:17:43.3181628Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer/xnnpack_quantizer_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/quantizer 2025-06-05T23:17:43.3182013Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/serialization 2025-06-05T23:17:43.3183045Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization/xnnpack_graph_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/serialization 2025-06-05T23:17:43.3183991Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization/xnnpack_graph_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/serialization 2025-06-05T23:17:43.3185078Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization/runtime_schema.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/serialization 2025-06-05T23:17:43.3186080Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization/schema.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/serialization 2025-06-05T23:17:43.3186356Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test 2025-06-05T23:17:43.3187201Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/test_xnnpack_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test 2025-06-05T23:17:43.3187933Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/test_xnnpack_utils_classes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test 2025-06-05T23:17:43.3188338Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/models 2025-06-05T23:17:43.3189228Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/deeplab_v3.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:17:43.3190102Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/edsr.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:17:43.3190870Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/emformer_rnnt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:17:43.3191730Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/inception_v3.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:17:43.3192426Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/inception_v4.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:17:43.3193236Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/llama2_et_example.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:17:43.3193967Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/mobilebert.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:17:43.3195033Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/mobilenet_v2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:17:43.3195732Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/mobilenet_v3.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:17:43.3196595Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/resnet.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:17:43.3197385Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/torchvision_vit.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:17:43.3198255Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/very_big_model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:17:43.3198962Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/w2l.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:17:43.3199333Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3200188Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_abs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3200940Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3201864Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_avgpool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3202617Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_bilinear2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3203253Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_bmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3204015Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_cat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3204767Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_ceil.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3239047Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_check_quant_params.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3239830Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3240496Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_conv1d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3241330Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3241980Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_div.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3242812Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_elu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3243486Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_exp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3244511Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_floor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3245434Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_gelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3246168Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_hardswish.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3247060Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_hardtanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3247831Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_leaky_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3248666Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3249405Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_log.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3250226Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_lstm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3250994Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_max_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3251787Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_maximum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3252594Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_maxpool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3253390Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_mean_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3254258Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_minimum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3255036Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_multiply.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3255777Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_negate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3256548Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_permute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3257197Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_pow.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3257991Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_prelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3258807Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_quantize_per_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3259602Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3260434Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_rsqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3261128Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3261851Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_sigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3262587Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_slice_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3263313Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_softmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3264033Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_sqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3264721Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_square.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3265537Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_static_constant_pad.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3266170Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_sub.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:17:43.3266587Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/passes 2025-06-05T23:17:43.3267321Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/test_activation_fusion.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-06-05T23:17:43.3268192Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/test_batch_norm_fusion.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-06-05T23:17:43.3268971Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/test_channels_last_tagged_reshape.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-06-05T23:17:43.3269830Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/test_convert_to_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-06-05T23:17:43.3270555Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/test_decompose_cat_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-06-05T23:17:43.3271452Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/test_remove_get_item_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-06-05T23:17:43.3272280Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/test_tag_implicit_q_dq_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-06-05T23:17:43.3272709Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:17:43.3273656Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer/test_pt2e_quantization.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/quantizer 2025-06-05T23:17:43.3312266Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer/test_representation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/quantizer 2025-06-05T23:17:43.3313460Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer/test_xnnpack_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/quantizer 2025-06-05T23:17:43.3313892Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/serialization 2025-06-05T23:17:43.3314731Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization/test_serialization.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/serialization 2025-06-05T23:17:43.3315605Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization/test_xnnheader.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/serialization 2025-06-05T23:17:43.3315922Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/tester 2025-06-05T23:17:43.3316608Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/tester 2025-06-05T23:17:43.3317469Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester/tester.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/tester 2025-06-05T23:17:43.3317737Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party 2025-06-05T23:17:43.3318015Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:17:43.3319011Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/configure.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:17:43.3319395Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/include 2025-06-05T23:17:43.3319756Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:17:43.3320872Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:17:43.3321816Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16/avx.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:17:43.3322704Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16/avx2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:17:43.3323198Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/test 2025-06-05T23:17:43.3323651Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-06-05T23:17:43.3324648Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/test/peachpy/stubs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-06-05T23:17:43.3325491Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/confu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:17:43.3325840Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:17:43.3326701Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FXdiv/configure.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:17:43.3327565Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FXdiv/confu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:17:43.3327999Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:17:43.3328855Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/configure.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:17:43.3329370Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:17:43.3330293Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts/android-device-dump.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:17:43.3331452Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts/arm-linux-filesystem-dump.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:17:43.3332610Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts/parse-x86-cpuid-dump.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:17:43.3333097Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/deps 2025-06-05T23:17:43.3333488Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:17:43.3334467Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/configure.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:17:43.3335466Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/confu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:17:43.3336321Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/confu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:17:43.3336704Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:17:43.3337678Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/pthreadpool/configure.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:17:43.3338504Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/pthreadpool/confu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:17:43.3338850Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK 2025-06-05T23:17:43.3339246Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:17:43.3340121Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_config.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:17:43.3341178Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_files_changed.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:17:43.3342215Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts/generate-build-identifier.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:17:43.3343155Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts/sort-filenames.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:17:43.3343489Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3344631Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/primes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3345498Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/xngen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3346412Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/xnncommon.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3347584Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-argmaxpool-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3348694Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3369542Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc2chw-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3370827Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-multipass-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3371951Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-unipass-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3373142Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv2d-chw-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3374176Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-gemm-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3375471Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-chw-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3376543Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3377774Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-norm-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3378752Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3379859Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddexpminusmax-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3380843Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddextexp-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3382047Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddstoreexpminusmax-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3383163Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-benchmark.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3384222Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3385163Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3386116Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-spmm-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3387126Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vbinary-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3388085Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vmulcaddc-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3389110Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleexpminusmax-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3390132Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleextexp-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3391081Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vunary-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3392031Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/update-microkernels.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:17:43.3392401Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3393342Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/bf16-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3394305Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-conv-hwc2chw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3395184Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-dwconv2d-chw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3396180Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3397231Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-igemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3398044Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rdsum.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3399128Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rsum.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3400077Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3400936Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear-chw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3401925Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3402941Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-igemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3403820Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-raddstoreexpminusmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3404739Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3405642Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmin.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3406529Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rminmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3424806Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rsum.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3425758Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-spmm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3426936Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-vmulcaddc-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3428011Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-argmaxpool.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3428894Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3429921Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc2chw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3430916Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-dwconv2d-chw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3431781Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-goi-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3432896Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3433752Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-relu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3434637Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3435610Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemminc-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3436555Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear-chw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3437501Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3438328Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3439280Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-relu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3440075Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3441025Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ppmm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3441957Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc4w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3442931Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3443898Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-relu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3444695Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3445684Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddexpminusmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3446492Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddextexp.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3447503Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddstoreexpminusmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3448535Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rdsum.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3449409Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3450436Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmin.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3451440Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rminmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3452427Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rsum.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3453445Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-spmm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3454419Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vmulcaddc-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3455384Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleexpminusmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3456589Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleextexp.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3457701Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qb4w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3458707Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc4w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3459868Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3460938Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-igemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3490996Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qb4w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3491971Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc4w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3492923Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3494136Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-igemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3495264Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qb4w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3496218Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qc4w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3497217Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-gemm-minmax-fp32.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3498141Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-igemm-minmax-fp32.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3499206Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rdsum-minmax-fp32.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3500088Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rsum.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3501017Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-fp32.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3502057Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-rndnu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3503005Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-fp32.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3503939Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-rndnu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3504912Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rdsum.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3505782Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rsum.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3506683Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/s8-ibilinear.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3507576Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/u8-ibilinear.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3508464Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/u8-lut32norm.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3509424Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/u8-rmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3510410Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/x8-lut.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:17:43.3511252Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/generate-cpuinfo-wrappers.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party 2025-06-05T23:17:43.3511586Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/utils 2025-06-05T23:17:43.3512279Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils/configs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/utils 2025-06-05T23:17:43.3513017Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils/quant_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/utils 2025-06-05T23:17:43.3513755Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/utils 2025-06-05T23:17:43.3514437Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils/xnnpack_constants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/utils 2025-06-05T23:17:43.3514728Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple 2025-06-05T23:17:43.3514951Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps 2025-06-05T23:17:43.3515580Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps 2025-06-05T23:17:43.3516324Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/mps_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps 2025-06-05T23:17:43.3516710Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3517404Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3518341Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/activation_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3519113Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/binary_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3519999Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/clamp_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3520862Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/constant_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3521651Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/convolution_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3522599Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/indexing_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3523362Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/linear_algebra_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3524268Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/node_visitor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3525138Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/normalization_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3525947Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/op_clone.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3526909Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/op_getitem.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3568885Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/op_quant_dequant.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3569749Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/op_skip_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3570536Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/pad_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3571393Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/pooling_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3572174Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/range_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3573013Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/reduce_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3573794Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/shape_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3574571Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/unary_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:17:43.3574990Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/partition 2025-06-05T23:17:43.3575650Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/partition 2025-06-05T23:17:43.3576570Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition/mps_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/partition 2025-06-05T23:17:43.3576867Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/serialization 2025-06-05T23:17:43.3577905Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization/mps_graph_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/serialization 2025-06-05T23:17:43.3578706Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization/mps_graph_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/serialization 2025-06-05T23:17:43.3579611Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization/schema.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/serialization 2025-06-05T23:17:43.3579854Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/test 2025-06-05T23:17:43.3580585Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test/test_mps.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/test 2025-06-05T23:17:43.3581332Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test/test_mps_binary_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/test 2025-06-05T23:17:43.3582091Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test/test_mps_indexing_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/test 2025-06-05T23:17:43.3583117Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test/test_mps_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/test 2025-06-05T23:17:43.3583849Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test/test_mps_models.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/test 2025-06-05T23:17:43.3584562Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test/test_mps_unary_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/test 2025-06-05T23:17:43.3585335Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test/test_mps_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/test 2025-06-05T23:17:43.3585577Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/utils 2025-06-05T23:17:43.3586304Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils/mps_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/utils 2025-06-05T23:17:43.3587020Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils/quant_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/utils 2025-06-05T23:17:43.3587251Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml 2025-06-05T23:17:43.3587571Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/compiler 2025-06-05T23:17:43.3588353Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/compiler 2025-06-05T23:17:43.3589138Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler/coreml_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/compiler 2025-06-05T23:17:43.3589453Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/partition 2025-06-05T23:17:43.3590205Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/partition 2025-06-05T23:17:43.3591083Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition/coreml_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/partition 2025-06-05T23:17:43.3591388Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/quantizer 2025-06-05T23:17:43.3592158Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/quantizer 2025-06-05T23:17:43.3592993Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer/coreml_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/quantizer 2025-06-05T23:17:43.3593288Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/test 2025-06-05T23:17:43.3594153Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test/test_coreml_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/test 2025-06-05T23:17:43.3594894Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test/test_coreml_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/test 2025-06-05T23:17:43.3595276Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/runtime 2025-06-05T23:17:43.3595580Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/runtime/test 2025-06-05T23:17:43.3596521Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/runtime/test/export_stateful_model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/runtime/test 2025-06-05T23:17:43.3597597Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/executorchcoreml.pyi -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml 2025-06-05T23:17:43.3598570Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/executorchcoreml.cpython-310-x86_64-linux-gnu.so -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml 2025-06-05T23:17:43.3598857Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence 2025-06-05T23:17:43.3599097Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot 2025-06-05T23:17:43.3599903Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3600629Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/compiler.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3601497Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/compiler_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3602222Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/decompose_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3602998Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/export_example.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3603839Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/fuse_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3641507Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/graph_builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3642296Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/memory_constraints.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3643018Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/memory_planning.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3643810Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/ops_registrations.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3644577Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/pass_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3645304Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3646162Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/ref_implementations.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3646870Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/remove_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3647608Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/reorder_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3648357Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/replace_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3649082Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/simplify_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3649765Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3650222Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot/quantizer 2025-06-05T23:17:43.3651068Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer/fusion_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/quantizer 2025-06-05T23:17:43.3651812Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer/patterns.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/quantizer 2025-06-05T23:17:43.3652709Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer/quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/quantizer 2025-06-05T23:17:43.3653521Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/quantizer 2025-06-05T23:17:43.3653871Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot/tests 2025-06-05T23:17:43.3654704Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_decompose_ops_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:17:43.3655637Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_fusion_ops_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:17:43.3656429Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_graph_builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:17:43.3657357Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_memory_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:17:43.3658079Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_pass_filter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:17:43.3659018Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_remove_ops_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:17:43.3659871Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_reorder_ops_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:17:43.3660748Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_replace_ops_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:17:43.3661639Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_simplify_ops_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:17:43.3662361Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/functions.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3663216Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/functions_fusion_g3.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3663875Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/functions_hifi.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:17:43.3664165Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/runtime 2025-06-05T23:17:43.3664998Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/runtime 2025-06-05T23:17:43.3665726Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime/executor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/runtime 2025-06-05T23:17:43.3666729Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime/runtime.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/runtime 2025-06-05T23:17:43.3667577Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/runtime 2025-06-05T23:17:43.3667856Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils 2025-06-05T23:17:43.3668536Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/facto_util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils 2025-06-05T23:17:43.3669375Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/gen_header.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils 2025-06-05T23:17:43.3670105Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/post_compilation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils 2025-06-05T23:17:43.3670515Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO 2025-06-05T23:17:43.3671249Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/setup.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO 2025-06-05T23:17:43.3671663Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:17:43.3672517Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/calibrator/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:17:43.3673373Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/calibrator/runner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:17:43.3673706Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:17:43.3674616Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples/example.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:17:43.3675591Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples/minimal_example.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:17:43.3676453Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples/random_seed.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:17:43.3676808Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto 2025-06-05T23:17:43.3677790Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto 2025-06-05T23:17:43.3703733Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-06-05T23:17:43.3704905Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-06-05T23:17:43.3705341Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:17:43.3706472Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:17:43.3707596Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/engine.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:17:43.3708917Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:17:43.3709300Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:17:43.3710383Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:17:43.3711386Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/engine.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:17:43.3712416Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:17:43.3713541Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/type.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:17:43.3714066Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:17:43.3715104Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:17:43.3716273Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/engine.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:17:43.3717376Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:17:43.3718581Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/solve.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:17:43.3719060Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:17:43.3720156Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:17:43.3721337Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:17:43.3721803Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:17:43.3722907Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:17:43.3723907Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/random_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:17:43.3724289Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:17:43.3725484Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:17:43.3726552Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/constants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:17:43.3727525Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:17:43.3728481Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/solve.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:17:43.3729500Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/space.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:17:43.3730605Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/type.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:17:43.3731744Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:17:43.3732194Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:17:43.3733098Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb/db.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:17:43.3734011Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb/default.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:17:43.3734890Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb/dtypes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:17:43.3735847Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb/function.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:17:43.3736168Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/test 2025-06-05T23:17:43.3736563Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:43.3737531Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_engine.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:43.3738538Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_generator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:43.3739482Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_attributes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:43.3740457Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_generator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:43.3741490Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:43.3775049Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_engine.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:43.3776202Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_solver.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:43.3777152Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_constraints.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:43.3778348Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_meta_arg_engine.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:43.3779324Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_specs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:43.3780352Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_structural_engine.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:43.3781483Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_generation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:43.3782380Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_solving.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:43.3783397Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_space.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:43.3784425Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:17:43.3784648Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m 2025-06-05T23:17:43.3784892Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/ops 2025-06-05T23:17:43.3785697Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops/operators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/ops 2025-06-05T23:17:43.3786372Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops/operators.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/ops 2025-06-05T23:17:43.3786701Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/passes 2025-06-05T23:17:43.3787477Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes/replace_quant_nodes_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/passes 2025-06-05T23:17:43.3787803Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/test 2025-06-05T23:17:43.3788617Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/test_replace_quant_nodes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test 2025-06-05T23:17:43.3788806Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples 2025-06-05T23:17:43.3789095Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/llm_pte_finetuning 2025-06-05T23:17:43.3789870Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:17:43.3790957Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/model_exporter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:17:43.3791688Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/model_loading_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:17:43.3792517Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/runner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:17:43.3793295Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/training_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:17:43.3794167Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/llama3_config.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:17:43.3795066Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/phi3_alpaca_code_config.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:17:43.3795968Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/phi3_config.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:17:43.3796816Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/qwen_05b_config.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:17:43.3797077Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models 2025-06-05T23:17:43.3797803Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models 2025-06-05T23:17:43.3798499Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/checkpoint.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models 2025-06-05T23:17:43.3799091Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/model_base.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models 2025-06-05T23:17:43.3799883Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/model_factory.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models 2025-06-05T23:17:43.3800188Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/deeplab_v3 2025-06-05T23:17:43.3800933Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/deeplab_v3 2025-06-05T23:17:43.3801644Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/deeplab_v3 2025-06-05T23:17:43.3801897Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/edsr 2025-06-05T23:17:43.3802514Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/edsr 2025-06-05T23:17:43.3803172Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/edsr 2025-06-05T23:17:43.3803467Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/efficient_sam 2025-06-05T23:17:43.3804200Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/efficient_sam 2025-06-05T23:17:43.3804922Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/efficient_sam 2025-06-05T23:17:43.3805498Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:17:43.3806523Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core/build_efficient_sam.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:17:43.3807410Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:17:43.3808384Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_decoder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:17:43.3809436Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_encoder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:17:43.3810345Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core/mlp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:17:43.3844343Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core/two_way_transformer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:17:43.3844884Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/emformer_rnnt 2025-06-05T23:17:43.3846108Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/emformer_rnnt 2025-06-05T23:17:43.3847348Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/emformer_rnnt 2025-06-05T23:17:43.3847837Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/inception_v3 2025-06-05T23:17:43.3849047Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/inception_v3 2025-06-05T23:17:43.3850208Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/inception_v3 2025-06-05T23:17:43.3850695Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/inception_v4 2025-06-05T23:17:43.3851891Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/inception_v4 2025-06-05T23:17:43.3853109Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/inception_v4 2025-06-05T23:17:43.3853538Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama 2025-06-05T23:17:43.3854617Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:17:43.3855783Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:17:43.3856906Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/eval_llama.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:17:43.3858061Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/eval_llama_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:17:43.3859455Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/export_llama.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:17:43.3860639Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/export_llama_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:17:43.3861746Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/fairseq2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:17:43.3862835Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/hf_download.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:17:43.3864110Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/install_requirement_helper.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:17:43.3865345Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/llama_transformer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:17:43.3866427Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:17:43.3867537Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/model_args.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:17:43.3868611Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:17:43.3869667Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/rope.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:17:43.3870910Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/static_attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:17:43.3871402Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/evaluate 2025-06-05T23:17:43.3872625Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/evaluate 2025-06-05T23:17:43.3873907Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate/eager_eval.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/evaluate 2025-06-05T23:17:43.3874441Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/experimental 2025-06-05T23:17:43.3875821Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/experimental 2025-06-05T23:17:43.3877236Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental/load_gguf_q4_0.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/experimental 2025-06-05T23:17:43.3878763Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental/subclass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/experimental 2025-06-05T23:17:43.3880177Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental/test_subclass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/experimental 2025-06-05T23:17:43.3880659Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/runner 2025-06-05T23:17:43.3881875Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner/eager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/runner 2025-06-05T23:17:43.3883452Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner/generation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/runner 2025-06-05T23:17:43.3884694Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner/native.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/runner 2025-06-05T23:17:43.3885306Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3886771Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3888324Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/apply_spin_quant_r1_r2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3889811Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3891333Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/attention_sink.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3892819Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/custom_kv_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3894283Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/lora.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3895939Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/pre_quantization.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3897434Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/prune_vocab.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3898939Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/quantize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3916760Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/rms_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3917846Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/rope.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3918743Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3919802Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/spin_quant.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3920821Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/test_attention_sink.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3921860Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/test_quantized_kv_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3923043Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/test_quantized_sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3924210Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/test_sdpa_with_quantized_kv_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3925090Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/vulkan_rope.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:17:43.3925507Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/tests 2025-06-05T23:17:43.3926215Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests/test_export_llama_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/tests 2025-06-05T23:17:43.3927083Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests/test_pre_quantization_transforms.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/tests 2025-06-05T23:17:43.3927797Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests/test_replace_kv_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/tests 2025-06-05T23:17:43.3928587Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests/test_ring_attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/tests 2025-06-05T23:17:43.3929266Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests/test_ring_kv_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/tests 2025-06-05T23:17:43.3930062Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests/test_simple_sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/tests 2025-06-05T23:17:43.3930768Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests/test_static_attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/tests 2025-06-05T23:17:43.3931038Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/tokenizer 2025-06-05T23:17:43.3931846Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tokenizer/tiktoken.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/tokenizer 2025-06-05T23:17:43.3932113Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision 2025-06-05T23:17:43.3932806Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision 2025-06-05T23:17:43.3933205Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:17:43.3933961Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:17:43.3934867Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess/export_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:17:43.3935800Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:17:43.3936704Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess/test_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:17:43.3937176Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:17:43.3938093Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner/eager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:17:43.3938943Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner/exported.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:17:43.3939756Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner/generation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:17:43.3940588Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner/native.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:17:43.3940995Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/text_decoder 2025-06-05T23:17:43.3941764Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/text_decoder 2025-06-05T23:17:43.3942119Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:17:43.3943110Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:17:43.3944095Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/test/test_text_decoder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:17:43.3944493Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:17:43.3945264Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:17:43.3946249Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:17:43.3946613Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:17:43.3947446Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:17:43.3948509Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/test/test_vision_encoder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:17:43.3948742Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llava 2025-06-05T23:17:43.3949412Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llava 2025-06-05T23:17:43.3950113Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/export_llava.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llava 2025-06-05T23:17:43.3950698Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llava 2025-06-05T23:17:43.4001305Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llava/test 2025-06-05T23:17:43.4002523Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test/test_llava.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llava/test 2025-06-05T23:17:43.4003169Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test/test_pte.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llava/test 2025-06-05T23:17:43.4003519Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/lstm 2025-06-05T23:17:43.4004123Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/lstm 2025-06-05T23:17:43.4004698Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/lstm 2025-06-05T23:17:43.4005022Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilebert 2025-06-05T23:17:43.4005690Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/mobilebert 2025-06-05T23:17:43.4006325Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/mobilebert 2025-06-05T23:17:43.4006690Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilenet_v2 2025-06-05T23:17:43.4007332Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/mobilenet_v2 2025-06-05T23:17:43.4008107Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/mobilenet_v2 2025-06-05T23:17:43.4008380Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilenet_v3 2025-06-05T23:17:43.4009038Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/mobilenet_v3 2025-06-05T23:17:43.4009732Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/mobilenet_v3 2025-06-05T23:17:43.4010048Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi-3-mini-lora 2025-06-05T23:17:43.4010739Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini-lora/export_model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi-3-mini-lora 2025-06-05T23:17:43.4011026Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi-3-mini 2025-06-05T23:17:43.4011729Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi-3-mini 2025-06-05T23:17:43.4012356Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini/eager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi-3-mini 2025-06-05T23:17:43.4013082Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini/phi_3_mini.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi-3-mini 2025-06-05T23:17:43.4013724Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini/static_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi-3-mini 2025-06-05T23:17:43.4014522Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini/export_phi-3-mini.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi-3-mini 2025-06-05T23:17:43.4014836Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi_4_mini 2025-06-05T23:17:43.4015691Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi_4_mini 2025-06-05T23:17:43.4016632Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini/convert_weights.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi_4_mini 2025-06-05T23:17:43.4016890Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/qwen2_5 2025-06-05T23:17:43.4017633Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/qwen2_5 2025-06-05T23:17:43.4018379Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5/convert_weights.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/qwen2_5 2025-06-05T23:17:43.4018627Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/qwen3 2025-06-05T23:17:43.4019317Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/qwen3 2025-06-05T23:17:43.4019958Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3/convert_weights.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/qwen3 2025-06-05T23:17:43.4020303Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/resnet 2025-06-05T23:17:43.4020989Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/resnet 2025-06-05T23:17:43.4021608Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/resnet 2025-06-05T23:17:43.4021917Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/smollm2 2025-06-05T23:17:43.4022636Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/smollm2 2025-06-05T23:17:43.4023491Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2/convert_weights.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/smollm2 2025-06-05T23:17:43.4023827Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/test 2025-06-05T23:17:43.4024398Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/test 2025-06-05T23:17:43.4025103Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test/test_export.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/test 2025-06-05T23:17:43.4025374Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/torchvision_vit 2025-06-05T23:17:43.4026159Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/torchvision_vit 2025-06-05T23:17:43.4027124Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/torchvision_vit 2025-06-05T23:17:43.4027373Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/toy_model 2025-06-05T23:17:43.4028170Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/toy_model 2025-06-05T23:17:43.4028858Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/toy_model 2025-06-05T23:17:43.4029158Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/wav2letter 2025-06-05T23:17:43.4029961Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/wav2letter 2025-06-05T23:17:43.4030994Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/wav2letter 2025-06-05T23:17:43.4031252Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/moshi 2025-06-05T23:17:43.4031544Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/moshi/mimi 2025-06-05T23:17:43.4032427Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/moshi/mimi/test_mimi.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/moshi/mimi 2025-06-05T23:17:43.4032719Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple 2025-06-05T23:17:43.4032952Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml 2025-06-05T23:17:43.4033219Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml/llama 2025-06-05T23:17:43.4034102Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama/export.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/llama 2025-06-05T23:17:43.4034945Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama/llama_transformer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/llama 2025-06-05T23:17:43.4168815Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama/run.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/llama 2025-06-05T23:17:43.4169534Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama/test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/llama 2025-06-05T23:17:43.4170425Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/llama 2025-06-05T23:17:43.4170794Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml/scripts 2025-06-05T23:17:43.4171595Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts/debugger_cli.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/scripts 2025-06-05T23:17:43.4172381Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts/export.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/scripts 2025-06-05T23:17:43.4173214Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts/extract_coreml_models.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/scripts 2025-06-05T23:17:43.4174056Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts/inspector_cli.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/scripts 2025-06-05T23:17:43.4174827Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts/inspector_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/scripts 2025-06-05T23:17:43.4175142Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/mps 2025-06-05T23:17:43.4175556Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/mps/scripts 2025-06-05T23:17:43.4176290Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts/bench_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/mps/scripts 2025-06-05T23:17:43.4177176Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts/mps_example.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/mps/scripts 2025-06-05T23:17:43.4177367Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension 2025-06-05T23:17:43.4177819Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/export_util 2025-06-05T23:17:43.4179219Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/export_util 2025-06-05T23:17:43.4180178Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/export_util 2025-06-05T23:17:43.4180540Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor 2025-06-05T23:17:43.4181300Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/flat_tensor 2025-06-05T23:17:43.4181588Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor/serialize 2025-06-05T23:17:43.4182350Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/flat_tensor/serialize 2025-06-05T23:17:43.4183131Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize/flat_tensor_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/flat_tensor/serialize 2025-06-05T23:17:43.4183982Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize/serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/flat_tensor/serialize 2025-06-05T23:17:43.4184745Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize/flat_tensor.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/flat_tensor/serialize 2025-06-05T23:17:43.4185674Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize/scalar_type.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/flat_tensor/serialize 2025-06-05T23:17:43.4185941Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor/test 2025-06-05T23:17:43.4186688Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/test/test_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/flat_tensor/test 2025-06-05T23:17:43.4186952Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/gguf_util 2025-06-05T23:17:43.4187869Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/convert_main.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/gguf_util 2025-06-05T23:17:43.4188704Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/gguf_util 2025-06-05T23:17:43.4189520Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/load_gguf.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/gguf_util 2025-06-05T23:17:43.4189847Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/gguf_util/converters 2025-06-05T23:17:43.4190789Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/converters/llama_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/gguf_util/converters 2025-06-05T23:17:43.4191074Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pybindings 2025-06-05T23:17:43.4191791Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/portable_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/pybindings 2025-06-05T23:17:43.4192090Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pybindings/test 2025-06-05T23:17:43.4192884Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test/make_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/pybindings/test 2025-06-05T23:17:43.4193698Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test/test_backend_pybinding.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/pybindings/test 2025-06-05T23:17:43.4194491Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test/test_pybindings.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/pybindings/test 2025-06-05T23:17:43.4195777Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/pybindings.pyi -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/pybindings 2025-06-05T23:17:43.4196991Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/_portable_lib.cpython-310-x86_64-linux-gnu.so -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/pybindings 2025-06-05T23:17:43.4197325Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pytree 2025-06-05T23:17:43.4198283Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/pytree 2025-06-05T23:17:43.4198680Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pytree/test 2025-06-05T23:17:43.4199660Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/test/test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/pytree/test 2025-06-05T23:17:43.4199939Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training 2025-06-05T23:17:43.4200804Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training 2025-06-05T23:17:43.4201260Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/pybindings 2025-06-05T23:17:43.4202494Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/_training_module.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/pybindings 2025-06-05T23:17:43.4203018Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/pybindings/test 2025-06-05T23:17:43.4204261Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/test/test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/pybindings/test 2025-06-05T23:17:43.4205472Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/_training_lib.pyi -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/pybindings 2025-06-05T23:17:43.4205926Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples 2025-06-05T23:17:43.4206384Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples/XOR 2025-06-05T23:17:43.4207592Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR/export_model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/examples/XOR 2025-06-05T23:17:43.4208802Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/examples/XOR 2025-06-05T23:17:43.4209326Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples/XOR/test 2025-06-05T23:17:43.4266091Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR/test/test_export.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/examples/XOR/test 2025-06-05T23:17:43.4266436Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm 2025-06-05T23:17:43.4266736Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops 2025-06-05T23:17:43.4267493Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:17:43.4268188Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/custom_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:17:43.4268931Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/model_sharding.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:17:43.4269851Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/op_tile_crop_aot.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:17:43.4270708Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/preprocess_custom_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:17:43.4271549Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/test_preprocess_custom_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:17:43.4272340Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/test_quantized_sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:17:43.4273102Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/test_sdpa_with_kv_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:17:43.4273883Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/test_update_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:17:43.4274234Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant 2025-06-05T23:17:43.4275172Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/special_hadamard_code_gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops/spinquant 2025-06-05T23:17:43.4275586Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant/third-party 2025-06-05T23:17:43.4276063Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:17:43.4277095Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/example.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:17:43.4278377Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:17:43.4279182Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/libcustom_ops_aot_lib.so -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:17:43.4279519Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/export 2025-06-05T23:17:43.4280305Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export 2025-06-05T23:17:43.4280990Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export 2025-06-05T23:17:43.4281740Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/export_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export 2025-06-05T23:17:43.4282551Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/partitioner_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export 2025-06-05T23:17:43.4283433Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/quantizer_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export 2025-06-05T23:17:43.4284080Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test_export_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export 2025-06-05T23:17:43.4284396Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/export/test 2025-06-05T23:17:43.4285265Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export/test 2025-06-05T23:17:43.4286312Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test/test_builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export/test 2025-06-05T23:17:43.4286687Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/modules 2025-06-05T23:17:43.4287412Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/modules 2025-06-05T23:17:43.4288269Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/_position_embeddings.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/modules 2025-06-05T23:17:43.4289047Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/modules 2025-06-05T23:17:43.4289771Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/kv_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/modules 2025-06-05T23:17:43.4290073Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/modules/test 2025-06-05T23:17:43.4290768Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/modules/test 2025-06-05T23:17:43.4291559Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test/test_attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/modules/test 2025-06-05T23:17:43.4292277Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test/test_kv_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/modules/test 2025-06-05T23:17:43.4293174Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test/test_position_embeddings.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/modules/test 2025-06-05T23:17:43.4293425Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers 2025-06-05T23:17:43.4294150Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/setup.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers 2025-06-05T23:17:43.4294571Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:17:43.4295474Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:17:43.4296423Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/constants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:17:43.4297292Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/hf_tokenizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:17:43.4298215Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/llama2c.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:17:43.4299164Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tiktoken.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:17:43.4299620Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-06-05T23:17:43.4300536Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-06-05T23:17:43.4301234Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:17:43.4302254Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:17:43.4342586Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/convert.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:17:43.4342914Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/test 2025-06-05T23:17:43.4343764Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test/test_tiktoken.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/test 2025-06-05T23:17:43.4344203Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party 2025-06-05T23:17:43.4344615Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:17:43.4345614Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/conanfile.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:17:43.4346646Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/create_lts.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:17:43.4347114Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:17:43.4347605Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:17:43.4348637Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/copts.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:17:43.4349852Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/generate_copts.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:17:43.4351060Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/abseil.podspec.gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:17:43.4351455Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json 2025-06-05T23:17:43.4351892Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs 2025-06-05T23:17:43.4352377Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs 2025-06-05T23:17:43.4352854Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-06-05T23:17:43.4353991Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts/check_structure.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-06-05T23:17:43.4354395Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests 2025-06-05T23:17:43.4354859Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty 2025-06-05T23:17:43.4355427Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-06-05T23:17:43.4356949Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl/filterbr.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-06-05T23:17:43.4357330Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools 2025-06-05T23:17:43.4357796Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-06-05T23:17:43.4358865Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate/amalgamate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-06-05T23:17:43.4359426Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:17:43.4360629Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer/nlohmann-json.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:17:43.4361119Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-06-05T23:17:43.4362325Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis/generate_natvis.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-06-05T23:17:43.4362822Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-06-05T23:17:43.4363927Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header/serve_header.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-06-05T23:17:43.4364347Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/pcre2 2025-06-05T23:17:43.4364719Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:43.4365834Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateCommon.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:43.4366863Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateTest.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:43.4367996Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcd.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:43.4369027Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpHeader.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:43.4370171Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpTables.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:43.4371303Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateCommon.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:43.4372366Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateDates.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:43.4373497Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateRelease.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:17:43.4373908Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2 2025-06-05T23:17:43.4374352Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-06-05T23:17:43.4375357Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/benchlog/benchplot.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-06-05T23:17:43.4375808Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:17:43.4376759Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/re2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:17:43.4377967Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/re2_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:17:43.4378879Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/setup.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:17:43.4379388Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-06-05T23:17:43.4424717Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-06-05T23:17:43.4425224Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:17:43.4426360Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_casefold.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:17:43.4427584Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_groups.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:17:43.4428562Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2/unicode.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:17:43.4429049Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece 2025-06-05T23:17:43.4429458Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-06-05T23:17:43.4430631Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/setup.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-06-05T23:17:43.4431103Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:17:43.4432243Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:17:43.4433643Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/sentencepiece_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:17:43.4434393Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src 2025-06-05T23:17:43.4434991Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:17:43.4436265Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:17:43.4437724Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/_version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:17:43.4439241Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_model_pb2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:17:43.4440868Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_pb2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:17:43.4441213Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build 2025-06-05T23:17:43.4441617Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib 2025-06-05T23:17:43.4442072Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:17:43.4443217Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:17:43.4444325Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/constants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:17:43.4445415Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/hf_tokenizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:17:43.4446565Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/llama2c.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:17:43.4447668Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tiktoken.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:17:43.4448188Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools 2025-06-05T23:17:43.4449424Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools 2025-06-05T23:17:43.4449947Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:17:43.4451199Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:17:43.4452632Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/convert.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:17:43.4452903Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module 2025-06-05T23:17:43.4453182Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module/test 2025-06-05T23:17:43.4453449Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module/test/resources 2025-06-05T23:17:43.4454383Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/module/test/resources/gen_bundled_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/module/test/resources 2025-06-05T23:17:43.4454562Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels 2025-06-05T23:17:43.4454844Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels/quantized 2025-06-05T23:17:43.4455641Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/kernels/quantized 2025-06-05T23:17:43.4455955Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels/quantized/test 2025-06-05T23:17:43.4456702Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test/test_out_variants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/kernels/quantized/test 2025-06-05T23:17:43.4457594Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test/test_quant_dequant_per_token.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/kernels/quantized/test 2025-06-05T23:17:43.4458385Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test/supported_features_def.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/kernels/quantized/test 2025-06-05T23:17:43.4459168Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/quantized.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/kernels/quantized 2025-06-05T23:17:43.4459806Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/libquantized_ops_aot_lib.so -> pip-out/bdist.linux-x86_64/wheel/./executorch/kernels/quantized 2025-06-05T23:17:43.4460038Z creating pip-out/bdist.linux-x86_64/wheel/executorch/schema 2025-06-05T23:17:43.4460647Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/schema/program.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/schema 2025-06-05T23:17:43.4461185Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/schema/scalar_type.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/schema 2025-06-05T23:17:43.4461628Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch 2025-06-05T23:17:43.4461853Z creating pip-out/bdist.linux-x86_64/wheel/executorch/share 2025-06-05T23:17:43.4462096Z creating pip-out/bdist.linux-x86_64/wheel/executorch/share/cmake 2025-06-05T23:17:43.4494642Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/share/cmake/executorch-config.cmake -> pip-out/bdist.linux-x86_64/wheel/./executorch/share/cmake 2025-06-05T23:17:43.4495035Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include 2025-06-05T23:17:43.4495370Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch 2025-06-05T23:17:43.4495665Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime 2025-06-05T23:17:43.4495949Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4496888Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/array_ref.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4497754Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/data_loader.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4498843Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/defines.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4499578Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/error.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4500462Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/evalue.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4501363Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/event_tracer.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4502234Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/event_tracer_hooks.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4503238Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/event_tracer_hooks_delegate.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4504070Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/freeable_buffer.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4504967Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/function_ref.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4505948Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/hierarchical_allocator.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4506800Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/memory_allocator.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4507571Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/named_data_map.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4508437Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/result.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4509252Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/span.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4510095Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/tag.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4511015Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/tensor_layout.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4511951Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/tensor_shape_dynamism.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:17:43.4512370Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten 2025-06-05T23:17:43.4513289Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/exec_aten.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/exec_aten 2025-06-05T23:17:43.4513812Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:17:43.4514917Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:17:43.4516181Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:17:43.4516659Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:17:43.4517634Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util/dim_order_util.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:17:43.4518684Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:17:43.4519753Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:17:43.4520813Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:17:43.4521872Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util/tensor_util.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:17:43.4522271Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:43.4523308Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/bfloat16.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:43.4524287Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/bfloat16_math.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:43.4525257Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/bits_types.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:43.4526266Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/complex.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:43.4527127Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/device.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:43.4528144Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/half.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:43.4529144Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/optional.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:43.4530088Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/qint_types.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:43.4531111Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/scalar.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:43.4532283Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/scalar_type.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:43.4558130Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/string_view.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:43.4559121Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/tensor.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:43.4560048Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/tensor_impl.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:43.4561039Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/tensor_options.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:17:43.4561485Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10 2025-06-05T23:17:43.4561990Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10 2025-06-05T23:17:43.4562483Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:17:43.4563619Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:17:43.4564627Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:17:43.4565239Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:43.4566250Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:43.4567462Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:43.4568573Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:43.4569676Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:43.4570722Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:43.4571941Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:43.4573060Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:43.4574252Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:43.4575441Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:43.4576599Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:43.4577910Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:43.4578948Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:17:43.4579271Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/kernel 2025-06-05T23:17:43.4580213Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/kernel_includes.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/kernel 2025-06-05T23:17:43.4581114Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/kernel_runtime_context.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/kernel 2025-06-05T23:17:43.4581978Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/operator_registry.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/kernel 2025-06-05T23:17:43.4582946Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/thread_parallel_interface.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/kernel 2025-06-05T23:17:43.4583319Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/kernel/test 2025-06-05T23:17:43.4584246Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/test/test_util.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/kernel/test 2025-06-05T23:17:43.4584540Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/platform 2025-06-05T23:17:43.4585367Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/abort.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:17:43.4586300Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/assert.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:17:43.4587031Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/clock.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:17:43.4587784Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/compat_unistd.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:17:43.4588515Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/compiler.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:17:43.4589240Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/log.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:17:43.4590158Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/platform.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:17:43.4590896Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/profiler.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:17:43.4591640Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/runtime.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:17:43.4592362Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/system.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:17:43.4593077Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/types.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:17:43.4593419Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/platform/test 2025-06-05T23:17:43.5228636Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test/pal_spy.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform/test 2025-06-05T23:17:43.5229705Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test/stub_platform.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform/test 2025-06-05T23:17:43.5230088Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension 2025-06-05T23:17:43.5230416Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/kernel_util 2025-06-05T23:17:43.5231319Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/kernel_util 2025-06-05T23:17:43.5232565Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util/meta_programming.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/kernel_util 2025-06-05T23:17:43.5233922Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util/type_list.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/kernel_util 2025-06-05T23:17:43.5234460Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/tensor 2025-06-05T23:17:43.5235846Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor/tensor.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/tensor 2025-06-05T23:17:43.5237336Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor/tensor_accessor.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/tensor 2025-06-05T23:17:43.5238773Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor/tensor_ptr.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/tensor 2025-06-05T23:17:43.5240266Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor/tensor_ptr_maker.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/tensor 2025-06-05T23:17:43.5240839Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/threadpool 2025-06-05T23:17:43.5242390Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool/cpuinfo_utils.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/threadpool 2025-06-05T23:17:43.5244749Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool/threadpool.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/threadpool 2025-06-05T23:17:43.5246350Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool/threadpool_guard.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/threadpool 2025-06-05T23:17:43.5246684Z creating pip-out/bdist.linux-x86_64/wheel/executorch/data 2025-06-05T23:17:43.5247024Z creating pip-out/bdist.linux-x86_64/wheel/executorch/data/bin 2025-06-05T23:17:43.5247888Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin/flatc -> pip-out/bdist.linux-x86_64/wheel/./executorch/data/bin 2025-06-05T23:17:43.5248554Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/data/bin 2025-06-05T23:17:43.5248656Z running install_egg_info 2025-06-05T23:17:43.5249048Z Copying executorch.egg-info to pip-out/bdist.linux-x86_64/wheel/./executorch-0.7.0a0+bd57234-py3.10.egg-info 2025-06-05T23:17:43.5249229Z running install_scripts 2025-06-05T23:17:43.5249723Z creating pip-out/bdist.linux-x86_64/wheel/executorch-0.7.0a0+bd57234.dist-info/WHEEL 2025-06-05T23:17:43.5250822Z creating '/tmp/pip-wheel-4m1fdjrp/.tmp-0r7re3cj/executorch-0.7.0a0+bd57234-cp310-cp310-linux_x86_64.whl' and adding 'pip-out/bdist.linux-x86_64/wheel' to it 2025-06-05T23:17:43.5251012Z adding 'executorch/version.py' 2025-06-05T23:17:43.5251383Z adding 'executorch/backends/apple/coreml/executorchcoreml.cpython-310-x86_64-linux-gnu.so' 2025-06-05T23:17:43.5251579Z adding 'executorch/backends/apple/coreml/executorchcoreml.pyi' 2025-06-05T23:17:43.5251778Z adding 'executorch/backends/apple/coreml/compiler/__init__.py' 2025-06-05T23:17:43.5252014Z adding 'executorch/backends/apple/coreml/compiler/coreml_preprocess.py' 2025-06-05T23:17:43.5252224Z adding 'executorch/backends/apple/coreml/partition/__init__.py' 2025-06-05T23:17:43.5252665Z adding 'executorch/backends/apple/coreml/partition/coreml_partitioner.py' 2025-06-05T23:17:43.5253036Z adding 'executorch/backends/apple/coreml/quantizer/__init__.py' 2025-06-05T23:17:43.5253480Z adding 'executorch/backends/apple/coreml/quantizer/coreml_quantizer.py' 2025-06-05T23:17:43.5253970Z adding 'executorch/backends/apple/coreml/runtime/test/export_stateful_model.py' 2025-06-05T23:17:43.5254365Z adding 'executorch/backends/apple/coreml/test/test_coreml_partitioner.py' 2025-06-05T23:17:43.5254593Z adding 'executorch/backends/apple/coreml/test/test_coreml_quantizer.py' 2025-06-05T23:17:43.5254734Z adding 'executorch/backends/apple/mps/__init__.py' 2025-06-05T23:17:43.5254915Z adding 'executorch/backends/apple/mps/mps_preprocess.py' 2025-06-05T23:17:43.5255195Z adding 'executorch/backends/apple/mps/operators/__init__.py' 2025-06-05T23:17:43.5255443Z adding 'executorch/backends/apple/mps/operators/activation_ops.py' 2025-06-05T23:17:43.5255795Z adding 'executorch/backends/apple/mps/operators/binary_ops.py' 2025-06-05T23:17:43.5256133Z adding 'executorch/backends/apple/mps/operators/clamp_ops.py' 2025-06-05T23:17:43.5256506Z adding 'executorch/backends/apple/mps/operators/constant_ops.py' 2025-06-05T23:17:43.5256905Z adding 'executorch/backends/apple/mps/operators/convolution_ops.py' 2025-06-05T23:17:43.5257281Z adding 'executorch/backends/apple/mps/operators/indexing_ops.py' 2025-06-05T23:17:43.5257607Z adding 'executorch/backends/apple/mps/operators/linear_algebra_ops.py' 2025-06-05T23:17:43.5257950Z adding 'executorch/backends/apple/mps/operators/node_visitor.py' 2025-06-05T23:17:43.5258373Z adding 'executorch/backends/apple/mps/operators/normalization_ops.py' 2025-06-05T23:17:43.5258708Z adding 'executorch/backends/apple/mps/operators/op_clone.py' 2025-06-05T23:17:43.5259065Z adding 'executorch/backends/apple/mps/operators/op_getitem.py' 2025-06-05T23:17:43.5259480Z adding 'executorch/backends/apple/mps/operators/op_quant_dequant.py' 2025-06-05T23:17:43.5259908Z adding 'executorch/backends/apple/mps/operators/op_skip_ops.py' 2025-06-05T23:17:43.5260243Z adding 'executorch/backends/apple/mps/operators/pad_ops.py' 2025-06-05T23:17:43.5260597Z adding 'executorch/backends/apple/mps/operators/pooling_ops.py' 2025-06-05T23:17:43.5260941Z adding 'executorch/backends/apple/mps/operators/range_ops.py' 2025-06-05T23:17:43.5261300Z adding 'executorch/backends/apple/mps/operators/reduce_ops.py' 2025-06-05T23:17:43.5261632Z adding 'executorch/backends/apple/mps/operators/shape_ops.py' 2025-06-05T23:17:43.5261971Z adding 'executorch/backends/apple/mps/operators/unary_ops.py' 2025-06-05T23:17:43.5262234Z adding 'executorch/backends/apple/mps/partition/__init__.py' 2025-06-05T23:17:43.5262513Z adding 'executorch/backends/apple/mps/partition/mps_partitioner.py' 2025-06-05T23:17:43.5262867Z adding 'executorch/backends/apple/mps/serialization/mps_graph_schema.py' 2025-06-05T23:17:43.5263341Z adding 'executorch/backends/apple/mps/serialization/mps_graph_serialize.py' 2025-06-05T23:17:43.5263712Z adding 'executorch/backends/apple/mps/serialization/schema.fbs' 2025-06-05T23:17:43.5264025Z adding 'executorch/backends/apple/mps/test/test_mps.py' 2025-06-05T23:17:43.5264403Z adding 'executorch/backends/apple/mps/test/test_mps_binary_ops.py' 2025-06-05T23:17:43.5264764Z adding 'executorch/backends/apple/mps/test/test_mps_indexing_ops.py' 2025-06-05T23:17:43.5264996Z adding 'executorch/backends/apple/mps/test/test_mps_linear.py' 2025-06-05T23:17:43.5265194Z adding 'executorch/backends/apple/mps/test/test_mps_models.py' 2025-06-05T23:17:43.5265393Z adding 'executorch/backends/apple/mps/test/test_mps_unary_ops.py' 2025-06-05T23:17:43.5265573Z adding 'executorch/backends/apple/mps/test/test_mps_utils.py' 2025-06-05T23:17:43.5265844Z adding 'executorch/backends/apple/mps/utils/mps_utils.py' 2025-06-05T23:17:43.5266153Z adding 'executorch/backends/apple/mps/utils/quant_utils.py' 2025-06-05T23:17:43.5266393Z adding 'executorch/backends/arm/arm_backend.py' 2025-06-05T23:17:43.5266625Z adding 'executorch/backends/arm/arm_vela.py' 2025-06-05T23:17:43.5266897Z adding 'executorch/backends/arm/ethosu_backend.py' 2025-06-05T23:17:43.5267182Z adding 'executorch/backends/arm/ethosu_partitioner.py' 2025-06-05T23:17:43.5267419Z adding 'executorch/backends/arm/process_node.py' 2025-06-05T23:17:43.5267657Z adding 'executorch/backends/arm/tosa_backend.py' 2025-06-05T23:17:43.5267829Z adding 'executorch/backends/arm/tosa_mapping.py' 2025-06-05T23:17:43.5268053Z adding 'executorch/backends/arm/tosa_partitioner.py' 2025-06-05T23:17:43.5268289Z adding 'executorch/backends/arm/tosa_quant_utils.py' 2025-06-05T23:17:43.5268505Z adding 'executorch/backends/arm/tosa_specification.py' 2025-06-05T23:17:43.5268635Z adding 'executorch/backends/arm/tosa_utils.py' 2025-06-05T23:17:43.5268766Z adding 'executorch/backends/arm/vgf_backend.py' 2025-06-05T23:17:43.5268922Z adding 'executorch/backends/arm/vgf_partitioner.py' 2025-06-05T23:17:43.5269073Z adding 'executorch/backends/arm/_passes/__init__.py' 2025-06-05T23:17:43.5269243Z adding 'executorch/backends/arm/_passes/_debug_passes.py' 2025-06-05T23:17:43.5269541Z adding 'executorch/backends/arm/_passes/annotate_channels_last_dim_order_pass.py' 2025-06-05T23:17:43.5269762Z adding 'executorch/backends/arm/_passes/annotate_decomposed_matmul.py' 2025-06-05T23:17:43.5269906Z adding 'executorch/backends/arm/_passes/arm_pass.py' 2025-06-05T23:17:43.5270095Z adding 'executorch/backends/arm/_passes/arm_pass_manager.py' 2025-06-05T23:17:43.5270262Z adding 'executorch/backends/arm/_passes/arm_pass_utils.py' 2025-06-05T23:17:43.5270492Z adding 'executorch/backends/arm/_passes/broadcast_args_pass.py' 2025-06-05T23:17:43.5270683Z adding 'executorch/backends/arm/_passes/cast_int64_pass.py' 2025-06-05T23:17:43.5270920Z adding 'executorch/backends/arm/_passes/cast_to_int32_pass.py' 2025-06-05T23:17:43.5563709Z adding 'executorch/backends/arm/_passes/conv1d_unsqueeze_pass.py' 2025-06-05T23:17:43.5564344Z adding 'executorch/backends/arm/_passes/convert_any_default_dim_dims_pass.py' 2025-06-05T23:17:43.5564923Z adding 'executorch/backends/arm/_passes/convert_expand_copy_to_repeat.py' 2025-06-05T23:17:43.5565370Z adding 'executorch/backends/arm/_passes/convert_full_like_to_full_pass.py' 2025-06-05T23:17:43.5565753Z adding 'executorch/backends/arm/_passes/convert_int_pow_to_mul.py' 2025-06-05T23:17:43.5566120Z adding 'executorch/backends/arm/_passes/convert_minmax_pass.py' 2025-06-05T23:17:43.5566460Z adding 'executorch/backends/arm/_passes/convert_split_to_slice.py' 2025-06-05T23:17:43.5566838Z adding 'executorch/backends/arm/_passes/convert_squeezes_to_view.py' 2025-06-05T23:17:43.5567017Z adding 'executorch/backends/arm/_passes/convert_to_clamp.py' 2025-06-05T23:17:43.5567261Z adding 'executorch/backends/arm/_passes/decompose_cosine_similarity_pass.py' 2025-06-05T23:17:43.5567461Z adding 'executorch/backends/arm/_passes/decompose_div_pass.py' 2025-06-05T23:17:43.5567655Z adding 'executorch/backends/arm/_passes/decompose_gelu_pass.py' 2025-06-05T23:17:43.5567872Z adding 'executorch/backends/arm/_passes/decompose_groupnorm_pass.py' 2025-06-05T23:17:43.5568082Z adding 'executorch/backends/arm/_passes/decompose_layernorm_pass.py' 2025-06-05T23:17:43.5568315Z adding 'executorch/backends/arm/_passes/decompose_leaky_relu_pass.py' 2025-06-05T23:17:43.5568656Z adding 'executorch/backends/arm/_passes/decompose_linalg_vector_norm_pass.py' 2025-06-05T23:17:43.5568856Z adding 'executorch/backends/arm/_passes/decompose_linear_pass.py' 2025-06-05T23:17:43.5569073Z adding 'executorch/backends/arm/_passes/decompose_meandim_pass.py' 2025-06-05T23:17:43.5569255Z adding 'executorch/backends/arm/_passes/decompose_ne_pass.py' 2025-06-05T23:17:43.5569433Z adding 'executorch/backends/arm/_passes/decompose_select.py' 2025-06-05T23:17:43.5569630Z adding 'executorch/backends/arm/_passes/decompose_silu_pass.py' 2025-06-05T23:17:43.5569836Z adding 'executorch/backends/arm/_passes/decompose_softmax_pass.py' 2025-06-05T23:17:43.5570205Z adding 'executorch/backends/arm/_passes/decompose_softmax_unstable_pass.py' 2025-06-05T23:17:43.5570394Z adding 'executorch/backends/arm/_passes/decompose_sqrt_pass.py' 2025-06-05T23:17:43.5570591Z adding 'executorch/backends/arm/_passes/decompose_sum_pass.py' 2025-06-05T23:17:43.5570775Z adding 'executorch/backends/arm/_passes/decompose_var_pass.py' 2025-06-05T23:17:43.5571029Z adding 'executorch/backends/arm/_passes/fold_qdq_with_annotated_qparams_pass.py' 2025-06-05T23:17:43.5571246Z adding 'executorch/backends/arm/_passes/fuse_batchnorm2d_pass.py' 2025-06-05T23:17:43.5571443Z adding 'executorch/backends/arm/_passes/fuse_constant_ops_pass.py' 2025-06-05T23:17:43.5571671Z adding 'executorch/backends/arm/_passes/fuse_equal_placeholders_pass.py' 2025-06-05T23:17:43.5571916Z adding 'executorch/backends/arm/_passes/fuse_quantized_activation_pass.py' 2025-06-05T23:17:43.5572108Z adding 'executorch/backends/arm/_passes/insert_rescales_pass.py' 2025-06-05T23:17:43.5572285Z adding 'executorch/backends/arm/_passes/insert_table_ops.py' 2025-06-05T23:17:43.5572494Z adding 'executorch/backends/arm/_passes/match_arg_ranks_pass.py' 2025-06-05T23:17:43.5572787Z adding 'executorch/backends/arm/_passes/match_where_self_arg_dtype_pass.py' 2025-06-05T23:17:43.5572983Z adding 'executorch/backends/arm/_passes/mm_to_bmm_pass.py' 2025-06-05T23:17:43.5573160Z adding 'executorch/backends/arm/_passes/remove_clone_pass.py' 2025-06-05T23:17:43.5573375Z adding 'executorch/backends/arm/_passes/replace_inf_values_pass.py' 2025-06-05T23:17:43.5573609Z adding 'executorch/backends/arm/_passes/replace_scalar_with_tensor_pass.py' 2025-06-05T23:17:43.5573821Z adding 'executorch/backends/arm/_passes/scalars_to_attribute_pass.py' 2025-06-05T23:17:43.5574033Z adding 'executorch/backends/arm/_passes/size_adjust_conv2d_pass.py' 2025-06-05T23:17:43.5574257Z adding 'executorch/backends/arm/_passes/unsqueeze_before_repeat_pass.py' 2025-06-05T23:17:43.5574581Z adding 'executorch/backends/arm/_passes/unsqueeze_scalar_placeholders_pass.py' 2025-06-05T23:17:43.5574878Z adding 'executorch/backends/arm/operator_support/__init__.py' 2025-06-05T23:17:43.5575257Z adding 'executorch/backends/arm/operator_support/convolution_support.py' 2025-06-05T23:17:43.5575477Z adding 'executorch/backends/arm/operator_support/ethos_u55_support.py' 2025-06-05T23:17:43.5575697Z adding 'executorch/backends/arm/operator_support/minmax_support.py' 2025-06-05T23:17:43.5575909Z adding 'executorch/backends/arm/operator_support/pool_2d_support.py' 2025-06-05T23:17:43.5576133Z adding 'executorch/backends/arm/operator_support/reduce_sum_support.py' 2025-06-05T23:17:43.5576362Z adding 'executorch/backends/arm/operator_support/right_shift_support.py' 2025-06-05T23:17:43.5576586Z adding 'executorch/backends/arm/operator_support/sin_cos_support.py' 2025-06-05T23:17:43.5576809Z adding 'executorch/backends/arm/operator_support/slice_copy_support.py' 2025-06-05T23:17:43.5577028Z adding 'executorch/backends/arm/operator_support/to_copy_support.py' 2025-06-05T23:17:43.5577387Z adding 'executorch/backends/arm/operator_support/tosa_supported_operators.py' 2025-06-05T23:17:43.5577547Z adding 'executorch/backends/arm/operators/__init__.py' 2025-06-05T23:17:43.5577869Z adding 'executorch/backends/arm/operators/node_visitor.py' 2025-06-05T23:17:43.5578033Z adding 'executorch/backends/arm/operators/op_abs.py' 2025-06-05T23:17:43.5578180Z adding 'executorch/backends/arm/operators/op_add.py' 2025-06-05T23:17:43.5578330Z adding 'executorch/backends/arm/operators/op_amax.py' 2025-06-05T23:17:43.5578479Z adding 'executorch/backends/arm/operators/op_amin.py' 2025-06-05T23:17:43.5578638Z adding 'executorch/backends/arm/operators/op_any.py' 2025-06-05T23:17:43.5578808Z adding 'executorch/backends/arm/operators/op_avg_pool2d.py' 2025-06-05T23:17:43.5578952Z adding 'executorch/backends/arm/operators/op_bmm.py' 2025-06-05T23:17:43.5579117Z adding 'executorch/backends/arm/operators/op_cat.py' 2025-06-05T23:17:43.5579286Z adding 'executorch/backends/arm/operators/op_clamp.py' 2025-06-05T23:17:43.5579592Z adding 'executorch/backends/arm/operators/op_constant_pad_nd.py' 2025-06-05T23:17:43.5579765Z adding 'executorch/backends/arm/operators/op_conv2d.py' 2025-06-05T23:17:43.5579907Z adding 'executorch/backends/arm/operators/op_cos.py' 2025-06-05T23:17:43.5580048Z adding 'executorch/backends/arm/operators/op_eq.py' 2025-06-05T23:17:43.5580192Z adding 'executorch/backends/arm/operators/op_erf.py' 2025-06-05T23:17:43.5580347Z adding 'executorch/backends/arm/operators/op_exp.py' 2025-06-05T23:17:43.5580487Z adding 'executorch/backends/arm/operators/op_ge.py' 2025-06-05T23:17:43.5580623Z adding 'executorch/backends/arm/operators/op_gt.py' 2025-06-05T23:17:43.5580771Z adding 'executorch/backends/arm/operators/op_le.py' 2025-06-05T23:17:43.5580913Z adding 'executorch/backends/arm/operators/op_log.py' 2025-06-05T23:17:43.5581049Z adding 'executorch/backends/arm/operators/op_lt.py' 2025-06-05T23:17:43.5581238Z adding 'executorch/backends/arm/operators/op_max_pool2d.py' 2025-06-05T23:17:43.5581405Z adding 'executorch/backends/arm/operators/op_maximum.py' 2025-06-05T23:17:43.5581565Z adding 'executorch/backends/arm/operators/op_minimum.py' 2025-06-05T23:17:43.5581707Z adding 'executorch/backends/arm/operators/op_mul.py' 2025-06-05T23:17:43.5581861Z adding 'executorch/backends/arm/operators/op_neg.py' 2025-06-05T23:17:43.5582021Z adding 'executorch/backends/arm/operators/op_permute.py' 2025-06-05T23:17:43.5582204Z adding 'executorch/backends/arm/operators/op_pow.py' 2025-06-05T23:17:43.5582434Z adding 'executorch/backends/arm/operators/op_reciprocal.py' 2025-06-05T23:17:43.5582591Z adding 'executorch/backends/arm/operators/op_repeat.py' 2025-06-05T23:17:43.5582749Z adding 'executorch/backends/arm/operators/op_rescale.py' 2025-06-05T23:17:43.5582947Z adding 'executorch/backends/arm/operators/op_rshift_tensor.py' 2025-06-05T23:17:43.5583211Z adding 'executorch/backends/arm/operators/op_rsqrt.py' 2025-06-05T23:17:43.5583372Z adding 'executorch/backends/arm/operators/op_sigmoid.py' 2025-06-05T23:17:43.5583595Z adding 'executorch/backends/arm/operators/op_sin.py' 2025-06-05T23:17:43.5583764Z adding 'executorch/backends/arm/operators/op_slice.py' 2025-06-05T23:17:43.5583945Z adding 'executorch/backends/arm/operators/op_sub.py' 2025-06-05T23:17:43.5584137Z adding 'executorch/backends/arm/operators/op_sum.py' 2025-06-05T23:17:43.5584301Z adding 'executorch/backends/arm/operators/op_table.py' 2025-06-05T23:17:43.5584463Z adding 'executorch/backends/arm/operators/op_tanh.py' 2025-06-05T23:17:43.5584724Z adding 'executorch/backends/arm/operators/op_to_copy.py' 2025-06-05T23:17:43.5584945Z adding 'executorch/backends/arm/operators/op_to_dim_order_copy.py' 2025-06-05T23:17:43.5585114Z adding 'executorch/backends/arm/operators/op_transpose.py' 2025-06-05T23:17:43.5585332Z adding 'executorch/backends/arm/operators/op_upsample_bilinear2d.py' 2025-06-05T23:17:43.5585548Z adding 'executorch/backends/arm/operators/op_upsample_nearest2d.py' 2025-06-05T23:17:43.5585713Z adding 'executorch/backends/arm/operators/op_view.py' 2025-06-05T23:17:43.5585864Z adding 'executorch/backends/arm/operators/op_where.py' 2025-06-05T23:17:43.5586092Z adding 'executorch/backends/arm/operators/operator_validation_utils.py' 2025-06-05T23:17:43.5586264Z adding 'executorch/backends/arm/operators/ops_binary.py' 2025-06-05T23:17:43.5586434Z adding 'executorch/backends/arm/operators/ops_identity.py' 2025-06-05T23:17:43.5586589Z adding 'executorch/backends/arm/operators/ops_unary.py' 2025-06-05T23:17:43.5586752Z adding 'executorch/backends/arm/quantizer/__init__.py' 2025-06-05T23:17:43.5586922Z adding 'executorch/backends/arm/quantizer/arm_quantizer.py' 2025-06-05T23:17:43.5587120Z adding 'executorch/backends/arm/quantizer/arm_quantizer_utils.py' 2025-06-05T23:17:43.5587420Z adding 'executorch/backends/arm/quantizer/quantization_annotator.py' 2025-06-05T23:17:43.5587641Z adding 'executorch/backends/arm/quantizer/quantization_config.py' 2025-06-05T23:17:43.5587826Z adding 'executorch/backends/arm/scripts/parse_test_names.py' 2025-06-05T23:17:43.5587957Z adding 'executorch/backends/arm/test/common.py' 2025-06-05T23:17:43.5588101Z adding 'executorch/backends/arm/test/conftest.py' 2025-06-05T23:17:43.5588250Z adding 'executorch/backends/arm/test/runner_utils.py' 2025-06-05T23:17:43.5588385Z adding 'executorch/backends/arm/test/test_model.py' 2025-06-05T23:17:43.5588615Z adding 'executorch/backends/arm/test/misc/test_bn_relu_folding_qat.py' 2025-06-05T23:17:43.5588822Z adding 'executorch/backends/arm/test/misc/test_custom_partition.py' 2025-06-05T23:17:43.5589003Z adding 'executorch/backends/arm/test/misc/test_debug_feats.py' 2025-06-05T23:17:43.5589217Z adding 'executorch/backends/arm/test/misc/test_dim_order_guards.py' 2025-06-05T23:17:43.5589409Z adding 'executorch/backends/arm/test/misc/test_lifted_tensor.py' 2025-06-05T23:17:43.5589720Z adding 'executorch/backends/arm/test/misc/test_model_evaluator.py' 2025-06-05T23:17:43.5589943Z adding 'executorch/backends/arm/test/misc/test_multiple_delegates.py' 2025-06-05T23:17:43.5590159Z adding 'executorch/backends/arm/test/misc/test_multiple_outputs.py' 2025-06-05T23:17:43.5590394Z adding 'executorch/backends/arm/test/misc/test_non_persistent_buffers.py' 2025-06-05T23:17:43.5590683Z adding 'executorch/backends/arm/test/misc/test_partition_decomposed_quantized_ops.py' 2025-06-05T23:17:43.5894291Z adding 'executorch/backends/arm/test/misc/test_tosa_spec.py' 2025-06-05T23:17:43.5894643Z adding 'executorch/backends/arm/test/models/test_conformer.py' 2025-06-05T23:17:43.5895064Z adding 'executorch/backends/arm/test/models/test_deit_tiny_arm.py' 2025-06-05T23:17:43.5895302Z adding 'executorch/backends/arm/test/models/test_dl3_arm.py' 2025-06-05T23:17:43.5895480Z adding 'executorch/backends/arm/test/models/test_llama.py' 2025-06-05T23:17:43.5895726Z adding 'executorch/backends/arm/test/models/test_lstm_arm.py' 2025-06-05T23:17:43.5896283Z adding 'executorch/backends/arm/test/models/test_mobilenet_v2_arm.py' 2025-06-05T23:17:43.5896779Z adding 'executorch/backends/arm/test/models/test_mobilenet_v3_arm.py' 2025-06-05T23:17:43.5897153Z adding 'executorch/backends/arm/test/models/test_nn_functional.py' 2025-06-05T23:17:43.5897520Z adding 'executorch/backends/arm/test/models/test_nn_modules.py' 2025-06-05T23:17:43.5897907Z adding 'executorch/backends/arm/test/models/test_torch_functions.py' 2025-06-05T23:17:43.5898213Z adding 'executorch/backends/arm/test/models/test_w2l_arm.py' 2025-06-05T23:17:43.5898423Z adding 'executorch/backends/arm/test/ops/test_abs.py' 2025-06-05T23:17:43.5898599Z adding 'executorch/backends/arm/test/ops/test_add.py' 2025-06-05T23:17:43.5898813Z adding 'executorch/backends/arm/test/ops/test_alias_copy.py' 2025-06-05T23:17:43.5898965Z adding 'executorch/backends/arm/test/ops/test_amax.py' 2025-06-05T23:17:43.5899129Z adding 'executorch/backends/arm/test/ops/test_amin.py' 2025-06-05T23:17:43.5899283Z adding 'executorch/backends/arm/test/ops/test_any.py' 2025-06-05T23:17:43.5899449Z adding 'executorch/backends/arm/test/ops/test_arange.py' 2025-06-05T23:17:43.5899609Z adding 'executorch/backends/arm/test/ops/test_at.py' 2025-06-05T23:17:43.5899784Z adding 'executorch/backends/arm/test/ops/test_avg_pool2d.py' 2025-06-05T23:17:43.5899956Z adding 'executorch/backends/arm/test/ops/test_batch_norm.py' 2025-06-05T23:17:43.5900120Z adding 'executorch/backends/arm/test/ops/test_bitwise.py' 2025-06-05T23:17:43.5900276Z adding 'executorch/backends/arm/test/ops/test_bmm.py' 2025-06-05T23:17:43.5900419Z adding 'executorch/backends/arm/test/ops/test_cat.py' 2025-06-05T23:17:43.5900576Z adding 'executorch/backends/arm/test/ops/test_clamp.py' 2025-06-05T23:17:43.5900741Z adding 'executorch/backends/arm/test/ops/test_clone.py' 2025-06-05T23:17:43.5900976Z adding 'executorch/backends/arm/test/ops/test_constant_pad_nd.py' 2025-06-05T23:17:43.5901154Z adding 'executorch/backends/arm/test/ops/test_conv1d.py' 2025-06-05T23:17:43.5901316Z adding 'executorch/backends/arm/test/ops/test_conv2d.py' 2025-06-05T23:17:43.5901476Z adding 'executorch/backends/arm/test/ops/test_conv3d.py' 2025-06-05T23:17:43.5901654Z adding 'executorch/backends/arm/test/ops/test_conv_combos.py' 2025-06-05T23:17:43.5901890Z adding 'executorch/backends/arm/test/ops/test_conv_constant_pad_nd.py' 2025-06-05T23:17:43.5902039Z adding 'executorch/backends/arm/test/ops/test_cos.py' 2025-06-05T23:17:43.5902238Z adding 'executorch/backends/arm/test/ops/test_depthwise_conv.py' 2025-06-05T23:17:43.5902398Z adding 'executorch/backends/arm/test/ops/test_div.py' 2025-06-05T23:17:43.5902541Z adding 'executorch/backends/arm/test/ops/test_eq.py' 2025-06-05T23:17:43.5902684Z adding 'executorch/backends/arm/test/ops/test_erf.py' 2025-06-05T23:17:43.5902842Z adding 'executorch/backends/arm/test/ops/test_exp.py' 2025-06-05T23:17:43.5903000Z adding 'executorch/backends/arm/test/ops/test_expand.py' 2025-06-05T23:17:43.5903148Z adding 'executorch/backends/arm/test/ops/test_eye.py' 2025-06-05T23:17:43.5903301Z adding 'executorch/backends/arm/test/ops/test_full.py' 2025-06-05T23:17:43.5903455Z adding 'executorch/backends/arm/test/ops/test_ge.py' 2025-06-05T23:17:43.5903604Z adding 'executorch/backends/arm/test/ops/test_gelu.py' 2025-06-05T23:17:43.5903778Z adding 'executorch/backends/arm/test/ops/test_group_norm.py' 2025-06-05T23:17:43.5903933Z adding 'executorch/backends/arm/test/ops/test_gt.py' 2025-06-05T23:17:43.5904112Z adding 'executorch/backends/arm/test/ops/test_hardsigmoid.py' 2025-06-05T23:17:43.5904373Z adding 'executorch/backends/arm/test/ops/test_hardswish.py' 2025-06-05T23:17:43.5904670Z adding 'executorch/backends/arm/test/ops/test_hardtanh.py' 2025-06-05T23:17:43.5904976Z adding 'executorch/backends/arm/test/ops/test_layer_norm.py' 2025-06-05T23:17:43.5905223Z adding 'executorch/backends/arm/test/ops/test_le.py' 2025-06-05T23:17:43.5905685Z adding 'executorch/backends/arm/test/ops/test_leaky_relu.py' 2025-06-05T23:17:43.5906171Z adding 'executorch/backends/arm/test/ops/test_linalg_vector_norm.py' 2025-06-05T23:17:43.5906460Z adding 'executorch/backends/arm/test/ops/test_linear.py' 2025-06-05T23:17:43.5906694Z adding 'executorch/backends/arm/test/ops/test_log.py' 2025-06-05T23:17:43.5906883Z adding 'executorch/backends/arm/test/ops/test_logical.py' 2025-06-05T23:17:43.5907134Z adding 'executorch/backends/arm/test/ops/test_logsoftmax.py' 2025-06-05T23:17:43.5907294Z adding 'executorch/backends/arm/test/ops/test_lshift.py' 2025-06-05T23:17:43.5907453Z adding 'executorch/backends/arm/test/ops/test_lt.py' 2025-06-05T23:17:43.5907667Z adding 'executorch/backends/arm/test/ops/test_matmul.py' 2025-06-05T23:17:43.5907946Z adding 'executorch/backends/arm/test/ops/test_max_pool.py' 2025-06-05T23:17:43.5908233Z adding 'executorch/backends/arm/test/ops/test_maximum.py' 2025-06-05T23:17:43.5908541Z adding 'executorch/backends/arm/test/ops/test_mean_dim.py' 2025-06-05T23:17:43.5908859Z adding 'executorch/backends/arm/test/ops/test_minimum.py' 2025-06-05T23:17:43.5909130Z adding 'executorch/backends/arm/test/ops/test_mm.py' 2025-06-05T23:17:43.5909401Z adding 'executorch/backends/arm/test/ops/test_mul.py' 2025-06-05T23:17:43.5909660Z adding 'executorch/backends/arm/test/ops/test_ne.py' 2025-06-05T23:17:43.5909903Z adding 'executorch/backends/arm/test/ops/test_neg.py' 2025-06-05T23:17:43.5910187Z adding 'executorch/backends/arm/test/ops/test_ones.py' 2025-06-05T23:17:43.5910485Z adding 'executorch/backends/arm/test/ops/test_permute.py' 2025-06-05T23:17:43.5910752Z adding 'executorch/backends/arm/test/ops/test_pow.py' 2025-06-05T23:17:43.5911095Z adding 'executorch/backends/arm/test/ops/test_reciprocal.py' 2025-06-05T23:17:43.5911389Z adding 'executorch/backends/arm/test/ops/test_relu.py' 2025-06-05T23:17:43.5911680Z adding 'executorch/backends/arm/test/ops/test_repeat.py' 2025-06-05T23:17:43.5911956Z adding 'executorch/backends/arm/test/ops/test_rshift.py' 2025-06-05T23:17:43.5912257Z adding 'executorch/backends/arm/test/ops/test_rsqrt.py' 2025-06-05T23:17:43.5912616Z adding 'executorch/backends/arm/test/ops/test_scalar_tensor.py' 2025-06-05T23:17:43.5912917Z adding 'executorch/backends/arm/test/ops/test_scalars.py' 2025-06-05T23:17:43.5913222Z adding 'executorch/backends/arm/test/ops/test_sdpa.py' 2025-06-05T23:17:43.5913514Z adding 'executorch/backends/arm/test/ops/test_select.py' 2025-06-05T23:17:43.5913809Z adding 'executorch/backends/arm/test/ops/test_sigmoid.py' 2025-06-05T23:17:43.5914141Z adding 'executorch/backends/arm/test/ops/test_sigmoid_16bit.py' 2025-06-05T23:17:43.5914502Z adding 'executorch/backends/arm/test/ops/test_sigmoid_32bit.py' 2025-06-05T23:17:43.5914783Z adding 'executorch/backends/arm/test/ops/test_silu.py' 2025-06-05T23:17:43.5915063Z adding 'executorch/backends/arm/test/ops/test_sin.py' 2025-06-05T23:17:43.5915364Z adding 'executorch/backends/arm/test/ops/test_slice.py' 2025-06-05T23:17:43.5915668Z adding 'executorch/backends/arm/test/ops/test_softmax.py' 2025-06-05T23:17:43.5915950Z adding 'executorch/backends/arm/test/ops/test_split.py' 2025-06-05T23:17:43.5916230Z adding 'executorch/backends/arm/test/ops/test_sqrt.py' 2025-06-05T23:17:43.5916531Z adding 'executorch/backends/arm/test/ops/test_squeeze.py' 2025-06-05T23:17:43.5916795Z adding 'executorch/backends/arm/test/ops/test_sub.py' 2025-06-05T23:17:43.5917078Z adding 'executorch/backends/arm/test/ops/test_sum.py' 2025-06-05T23:17:43.5917366Z adding 'executorch/backends/arm/test/ops/test_tanh.py' 2025-06-05T23:17:43.5917659Z adding 'executorch/backends/arm/test/ops/test_to_copy.py' 2025-06-05T23:17:43.5917926Z adding 'executorch/backends/arm/test/ops/test_unary.py' 2025-06-05T23:17:43.5918139Z adding 'executorch/backends/arm/test/ops/test_unsqueeze.py' 2025-06-05T23:17:43.5918395Z adding 'executorch/backends/arm/test/ops/test_upsample_bilinear2d.py' 2025-06-05T23:17:43.5918785Z adding 'executorch/backends/arm/test/ops/test_upsample_nearest2d.py' 2025-06-05T23:17:43.5919200Z adding 'executorch/backends/arm/test/ops/test_var.py' 2025-06-05T23:17:43.5919559Z adding 'executorch/backends/arm/test/ops/test_view.py' 2025-06-05T23:17:43.5919847Z adding 'executorch/backends/arm/test/ops/test_where.py' 2025-06-05T23:17:43.5920124Z adding 'executorch/backends/arm/test/ops/test_zeros.py' 2025-06-05T23:17:43.5920543Z adding 'executorch/backends/arm/test/passes/test_broadcast_args_pass.py' 2025-06-05T23:17:43.5920780Z adding 'executorch/backends/arm/test/passes/test_cast_int64_pass.py' 2025-06-05T23:17:43.5921268Z adding 'executorch/backends/arm/test/passes/test_convert_expand_copy_to_repeat.py' 2025-06-05T23:17:43.5921735Z adding 'executorch/backends/arm/test/passes/test_convert_int_pow_to_muls.py' 2025-06-05T23:17:43.5922201Z adding 'executorch/backends/arm/test/passes/test_convert_split_to_slice.py' 2025-06-05T23:17:43.5922594Z adding 'executorch/backends/arm/test/passes/test_convert_to_clamp.py' 2025-06-05T23:17:43.5923143Z adding 'executorch/backends/arm/test/passes/test_decompose_cosine_similarity_pass.py' 2025-06-05T23:17:43.5923572Z adding 'executorch/backends/arm/test/passes/test_decompose_div_pass.py' 2025-06-05T23:17:43.5924060Z adding 'executorch/backends/arm/test/passes/test_decompose_layernorm_pass.py' 2025-06-05T23:17:43.5924618Z adding 'executorch/backends/arm/test/passes/test_decompose_linalg_vector_norm_pass.py' 2025-06-05T23:17:43.5925055Z adding 'executorch/backends/arm/test/passes/test_decompose_meandim_pass.py' 2025-06-05T23:17:43.5925511Z adding 'executorch/backends/arm/test/passes/test_decompose_softmax_pass.py' 2025-06-05T23:17:43.5925946Z adding 'executorch/backends/arm/test/passes/test_decompose_var_pass.py' 2025-06-05T23:17:43.5926338Z adding 'executorch/backends/arm/test/passes/test_fold_qdq_pass.py' 2025-06-05T23:17:43.5926763Z adding 'executorch/backends/arm/test/passes/test_fuse_batchnorm_pass.py' 2025-06-05T23:17:43.5927206Z adding 'executorch/backends/arm/test/passes/test_fuse_constant_ops_pass.py' 2025-06-05T23:17:43.5927783Z adding 'executorch/backends/arm/test/passes/test_fuse_equal_placeholders_ops_pass.py' 2025-06-05T23:17:43.5928235Z adding 'executorch/backends/arm/test/passes/test_insert_table_ops_pass.py' 2025-06-05T23:17:43.5928666Z adding 'executorch/backends/arm/test/passes/test_ioquantization_pass.py' 2025-06-05T23:17:43.5929083Z adding 'executorch/backends/arm/test/passes/test_remove_clone_pass.py' 2025-06-05T23:17:43.5929455Z adding 'executorch/backends/arm/test/passes/test_rescale_pass.py' 2025-06-05T23:17:43.5929978Z adding 'executorch/backends/arm/test/passes/test_unsqueeze_before_repeat_pass.py' 2025-06-05T23:17:43.5930439Z adding 'executorch/backends/arm/test/quantizer/test_generic_annotater.py' 2025-06-05T23:17:43.5930724Z adding 'executorch/backends/arm/test/tester/__init__.py' 2025-06-05T23:17:43.5931071Z adding 'executorch/backends/arm/test/tester/analyze_output_utils.py' 2025-06-05T23:17:43.5931389Z adding 'executorch/backends/arm/test/tester/arm_tester.py' 2025-06-05T23:17:43.5931737Z adding 'executorch/backends/arm/test/tester/test_pipeline.py' 2025-06-05T23:17:43.6080157Z adding 'executorch/backends/arm/test/tosautil/__init__.py' 2025-06-05T23:17:43.6080572Z adding 'executorch/backends/arm/third-party/serialization_lib/setup.py' 2025-06-05T23:17:43.6081028Z adding 'executorch/backends/arm/third-party/serialization_lib/python/serializer/__init__.py' 2025-06-05T23:17:43.6081754Z adding 'executorch/backends/arm/third-party/serialization_lib/python/serializer/tosa_serializer.py' 2025-06-05T23:17:43.6082519Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ArithmeticRightShiftAttribute.py' 2025-06-05T23:17:43.6083080Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Attribute.py' 2025-06-05T23:17:43.6083650Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/AxisAttribute.py' 2025-06-05T23:17:43.6084252Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ClampAttribute.py' 2025-06-05T23:17:43.6085220Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/CondIfAttribute.py' 2025-06-05T23:17:43.6085794Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ConvAttribute.py' 2025-06-05T23:17:43.6086137Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/CustomAttribute.py' 2025-06-05T23:17:43.6086540Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/DType.py' 2025-06-05T23:17:43.6087107Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/FFTAttribute.py' 2025-06-05T23:17:43.6087814Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/FullyConnectedAttribute.py' 2025-06-05T23:17:43.6088426Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/MatMulAttribute.py' 2025-06-05T23:17:43.6088770Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/MulAttribute.py' 2025-06-05T23:17:43.6089106Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/NegateAttribute.py' 2025-06-05T23:17:43.6089385Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Op.py' 2025-06-05T23:17:43.6089726Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/PadAttribute.py' 2025-06-05T23:17:43.6090300Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/PoolAttribute.py' 2025-06-05T23:17:43.6090918Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/RFFTAttribute.py' 2025-06-05T23:17:43.6091538Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/RescaleAttribute.py' 2025-06-05T23:17:43.6092020Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ReshapeAttribute.py' 2025-06-05T23:17:43.6092358Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeAttribute.py' 2025-06-05T23:17:43.6092664Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeMode.py' 2025-06-05T23:17:43.6092987Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/SliceAttribute.py' 2025-06-05T23:17:43.6093503Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TableAttribute.py' 2025-06-05T23:17:43.6094091Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TileAttribute.py' 2025-06-05T23:17:43.6094704Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaBasicBlock.py' 2025-06-05T23:17:43.6095330Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaGraph.py' 2025-06-05T23:17:43.6095906Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaOperator.py' 2025-06-05T23:17:43.6096477Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaRegion.py' 2025-06-05T23:17:43.6097037Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaTensor.py' 2025-06-05T23:17:43.6097568Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeAttribute.py' 2025-06-05T23:17:43.6098170Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeConvAttribute.py' 2025-06-05T23:17:43.6098705Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Version.py' 2025-06-05T23:17:43.6099376Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/WhileLoopAttribute.py' 2025-06-05T23:17:43.6099895Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/__init__.py' 2025-06-05T23:17:43.6100373Z adding 'executorch/backends/arm/third-party/serialization_lib/schema/tosa.fbs' 2025-06-05T23:17:43.6101016Z adding 'executorch/backends/arm/third-party/serialization_lib/test/scripts/test_npy_fileio.py' 2025-06-05T23:17:43.6101595Z adding 'executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit/xunit.py' 2025-06-05T23:17:43.6102394Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conanfile.py' 2025-06-05T23:17:43.6103196Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/pnpm-lock.yaml' 2025-06-05T23:17:43.6104057Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs/animal.fbs' 2025-06-05T23:17:43.6104954Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers/bench.fbs' 2025-06-05T23:17:43.6105652Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/build.py' 2025-06-05T23:17:43.6106297Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package/conanfile.py' 2025-06-05T23:17:43.6107081Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/analysis_options.yaml' 2025-06-05T23:17:43.6107826Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/pubspec.yaml' 2025-06-05T23:17:43.6108397Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/bool_structs.fbs' 2025-06-05T23:17:43.6108917Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/list_of_enums.fbs' 2025-06-05T23:17:43.6109709Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/monster_test.fbs' 2025-06-05T23:17:43.6110487Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/hero.fbs' 2025-06-05T23:17:43.6111227Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/net.fbs' 2025-06-05T23:17:43.6112046Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/generate_goldens.py' 2025-06-05T23:17:43.6112804Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/golden_utils.py' 2025-06-05T23:17:43.6113574Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp/generate.py' 2025-06-05T23:17:43.6114390Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp/generate.py' 2025-06-05T23:17:43.6114948Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart/generate.py' 2025-06-05T23:17:43.6115409Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go/generate.py' 2025-06-05T23:17:43.6115819Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java/generate.py' 2025-06-05T23:17:43.6116226Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin/generate.py' 2025-06-05T23:17:43.6116666Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster/generate.py' 2025-06-05T23:17:43.6117083Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua/generate.py' 2025-06-05T23:17:43.6117479Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim/generate.py' 2025-06-05T23:17:43.6117872Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php/generate.py' 2025-06-05T23:17:43.6118272Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Galaxy.py' 2025-06-05T23:17:43.6118665Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Universe.py' 2025-06-05T23:17:43.6119051Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/__init__.py' 2025-06-05T23:17:43.6119452Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/generate.py' 2025-06-05T23:17:43.6120011Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust/generate.py' 2025-06-05T23:17:43.6120408Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema/basic.fbs' 2025-06-05T23:17:43.6120824Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift/generate.py' 2025-06-05T23:17:43.6121214Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts/generate.py' 2025-06-05T23:17:43.6121615Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/greeter.fbs' 2025-06-05T23:17:43.6122089Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/client.py' 2025-06-05T23:17:43.6122572Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/server.py' 2025-06-05T23:17:43.6123115Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloReply.py' 2025-06-05T23:17:43.6238563Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloRequest.py' 2025-06-05T23:17:43.6239225Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/__init__.py' 2025-06-05T23:17:43.6239836Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/greeter_grpc_fb.py' 2025-06-05T23:17:43.6240292Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter/greeter.fbs' 2025-06-05T23:17:43.6240689Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests/grpctest.py' 2025-06-05T23:17:43.6241228Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.py' 2025-06-05T23:17:43.6241727Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/MonsterExtra.py' 2025-06-05T23:17:43.6242185Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/__init__.py' 2025-06-05T23:17:43.6242689Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.py' 2025-06-05T23:17:43.6243176Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.py' 2025-06-05T23:17:43.6243746Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.py' 2025-06-05T23:17:43.6244304Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.py' 2025-06-05T23:17:43.6244838Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayStruct.py' 2025-06-05T23:17:43.6245355Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayTable.py' 2025-06-05T23:17:43.6245841Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.py' 2025-06-05T23:17:43.6246355Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.py' 2025-06-05T23:17:43.6246856Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.py' 2025-06-05T23:17:43.6247383Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedStruct.py' 2025-06-05T23:17:43.6248104Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.py' 2025-06-05T23:17:43.6248618Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.py' 2025-06-05T23:17:43.6249098Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.py' 2025-06-05T23:17:43.6249659Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.py' 2025-06-05T23:17:43.6250253Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.py' 2025-06-05T23:17:43.6250734Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.py' 2025-06-05T23:17:43.6251257Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestEnum.py' 2025-06-05T23:17:43.6251848Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.py' 2025-06-05T23:17:43.6252373Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.py' 2025-06-05T23:17:43.6253083Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.py' 2025-06-05T23:17:43.6253585Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/__init__.py' 2025-06-05T23:17:43.6254166Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/monster_test_grpc_fb.py' 2025-06-05T23:17:43.6254719Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Any.py' 2025-06-05T23:17:43.6255343Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Color.py' 2025-06-05T23:17:43.6255968Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/NestedUnionTest.py' 2025-06-05T23:17:43.6256617Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Test.py' 2025-06-05T23:17:43.6257273Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py' 2025-06-05T23:17:43.6257829Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Vec3.py' 2025-06-05T23:17:43.6258470Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/__init__.py' 2025-06-05T23:17:43.6258998Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.py' 2025-06-05T23:17:43.6259529Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/__init__.py' 2025-06-05T23:17:43.6260050Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.py' 2025-06-05T23:17:43.6260533Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInC.py' 2025-06-05T23:17:43.6261065Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.py' 2025-06-05T23:17:43.6261787Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/__init__.py' 2025-06-05T23:17:43.6262372Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.py' 2025-06-05T23:17:43.6262981Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.py' 2025-06-05T23:17:43.6263653Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.py' 2025-06-05T23:17:43.6264240Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.py' 2025-06-05T23:17:43.6264798Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/__init__.py' 2025-06-05T23:17:43.6265291Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.py' 2025-06-05T23:17:43.6265772Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/__init__.py' 2025-06-05T23:17:43.6266419Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/OptionalByte.py' 2025-06-05T23:17:43.6267075Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/ScalarStuff.py' 2025-06-05T23:17:43.6267623Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/__init__.py' 2025-06-05T23:17:43.6268319Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector/union_vector.fbs' 2025-06-05T23:17:43.6268760Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/__init__.py' 2025-06-05T23:17:43.6269127Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/py.typed' 2025-06-05T23:17:43.6269503Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/setup.py' 2025-06-05T23:17:43.6269936Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/__init__.py' 2025-06-05T23:17:43.6270467Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/_version.py' 2025-06-05T23:17:43.6270961Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/builder.py' 2025-06-05T23:17:43.6454572Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/compat.py' 2025-06-05T23:17:43.6455899Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/encode.py' 2025-06-05T23:17:43.6456892Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/flexbuffers.py' 2025-06-05T23:17:43.6457920Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/number_types.py' 2025-06-05T23:17:43.6458911Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/packer.py' 2025-06-05T23:17:43.6459856Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/table.py' 2025-06-05T23:17:43.6460798Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/util.py' 2025-06-05T23:17:43.6461848Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/AdvancedFeatures.py' 2025-06-05T23:17:43.6463240Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/BaseType.py' 2025-06-05T23:17:43.6464319Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Enum.py' 2025-06-05T23:17:43.6465370Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/EnumVal.py' 2025-06-05T23:17:43.6466444Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Field.py' 2025-06-05T23:17:43.6467581Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/KeyValue.py' 2025-06-05T23:17:43.6468665Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Object.py' 2025-06-05T23:17:43.6469751Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/RPCCall.py' 2025-06-05T23:17:43.6470817Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Schema.py' 2025-06-05T23:17:43.6472030Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/SchemaFile.py' 2025-06-05T23:17:43.6473303Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Service.py' 2025-06-05T23:17:43.6474412Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Type.py' 2025-06-05T23:17:43.6475578Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/__init__.py' 2025-06-05T23:17:43.6476633Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection/reflection.fbs' 2025-06-05T23:17:43.6477767Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/monster.fbs' 2025-06-05T23:17:43.6478764Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/sample_binary.py' 2025-06-05T23:17:43.6479757Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check-grpc-generated-code.py' 2025-06-05T23:17:43.6480940Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check_generate_code.py' 2025-06-05T23:17:43.6481927Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_code.py' 2025-06-05T23:17:43.6483039Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_grpc_examples.py' 2025-06-05T23:17:43.6484024Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/util.py' 2025-06-05T23:17:43.6485034Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap/snapcraft.yaml' 2025-06-05T23:17:43.6486003Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MutatingBool.fbs' 2025-06-05T23:17:43.6487053Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/alignment_test.fbs' 2025-06-05T23:17:43.6488028Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/arrays_test.fbs' 2025-06-05T23:17:43.6489052Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/dictionary_lookup.fbs' 2025-06-05T23:17:43.6490077Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/included_test.fbs' 2025-06-05T23:17:43.6490987Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/includer_test.fbs' 2025-06-05T23:17:43.6492148Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/keyword_test.fbs' 2025-06-05T23:17:43.6493184Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_extra.fbs' 2025-06-05T23:17:43.6494160Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test.fbs' 2025-06-05T23:17:43.6495255Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test_generated.py' 2025-06-05T23:17:43.6496319Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/more_defaults.fbs' 2025-06-05T23:17:43.6497367Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nan_inf_test.fbs' 2025-06-05T23:17:43.6498378Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_inline_table_test.fbs' 2025-06-05T23:17:43.6499368Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_type_test.fbs' 2025-06-05T23:17:43.6500434Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_union_test.fbs' 2025-06-05T23:17:43.6501441Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars.fbs' 2025-06-05T23:17:43.6502546Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/private_annotation_test.fbs' 2025-06-05T23:17:43.6503576Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_flexbuffers_test.py' 2025-06-05T23:17:43.6504621Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_test.py' 2025-06-05T23:17:43.6505598Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/required_strings.fbs' 2025-06-05T23:17:43.6506591Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/rust_namer_test.fbs' 2025-06-05T23:17:43.6507602Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/test.fbs' 2025-06-05T23:17:43.6508503Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/type_field_collsion.fbs' 2025-06-05T23:17:43.6509659Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_underlying_type_test.fbs' 2025-06-05T23:17:43.6510704Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_value_collision.fbs' 2025-06-05T23:17:43.6542113Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/vector_has_test.fbs' 2025-06-05T23:17:43.6543283Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/test_64bit.fbs' 2025-06-05T23:17:43.6544351Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v1.fbs' 2025-06-05T23:17:43.6545322Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v2.fbs' 2025-06-05T23:17:43.6546452Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/InParentNamespace.py' 2025-06-05T23:17:43.6547515Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/MonsterExtra.py' 2025-06-05T23:17:43.6548588Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/__init__.py' 2025-06-05T23:17:43.6549669Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Ability.py' 2025-06-05T23:17:43.6550786Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Any.py' 2025-06-05T23:17:43.6552155Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.py' 2025-06-05T23:17:43.6553374Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.py' 2025-06-05T23:17:43.6554587Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayStruct.py' 2025-06-05T23:17:43.6555762Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayTable.py' 2025-06-05T23:17:43.6556882Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Color.py' 2025-06-05T23:17:43.6603474Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/LongEnum.py' 2025-06-05T23:17:43.6604946Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Monster.py' 2025-06-05T23:17:43.6606136Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedStruct.py' 2025-06-05T23:17:43.6607366Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Race.py' 2025-06-05T23:17:43.6608446Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Referrable.py' 2025-06-05T23:17:43.6609586Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Stat.py' 2025-06-05T23:17:43.6610725Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.py' 2025-06-05T23:17:43.6612064Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.py' 2025-06-05T23:17:43.6613282Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Test.py' 2025-06-05T23:17:43.6614345Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestEnum.py' 2025-06-05T23:17:43.6615682Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.py' 2025-06-05T23:17:43.6616848Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.py' 2025-06-05T23:17:43.6618002Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Vec3.py' 2025-06-05T23:17:43.6618968Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/__init__.py' 2025-06-05T23:17:43.6620026Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/monster_test_grpc_fb.py' 2025-06-05T23:17:43.6621133Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Any.py' 2025-06-05T23:17:43.6622474Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Color.py' 2025-06-05T23:17:43.6624471Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/NestedUnionTest.py' 2025-06-05T23:17:43.6626592Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Test.py' 2025-06-05T23:17:43.6628893Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py' 2025-06-05T23:17:43.6631190Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Vec3.py' 2025-06-05T23:17:43.6633459Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/__init__.py' 2025-06-05T23:17:43.6635112Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/Monster.py' 2025-06-05T23:17:43.6636992Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/__init__.py' 2025-06-05T23:17:43.6639021Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary.fbs' 2025-06-05T23:17:43.6641184Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary_old.fbs' 2025-06-05T23:17:43.6643298Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/generate_annotations.py' 2025-06-05T23:17:43.6645287Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v1.fbs' 2025-06-05T23:17:43.6647273Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v2.fbs' 2025-06-05T23:17:43.6649229Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/enum_val_attributes.fbs' 2025-06-05T23:17:43.6651029Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_cpp_tests.py' 2025-06-05T23:17:43.6652627Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_kotlin_tests.py' 2025-06-05T23:17:43.6654557Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_schema_tests.py' 2025-06-05T23:17:43.6656466Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_test.py' 2025-06-05T23:17:43.6658230Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_ts_tests.py' 2025-06-05T23:17:43.6659183Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo.fbs' 2025-06-05T23:17:43.6660767Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo_with_ns.fbs' 2025-06-05T23:17:43.6662508Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/main.py' 2025-06-05T23:17:43.6664181Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar.fbs' 2025-06-05T23:17:43.6665946Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_foo.fbs' 2025-06-05T23:17:43.6667838Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_ns.fbs' 2025-06-05T23:17:43.6669673Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz.fbs' 2025-06-05T23:17:43.6671592Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz_with_ns.fbs' 2025-06-05T23:17:43.6673573Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/include_test1.fbs' 2025-06-05T23:17:43.6675458Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/order.fbs' 2025-06-05T23:17:43.6677393Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/include_test2.fbs' 2025-06-05T23:17:43.6678668Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/no_namespace.fbs' 2025-06-05T23:17:43.6680486Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field/key_field_sample.fbs' 2025-06-05T23:17:43.6681968Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums/enums.fbs' 2025-06-05T23:17:43.6683743Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test1.fbs' 2025-06-05T23:17:43.6685220Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test2.fbs' 2025-06-05T23:17:43.6686865Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test1.fbs' 2025-06-05T23:17:43.6688359Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test2.fbs' 2025-06-05T23:17:43.6689419Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test1.fbs' 2025-06-05T23:17:43.6690528Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test2.fbs' 2025-06-05T23:17:43.6691670Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.py' 2025-06-05T23:17:43.6692818Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInC.py' 2025-06-05T23:17:43.6693959Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.py' 2025-06-05T23:17:43.6695318Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/__init__.py' 2025-06-05T23:17:43.6696508Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.py' 2025-06-05T23:17:43.6697774Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.py' 2025-06-05T23:17:43.6699123Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.py' 2025-06-05T23:17:43.6700385Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.py' 2025-06-05T23:17:43.6701674Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/__init__.py' 2025-06-05T23:17:43.6925297Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.py' 2025-06-05T23:17:43.6927511Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/__init__.py' 2025-06-05T23:17:43.6929335Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test1.fbs' 2025-06-05T23:17:43.6931445Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test2.fbs' 2025-06-05T23:17:43.6933576Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test3.fbs' 2025-06-05T23:17:43.6935249Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim/testnim.py' 2025-06-05T23:17:43.6937093Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/OptionalByte.py' 2025-06-05T23:17:43.6939113Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/ScalarStuff.py' 2025-06-05T23:17:43.6941099Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/__init__.py' 2025-06-05T23:17:43.6943265Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test.golden.fbs' 2025-06-05T23:17:43.6945362Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_id.golden.fbs' 2025-06-05T23:17:43.6947395Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include.golden.fbs' 2025-06-05T23:17:43.6949253Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include_id.golden.fbs' 2025-06-05T23:17:43.6951079Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix.golden.fbs' 2025-06-05T23:17:43.6952642Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix_id.golden.fbs' 2025-06-05T23:17:43.6954224Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union.golden.fbs' 2025-06-05T23:17:43.6955318Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_id.golden.fbs' 2025-06-05T23:17:43.6956822Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include.golden.fbs' 2025-06-05T23:17:43.6958599Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include_id.golden.fbs' 2025-06-05T23:17:43.6960777Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix.golden.fbs' 2025-06-05T23:17:43.6962749Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix_id.golden.fbs' 2025-06-05T23:17:43.6963951Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_import.fbs' 2025-06-05T23:17:43.6965210Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_no_include.fbs' 2025-06-05T23:17:43.6966443Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers/fuzzer.fbs' 2025-06-05T23:17:43.6967528Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/TypeScriptTest.py' 2025-06-05T23:17:43.6968509Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/typescript_keywords.fbs' 2025-06-05T23:17:43.6969594Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex/arrays_test_complex.fbs' 2025-06-05T23:17:43.6970734Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/one.fbs' 2025-06-05T23:17:43.6971849Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/pnpm-lock.yaml' 2025-06-05T23:17:43.6972973Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/two.fbs' 2025-06-05T23:17:43.6974052Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_include.fbs' 2025-06-05T23:17:43.6975258Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_transitive_include.fbs' 2025-06-05T23:17:43.6976362Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector/union_vector.fbs' 2025-06-05T23:17:43.6977089Z adding 'executorch/backends/arm/tosa/schemas/tosa_0.80.fbs' 2025-06-05T23:17:43.6977817Z adding 'executorch/backends/arm/tosa/schemas/tosa_1.0.fbs' 2025-06-05T23:17:43.6978809Z adding 'executorch/backends/arm/util/arm_model_evaluator.py' 2025-06-05T23:17:43.6979604Z adding 'executorch/backends/cadence/aot/__init__.py' 2025-06-05T23:17:43.6980393Z adding 'executorch/backends/cadence/aot/compiler.py' 2025-06-05T23:17:43.6980825Z adding 'executorch/backends/cadence/aot/compiler_utils.py' 2025-06-05T23:17:43.6981278Z adding 'executorch/backends/cadence/aot/decompose_ops.py' 2025-06-05T23:17:43.6981722Z adding 'executorch/backends/cadence/aot/export_example.py' 2025-06-05T23:17:43.6982172Z adding 'executorch/backends/cadence/aot/functions.yaml' 2025-06-05T23:17:43.6982648Z adding 'executorch/backends/cadence/aot/functions_fusion_g3.yaml' 2025-06-05T23:17:43.6983319Z adding 'executorch/backends/cadence/aot/functions_hifi.yaml' 2025-06-05T23:17:43.6984116Z adding 'executorch/backends/cadence/aot/fuse_ops.py' 2025-06-05T23:17:43.6984878Z adding 'executorch/backends/cadence/aot/graph_builder.py' 2025-06-05T23:17:43.6985710Z adding 'executorch/backends/cadence/aot/memory_constraints.py' 2025-06-05T23:17:43.6986604Z adding 'executorch/backends/cadence/aot/memory_planning.py' 2025-06-05T23:17:43.6987389Z adding 'executorch/backends/cadence/aot/ops_registrations.py' 2025-06-05T23:17:43.6987859Z adding 'executorch/backends/cadence/aot/pass_utils.py' 2025-06-05T23:17:43.6988258Z adding 'executorch/backends/cadence/aot/passes.py' 2025-06-05T23:17:43.6988708Z adding 'executorch/backends/cadence/aot/ref_implementations.py' 2025-06-05T23:17:43.6989375Z adding 'executorch/backends/cadence/aot/remove_ops.py' 2025-06-05T23:17:43.6990157Z adding 'executorch/backends/cadence/aot/reorder_ops.py' 2025-06-05T23:17:43.6990924Z adding 'executorch/backends/cadence/aot/replace_ops.py' 2025-06-05T23:17:43.6991429Z adding 'executorch/backends/cadence/aot/simplify_ops.py' 2025-06-05T23:17:43.6991832Z adding 'executorch/backends/cadence/aot/utils.py' 2025-06-05T23:17:43.6992578Z adding 'executorch/backends/cadence/aot/quantizer/fusion_pass.py' 2025-06-05T23:17:43.6993527Z adding 'executorch/backends/cadence/aot/quantizer/patterns.py' 2025-06-05T23:17:43.6994434Z adding 'executorch/backends/cadence/aot/quantizer/quantizer.py' 2025-06-05T23:17:43.6995358Z adding 'executorch/backends/cadence/aot/quantizer/utils.py' 2025-06-05T23:17:43.6996323Z adding 'executorch/backends/cadence/aot/tests/test_decompose_ops_passes.py' 2025-06-05T23:17:43.6997465Z adding 'executorch/backends/cadence/aot/tests/test_fusion_ops_passes.py' 2025-06-05T23:17:43.6998494Z adding 'executorch/backends/cadence/aot/tests/test_graph_builder.py' 2025-06-05T23:17:43.6999526Z adding 'executorch/backends/cadence/aot/tests/test_memory_passes.py' 2025-06-05T23:17:43.7000497Z adding 'executorch/backends/cadence/aot/tests/test_pass_filter.py' 2025-06-05T23:17:43.7001529Z adding 'executorch/backends/cadence/aot/tests/test_remove_ops_passes.py' 2025-06-05T23:17:43.7002621Z adding 'executorch/backends/cadence/aot/tests/test_reorder_ops_passes.py' 2025-06-05T23:17:43.7003733Z adding 'executorch/backends/cadence/aot/tests/test_replace_ops_passes.py' 2025-06-05T23:17:43.7004845Z adding 'executorch/backends/cadence/aot/tests/test_simplify_ops_passes.py' 2025-06-05T23:17:43.7005843Z adding 'executorch/backends/cadence/runtime/__init__.py' 2025-06-05T23:17:43.7006634Z adding 'executorch/backends/cadence/runtime/executor.py' 2025-06-05T23:17:43.7007456Z adding 'executorch/backends/cadence/runtime/runtime.py' 2025-06-05T23:17:43.7008203Z adding 'executorch/backends/cadence/runtime/utils.py' 2025-06-05T23:17:43.7009000Z adding 'executorch/backends/cadence/utils/facto_util.py' 2025-06-05T23:17:43.7009783Z adding 'executorch/backends/cadence/utils/gen_header.py' 2025-06-05T23:17:43.7010630Z adding 'executorch/backends/cadence/utils/post_compilation.py' 2025-06-05T23:17:43.7011509Z adding 'executorch/backends/cadence/utils/FACTO/setup.py' 2025-06-05T23:17:43.7012439Z adding 'executorch/backends/cadence/utils/FACTO/calibrator/__init__.py' 2025-06-05T23:17:43.7013518Z adding 'executorch/backends/cadence/utils/FACTO/calibrator/runner.py' 2025-06-05T23:17:43.7014689Z adding 'executorch/backends/cadence/utils/FACTO/examples/example.py' 2025-06-05T23:17:43.7015961Z adding 'executorch/backends/cadence/utils/FACTO/examples/minimal_example.py' 2025-06-05T23:17:43.7017027Z adding 'executorch/backends/cadence/utils/FACTO/examples/random_seed.py' 2025-06-05T23:17:43.7018076Z adding 'executorch/backends/cadence/utils/FACTO/facto/__init__.py' 2025-06-05T23:17:43.7018719Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/__init__.py' 2025-06-05T23:17:43.7019651Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/__init__.py' 2025-06-05T23:17:43.7020970Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/engine.py' 2025-06-05T23:17:43.7022195Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/gen.py' 2025-06-05T23:17:43.7023347Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/__init__.py' 2025-06-05T23:17:43.7024402Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/engine.py' 2025-06-05T23:17:43.7246783Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/gen.py' 2025-06-05T23:17:43.7247546Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/type.py' 2025-06-05T23:17:43.7248287Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/__init__.py' 2025-06-05T23:17:43.7249130Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/engine.py' 2025-06-05T23:17:43.7249822Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/model.py' 2025-06-05T23:17:43.7250497Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/solve.py' 2025-06-05T23:17:43.7251178Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/__init__.py' 2025-06-05T23:17:43.7251836Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/model.py' 2025-06-05T23:17:43.7252623Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/__init__.py' 2025-06-05T23:17:43.7253376Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/random_manager.py' 2025-06-05T23:17:43.7254078Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/__init__.py' 2025-06-05T23:17:43.7255040Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/constants.py' 2025-06-05T23:17:43.7255728Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/gen.py' 2025-06-05T23:17:43.7256396Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/solve.py' 2025-06-05T23:17:43.7257126Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/space.py' 2025-06-05T23:17:43.7257858Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/type.py' 2025-06-05T23:17:43.7258529Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/utils.py' 2025-06-05T23:17:43.7259142Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/db.py' 2025-06-05T23:17:43.7259716Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/default.py' 2025-06-05T23:17:43.7260289Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/dtypes.py' 2025-06-05T23:17:43.7260920Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/function.py' 2025-06-05T23:17:43.7261647Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_engine.py' 2025-06-05T23:17:43.7262369Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_generator.py' 2025-06-05T23:17:43.7263122Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_attributes.py' 2025-06-05T23:17:43.7263879Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_generator.py' 2025-06-05T23:17:43.7264723Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_types.py' 2025-06-05T23:17:43.7265715Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_engine.py' 2025-06-05T23:17:43.7266559Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_solver.py' 2025-06-05T23:17:43.7267376Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_constraints.py' 2025-06-05T23:17:43.7268065Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_meta_arg_engine.py' 2025-06-05T23:17:43.7268738Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_specs.py' 2025-06-05T23:17:43.7269420Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_structural_engine.py' 2025-06-05T23:17:43.7270204Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_generation.py' 2025-06-05T23:17:43.7271022Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_solving.py' 2025-06-05T23:17:43.7271730Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_space.py' 2025-06-05T23:17:43.7272571Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_types.py' 2025-06-05T23:17:43.7273202Z adding 'executorch/backends/cortex_m/ops/operators.py' 2025-06-05T23:17:43.7273747Z adding 'executorch/backends/cortex_m/ops/operators.yaml' 2025-06-05T23:17:43.7274334Z adding 'executorch/backends/cortex_m/passes/replace_quant_nodes_pass.py' 2025-06-05T23:17:43.7274893Z adding 'executorch/backends/cortex_m/test/test_replace_quant_nodes.py' 2025-06-05T23:17:43.7275390Z adding 'executorch/backends/example/example_backend.py' 2025-06-05T23:17:43.7275930Z adding 'executorch/backends/example/example_partitioner.py' 2025-06-05T23:17:43.7276467Z adding 'executorch/backends/example/example_quantizer.py' 2025-06-05T23:17:43.7276924Z adding 'executorch/backends/example/test_example_delegate.py' 2025-06-05T23:17:43.7277523Z adding 'executorch/backends/example/example_backend_delegate_passes/merge_to_dim_pass.py' 2025-06-05T23:17:43.7278603Z adding 'executorch/backends/example/example_backend_delegate_passes/permute_memory_formats_pass.py' 2025-06-05T23:17:43.7279333Z adding 'executorch/backends/example/example_operators/adaptive_avg_pool2d.py' 2025-06-05T23:17:43.7279891Z adding 'executorch/backends/example/example_operators/add.py' 2025-06-05T23:17:43.7280409Z adding 'executorch/backends/example/example_operators/conv2d.py' 2025-06-05T23:17:43.7281010Z adding 'executorch/backends/example/example_operators/conv_relu.py' 2025-06-05T23:17:43.7281534Z adding 'executorch/backends/example/example_operators/dropout.py' 2025-06-05T23:17:43.7282046Z adding 'executorch/backends/example/example_operators/flatten.py' 2025-06-05T23:17:43.7282607Z adding 'executorch/backends/example/example_operators/linear.py' 2025-06-05T23:17:43.7283172Z adding 'executorch/backends/example/example_operators/op_base.py' 2025-06-05T23:17:43.7283670Z adding 'executorch/backends/example/example_operators/ops.py' 2025-06-05T23:17:43.7284145Z adding 'executorch/backends/example/example_operators/utils.py' 2025-06-05T23:17:43.7284708Z adding 'executorch/backends/mediatek/__init__.py' 2025-06-05T23:17:43.7285190Z adding 'executorch/backends/mediatek/partitioner.py' 2025-06-05T23:17:43.7285590Z adding 'executorch/backends/mediatek/preprocess.py' 2025-06-05T23:17:43.7286013Z adding 'executorch/backends/mediatek/_passes/__init__.py' 2025-06-05T23:17:43.7286643Z adding 'executorch/backends/mediatek/_passes/decompose_scaled_dot_product_attention.py' 2025-06-05T23:17:43.7287325Z adding 'executorch/backends/mediatek/quantizer/__init__.py' 2025-06-05T23:17:43.7287782Z adding 'executorch/backends/mediatek/quantizer/annotator.py' 2025-06-05T23:17:43.7288251Z adding 'executorch/backends/mediatek/quantizer/qconfig.py' 2025-06-05T23:17:43.7288742Z adding 'executorch/backends/mediatek/quantizer/quantizer.py' 2025-06-05T23:17:43.7289279Z adding 'executorch/backends/nxp/neutron_node_extraction.py' 2025-06-05T23:17:43.7289731Z adding 'executorch/backends/nxp/neutron_partitioner.py' 2025-06-05T23:17:43.7290299Z adding 'executorch/backends/nxp/neutron_pass_manager.py' 2025-06-05T23:17:43.7290779Z adding 'executorch/backends/nxp/nxp_backend.py' 2025-06-05T23:17:43.7291379Z adding 'executorch/backends/nxp/aten_passes/fuse_batch_norm_with_conv_pass.py' 2025-06-05T23:17:43.7292090Z adding 'executorch/backends/nxp/aten_passes/fuse_batch_norm_with_linear_pass.py' 2025-06-05T23:17:43.7292689Z adding 'executorch/backends/nxp/aten_passes/neutron_aten_pass_manager.py' 2025-06-05T23:17:43.7293208Z adding 'executorch/backends/nxp/backend/edge_helper.py' 2025-06-05T23:17:43.7293789Z adding 'executorch/backends/nxp/backend/edge_program_converter.py' 2025-06-05T23:17:43.7294393Z adding 'executorch/backends/nxp/backend/neutron_converter_manager.py' 2025-06-05T23:17:43.7294996Z adding 'executorch/backends/nxp/backend/node_format_inference.py' 2025-06-05T23:17:43.7295557Z adding 'executorch/backends/nxp/backend/ir/conversion_config.py' 2025-06-05T23:17:43.7296151Z adding 'executorch/backends/nxp/backend/ir/conversion_context.py' 2025-06-05T23:17:43.7296616Z adding 'executorch/backends/nxp/backend/ir/logger.py' 2025-06-05T23:17:43.7297084Z adding 'executorch/backends/nxp/backend/ir/tensor_formatting.py' 2025-06-05T23:17:43.7297637Z adding 'executorch/backends/nxp/backend/ir/converter/__init__.py' 2025-06-05T23:17:43.7298237Z adding 'executorch/backends/nxp/backend/ir/converter/node_converter.py' 2025-06-05T23:17:43.7298835Z adding 'executorch/backends/nxp/backend/ir/converter/quantization_utils.py' 2025-06-05T23:17:43.7299436Z adding 'executorch/backends/nxp/backend/ir/converter/tensor_utils.py' 2025-06-05T23:17:43.7300155Z adding 'executorch/backends/nxp/backend/ir/converter/builder/__init__.py' 2025-06-05T23:17:43.7300841Z adding 'executorch/backends/nxp/backend/ir/converter/builder/aten_model_builder_director.py' 2025-06-05T23:17:43.7301545Z adding 'executorch/backends/nxp/backend/ir/converter/builder/model_builder.py' 2025-06-05T23:17:43.7302425Z adding 'executorch/backends/nxp/backend/ir/converter/builder/quantization_verification.py' 2025-06-05T23:17:43.7303124Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/__init__.py' 2025-06-05T23:17:43.7303784Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/aten_translator.py' 2025-06-05T23:17:43.7304561Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/common.py' 2025-06-05T23:17:43.7305211Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/translator.py' 2025-06-05T23:17:43.7305868Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/__init__.py' 2025-06-05T23:17:43.7306592Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/__init__.py' 2025-06-05T23:17:43.7307478Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/addmm_converter.py' 2025-06-05T23:17:43.7308427Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/avg_pool_2d_converter.py' 2025-06-05T23:17:43.7309374Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/constant_pad_nd_converter.py' 2025-06-05T23:17:43.7310437Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/convolution_converter.py' 2025-06-05T23:17:43.7311398Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/max_pool_2d_converter.py' 2025-06-05T23:17:43.7312435Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/mm_converter.py' 2025-06-05T23:17:43.7313359Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/permute_copy_converter.py' 2025-06-05T23:17:43.7314346Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_dequantize_converter.py' 2025-06-05T23:17:43.7315349Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_quantize_converter.py' 2025-06-05T23:17:43.7472857Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/relu_converter.py' 2025-06-05T23:17:43.7474391Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/softmax_converter.py' 2025-06-05T23:17:43.7475483Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/view_copy_converter.py' 2025-06-05T23:17:43.7476300Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/__init__.py' 2025-06-05T23:17:43.7477096Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/recurrent_utils.py' 2025-06-05T23:17:43.7478105Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/reduce_utils.py' 2025-06-05T23:17:43.7478925Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/reshape_transposition.py' 2025-06-05T23:17:43.7479578Z adding 'executorch/backends/nxp/backend/ir/lib/__init__.py' 2025-06-05T23:17:43.7480101Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ATan2Options.py' 2025-06-05T23:17:43.7480726Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AbsOptions.py' 2025-06-05T23:17:43.7481385Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ActivationFunctionType.py' 2025-06-05T23:17:43.7482011Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AddNOptions.py' 2025-06-05T23:17:43.7482549Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AddOptions.py' 2025-06-05T23:17:43.7483155Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ArgMaxOptions.py' 2025-06-05T23:17:43.7483735Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ArgMinOptions.py' 2025-06-05T23:17:43.7484401Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AssignVariableOptions.py' 2025-06-05T23:17:43.7485051Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BatchMatMulOptions.py' 2025-06-05T23:17:43.7485690Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BatchToSpaceNDOptions.py' 2025-06-05T23:17:43.7486499Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceLSTMOptions.py' 2025-06-05T23:17:43.7487354Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceRNNOptions.py' 2025-06-05T23:17:43.7488039Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BitcastOptions.py' 2025-06-05T23:17:43.7488671Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BitwiseXorOptions.py' 2025-06-05T23:17:43.7489319Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BroadcastToOptions.py' 2025-06-05T23:17:43.7489999Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BucketizeOptions.py' 2025-06-05T23:17:43.7490565Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Buffer.py' 2025-06-05T23:17:43.7491111Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOperator.py' 2025-06-05T23:17:43.7491752Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions.py' 2025-06-05T23:17:43.7492390Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions2.py' 2025-06-05T23:17:43.7492999Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CallOnceOptions.py' 2025-06-05T23:17:43.7493572Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CallOptions.py' 2025-06-05T23:17:43.7494144Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CastOptions.py' 2025-06-05T23:17:43.7494732Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CombinerType.py' 2025-06-05T23:17:43.7495479Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ConcatEmbeddingsOptions.py' 2025-06-05T23:17:43.7496159Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ConcatenationOptions.py' 2025-06-05T23:17:43.7496762Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Conv2DOptions.py' 2025-06-05T23:17:43.7497391Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Conv3DOptions.py' 2025-06-05T23:17:43.7498012Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CosOptions.py' 2025-06-05T23:17:43.7498623Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CumsumOptions.py' 2025-06-05T23:17:43.7499386Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CustomOptionsFormat.py' 2025-06-05T23:17:43.7500137Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CustomQuantization.py' 2025-06-05T23:17:43.7500811Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DensifyOptions.py' 2025-06-05T23:17:43.7501418Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DepthToSpaceOptions.py' 2025-06-05T23:17:43.7502083Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DepthwiseConv2DOptions.py' 2025-06-05T23:17:43.7502780Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DequantizeOptions.py' 2025-06-05T23:17:43.7503419Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DilateOptions.py' 2025-06-05T23:17:43.7504015Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DimensionMetadata.py' 2025-06-05T23:17:43.7504600Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DimensionType.py' 2025-06-05T23:17:43.7505168Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DivOptions.py' 2025-06-05T23:17:43.7505833Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DynamicUpdateSliceOptions.py' 2025-06-05T23:17:43.7506612Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/EmbeddingLookupSparseOptions.py' 2025-06-05T23:17:43.7507274Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/EqualOptions.py' 2025-06-05T23:17:43.7507815Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ExpOptions.py' 2025-06-05T23:17:43.7508399Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ExpandDimsOptions.py' 2025-06-05T23:17:43.7509048Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FakeQuantOptions.py' 2025-06-05T23:17:43.7509686Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FillOptions.py' 2025-06-05T23:17:43.7510269Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FloorDivOptions.py' 2025-06-05T23:17:43.7510857Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FloorModOptions.py' 2025-06-05T23:17:43.7511503Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptions.py' 2025-06-05T23:17:43.7512321Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptionsWeightsFormat.py' 2025-06-05T23:17:43.7513044Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GatherNdOptions.py' 2025-06-05T23:17:43.7513619Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GatherOptions.py' 2025-06-05T23:17:43.7514191Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GeluOptions.py' 2025-06-05T23:17:43.7514829Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GreaterEqualOptions.py' 2025-06-05T23:17:43.7515484Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GreaterOptions.py' 2025-06-05T23:17:43.7516088Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HardSwishOptions.py' 2025-06-05T23:17:43.7516704Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableFindOptions.py' 2025-06-05T23:17:43.7517425Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableImportOptions.py' 2025-06-05T23:17:43.7518122Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableOptions.py' 2025-06-05T23:17:43.7518757Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableSizeOptions.py' 2025-06-05T23:17:43.7519355Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/IfOptions.py' 2025-06-05T23:17:43.7519891Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Int32Vector.py' 2025-06-05T23:17:43.7520494Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/L2NormOptions.py' 2025-06-05T23:17:43.7521149Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionOptions.py' 2025-06-05T23:17:43.7521788Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionType.py' 2025-06-05T23:17:43.7522396Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSTMKernelType.py' 2025-06-05T23:17:43.7523049Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSTMOptions.py' 2025-06-05T23:17:43.7523776Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LeakyReluOptions.py' 2025-06-05T23:17:43.7524427Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LessEqualOptions.py' 2025-06-05T23:17:43.7525056Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LessOptions.py' 2025-06-05T23:17:43.7525835Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LocalResponseNormalizationOptions.py' 2025-06-05T23:17:43.7526555Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogSoftmaxOptions.py' 2025-06-05T23:17:43.7527173Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalAndOptions.py' 2025-06-05T23:17:43.7527776Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalNotOptions.py' 2025-06-05T23:17:43.7528472Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalOrOptions.py' 2025-06-05T23:17:43.7529135Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MatrixDiagOptions.py' 2025-06-05T23:17:43.7529768Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MatrixSetDiagOptions.py' 2025-06-05T23:17:43.7530420Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MaximumMinimumOptions.py' 2025-06-05T23:17:43.7531102Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Metadata.py' 2025-06-05T23:17:43.7531719Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadMode.py' 2025-06-05T23:17:43.7532304Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadOptions.py' 2025-06-05T23:17:43.7532862Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Model.py' 2025-06-05T23:17:43.7533374Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MulOptions.py' 2025-06-05T23:17:43.7534002Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NegOptions.py' 2025-06-05T23:17:43.7534691Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV4Options.py' 2025-06-05T23:17:43.7535469Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV5Options.py' 2025-06-05T23:17:43.7536143Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NotEqualOptions.py' 2025-06-05T23:17:43.7536806Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/OneHotOptions.py' 2025-06-05T23:17:43.7537418Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Operator.py' 2025-06-05T23:17:43.7537949Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/OperatorCode.py' 2025-06-05T23:17:43.7538514Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PackOptions.py' 2025-06-05T23:17:43.7539089Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PadOptions.py' 2025-06-05T23:17:43.7539687Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PadV2Options.py' 2025-06-05T23:17:43.7540293Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Padding.py' 2025-06-05T23:17:43.7540833Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Pool2DOptions.py' 2025-06-05T23:17:43.7740364Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PowOptions.py' 2025-06-05T23:17:43.7741757Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizationDetails.py' 2025-06-05T23:17:43.7742502Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizationParameters.py' 2025-06-05T23:17:43.7743156Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizeOptions.py' 2025-06-05T23:17:43.7743745Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RNNOptions.py' 2025-06-05T23:17:43.7744334Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RandomOptions.py' 2025-06-05T23:17:43.7744962Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RangeOptions.py' 2025-06-05T23:17:43.7745508Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RankOptions.py' 2025-06-05T23:17:43.7746151Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReadVariableOptions.py' 2025-06-05T23:17:43.7746838Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowFunction.py' 2025-06-05T23:17:43.7747488Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowOptions.py' 2025-06-05T23:17:43.7748315Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReducerOptions.py' 2025-06-05T23:17:43.7749045Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReshapeOptions.py' 2025-06-05T23:17:43.7749686Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ResizeBilinearOptions.py' 2025-06-05T23:17:43.7750434Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ResizeNearestNeighborOptions.py' 2025-06-05T23:17:43.7751240Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReverseSequenceOptions.py' 2025-06-05T23:17:43.7751880Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReverseV2Options.py' 2025-06-05T23:17:43.7752611Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Rfft2dOptions.py' 2025-06-05T23:17:43.7753391Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RightShiftOptions.py' 2025-06-05T23:17:43.7753979Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RngAlgorithm.py' 2025-06-05T23:17:43.7754706Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SVDFOptions.py' 2025-06-05T23:17:43.7755365Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ScatterNdOptions.py' 2025-06-05T23:17:43.7755995Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SegmentSumOptions.py' 2025-06-05T23:17:43.7756726Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SelectOptions.py' 2025-06-05T23:17:43.7757372Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SelectV2Options.py' 2025-06-05T23:17:43.7757999Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SequenceRNNOptions.py' 2025-06-05T23:17:43.7758702Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ShapeOptions.py' 2025-06-05T23:17:43.7759324Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SignOptions.py' 2025-06-05T23:17:43.7759868Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SignatureDef.py' 2025-06-05T23:17:43.7760591Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SkipGramOptions.py' 2025-06-05T23:17:43.7761269Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SliceOptions.py' 2025-06-05T23:17:43.7761841Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SoftmaxOptions.py' 2025-06-05T23:17:43.7762475Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SpaceToBatchNDOptions.py' 2025-06-05T23:17:43.7763307Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SpaceToDepthOptions.py' 2025-06-05T23:17:43.7764005Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparseIndexVector.py' 2025-06-05T23:17:43.7764812Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparseToDenseOptions.py' 2025-06-05T23:17:43.7765506Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparsityParameters.py' 2025-06-05T23:17:43.7766267Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SplitOptions.py' 2025-06-05T23:17:43.7766881Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SplitVOptions.py' 2025-06-05T23:17:43.7767461Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SquareOptions.py' 2025-06-05T23:17:43.7768340Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SquaredDifferenceOptions.py' 2025-06-05T23:17:43.7769056Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SqueezeOptions.py' 2025-06-05T23:17:43.7769906Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloBroadcastInDimOptions.py' 2025-06-05T23:17:43.7770777Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloCompareOptions.py' 2025-06-05T23:17:43.7771501Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonDirection.py' 2025-06-05T23:17:43.7772450Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonType.py' 2025-06-05T23:17:43.7773225Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloConcatenateOptions.py' 2025-06-05T23:17:43.7774192Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloConvolutionOptions.py' 2025-06-05T23:17:43.7775055Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloCustomCallOptions.py' 2025-06-05T23:17:43.7776163Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloDotGeneralOptions.py' 2025-06-05T23:17:43.7777071Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloDynamicSliceOptions.py' 2025-06-05T23:17:43.7778198Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloGatherOptions.py' 2025-06-05T23:17:43.7778918Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloIotaOptions.py' 2025-06-05T23:17:43.7779724Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloPadOptions.py' 2025-06-05T23:17:43.7780539Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloPrecisionConfig.py' 2025-06-05T23:17:43.7781241Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceOptions.py' 2025-06-05T23:17:43.7782187Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceWindowOptions.py' 2025-06-05T23:17:43.7783002Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloRngBitGeneratorOptions.py' 2025-06-05T23:17:43.7783975Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloScatterOptions.py' 2025-06-05T23:17:43.7784708Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloSliceOptions.py' 2025-06-05T23:17:43.7785538Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloSortOptions.py' 2025-06-05T23:17:43.7786280Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloTransposeOptions.py' 2025-06-05T23:17:43.7787060Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloWhileOptions.py' 2025-06-05T23:17:43.7787940Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StridedSliceOptions.py' 2025-06-05T23:17:43.7788550Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SubGraph.py' 2025-06-05T23:17:43.7789324Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SubOptions.py' 2025-06-05T23:17:43.7789917Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Tensor.py' 2025-06-05T23:17:43.7790430Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TensorMap.py' 2025-06-05T23:17:43.7791215Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TensorType.py' 2025-06-05T23:17:43.7791819Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TileOptions.py' 2025-06-05T23:17:43.7792487Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TopKV2Options.py' 2025-06-05T23:17:43.7793220Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TransposeConvOptions.py' 2025-06-05T23:17:43.7793912Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TransposeOptions.py' 2025-06-05T23:17:43.7794133Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Uint16Vector.py' 2025-06-05T23:17:43.7794371Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Uint8Vector.py' 2025-06-05T23:17:43.7794931Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnidirectionalSequenceLSTMOptions.py' 2025-06-05T23:17:43.7795177Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UniqueOptions.py' 2025-06-05T23:17:43.7795439Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnpackOptions.py' 2025-06-05T23:17:43.7795778Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMaxOptions.py' 2025-06-05T23:17:43.7796071Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMinOptions.py' 2025-06-05T23:17:43.7796373Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentProdOptions.py' 2025-06-05T23:17:43.7796822Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentSumOptions.py' 2025-06-05T23:17:43.7797163Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/VarHandleOptions.py' 2025-06-05T23:17:43.7797400Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/VariantSubType.py' 2025-06-05T23:17:43.7797688Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/WhereOptions.py' 2025-06-05T23:17:43.7797928Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/WhileOptions.py' 2025-06-05T23:17:43.7798171Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ZerosLikeOptions.py' 2025-06-05T23:17:43.7798531Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/__init__.py' 2025-06-05T23:17:43.7798846Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/__init__.py' 2025-06-05T23:17:43.7799245Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/tflite_model.py' 2025-06-05T23:17:43.7799655Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/__init__.py' 2025-06-05T23:17:43.7800012Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/abs_options.py' 2025-06-05T23:17:43.7800342Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_n_options.py' 2025-06-05T23:17:43.7800665Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_options.py' 2025-06-05T23:17:43.7801165Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_max_options.py' 2025-06-05T23:17:43.7801549Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_min_options.py' 2025-06-05T23:17:43.7801994Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/average_pool_2d_options.py' 2025-06-05T23:17:43.7802347Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/batch_mat_mul_options.py' 2025-06-05T23:17:43.7802821Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_lstm_options.py' 2025-06-05T23:17:43.7803424Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_rnn_options.py' 2025-06-05T23:17:43.7917829Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bitwise_xor_options.py' 2025-06-05T23:17:43.7918530Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/broadcast_to_options.py' 2025-06-05T23:17:43.7918880Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cast_options.py' 2025-06-05T23:17:43.7919253Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/concatenation_options.py' 2025-06-05T23:17:43.7919590Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_2d_options.py' 2025-06-05T23:17:43.7919915Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_3d_options.py' 2025-06-05T23:17:43.7920249Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cum_sum_options.py' 2025-06-05T23:17:43.7920746Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depth_to_space_options.py' 2025-06-05T23:17:43.7921161Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depthwise_conv_2d_options.py' 2025-06-05T23:17:43.7921548Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/dequantize_options.py' 2025-06-05T23:17:43.7921875Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/div_options.py' 2025-06-05T23:17:43.7922200Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/equal_options.py' 2025-06-05T23:17:43.7922527Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/exp_options.py' 2025-06-05T23:17:43.7922863Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/floor_mod_options.py' 2025-06-05T23:17:43.7923227Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/fully_connected_options.py' 2025-06-05T23:17:43.7923741Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_nd_options.py' 2025-06-05T23:17:43.7924091Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_options.py' 2025-06-05T23:17:43.7924423Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gelu_options.py' 2025-06-05T23:17:43.7924835Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_equal_options.py' 2025-06-05T23:17:43.7925315Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_options.py' 2025-06-05T23:17:43.7925744Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/hard_swish_options.py' 2025-06-05T23:17:43.7926085Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/leaky_relu_options.py' 2025-06-05T23:17:43.7926425Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_equal_options.py' 2025-06-05T23:17:43.7926784Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_options.py' 2025-06-05T23:17:43.7927276Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/log_softmax_options.py' 2025-06-05T23:17:43.7927623Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_and_options.py' 2025-06-05T23:17:43.7928038Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_not_options.py' 2025-06-05T23:17:43.7928382Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_or_options.py' 2025-06-05T23:17:43.7928701Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lrn_options.py' 2025-06-05T23:17:43.7929015Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lstm_options.py' 2025-06-05T23:17:43.7929490Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/max_pool_2d_options.py' 2025-06-05T23:17:43.7929862Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/maximum_options.py' 2025-06-05T23:17:43.7930175Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mean_options.py' 2025-06-05T23:17:43.7930568Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/minimum_options.py' 2025-06-05T23:17:43.7930907Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mirror_pad_options.py' 2025-06-05T23:17:43.7931222Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mul_options.py' 2025-06-05T23:17:43.7931584Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/multinomial_options.py' 2025-06-05T23:17:43.7931943Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/neg_options.py' 2025-06-05T23:17:43.7932393Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/not_equal_options.py' 2025-06-05T23:17:43.7932734Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/one_hot_options.py' 2025-06-05T23:17:43.7933099Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_options.py' 2025-06-05T23:17:43.7933422Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_v2_options.py' 2025-06-05T23:17:43.7933745Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pow_options.py' 2025-06-05T23:17:43.7934210Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/quantize_options.py' 2025-06-05T23:17:43.7934570Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/range_options.py' 2025-06-05T23:17:43.7934984Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_max_options.py' 2025-06-05T23:17:43.7935370Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_min_options.py' 2025-06-05T23:17:43.7935719Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_prod_options.py' 2025-06-05T23:17:43.7936064Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reshape_options.py' 2025-06-05T23:17:43.7936429Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_bilinear_options.py' 2025-06-05T23:17:43.7936834Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_nearest_neighbor_options.py' 2025-06-05T23:17:43.7937477Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reverse_sequence_options.py' 2025-06-05T23:17:43.7937883Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/scatter_nd_options.py' 2025-06-05T23:17:43.7938282Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/select_v2_options.py' 2025-06-05T23:17:43.7938603Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/shape_options.py' 2025-06-05T23:17:43.7938933Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sign_options.py' 2025-06-05T23:17:43.7939253Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/slice_options.py' 2025-06-05T23:17:43.7939579Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/softmax_options.py' 2025-06-05T23:17:43.7940052Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/space_to_depth_options.py' 2025-06-05T23:17:43.7940436Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_options.py' 2025-06-05T23:17:43.7940767Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_v_options.py' 2025-06-05T23:17:43.7941158Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/square_options.py' 2025-06-05T23:17:43.7941543Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squared_difference_options.py' 2025-06-05T23:17:43.7941870Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squeeze_options.py' 2025-06-05T23:17:43.7942241Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/strided_slice_options.py' 2025-06-05T23:17:43.7942552Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sub_options.py' 2025-06-05T23:17:43.7943027Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sum_options.py' 2025-06-05T23:17:43.7943366Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/tile_options.py' 2025-06-05T23:17:43.7943783Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_conv_options.py' 2025-06-05T23:17:43.7944124Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_options.py' 2025-06-05T23:17:43.7944570Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_lstm_options.py' 2025-06-05T23:17:43.7944992Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_rnn_options.py' 2025-06-05T23:17:43.7945349Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/custom_options/flex_transpose_options.py' 2025-06-05T23:17:43.7945619Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/__init__.py' 2025-06-05T23:17:43.7945856Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/meta.py' 2025-06-05T23:17:43.7946098Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/types.py' 2025-06-05T23:17:43.7946333Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/__init__.py' 2025-06-05T23:17:43.7946719Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/graph_utils.py' 2025-06-05T23:17:43.7947043Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/operator_rules.py' 2025-06-05T23:17:43.7947284Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizer.py' 2025-06-05T23:17:43.7947596Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/pattern_matcher.py' 2025-06-05T23:17:43.7947844Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/tensor_rules.py' 2025-06-05T23:17:43.7948135Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/__init__.py' 2025-06-05T23:17:43.8204181Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/base_optimization.py' 2025-06-05T23:17:43.8205163Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/combine_hard_sigmoid_and_mul_to_hard_swish.py' 2025-06-05T23:17:43.8205606Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/eliminate_dead_branches.py' 2025-06-05T23:17:43.8205988Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_activation_functions.py' 2025-06-05T23:17:43.8206422Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_fully_connected_and_add_operators.py' 2025-06-05T23:17:43.8206824Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_quanitze_into_preceding_ops.py' 2025-06-05T23:17:43.8207322Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/keep_one_empty_buffer.py' 2025-06-05T23:17:43.8207732Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/move_relu_before_concat.py' 2025-06-05T23:17:43.8208263Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/permute_fully_connected_weights_after_reshape.py' 2025-06-05T23:17:43.8208635Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_cast_operators.py' 2025-06-05T23:17:43.8209088Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_quantize_operators.py' 2025-06-05T23:17:43.8209445Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_reshape_operators.py' 2025-06-05T23:17:43.8209877Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_transpose_operators.py' 2025-06-05T23:17:43.8210282Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/remove_unused_tensors_and_buffers.py' 2025-06-05T23:17:43.8210786Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/replace_average_pool_before_fully_connected_with_sum.py' 2025-06-05T23:17:43.8210997Z adding 'executorch/backends/nxp/quantizer/neutron_quantizer.py' 2025-06-05T23:17:43.8211299Z adding 'executorch/backends/nxp/quantizer/patterns.py' 2025-06-05T23:17:43.8211506Z adding 'executorch/backends/nxp/quantizer/utils.py' 2025-06-05T23:17:43.8211693Z adding 'executorch/backends/nxp/tests/executorch_pipeline.py' 2025-06-05T23:17:43.8211832Z adding 'executorch/backends/nxp/tests/executors.py' 2025-06-05T23:17:43.8212049Z adding 'executorch/backends/nxp/tests/exported_program_vizualize.py' 2025-06-05T23:17:43.8212248Z adding 'executorch/backends/nxp/tests/models.py' 2025-06-05T23:17:43.8212443Z adding 'executorch/backends/nxp/tests/test_batch_norm_fusion.py' 2025-06-05T23:17:43.8212626Z adding 'executorch/backends/nxp/tests/test_neutron_backend.py' 2025-06-05T23:17:43.8212869Z adding 'executorch/backends/nxp/tests/test_neutron_converter_manager.py' 2025-06-05T23:17:43.8213108Z adding 'executorch/backends/nxp/tests/test_node_format_inference.py' 2025-06-05T23:17:43.8213359Z adding 'executorch/backends/nxp/tests/test_operator_selector.py' 2025-06-05T23:17:43.8213577Z adding 'executorch/backends/nxp/tests/test_qdq_clustering_conv.py' 2025-06-05T23:17:43.8213743Z adding 'executorch/backends/nxp/tests/test_quantizer.py' 2025-06-05T23:17:43.8214137Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_avg_pool2d_converter.py' 2025-06-05T23:17:43.8214497Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_constant_pad_nd_converter.py' 2025-06-05T23:17:43.8214819Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_conv_converter.py' 2025-06-05T23:17:43.8215224Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_linear_converter.py' 2025-06-05T23:17:43.8215710Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_max_pool_2d_converter.py' 2025-06-05T23:17:43.8216072Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_permute_copy_converter.py' 2025-06-05T23:17:43.8216435Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_relu_converter.py' 2025-06-05T23:17:43.8216846Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_softmax_converter.py' 2025-06-05T23:17:43.8217245Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_view_copy_converter.py' 2025-06-05T23:17:43.8217383Z adding 'executorch/backends/openvino/__init__.py' 2025-06-05T23:17:43.8217567Z adding 'executorch/backends/openvino/partitioner.py' 2025-06-05T23:17:43.8217781Z adding 'executorch/backends/openvino/preprocess.py' 2025-06-05T23:17:43.8217959Z adding 'executorch/backends/openvino/quantizer/__init__.py' 2025-06-05T23:17:43.8218142Z adding 'executorch/backends/openvino/quantizer/quantizer.py' 2025-06-05T23:17:43.8218324Z adding 'executorch/backends/openvino/tests/test_runner.py' 2025-06-05T23:17:43.8218622Z adding 'executorch/backends/openvino/tests/models/test_classification.py' 2025-06-05T23:17:43.8218855Z adding 'executorch/backends/openvino/tests/ops/base_openvino_op_test.py' 2025-06-05T23:17:43.8219029Z adding 'executorch/backends/openvino/tests/ops/test_add.py' 2025-06-05T23:17:43.8219227Z adding 'executorch/backends/openvino/tests/ops/test_addmm.py' 2025-06-05T23:17:43.8219413Z adding 'executorch/backends/openvino/tests/ops/test_arange.py' 2025-06-05T23:17:43.8219711Z adding 'executorch/backends/openvino/tests/ops/test_batch_norm.py' 2025-06-05T23:17:43.8219998Z adding 'executorch/backends/openvino/tests/ops/test_convolution.py' 2025-06-05T23:17:43.8220174Z adding 'executorch/backends/openvino/tests/ops/test_mean.py' 2025-06-05T23:17:43.8220366Z adding 'executorch/backends/openvino/tests/ops/test_permute.py' 2025-06-05T23:17:43.8220593Z adding 'executorch/backends/openvino/tests/ops/test_pooling.py' 2025-06-05T23:17:43.8220816Z adding 'executorch/backends/openvino/tests/ops/test_unary_ops.py' 2025-06-05T23:17:43.8220990Z adding 'executorch/backends/openvino/tests/ops/test_view.py' 2025-06-05T23:17:43.8221152Z adding 'executorch/backends/qualcomm/qnn_preprocess.py' 2025-06-05T23:17:43.8221333Z adding 'executorch/backends/qualcomm/_passes/__init__.py' 2025-06-05T23:17:43.8221589Z adding 'executorch/backends/qualcomm/_passes/annotate_adaptive_avg_pool1d.py' 2025-06-05T23:17:43.8221803Z adding 'executorch/backends/qualcomm/_passes/annotate_quant_attrs.py' 2025-06-05T23:17:43.8222076Z adding 'executorch/backends/qualcomm/_passes/annotate_stack.py' 2025-06-05T23:17:43.8222280Z adding 'executorch/backends/qualcomm/_passes/annotate_unbind.py' 2025-06-05T23:17:43.8222464Z adding 'executorch/backends/qualcomm/_passes/build_quant_io.py' 2025-06-05T23:17:43.8222698Z adding 'executorch/backends/qualcomm/_passes/convert_bmm_to_matmul.py' 2025-06-05T23:17:43.8222982Z adding 'executorch/backends/qualcomm/_passes/convert_conv1d_to_conv2d.py' 2025-06-05T23:17:43.8223200Z adding 'executorch/backends/qualcomm/_passes/convert_square_to_pow.py' 2025-06-05T23:17:43.8223397Z adding 'executorch/backends/qualcomm/_passes/decompose_any.py' 2025-06-05T23:17:43.8223595Z adding 'executorch/backends/qualcomm/_passes/decompose_cdist.py' 2025-06-05T23:17:43.8223792Z adding 'executorch/backends/qualcomm/_passes/decompose_einsum.py' 2025-06-05T23:17:43.8224049Z adding 'executorch/backends/qualcomm/_passes/decompose_expm1.py' 2025-06-05T23:17:43.8224409Z adding 'executorch/backends/qualcomm/_passes/decompose_linalg_vector_norm.py' 2025-06-05T23:17:43.8224598Z adding 'executorch/backends/qualcomm/_passes/decompose_roll.py' 2025-06-05T23:17:43.8224784Z adding 'executorch/backends/qualcomm/_passes/decompose_silu.py' 2025-06-05T23:17:43.8225096Z adding 'executorch/backends/qualcomm/_passes/expand_broadcast_tensor_shape.py' 2025-06-05T23:17:43.8225315Z adding 'executorch/backends/qualcomm/_passes/fixed_linear_keep_dim.py' 2025-06-05T23:17:43.8225477Z adding 'executorch/backends/qualcomm/_passes/fold_qdq.py' 2025-06-05T23:17:43.8225705Z adding 'executorch/backends/qualcomm/_passes/fuse_consecutive_cast.py' 2025-06-05T23:17:43.8225946Z adding 'executorch/backends/qualcomm/_passes/fuse_consecutive_transpose.py' 2025-06-05T23:17:43.8226256Z adding 'executorch/backends/qualcomm/_passes/i64_to_i32.py' 2025-06-05T23:17:43.8226514Z adding 'executorch/backends/qualcomm/_passes/insert_io_qdq.py' 2025-06-05T23:17:43.8226731Z adding 'executorch/backends/qualcomm/_passes/insert_requantize.py' 2025-06-05T23:17:43.8226926Z adding 'executorch/backends/qualcomm/_passes/layout_transform.py' 2025-06-05T23:17:43.8227231Z adding 'executorch/backends/qualcomm/_passes/lift_constant_scalar_operands.py' 2025-06-05T23:17:43.8227437Z adding 'executorch/backends/qualcomm/_passes/qnn_pass_manager.py' 2025-06-05T23:17:43.8227673Z adding 'executorch/backends/qualcomm/_passes/recompose_pixel_unshuffle.py' 2025-06-05T23:17:43.8227876Z adding 'executorch/backends/qualcomm/_passes/recompose_rms_norm.py' 2025-06-05T23:17:43.8228097Z adding 'executorch/backends/qualcomm/_passes/reduce_dynamic_range.py' 2025-06-05T23:17:43.8228335Z adding 'executorch/backends/qualcomm/_passes/remove_0d_tensor.py' 2025-06-05T23:17:43.8228655Z adding 'executorch/backends/qualcomm/_passes/remove_redundancy.py' 2025-06-05T23:17:43.8228883Z adding 'executorch/backends/qualcomm/_passes/replace_arange_args.py' 2025-06-05T23:17:43.8229110Z adding 'executorch/backends/qualcomm/_passes/replace_index_put_input.py' 2025-06-05T23:17:43.8229332Z adding 'executorch/backends/qualcomm/_passes/replace_inf_values.py' 2025-06-05T23:17:43.8229539Z adding 'executorch/backends/qualcomm/_passes/tag_quant_io.py' 2025-06-05T23:17:43.8229704Z adding 'executorch/backends/qualcomm/_passes/utils.py' 2025-06-05T23:17:43.8229851Z adding 'executorch/backends/qualcomm/aot/ir/qcir.fbs' 2025-06-05T23:17:43.8230017Z adding 'executorch/backends/qualcomm/builders/__init__.py' 2025-06-05T23:17:43.8230213Z adding 'executorch/backends/qualcomm/builders/node_visitor.py' 2025-06-05T23:17:43.8230417Z adding 'executorch/backends/qualcomm/builders/op_abs.py' 2025-06-05T23:17:43.8230698Z adding 'executorch/backends/qualcomm/builders/op_adaptive_avg_pool2d.py' 2025-06-05T23:17:43.8230874Z adding 'executorch/backends/qualcomm/builders/op_add.py' 2025-06-05T23:17:43.8231043Z adding 'executorch/backends/qualcomm/builders/op_amax.py' 2025-06-05T23:17:43.8231201Z adding 'executorch/backends/qualcomm/builders/op_and.py' 2025-06-05T23:17:43.8231424Z adding 'executorch/backends/qualcomm/builders/op_arange.py' 2025-06-05T23:17:43.8231606Z adding 'executorch/backends/qualcomm/builders/op_argmin.py' 2025-06-05T23:17:43.8231796Z adding 'executorch/backends/qualcomm/builders/op_avg_pool2d.py' 2025-06-05T23:17:43.8231982Z adding 'executorch/backends/qualcomm/builders/op_batch_norm.py' 2025-06-05T23:17:43.8232151Z adding 'executorch/backends/qualcomm/builders/op_bmm.py' 2025-06-05T23:17:43.8232386Z adding 'executorch/backends/qualcomm/builders/op_cat.py' 2025-06-05T23:17:43.8232626Z adding 'executorch/backends/qualcomm/builders/op_ceil.py' 2025-06-05T23:17:43.8591735Z adding 'executorch/backends/qualcomm/builders/op_clamp.py' 2025-06-05T23:17:43.8592043Z adding 'executorch/backends/qualcomm/builders/op_conv2d.py' 2025-06-05T23:17:43.8592352Z adding 'executorch/backends/qualcomm/builders/op_cos.py' 2025-06-05T23:17:43.8592709Z adding 'executorch/backends/qualcomm/builders/op_cum_sum.py' 2025-06-05T23:17:43.8593104Z adding 'executorch/backends/qualcomm/builders/op_depth_to_space.py' 2025-06-05T23:17:43.8593473Z adding 'executorch/backends/qualcomm/builders/op_dequantize.py' 2025-06-05T23:17:43.8593776Z adding 'executorch/backends/qualcomm/builders/op_div.py' 2025-06-05T23:17:43.8594091Z adding 'executorch/backends/qualcomm/builders/op_elu.py' 2025-06-05T23:17:43.8594365Z adding 'executorch/backends/qualcomm/builders/op_embedding.py' 2025-06-05T23:17:43.8594523Z adding 'executorch/backends/qualcomm/builders/op_eq.py' 2025-06-05T23:17:43.8594694Z adding 'executorch/backends/qualcomm/builders/op_exp.py' 2025-06-05T23:17:43.8594864Z adding 'executorch/backends/qualcomm/builders/op_expand.py' 2025-06-05T23:17:43.8595183Z adding 'executorch/backends/qualcomm/builders/op_full.py' 2025-06-05T23:17:43.8595414Z adding 'executorch/backends/qualcomm/builders/op_full_like.py' 2025-06-05T23:17:43.8595679Z adding 'executorch/backends/qualcomm/builders/op_gather.py' 2025-06-05T23:17:43.8595838Z adding 'executorch/backends/qualcomm/builders/op_ge.py' 2025-06-05T23:17:43.8596016Z adding 'executorch/backends/qualcomm/builders/op_gelu.py' 2025-06-05T23:17:43.8596205Z adding 'executorch/backends/qualcomm/builders/op_group_norm.py' 2025-06-05T23:17:43.8596361Z adding 'executorch/backends/qualcomm/builders/op_gt.py' 2025-06-05T23:17:43.8596574Z adding 'executorch/backends/qualcomm/builders/op_hardsigmoid.py' 2025-06-05T23:17:43.8596759Z adding 'executorch/backends/qualcomm/builders/op_hardswish.py' 2025-06-05T23:17:43.8596946Z adding 'executorch/backends/qualcomm/builders/op_hardtanh.py' 2025-06-05T23:17:43.8597129Z adding 'executorch/backends/qualcomm/builders/op_index.py' 2025-06-05T23:17:43.8597313Z adding 'executorch/backends/qualcomm/builders/op_index_put.py' 2025-06-05T23:17:43.8597522Z adding 'executorch/backends/qualcomm/builders/op_instance_norm.py' 2025-06-05T23:17:43.8597726Z adding 'executorch/backends/qualcomm/builders/op_layer_norm.py' 2025-06-05T23:17:43.8597886Z adding 'executorch/backends/qualcomm/builders/op_le.py' 2025-06-05T23:17:43.8598054Z adding 'executorch/backends/qualcomm/builders/op_linear.py' 2025-06-05T23:17:43.8598213Z adding 'executorch/backends/qualcomm/builders/op_log.py' 2025-06-05T23:17:43.8598421Z adding 'executorch/backends/qualcomm/builders/op_log_softmax.py' 2025-06-05T23:17:43.8598613Z adding 'executorch/backends/qualcomm/builders/op_logical_not.py' 2025-06-05T23:17:43.8598770Z adding 'executorch/backends/qualcomm/builders/op_lt.py' 2025-06-05T23:17:43.8598949Z adding 'executorch/backends/qualcomm/builders/op_matmul.py' 2025-06-05T23:17:43.8599107Z adding 'executorch/backends/qualcomm/builders/op_max.py' 2025-06-05T23:17:43.8599296Z adding 'executorch/backends/qualcomm/builders/op_max_pool2d.py' 2025-06-05T23:17:43.8599489Z adding 'executorch/backends/qualcomm/builders/op_mean_dim.py' 2025-06-05T23:17:43.8599652Z adding 'executorch/backends/qualcomm/builders/op_min.py' 2025-06-05T23:17:43.8599808Z adding 'executorch/backends/qualcomm/builders/op_mul.py' 2025-06-05T23:17:43.8599961Z adding 'executorch/backends/qualcomm/builders/op_ne.py' 2025-06-05T23:17:43.8600130Z adding 'executorch/backends/qualcomm/builders/op_neg.py' 2025-06-05T23:17:43.8600282Z adding 'executorch/backends/qualcomm/builders/op_or.py' 2025-06-05T23:17:43.8600439Z adding 'executorch/backends/qualcomm/builders/op_pad.py' 2025-06-05T23:17:43.8600630Z adding 'executorch/backends/qualcomm/builders/op_pow.py' 2025-06-05T23:17:43.8600798Z adding 'executorch/backends/qualcomm/builders/op_prelu.py' 2025-06-05T23:17:43.8600978Z adding 'executorch/backends/qualcomm/builders/op_quantize.py' 2025-06-05T23:17:43.8601155Z adding 'executorch/backends/qualcomm/builders/op_relu.py' 2025-06-05T23:17:43.8601331Z adding 'executorch/backends/qualcomm/builders/op_repeat.py' 2025-06-05T23:17:43.8601514Z adding 'executorch/backends/qualcomm/builders/op_reshape.py' 2025-06-05T23:17:43.8601684Z adding 'executorch/backends/qualcomm/builders/op_resize.py' 2025-06-05T23:17:43.8601877Z adding 'executorch/backends/qualcomm/builders/op_rms_norm.py' 2025-06-05T23:17:43.8602043Z adding 'executorch/backends/qualcomm/builders/op_rsqrt.py' 2025-06-05T23:17:43.8602249Z adding 'executorch/backends/qualcomm/builders/op_scalar_tensor.py' 2025-06-05T23:17:43.8602459Z adding 'executorch/backends/qualcomm/builders/op_select_copy.py' 2025-06-05T23:17:43.8602636Z adding 'executorch/backends/qualcomm/builders/op_sigmoid.py' 2025-06-05T23:17:43.8602796Z adding 'executorch/backends/qualcomm/builders/op_sin.py' 2025-06-05T23:17:43.8602990Z adding 'executorch/backends/qualcomm/builders/op_skip_ops.py' 2025-06-05T23:17:43.8603183Z adding 'executorch/backends/qualcomm/builders/op_slice_copy.py' 2025-06-05T23:17:43.8603525Z adding 'executorch/backends/qualcomm/builders/op_softmax.py' 2025-06-05T23:17:43.8603820Z adding 'executorch/backends/qualcomm/builders/op_space_to_depth.py' 2025-06-05T23:17:43.8604056Z adding 'executorch/backends/qualcomm/builders/op_split_with_sizes.py' 2025-06-05T23:17:43.8604221Z adding 'executorch/backends/qualcomm/builders/op_sqrt.py' 2025-06-05T23:17:43.8604397Z adding 'executorch/backends/qualcomm/builders/op_squeeze.py' 2025-06-05T23:17:43.8604580Z adding 'executorch/backends/qualcomm/builders/op_stack.py' 2025-06-05T23:17:43.8604740Z adding 'executorch/backends/qualcomm/builders/op_sub.py' 2025-06-05T23:17:43.8604939Z adding 'executorch/backends/qualcomm/builders/op_sum_int_list.py' 2025-06-05T23:17:43.8605121Z adding 'executorch/backends/qualcomm/builders/op_tanh.py' 2025-06-05T23:17:43.8605278Z adding 'executorch/backends/qualcomm/builders/op_to.py' 2025-06-05T23:17:43.8605441Z adding 'executorch/backends/qualcomm/builders/op_topk.py' 2025-06-05T23:17:43.8605646Z adding 'executorch/backends/qualcomm/builders/op_transpose.py' 2025-06-05T23:17:43.8605816Z adding 'executorch/backends/qualcomm/builders/op_unbind.py' 2025-06-05T23:17:43.8606007Z adding 'executorch/backends/qualcomm/builders/op_unsqueeze.py' 2025-06-05T23:17:43.8606241Z adding 'executorch/backends/qualcomm/builders/op_upsample_bilinear2d.py' 2025-06-05T23:17:43.8606482Z adding 'executorch/backends/qualcomm/builders/op_upsample_nearest2d.py' 2025-06-05T23:17:43.8606649Z adding 'executorch/backends/qualcomm/builders/op_where.py' 2025-06-05T23:17:43.8606841Z adding 'executorch/backends/qualcomm/builders/qnn_constants.py' 2025-06-05T23:17:43.8607009Z adding 'executorch/backends/qualcomm/builders/utils.py' 2025-06-05T23:17:43.8607169Z adding 'executorch/backends/qualcomm/debugger/utils.py' 2025-06-05T23:17:43.8607473Z adding 'executorch/backends/qualcomm/partition/common_defs.py' 2025-06-05T23:17:43.8607753Z adding 'executorch/backends/qualcomm/partition/qnn_partitioner.py' 2025-06-05T23:17:43.8607921Z adding 'executorch/backends/qualcomm/partition/utils.py' 2025-06-05T23:17:43.8608108Z adding 'executorch/backends/qualcomm/quantizer/annotators.py' 2025-06-05T23:17:43.8608325Z adding 'executorch/backends/qualcomm/quantizer/custom_annotation.py' 2025-06-05T23:17:43.8608508Z adding 'executorch/backends/qualcomm/quantizer/qconfig.py' 2025-06-05T23:17:43.8608686Z adding 'executorch/backends/qualcomm/quantizer/quantizer.py' 2025-06-05T23:17:43.8609092Z adding 'executorch/backends/qualcomm/quantizer/observers/per_block_param_observer.py' 2025-06-05T23:17:43.8609465Z adding 'executorch/backends/qualcomm/quantizer/observers/per_channel_param_observer.py' 2025-06-05T23:17:43.8609705Z adding 'executorch/backends/qualcomm/serialization/qc_compiler_spec.fbs' 2025-06-05T23:17:43.8609901Z adding 'executorch/backends/qualcomm/serialization/qc_schema.py' 2025-06-05T23:17:43.8610159Z adding 'executorch/backends/qualcomm/serialization/qc_schema_serialize.py' 2025-06-05T23:17:43.8610313Z adding 'executorch/backends/qualcomm/tests/models.py' 2025-06-05T23:17:43.8610506Z adding 'executorch/backends/qualcomm/tests/test_qnn_delegate.py' 2025-06-05T23:17:43.8610664Z adding 'executorch/backends/qualcomm/tests/utils.py' 2025-06-05T23:17:43.8610867Z adding 'executorch/backends/qualcomm/utils/constants.py' 2025-06-05T23:17:43.8611122Z adding 'executorch/backends/qualcomm/utils/utils.py' 2025-06-05T23:17:43.8611298Z adding 'executorch/backends/transforms/__init__.py' 2025-06-05T23:17:43.8611491Z adding 'executorch/backends/transforms/addmm_mm_to_linear.py' 2025-06-05T23:17:43.8611672Z adding 'executorch/backends/transforms/convert_dtype_pass.py' 2025-06-05T23:17:43.8611838Z adding 'executorch/backends/transforms/decompose_sdpa.py' 2025-06-05T23:17:43.8612081Z adding 'executorch/backends/transforms/duplicate_dynamic_quant_chain.py' 2025-06-05T23:17:43.8612291Z adding 'executorch/backends/transforms/fuse_batch_norm_with_conv.py' 2025-06-05T23:17:43.8612477Z adding 'executorch/backends/transforms/fuse_conv_with_clamp.py' 2025-06-05T23:17:43.8612747Z adding 'executorch/backends/transforms/fuse_view_copy.py' 2025-06-05T23:17:43.8613057Z adding 'executorch/backends/transforms/mean_to_sum_div.py' 2025-06-05T23:17:43.8613231Z adding 'executorch/backends/transforms/rank_0_to_rank_1.py' 2025-06-05T23:17:43.8613401Z adding 'executorch/backends/transforms/remove_clone_ops.py' 2025-06-05T23:17:43.8613588Z adding 'executorch/backends/transforms/remove_getitem_op.py' 2025-06-05T23:17:43.8613804Z adding 'executorch/backends/transforms/replace_scalar_with_tensor.py' 2025-06-05T23:17:43.8613941Z adding 'executorch/backends/transforms/utils.py' 2025-06-05T23:17:43.8614188Z adding 'executorch/backends/transforms/view_copy_to_squeeze_unsqueeze.py' 2025-06-05T23:17:43.8614488Z adding 'executorch/backends/transforms/test/test_create_delete_constant_placeholder.py' 2025-06-05T23:17:43.8614996Z adding 'executorch/backends/transforms/test/test_duplicate_dynamic_quant_chain.py' 2025-06-05T23:17:43.8615236Z adding 'executorch/backends/transforms/test/test_rank_0_to_rank_1.py' 2025-06-05T23:17:43.8615369Z adding 'executorch/backends/vulkan/__init__.py' 2025-06-05T23:17:43.8615523Z adding 'executorch/backends/vulkan/custom_ops_lib.py' 2025-06-05T23:17:43.8615663Z adding 'executorch/backends/vulkan/op_registry.py' 2025-06-05T23:17:43.8615799Z adding 'executorch/backends/vulkan/utils.py' 2025-06-05T23:17:43.8615962Z adding 'executorch/backends/vulkan/vulkan_preprocess.py' 2025-06-05T23:17:43.8616117Z adding 'executorch/backends/vulkan/_passes/__init__.py' 2025-06-05T23:17:43.8616329Z adding 'executorch/backends/vulkan/_passes/fuse_quantized_ops.py' 2025-06-05T23:17:43.8616661Z adding 'executorch/backends/vulkan/_passes/insert_prepack_nodes.py' 2025-06-05T23:17:43.8616942Z adding 'executorch/backends/vulkan/_passes/int4_weight_only_quantizer.py' 2025-06-05T23:17:43.8617136Z adding 'executorch/backends/vulkan/_passes/remove_asserts.py' 2025-06-05T23:17:43.8617378Z adding 'executorch/backends/vulkan/_passes/remove_local_scalar_dense_ops.py' 2025-06-05T23:17:43.8617588Z adding 'executorch/backends/vulkan/_passes/remove_redundant_ops.py' 2025-06-05T23:17:43.8617828Z adding 'executorch/backends/vulkan/_passes/squeeze_unsqueeze_inputs.py' 2025-06-05T23:17:43.8618030Z adding 'executorch/backends/vulkan/_passes/tag_memory_meta_pass.py' 2025-06-05T23:17:43.8618284Z adding 'executorch/backends/vulkan/partitioner/vulkan_partitioner.py' 2025-06-05T23:17:43.8884968Z adding 'executorch/backends/vulkan/quantizer/vulkan_quantizer.py' 2025-06-05T23:17:43.8885285Z adding 'executorch/backends/vulkan/runtime/gen_vulkan_spv.py' 2025-06-05T23:17:43.8885829Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_buffer.yaml' 2025-06-05T23:17:43.8886282Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_texture3d.yaml' 2025-06-05T23:17:43.8886564Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_optimized.yaml' 2025-06-05T23:17:43.8886803Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/arange.yaml' 2025-06-05T23:17:43.8887052Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/avg_pool2d.yaml' 2025-06-05T23:17:43.8887303Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/batchnorm.yaml' 2025-06-05T23:17:43.8887536Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/binary_op.yaml' 2025-06-05T23:17:43.8887956Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/bitw8_image_to_nchw_nobitw8buffer.yaml' 2025-06-05T23:17:43.8888356Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_buffer.yaml' 2025-06-05T23:17:43.8888617Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_nchw.yaml' 2025-06-05T23:17:43.8888833Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/clone.yaml' 2025-06-05T23:17:43.8889065Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv1d.yaml' 2025-06-05T23:17:43.8889283Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d.yaml' 2025-06-05T23:17:43.8889674Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw.yaml' 2025-06-05T23:17:43.8890043Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_output_tile.yaml' 2025-06-05T23:17:43.8890378Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_prepack_weights.yaml' 2025-06-05T23:17:43.8890852Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_sned_output_tile.yaml' 2025-06-05T23:17:43.8891155Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_prepack_weights.yaml' 2025-06-05T23:17:43.8891405Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw.yaml' 2025-06-05T23:17:43.8891661Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw_s1p0.yaml' 2025-06-05T23:17:43.8891931Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d.yaml' 2025-06-05T23:17:43.8892294Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d_prepack_weights.yaml' 2025-06-05T23:17:43.8892611Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_channel_offset.yaml' 2025-06-05T23:17:43.8892872Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_offset.yaml' 2025-06-05T23:17:43.8893165Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_packed_dim_offset.yaml' 2025-06-05T23:17:43.8893402Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/embedding.yaml' 2025-06-05T23:17:43.8893627Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/flip.yaml' 2025-06-05T23:17:43.8893838Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/full.yaml' 2025-06-05T23:17:43.8894081Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/grid_priors.yaml' 2025-06-05T23:17:43.8894330Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/image_to_nchw.yaml' 2025-06-05T23:17:43.8894590Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/index_select.yaml' 2025-06-05T23:17:43.8894882Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/index_select_channel.yaml' 2025-06-05T23:17:43.8895221Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/kv_cache_update.yaml' 2025-06-05T23:17:43.8895484Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw.yaml' 2025-06-05T23:17:43.8895763Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_coop.yaml' 2025-06-05T23:17:43.8896199Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_tiled.yaml' 2025-06-05T23:17:43.8896487Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_coop.yaml' 2025-06-05T23:17:43.8896760Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_tiled.yaml' 2025-06-05T23:17:43.8897000Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/max_pool2d.yaml' 2025-06-05T23:17:43.8897283Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/native_layer_norm.yaml' 2025-06-05T23:17:43.8897640Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_bitw8_image_nobitw8buffer.yaml' 2025-06-05T23:17:43.8897901Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_buffer.yaml' 2025-06-05T23:17:43.8898164Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_image.yaml' 2025-06-05T23:17:43.8898377Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/no_op.yaml' 2025-06-05T23:17:43.8898791Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pack_int4_linear_weight_transposed_interleaved.yaml' 2025-06-05T23:17:43.8899037Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pad_channel.yaml' 2025-06-05T23:17:43.8899318Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pad_height_width.yaml' 2025-06-05T23:17:43.8899616Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/permute.yaml' 2025-06-05T23:17:43.8899917Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/reduce.yaml' 2025-06-05T23:17:43.8900151Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat.yaml' 2025-06-05T23:17:43.8900551Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_channel.yaml' 2025-06-05T23:17:43.8900829Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_interleave.yaml' 2025-06-05T23:17:43.8901111Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/rotary_embedding.yaml' 2025-06-05T23:17:43.8901448Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_attn_weight_scale_and_mask.yaml' 2025-06-05T23:17:43.8901677Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/softmax.yaml' 2025-06-05T23:17:43.8901899Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/tan.yaml' 2025-06-05T23:17:43.8902163Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_buffer.yaml' 2025-06-05T23:17:43.8902435Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_texture.yaml' 2025-06-05T23:17:43.8902666Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/unary_op.yaml' 2025-06-05T23:17:43.8903093Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/upsample_2d.yaml' 2025-06-05T23:17:43.8903339Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/var_buffer.yaml' 2025-06-05T23:17:43.8903589Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/var_texture3d.yaml' 2025-06-05T23:17:43.8903811Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/view.yaml' 2025-06-05T23:17:43.8904025Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/where.yaml' 2025-06-05T23:17:43.8904204Z adding 'executorch/backends/vulkan/serialization/schema.fbs' 2025-06-05T23:17:43.8904454Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_builder.py' 2025-06-05T23:17:43.8904685Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_schema.py' 2025-06-05T23:17:43.8905003Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_serialize.py' 2025-06-05T23:17:43.8905207Z adding 'executorch/backends/vulkan/test/test_serialization.py' 2025-06-05T23:17:43.8905406Z adding 'executorch/backends/vulkan/test/test_vulkan_delegate.py' 2025-06-05T23:17:43.8905750Z adding 'executorch/backends/vulkan/test/test_vulkan_delegate_header.py' 2025-06-05T23:17:43.8905936Z adding 'executorch/backends/vulkan/test/test_vulkan_passes.py' 2025-06-05T23:17:43.8906129Z adding 'executorch/backends/vulkan/test/glsl/all_shaders.yaml' 2025-06-05T23:17:43.8906358Z adding 'executorch/backends/vulkan/test/glsl/dynamic_dispatch_test.yaml' 2025-06-05T23:17:43.8906597Z adding 'executorch/backends/vulkan/test/glsl/reference_matmul_common.yaml' 2025-06-05T23:17:43.8906776Z adding 'executorch/backends/vulkan/test/op_tests/cases.py' 2025-06-05T23:17:43.8907017Z adding 'executorch/backends/vulkan/test/op_tests/generate_op_benchmarks.py' 2025-06-05T23:17:43.8907288Z adding 'executorch/backends/vulkan/test/op_tests/generate_op_correctness_tests.py' 2025-06-05T23:17:43.8907515Z adding 'executorch/backends/vulkan/test/op_tests/utils/aten_types.py' 2025-06-05T23:17:43.8907756Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_benchmark_vk.py' 2025-06-05T23:17:43.8908046Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_computegraph.py' 2025-06-05T23:17:43.8908365Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_correctness_base.py' 2025-06-05T23:17:43.8908614Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_correctness_vk.py' 2025-06-05T23:17:43.8908827Z adding 'executorch/backends/vulkan/test/op_tests/utils/test_suite.py' 2025-06-05T23:17:43.8909143Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/apiconventions.py' 2025-06-05T23:17:43.8909446Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/cgenerator.py' 2025-06-05T23:17:43.8909737Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/conventions.py' 2025-06-05T23:17:43.8910020Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/generator.py' 2025-06-05T23:17:43.8910369Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/genvk.py' 2025-06-05T23:17:43.8910762Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/reg.py' 2025-06-05T23:17:43.8911133Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/vkconventions.py' 2025-06-05T23:17:43.8911453Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools/util.py' 2025-06-05T23:17:43.8911861Z adding 'executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis/GpuMemDumpVis.py' 2025-06-05T23:17:43.8912059Z adding 'executorch/backends/vulkan/third-party/volk/generate.py' 2025-06-05T23:17:43.8912307Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/buf_bandwidth.yaml' 2025-06-05T23:17:43.8912560Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/buf_cacheline_size.yaml' 2025-06-05T23:17:43.8912775Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/reg_count.yaml' 2025-06-05T23:17:43.8913028Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/tex_bandwidth.yaml' 2025-06-05T23:17:43.8913465Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/tex_cacheline_concurr.yaml' 2025-06-05T23:17:43.8913681Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/warp_size.yaml' 2025-06-05T23:17:43.9227709Z adding 'executorch/backends/xnnpack/__init__.py' 2025-06-05T23:17:43.9227963Z adding 'executorch/backends/xnnpack/xnnpack_preprocess.py' 2025-06-05T23:17:43.9228235Z adding 'executorch/backends/xnnpack/_passes/__init__.py' 2025-06-05T23:17:43.9229204Z adding 'executorch/backends/xnnpack/_passes/channels_last_tagged_reshape_pass.py' 2025-06-05T23:17:43.9229447Z adding 'executorch/backends/xnnpack/_passes/conv1d_unsqueeze_pass.py' 2025-06-05T23:17:43.9229650Z adding 'executorch/backends/xnnpack/_passes/convert_to_linear.py' 2025-06-05T23:17:43.9229842Z adding 'executorch/backends/xnnpack/_passes/convert_to_sdpa.py' 2025-06-05T23:17:43.9230113Z adding 'executorch/backends/xnnpack/_passes/convert_to_upsample_bilinear2d.py' 2025-06-05T23:17:43.9230315Z adding 'executorch/backends/xnnpack/_passes/decompose_cat.py' 2025-06-05T23:17:43.9230536Z adding 'executorch/backends/xnnpack/_passes/fuse_activation_pass.py' 2025-06-05T23:17:43.9230824Z adding 'executorch/backends/xnnpack/_passes/fuse_batch_norm_with_conv.py' 2025-06-05T23:17:43.9231125Z adding 'executorch/backends/xnnpack/_passes/prelu_reshape_pass.py' 2025-06-05T23:17:43.9231475Z adding 'executorch/backends/xnnpack/_passes/tag_implicit_q_dq_pass.py' 2025-06-05T23:17:43.9231775Z adding 'executorch/backends/xnnpack/_passes/xnnpack_pass.py' 2025-06-05T23:17:43.9232054Z adding 'executorch/backends/xnnpack/operators/__init__.py' 2025-06-05T23:17:43.9232361Z adding 'executorch/backends/xnnpack/operators/node_visitor.py' 2025-06-05T23:17:43.9232638Z adding 'executorch/backends/xnnpack/operators/op_abs.py' 2025-06-05T23:17:43.9232957Z adding 'executorch/backends/xnnpack/operators/op_add.py' 2025-06-05T23:17:43.9233270Z adding 'executorch/backends/xnnpack/operators/op_addmm.py' 2025-06-05T23:17:43.9233627Z adding 'executorch/backends/xnnpack/operators/op_avg_pooling2d.py' 2025-06-05T23:17:43.9233928Z adding 'executorch/backends/xnnpack/operators/op_bmm.py' 2025-06-05T23:17:43.9234199Z adding 'executorch/backends/xnnpack/operators/op_cat.py' 2025-06-05T23:17:43.9234516Z adding 'executorch/backends/xnnpack/operators/op_ceiling.py' 2025-06-05T23:17:43.9234838Z adding 'executorch/backends/xnnpack/operators/op_clamp.py' 2025-06-05T23:17:43.9235219Z adding 'executorch/backends/xnnpack/operators/op_conv2d.py' 2025-06-05T23:17:43.9235512Z adding 'executorch/backends/xnnpack/operators/op_div.py' 2025-06-05T23:17:43.9235981Z adding 'executorch/backends/xnnpack/operators/op_dynamic_dequantize_ops.py' 2025-06-05T23:17:43.9236415Z adding 'executorch/backends/xnnpack/operators/op_dynamic_quantize_ops.py' 2025-06-05T23:17:43.9236714Z adding 'executorch/backends/xnnpack/operators/op_elu.py' 2025-06-05T23:17:43.9237249Z adding 'executorch/backends/xnnpack/operators/op_exp.py' 2025-06-05T23:17:43.9237560Z adding 'executorch/backends/xnnpack/operators/op_floor.py' 2025-06-05T23:17:43.9237980Z adding 'executorch/backends/xnnpack/operators/op_gelu.py' 2025-06-05T23:17:43.9238329Z adding 'executorch/backends/xnnpack/operators/op_hardswish.py' 2025-06-05T23:17:43.9238657Z adding 'executorch/backends/xnnpack/operators/op_hardtanh.py' 2025-06-05T23:17:43.9239009Z adding 'executorch/backends/xnnpack/operators/op_leaky_relu.py' 2025-06-05T23:17:43.9239338Z adding 'executorch/backends/xnnpack/operators/op_linear.py' 2025-06-05T23:17:43.9239653Z adding 'executorch/backends/xnnpack/operators/op_log.py' 2025-06-05T23:17:43.9240098Z adding 'executorch/backends/xnnpack/operators/op_matrix_multiplication.py' 2025-06-05T23:17:43.9240424Z adding 'executorch/backends/xnnpack/operators/op_max_dim.py' 2025-06-05T23:17:43.9240800Z adding 'executorch/backends/xnnpack/operators/op_max_pool2d.py' 2025-06-05T23:17:43.9241157Z adding 'executorch/backends/xnnpack/operators/op_maximum.py' 2025-06-05T23:17:43.9241489Z adding 'executorch/backends/xnnpack/operators/op_mean_dim.py' 2025-06-05T23:17:43.9241836Z adding 'executorch/backends/xnnpack/operators/op_minimum.py' 2025-06-05T23:17:43.9242159Z adding 'executorch/backends/xnnpack/operators/op_multiply.py' 2025-06-05T23:17:43.9242471Z adding 'executorch/backends/xnnpack/operators/op_negate.py' 2025-06-05T23:17:43.9242816Z adding 'executorch/backends/xnnpack/operators/op_permute.py' 2025-06-05T23:17:43.9243142Z adding 'executorch/backends/xnnpack/operators/op_prelu.py' 2025-06-05T23:17:43.9243525Z adding 'executorch/backends/xnnpack/operators/op_quant_dequant.py' 2025-06-05T23:17:43.9243823Z adding 'executorch/backends/xnnpack/operators/op_relu.py' 2025-06-05T23:17:43.9244135Z adding 'executorch/backends/xnnpack/operators/op_rsqrt.py' 2025-06-05T23:17:43.9244438Z adding 'executorch/backends/xnnpack/operators/op_sdpa.py' 2025-06-05T23:17:43.9244768Z adding 'executorch/backends/xnnpack/operators/op_sigmoid.py' 2025-06-05T23:17:43.9245141Z adding 'executorch/backends/xnnpack/operators/op_skip_ops.py' 2025-06-05T23:17:43.9245503Z adding 'executorch/backends/xnnpack/operators/op_slice_copy.py' 2025-06-05T23:17:43.9245815Z adding 'executorch/backends/xnnpack/operators/op_softmax.py' 2025-06-05T23:17:43.9246139Z adding 'executorch/backends/xnnpack/operators/op_square.py' 2025-06-05T23:17:43.9246502Z adding 'executorch/backends/xnnpack/operators/op_square_root.py' 2025-06-05T23:17:43.9246840Z adding 'executorch/backends/xnnpack/operators/op_squeeze.py' 2025-06-05T23:17:43.9247280Z adding 'executorch/backends/xnnpack/operators/op_static_constant_pad.py' 2025-06-05T23:17:43.9247760Z adding 'executorch/backends/xnnpack/operators/op_static_resize_bilinear_2d.py' 2025-06-05T23:17:43.9248060Z adding 'executorch/backends/xnnpack/operators/op_sub.py' 2025-06-05T23:17:43.9248388Z adding 'executorch/backends/xnnpack/operators/op_to_copy.py' 2025-06-05T23:17:43.9248770Z adding 'executorch/backends/xnnpack/operators/quant_params.py' 2025-06-05T23:17:43.9249082Z adding 'executorch/backends/xnnpack/partition/configs.py' 2025-06-05T23:17:43.9249501Z adding 'executorch/backends/xnnpack/partition/xnnpack_partitioner.py' 2025-06-05T23:17:43.9249781Z adding 'executorch/backends/xnnpack/partition/config/__init__.py' 2025-06-05T23:17:43.9250000Z adding 'executorch/backends/xnnpack/partition/config/gemm_configs.py' 2025-06-05T23:17:43.9250359Z adding 'executorch/backends/xnnpack/partition/config/generic_node_configs.py' 2025-06-05T23:17:43.9250756Z adding 'executorch/backends/xnnpack/partition/config/node_configs.py' 2025-06-05T23:17:43.9251251Z adding 'executorch/backends/xnnpack/partition/config/quant_affine_configs.py' 2025-06-05T23:17:43.9251686Z adding 'executorch/backends/xnnpack/partition/config/xnnpack_config.py' 2025-06-05T23:17:43.9252083Z adding 'executorch/backends/xnnpack/partition/graphs/bilinear_2d.py' 2025-06-05T23:17:43.9252331Z adding 'executorch/backends/xnnpack/partition/graphs/sdpa.py' 2025-06-05T23:17:43.9252703Z adding 'executorch/backends/xnnpack/quantizer/xnnpack_quantizer.py' 2025-06-05T23:17:43.9253105Z adding 'executorch/backends/xnnpack/quantizer/xnnpack_quantizer_utils.py' 2025-06-05T23:17:43.9253520Z adding 'executorch/backends/xnnpack/serialization/runtime_schema.fbs' 2025-06-05T23:17:43.9253853Z adding 'executorch/backends/xnnpack/serialization/schema.fbs' 2025-06-05T23:17:43.9254323Z adding 'executorch/backends/xnnpack/serialization/xnnpack_graph_schema.py' 2025-06-05T23:17:43.9254813Z adding 'executorch/backends/xnnpack/serialization/xnnpack_graph_serialize.py' 2025-06-05T23:17:43.9255155Z adding 'executorch/backends/xnnpack/test/test_xnnpack_utils.py' 2025-06-05T23:17:43.9255389Z adding 'executorch/backends/xnnpack/test/test_xnnpack_utils_classes.py' 2025-06-05T23:17:43.9255578Z adding 'executorch/backends/xnnpack/test/models/deeplab_v3.py' 2025-06-05T23:17:43.9255755Z adding 'executorch/backends/xnnpack/test/models/edsr.py' 2025-06-05T23:17:43.9255965Z adding 'executorch/backends/xnnpack/test/models/emformer_rnnt.py' 2025-06-05T23:17:43.9256167Z adding 'executorch/backends/xnnpack/test/models/inception_v3.py' 2025-06-05T23:17:43.9256474Z adding 'executorch/backends/xnnpack/test/models/inception_v4.py' 2025-06-05T23:17:43.9256854Z adding 'executorch/backends/xnnpack/test/models/llama2_et_example.py' 2025-06-05T23:17:43.9257187Z adding 'executorch/backends/xnnpack/test/models/mobilebert.py' 2025-06-05T23:17:43.9257577Z adding 'executorch/backends/xnnpack/test/models/mobilenet_v2.py' 2025-06-05T23:17:43.9257939Z adding 'executorch/backends/xnnpack/test/models/mobilenet_v3.py' 2025-06-05T23:17:43.9258242Z adding 'executorch/backends/xnnpack/test/models/resnet.py' 2025-06-05T23:17:43.9258558Z adding 'executorch/backends/xnnpack/test/models/torchvision_vit.py' 2025-06-05T23:17:43.9258850Z adding 'executorch/backends/xnnpack/test/models/very_big_model.py' 2025-06-05T23:17:43.9259143Z adding 'executorch/backends/xnnpack/test/models/w2l.py' 2025-06-05T23:17:43.9259540Z adding 'executorch/backends/xnnpack/test/ops/test_abs.py' 2025-06-05T23:17:43.9260154Z adding 'executorch/backends/xnnpack/test/ops/test_add.py' 2025-06-05T23:17:43.9260549Z adding 'executorch/backends/xnnpack/test/ops/test_avgpool2d.py' 2025-06-05T23:17:43.9260884Z adding 'executorch/backends/xnnpack/test/ops/test_bilinear2d.py' 2025-06-05T23:17:43.9261128Z adding 'executorch/backends/xnnpack/test/ops/test_bmm.py' 2025-06-05T23:17:43.9261338Z adding 'executorch/backends/xnnpack/test/ops/test_cat.py' 2025-06-05T23:17:43.9261518Z adding 'executorch/backends/xnnpack/test/ops/test_ceil.py' 2025-06-05T23:17:43.9261904Z adding 'executorch/backends/xnnpack/test/ops/test_check_quant_params.py' 2025-06-05T23:17:43.9262107Z adding 'executorch/backends/xnnpack/test/ops/test_clamp.py' 2025-06-05T23:17:43.9262314Z adding 'executorch/backends/xnnpack/test/ops/test_conv1d.py' 2025-06-05T23:17:43.9262521Z adding 'executorch/backends/xnnpack/test/ops/test_conv2d.py' 2025-06-05T23:17:43.9262820Z adding 'executorch/backends/xnnpack/test/ops/test_div.py' 2025-06-05T23:17:43.9263119Z adding 'executorch/backends/xnnpack/test/ops/test_elu.py' 2025-06-05T23:17:43.9263502Z adding 'executorch/backends/xnnpack/test/ops/test_exp.py' 2025-06-05T23:17:43.9263933Z adding 'executorch/backends/xnnpack/test/ops/test_floor.py' 2025-06-05T23:17:43.9264284Z adding 'executorch/backends/xnnpack/test/ops/test_gelu.py' 2025-06-05T23:17:43.9264669Z adding 'executorch/backends/xnnpack/test/ops/test_hardswish.py' 2025-06-05T23:17:43.9265099Z adding 'executorch/backends/xnnpack/test/ops/test_hardtanh.py' 2025-06-05T23:17:43.9265467Z adding 'executorch/backends/xnnpack/test/ops/test_leaky_relu.py' 2025-06-05T23:17:43.9265913Z adding 'executorch/backends/xnnpack/test/ops/test_linear.py' 2025-06-05T23:17:43.9266338Z adding 'executorch/backends/xnnpack/test/ops/test_log.py' 2025-06-05T23:17:43.9266687Z adding 'executorch/backends/xnnpack/test/ops/test_lstm.py' 2025-06-05T23:17:43.9267200Z adding 'executorch/backends/xnnpack/test/ops/test_max_dim.py' 2025-06-05T23:17:43.9267625Z adding 'executorch/backends/xnnpack/test/ops/test_maximum.py' 2025-06-05T23:17:43.9268057Z adding 'executorch/backends/xnnpack/test/ops/test_maxpool2d.py' 2025-06-05T23:17:43.9268528Z adding 'executorch/backends/xnnpack/test/ops/test_mean_dim.py' 2025-06-05T23:17:43.9268915Z adding 'executorch/backends/xnnpack/test/ops/test_minimum.py' 2025-06-05T23:17:43.9269360Z adding 'executorch/backends/xnnpack/test/ops/test_multiply.py' 2025-06-05T23:17:43.9269613Z adding 'executorch/backends/xnnpack/test/ops/test_negate.py' 2025-06-05T23:17:43.9269950Z adding 'executorch/backends/xnnpack/test/ops/test_permute.py' 2025-06-05T23:17:43.9492024Z adding 'executorch/backends/xnnpack/test/ops/test_pow.py' 2025-06-05T23:17:43.9492304Z adding 'executorch/backends/xnnpack/test/ops/test_prelu.py' 2025-06-05T23:17:43.9492806Z adding 'executorch/backends/xnnpack/test/ops/test_quantize_per_tensor.py' 2025-06-05T23:17:43.9493270Z adding 'executorch/backends/xnnpack/test/ops/test_relu.py' 2025-06-05T23:17:43.9493498Z adding 'executorch/backends/xnnpack/test/ops/test_rsqrt.py' 2025-06-05T23:17:43.9493788Z adding 'executorch/backends/xnnpack/test/ops/test_sdpa.py' 2025-06-05T23:17:43.9494066Z adding 'executorch/backends/xnnpack/test/ops/test_sigmoid.py' 2025-06-05T23:17:43.9494336Z adding 'executorch/backends/xnnpack/test/ops/test_slice_copy.py' 2025-06-05T23:17:43.9494551Z adding 'executorch/backends/xnnpack/test/ops/test_softmax.py' 2025-06-05T23:17:43.9494797Z adding 'executorch/backends/xnnpack/test/ops/test_sqrt.py' 2025-06-05T23:17:43.9495064Z adding 'executorch/backends/xnnpack/test/ops/test_square.py' 2025-06-05T23:17:43.9495382Z adding 'executorch/backends/xnnpack/test/ops/test_static_constant_pad.py' 2025-06-05T23:17:43.9495643Z adding 'executorch/backends/xnnpack/test/ops/test_sub.py' 2025-06-05T23:17:43.9496096Z adding 'executorch/backends/xnnpack/test/passes/test_activation_fusion.py' 2025-06-05T23:17:43.9496375Z adding 'executorch/backends/xnnpack/test/passes/test_batch_norm_fusion.py' 2025-06-05T23:17:43.9496748Z adding 'executorch/backends/xnnpack/test/passes/test_channels_last_tagged_reshape.py' 2025-06-05T23:17:43.9497002Z adding 'executorch/backends/xnnpack/test/passes/test_convert_to_linear.py' 2025-06-05T23:17:43.9497333Z adding 'executorch/backends/xnnpack/test/passes/test_decompose_cat_pass.py' 2025-06-05T23:17:43.9497802Z adding 'executorch/backends/xnnpack/test/passes/test_remove_get_item_pass.py' 2025-06-05T23:17:43.9498096Z adding 'executorch/backends/xnnpack/test/passes/test_tag_implicit_q_dq_pass.py' 2025-06-05T23:17:43.9498384Z adding 'executorch/backends/xnnpack/test/quantizer/test_pt2e_quantization.py' 2025-06-05T23:17:43.9498659Z adding 'executorch/backends/xnnpack/test/quantizer/test_representation.py' 2025-06-05T23:17:43.9498972Z adding 'executorch/backends/xnnpack/test/quantizer/test_xnnpack_quantizer.py' 2025-06-05T23:17:43.9499305Z adding 'executorch/backends/xnnpack/test/serialization/test_serialization.py' 2025-06-05T23:17:43.9499599Z adding 'executorch/backends/xnnpack/test/serialization/test_xnnheader.py' 2025-06-05T23:17:43.9499860Z adding 'executorch/backends/xnnpack/test/tester/__init__.py' 2025-06-05T23:17:43.9500059Z adding 'executorch/backends/xnnpack/test/tester/tester.py' 2025-06-05T23:17:43.9500457Z adding 'executorch/backends/xnnpack/third-party/generate-cpuinfo-wrappers.py' 2025-06-05T23:17:43.9500721Z adding 'executorch/backends/xnnpack/third-party/FP16/configure.py' 2025-06-05T23:17:43.9500984Z adding 'executorch/backends/xnnpack/third-party/FP16/confu.yaml' 2025-06-05T23:17:43.9501292Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/__init__.py' 2025-06-05T23:17:43.9501601Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/avx.py' 2025-06-05T23:17:43.9501865Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/avx2.py' 2025-06-05T23:17:43.9502279Z adding 'executorch/backends/xnnpack/third-party/FP16/test/peachpy/stubs.py' 2025-06-05T23:17:43.9502630Z adding 'executorch/backends/xnnpack/third-party/FXdiv/configure.py' 2025-06-05T23:17:43.9503006Z adding 'executorch/backends/xnnpack/third-party/FXdiv/confu.yaml' 2025-06-05T23:17:43.9503360Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_config.py' 2025-06-05T23:17:43.9503734Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_files_changed.py' 2025-06-05T23:17:43.9504100Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/generate-build-identifier.py' 2025-06-05T23:17:43.9504410Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/sort-filenames.py' 2025-06-05T23:17:43.9504727Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/bf16-gemm-minmax.yaml' 2025-06-05T23:17:43.9505079Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-conv-hwc2chw.yaml' 2025-06-05T23:17:43.9505408Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-dwconv2d-chw.yaml' 2025-06-05T23:17:43.9505750Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-gemm-minmax.yaml' 2025-06-05T23:17:43.9506246Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-igemm-minmax.yaml' 2025-06-05T23:17:43.9506553Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rdsum.yaml' 2025-06-05T23:17:43.9506867Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rsum.yaml' 2025-06-05T23:17:43.9507227Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-gemm-minmax.yaml' 2025-06-05T23:17:43.9507555Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear-chw.yaml' 2025-06-05T23:17:43.9507852Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear.yaml' 2025-06-05T23:17:43.9508203Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-igemm-minmax.yaml' 2025-06-05T23:17:43.9508567Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-raddstoreexpminusmax.yaml' 2025-06-05T23:17:43.9508844Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmax.yaml' 2025-06-05T23:17:43.9509164Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmin.yaml' 2025-06-05T23:17:43.9509491Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rminmax.yaml' 2025-06-05T23:17:43.9509836Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rsum.yaml' 2025-06-05T23:17:43.9510185Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-spmm-minmax.yaml' 2025-06-05T23:17:43.9510524Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-vmulcaddc-minmax.yaml' 2025-06-05T23:17:43.9510826Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-argmaxpool.yaml' 2025-06-05T23:17:43.9511295Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc.yaml' 2025-06-05T23:17:43.9511864Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc2chw.yaml' 2025-06-05T23:17:43.9512365Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-dwconv2d-chw.yaml' 2025-06-05T23:17:43.9512940Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-goi-minmax.yaml' 2025-06-05T23:17:43.9513540Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-minmax.yaml' 2025-06-05T23:17:43.9514035Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-relu.yaml' 2025-06-05T23:17:43.9514492Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm.yaml' 2025-06-05T23:17:43.9515233Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemminc-minmax.yaml' 2025-06-05T23:17:43.9515809Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear-chw.yaml' 2025-06-05T23:17:43.9516333Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear.yaml' 2025-06-05T23:17:43.9517112Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-minmax.yaml' 2025-06-05T23:17:43.9517765Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-relu.yaml' 2025-06-05T23:17:43.9518269Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm.yaml' 2025-06-05T23:17:43.9519024Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ppmm-minmax.yaml' 2025-06-05T23:17:43.9519640Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:17:43.9520222Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-minmax.yaml' 2025-06-05T23:17:43.9520848Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-relu.yaml' 2025-06-05T23:17:43.9521405Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm.yaml' 2025-06-05T23:17:43.9521975Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddexpminusmax.yaml' 2025-06-05T23:17:43.9522710Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddextexp.yaml' 2025-06-05T23:17:43.9523390Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddstoreexpminusmax.yaml' 2025-06-05T23:17:43.9523903Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rdsum.yaml' 2025-06-05T23:17:43.9524332Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmax.yaml' 2025-06-05T23:17:43.9524642Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmin.yaml' 2025-06-05T23:17:43.9524909Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rminmax.yaml' 2025-06-05T23:17:43.9525247Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rsum.yaml' 2025-06-05T23:17:43.9525632Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-spmm-minmax.yaml' 2025-06-05T23:17:43.9525958Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vmulcaddc-minmax.yaml' 2025-06-05T23:17:43.9526471Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleexpminusmax.yaml' 2025-06-05T23:17:43.9527086Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleextexp.yaml' 2025-06-05T23:17:43.9527711Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qb4w-gemm-minmax.yaml' 2025-06-05T23:17:43.9528422Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc4w-gemm-minmax.yaml' 2025-06-05T23:17:43.9528851Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-gemm-minmax.yaml' 2025-06-05T23:17:43.9529205Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-igemm-minmax.yaml' 2025-06-05T23:17:43.9529547Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qb4w-gemm-minmax.yaml' 2025-06-05T23:17:43.9529933Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:17:43.9530253Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-gemm-minmax.yaml' 2025-06-05T23:17:43.9530668Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-igemm-minmax.yaml' 2025-06-05T23:17:43.9531076Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qb4w-gemm-minmax.yaml' 2025-06-05T23:17:43.9531416Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:17:43.9531998Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-gemm-minmax-fp32.yaml' 2025-06-05T23:17:44.2750828Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-igemm-minmax-fp32.yaml' 2025-06-05T23:17:44.2752165Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rdsum-minmax-fp32.yaml' 2025-06-05T23:17:44.2753011Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rsum.yaml' 2025-06-05T23:17:44.2753803Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-fp32.yaml' 2025-06-05T23:17:44.2754853Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-rndnu.yaml' 2025-06-05T23:17:44.2756090Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-fp32.yaml' 2025-06-05T23:17:44.2757033Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-rndnu.yaml' 2025-06-05T23:17:44.2757765Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rdsum.yaml' 2025-06-05T23:17:44.2758604Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rsum.yaml' 2025-06-05T23:17:44.2759387Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/s8-ibilinear.yaml' 2025-06-05T23:17:44.2760304Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-ibilinear.yaml' 2025-06-05T23:17:44.2761111Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-lut32norm.yaml' 2025-06-05T23:17:44.2761788Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-rmax.yaml' 2025-06-05T23:17:44.2762487Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/x8-lut.yaml' 2025-06-05T23:17:44.2763269Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-argmaxpool-test.py' 2025-06-05T23:17:44.2764083Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc-test.py' 2025-06-05T23:17:44.2764939Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc2chw-test.py' 2025-06-05T23:17:44.2765813Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-multipass-test.py' 2025-06-05T23:17:44.2766884Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-unipass-test.py' 2025-06-05T23:17:44.2767781Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv2d-chw-test.py' 2025-06-05T23:17:44.2768548Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-gemm-test.py' 2025-06-05T23:17:44.2769449Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-chw-test.py' 2025-06-05T23:17:44.2770278Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-test.py' 2025-06-05T23:17:44.2771196Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-norm-test.py' 2025-06-05T23:17:44.2772115Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-test.py' 2025-06-05T23:17:44.2772915Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddexpminusmax-test.py' 2025-06-05T23:17:44.2773869Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddextexp-test.py' 2025-06-05T23:17:44.2774819Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddstoreexpminusmax-test.py' 2025-06-05T23:17:44.2775788Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-benchmark.py' 2025-06-05T23:17:44.2776593Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-test.py' 2025-06-05T23:17:44.2777533Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-test.py' 2025-06-05T23:17:44.2778567Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-spmm-test.py' 2025-06-05T23:17:44.2779338Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vbinary-test.py' 2025-06-05T23:17:44.2780298Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vmulcaddc-test.py' 2025-06-05T23:17:44.2781238Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleexpminusmax-test.py' 2025-06-05T23:17:44.2782098Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleextexp-test.py' 2025-06-05T23:17:44.2783069Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vunary-test.py' 2025-06-05T23:17:44.2783826Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/primes.py' 2025-06-05T23:17:44.2784566Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/update-microkernels.py' 2025-06-05T23:17:44.2785596Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/xngen.py' 2025-06-05T23:17:44.2786382Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/xnncommon.py' 2025-06-05T23:17:44.2787115Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/configure.py' 2025-06-05T23:17:44.2798248Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/confu.yaml' 2025-06-05T23:17:44.2799038Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/configure.py' 2025-06-05T23:17:44.2799695Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/confu.yaml' 2025-06-05T23:17:44.2800364Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/android-device-dump.py' 2025-06-05T23:17:44.2801128Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/arm-linux-filesystem-dump.py' 2025-06-05T23:17:44.2801889Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/parse-x86-cpuid-dump.py' 2025-06-05T23:17:44.2802564Z adding 'executorch/backends/xnnpack/third-party/pthreadpool/configure.py' 2025-06-05T23:17:44.2803290Z adding 'executorch/backends/xnnpack/third-party/pthreadpool/confu.yaml' 2025-06-05T23:17:44.2803846Z adding 'executorch/backends/xnnpack/utils/configs.py' 2025-06-05T23:17:44.2804335Z adding 'executorch/backends/xnnpack/utils/quant_utils.py' 2025-06-05T23:17:44.2804746Z adding 'executorch/backends/xnnpack/utils/utils.py' 2025-06-05T23:17:44.2805198Z adding 'executorch/backends/xnnpack/utils/xnnpack_constants.py' 2025-06-05T23:17:44.2805626Z adding 'executorch/codegen/__init__.py' 2025-06-05T23:17:44.2805939Z adding 'executorch/codegen/gen.py' 2025-06-05T23:17:44.2806292Z adding 'executorch/codegen/model.py' 2025-06-05T23:17:44.2806684Z adding 'executorch/codegen/parse.py' 2025-06-05T23:17:44.2807008Z adding 'executorch/codegen/api/__init__.py' 2025-06-05T23:17:44.2807375Z adding 'executorch/codegen/api/custom_ops.py' 2025-06-05T23:17:44.2807756Z adding 'executorch/codegen/api/et_cpp.py' 2025-06-05T23:17:44.2808089Z adding 'executorch/codegen/api/unboxing.py' 2025-06-05T23:17:44.2808455Z adding 'executorch/codegen/api/types/__init__.py' 2025-06-05T23:17:44.2808849Z adding 'executorch/codegen/api/types/signatures.py' 2025-06-05T23:17:44.2809222Z adding 'executorch/codegen/api/types/types.py' 2025-06-05T23:17:44.2809757Z adding 'executorch/codegen/test/test_executorch_custom_ops.py' 2025-06-05T23:17:44.2810353Z adding 'executorch/codegen/test/test_executorch_gen.py' 2025-06-05T23:17:44.2810867Z adding 'executorch/codegen/test/test_executorch_signatures.py' 2025-06-05T23:17:44.2811330Z adding 'executorch/codegen/test/test_executorch_types.py' 2025-06-05T23:17:44.2811792Z adding 'executorch/codegen/test/test_executorch_unboxing.py' 2025-06-05T23:17:44.2812383Z adding 'executorch/codegen/test/test_selective_build.py' 2025-06-05T23:17:44.2812848Z adding 'executorch/codegen/tools/__init__.py' 2025-06-05T23:17:44.2813254Z adding 'executorch/codegen/tools/gen_all_oplist.py' 2025-06-05T23:17:44.2813684Z adding 'executorch/codegen/tools/gen_oplist.py' 2025-06-05T23:17:44.2814065Z adding 'executorch/codegen/tools/gen_ops_def.py' 2025-06-05T23:17:44.2814478Z adding 'executorch/codegen/tools/gen_selected_op_variants.py' 2025-06-05T23:17:44.2815027Z adding 'executorch/codegen/tools/merge_yaml.py' 2025-06-05T23:17:44.2815390Z adding 'executorch/codegen/tools/yaml_util.py' 2025-06-05T23:17:44.2815813Z adding 'executorch/codegen/tools/test/test_gen_all_oplist.py' 2025-06-05T23:17:44.2816275Z adding 'executorch/codegen/tools/test/test_gen_oplist.py' 2025-06-05T23:17:44.2816913Z adding 'executorch/codegen/tools/test/test_gen_oplist_real_model.py' 2025-06-05T23:17:44.2817560Z adding 'executorch/codegen/tools/test/test_gen_selected_op_variants.py' 2025-06-05T23:17:44.2818065Z adding 'executorch/data/bin/__init__.py' 2025-06-05T23:17:44.2818395Z adding 'executorch/data/bin/flatc' 2025-06-05T23:17:44.2818699Z adding 'executorch/devtools/__init__.py' 2025-06-05T23:17:44.2819217Z adding 'executorch/devtools/backend_debug/__init__.py' 2025-06-05T23:17:44.2819736Z adding 'executorch/devtools/backend_debug/delegation_info.py' 2025-06-05T23:17:44.2820252Z adding 'executorch/devtools/backend_debug/tests/test_delegation_info.py' 2025-06-05T23:17:44.2820817Z adding 'executorch/devtools/bundled_program/config.py' 2025-06-05T23:17:44.2821347Z adding 'executorch/devtools/bundled_program/core.py' 2025-06-05T23:17:44.2821767Z adding 'executorch/devtools/bundled_program/version.py' 2025-06-05T23:17:44.2822269Z adding 'executorch/devtools/bundled_program/schema/__init__.py' 2025-06-05T23:17:44.2822827Z adding 'executorch/devtools/bundled_program/schema/bundled_program_schema.fbs' 2025-06-05T23:17:44.2823431Z adding 'executorch/devtools/bundled_program/schema/bundled_program_schema.py' 2025-06-05T23:17:44.2824059Z adding 'executorch/devtools/bundled_program/schema/scalar_type.fbs' 2025-06-05T23:17:44.2824781Z adding 'executorch/devtools/bundled_program/schema/test/test_schema.py' 2025-06-05T23:17:44.2825372Z adding 'executorch/devtools/bundled_program/serialize/__init__.py' 2025-06-05T23:17:44.2825961Z adding 'executorch/devtools/bundled_program/serialize/bundled_program_schema.fbs' 2025-06-05T23:17:44.2826554Z adding 'executorch/devtools/bundled_program/serialize/scalar_type.fbs' 2025-06-05T23:17:44.2827218Z adding 'executorch/devtools/bundled_program/serialize/test/test_serialize.py' 2025-06-05T23:17:44.2827864Z adding 'executorch/devtools/bundled_program/test/test_bundle_data.py' 2025-06-05T23:17:44.2828429Z adding 'executorch/devtools/bundled_program/test/test_config.py' 2025-06-05T23:17:44.2828938Z adding 'executorch/devtools/bundled_program/test/test_end2end.py' 2025-06-05T23:17:44.2829420Z adding 'executorch/devtools/bundled_program/util/test_util.py' 2025-06-05T23:17:44.2829879Z adding 'executorch/devtools/debug_format/base_schema.py' 2025-06-05T23:17:44.2830293Z adding 'executorch/devtools/debug_format/et_schema.py' 2025-06-05T23:17:44.2830741Z adding 'executorch/devtools/etdump/etdump_schema_flatcc.fbs' 2025-06-05T23:17:44.2831180Z adding 'executorch/devtools/etdump/scalar_type.fbs' 2025-06-05T23:17:44.2831568Z adding 'executorch/devtools/etdump/schema_flatcc.py' 2025-06-05T23:17:44.2831964Z adding 'executorch/devtools/etdump/serialize.py' 2025-06-05T23:17:44.2832436Z adding 'executorch/devtools/etdump/tests/serialize_test.py' 2025-06-05T23:17:44.2832982Z adding 'executorch/devtools/etrecord/__init__.py' 2025-06-05T23:17:44.2833357Z adding 'executorch/devtools/etrecord/_etrecord.py' 2025-06-05T23:17:44.2833844Z adding 'executorch/devtools/etrecord/tests/etrecord_test.py' 2025-06-05T23:17:44.2834264Z adding 'executorch/devtools/inspector/__init__.py' 2025-06-05T23:17:44.3111466Z adding 'executorch/devtools/inspector/_inspector.py' 2025-06-05T23:17:44.3112305Z adding 'executorch/devtools/inspector/_inspector_utils.py' 2025-06-05T23:17:44.3113103Z adding 'executorch/devtools/inspector/_intermediate_output_capturer.py' 2025-06-05T23:17:44.3114026Z adding 'executorch/devtools/inspector/inspector_cli.py' 2025-06-05T23:17:44.3114921Z adding 'executorch/devtools/inspector/tests/event_blocks_test.py' 2025-06-05T23:17:44.3115818Z adding 'executorch/devtools/inspector/tests/inspector_test.py' 2025-06-05T23:17:44.3116799Z adding 'executorch/devtools/inspector/tests/inspector_test_utils.py' 2025-06-05T23:17:44.3117799Z adding 'executorch/devtools/inspector/tests/inspector_utils_test.py' 2025-06-05T23:17:44.3118953Z adding 'executorch/devtools/inspector/tests/intermediate_output_capturer_test.py' 2025-06-05T23:17:44.3120082Z adding 'executorch/devtools/size_analysis_tool/size_analysis_tool.py' 2025-06-05T23:17:44.3121152Z adding 'executorch/devtools/size_analysis_tool/size_analysis_tool_test.py' 2025-06-05T23:17:44.3122112Z adding 'executorch/devtools/visualization/__init__.py' 2025-06-05T23:17:44.3122992Z adding 'executorch/devtools/visualization/visualization_utils.py' 2025-06-05T23:17:44.3123882Z adding 'executorch/devtools/visualization/visualization_utils_test.py' 2025-06-05T23:17:44.3124503Z adding 'executorch/examples/apple/coreml/llama/export.py' 2025-06-05T23:17:44.3125349Z adding 'executorch/examples/apple/coreml/llama/llama_transformer.py' 2025-06-05T23:17:44.3126244Z adding 'executorch/examples/apple/coreml/llama/run.py' 2025-06-05T23:17:44.3126969Z adding 'executorch/examples/apple/coreml/llama/test.py' 2025-06-05T23:17:44.3127496Z adding 'executorch/examples/apple/coreml/llama/utils.py' 2025-06-05T23:17:44.3127970Z adding 'executorch/examples/apple/coreml/scripts/debugger_cli.py' 2025-06-05T23:17:44.3128480Z adding 'executorch/examples/apple/coreml/scripts/export.py' 2025-06-05T23:17:44.3129005Z adding 'executorch/examples/apple/coreml/scripts/extract_coreml_models.py' 2025-06-05T23:17:44.3129580Z adding 'executorch/examples/apple/coreml/scripts/inspector_cli.py' 2025-06-05T23:17:44.3130226Z adding 'executorch/examples/apple/coreml/scripts/inspector_utils.py' 2025-06-05T23:17:44.3131162Z adding 'executorch/examples/apple/mps/scripts/bench_utils.py' 2025-06-05T23:17:44.3132065Z adding 'executorch/examples/apple/mps/scripts/mps_example.py' 2025-06-05T23:17:44.3132676Z adding 'executorch/examples/llm_pte_finetuning/__init__.py' 2025-06-05T23:17:44.3133177Z adding 'executorch/examples/llm_pte_finetuning/llama3_config.yaml' 2025-06-05T23:17:44.3133858Z adding 'executorch/examples/llm_pte_finetuning/model_exporter.py' 2025-06-05T23:17:44.3134832Z adding 'executorch/examples/llm_pte_finetuning/model_loading_lib.py' 2025-06-05T23:17:44.3135841Z adding 'executorch/examples/llm_pte_finetuning/phi3_alpaca_code_config.yaml' 2025-06-05T23:17:44.3136492Z adding 'executorch/examples/llm_pte_finetuning/phi3_config.yaml' 2025-06-05T23:17:44.3137068Z adding 'executorch/examples/llm_pte_finetuning/qwen_05b_config.yaml' 2025-06-05T23:17:44.3137557Z adding 'executorch/examples/llm_pte_finetuning/runner.py' 2025-06-05T23:17:44.3138027Z adding 'executorch/examples/llm_pte_finetuning/training_lib.py' 2025-06-05T23:17:44.3138467Z adding 'executorch/examples/models/__init__.py' 2025-06-05T23:17:44.3138950Z adding 'executorch/examples/models/checkpoint.py' 2025-06-05T23:17:44.3139326Z adding 'executorch/examples/models/model_base.py' 2025-06-05T23:17:44.3139779Z adding 'executorch/examples/models/model_factory.py' 2025-06-05T23:17:44.3140216Z adding 'executorch/examples/models/deeplab_v3/__init__.py' 2025-06-05T23:17:44.3140740Z adding 'executorch/examples/models/deeplab_v3/model.py' 2025-06-05T23:17:44.3141170Z adding 'executorch/examples/models/edsr/__init__.py' 2025-06-05T23:17:44.3141590Z adding 'executorch/examples/models/edsr/model.py' 2025-06-05T23:17:44.3142018Z adding 'executorch/examples/models/efficient_sam/__init__.py' 2025-06-05T23:17:44.3142564Z adding 'executorch/examples/models/efficient_sam/model.py' 2025-06-05T23:17:44.3143214Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/build_efficient_sam.py' 2025-06-05T23:17:44.3143938Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam.py' 2025-06-05T23:17:44.3144781Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_decoder.py' 2025-06-05T23:17:44.3145602Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_encoder.py' 2025-06-05T23:17:44.3146364Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/mlp.py' 2025-06-05T23:17:44.3147096Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/two_way_transformer.py' 2025-06-05T23:17:44.3147719Z adding 'executorch/examples/models/emformer_rnnt/__init__.py' 2025-06-05T23:17:44.3148173Z adding 'executorch/examples/models/emformer_rnnt/model.py' 2025-06-05T23:17:44.3148732Z adding 'executorch/examples/models/inception_v3/__init__.py' 2025-06-05T23:17:44.3149233Z adding 'executorch/examples/models/inception_v3/model.py' 2025-06-05T23:17:44.3149694Z adding 'executorch/examples/models/inception_v4/__init__.py' 2025-06-05T23:17:44.3150312Z adding 'executorch/examples/models/inception_v4/model.py' 2025-06-05T23:17:44.3150851Z adding 'executorch/examples/models/llama/__init__.py' 2025-06-05T23:17:44.3151310Z adding 'executorch/examples/models/llama/attention.py' 2025-06-05T23:17:44.3151740Z adding 'executorch/examples/models/llama/eval_llama.py' 2025-06-05T23:17:44.3152182Z adding 'executorch/examples/models/llama/eval_llama_lib.py' 2025-06-05T23:17:44.3152715Z adding 'executorch/examples/models/llama/export_llama.py' 2025-06-05T23:17:44.3153213Z adding 'executorch/examples/models/llama/export_llama_lib.py' 2025-06-05T23:17:44.3153672Z adding 'executorch/examples/models/llama/fairseq2.py' 2025-06-05T23:17:44.3154154Z adding 'executorch/examples/models/llama/hf_download.py' 2025-06-05T23:17:44.3154727Z adding 'executorch/examples/models/llama/install_requirement_helper.py' 2025-06-05T23:17:44.3155370Z adding 'executorch/examples/models/llama/llama_transformer.py' 2025-06-05T23:17:44.3155821Z adding 'executorch/examples/models/llama/model.py' 2025-06-05T23:17:44.3156220Z adding 'executorch/examples/models/llama/model_args.py' 2025-06-05T23:17:44.3156630Z adding 'executorch/examples/models/llama/norm.py' 2025-06-05T23:17:44.3157004Z adding 'executorch/examples/models/llama/rope.py' 2025-06-05T23:17:44.3157437Z adding 'executorch/examples/models/llama/static_attention.py' 2025-06-05T23:17:44.3157909Z adding 'executorch/examples/models/llama/evaluate/__init__.py' 2025-06-05T23:17:44.3158463Z adding 'executorch/examples/models/llama/evaluate/eager_eval.py' 2025-06-05T23:17:44.3159128Z adding 'executorch/examples/models/llama/experimental/generate.py' 2025-06-05T23:17:44.3159741Z adding 'executorch/examples/models/llama/experimental/load_gguf_q4_0.py' 2025-06-05T23:17:44.3160303Z adding 'executorch/examples/models/llama/experimental/subclass.py' 2025-06-05T23:17:44.3160883Z adding 'executorch/examples/models/llama/experimental/test_subclass.py' 2025-06-05T23:17:44.3161500Z adding 'executorch/examples/models/llama/runner/eager.py' 2025-06-05T23:17:44.3162024Z adding 'executorch/examples/models/llama/runner/generation.py' 2025-06-05T23:17:44.3162498Z adding 'executorch/examples/models/llama/runner/native.py' 2025-06-05T23:17:44.3163031Z adding 'executorch/examples/models/llama/source_transformation/__init__.py' 2025-06-05T23:17:44.3163818Z adding 'executorch/examples/models/llama/source_transformation/apply_spin_quant_r1_r2.py' 2025-06-05T23:17:44.3164570Z adding 'executorch/examples/models/llama/source_transformation/attention.py' 2025-06-05T23:17:44.3165257Z adding 'executorch/examples/models/llama/source_transformation/attention_sink.py' 2025-06-05T23:17:44.3165976Z adding 'executorch/examples/models/llama/source_transformation/custom_kv_cache.py' 2025-06-05T23:17:44.3166679Z adding 'executorch/examples/models/llama/source_transformation/lora.py' 2025-06-05T23:17:44.3167352Z adding 'executorch/examples/models/llama/source_transformation/pre_quantization.py' 2025-06-05T23:17:44.3168023Z adding 'executorch/examples/models/llama/source_transformation/prune_vocab.py' 2025-06-05T23:17:44.3168730Z adding 'executorch/examples/models/llama/source_transformation/quantize.py' 2025-06-05T23:17:44.3169381Z adding 'executorch/examples/models/llama/source_transformation/rms_norm.py' 2025-06-05T23:17:44.3169963Z adding 'executorch/examples/models/llama/source_transformation/rope.py' 2025-06-05T23:17:44.3170555Z adding 'executorch/examples/models/llama/source_transformation/sdpa.py' 2025-06-05T23:17:44.3171234Z adding 'executorch/examples/models/llama/source_transformation/spin_quant.py' 2025-06-05T23:17:44.3171936Z adding 'executorch/examples/models/llama/source_transformation/test_attention_sink.py' 2025-06-05T23:17:44.3172662Z adding 'executorch/examples/models/llama/source_transformation/test_quantized_kv_cache.py' 2025-06-05T23:17:44.3173381Z adding 'executorch/examples/models/llama/source_transformation/test_quantized_sdpa.py' 2025-06-05T23:17:44.3174377Z adding 'executorch/examples/models/llama/source_transformation/test_sdpa_with_quantized_kv_cache.py' 2025-06-05T23:17:44.3175226Z adding 'executorch/examples/models/llama/source_transformation/vulkan_rope.py' 2025-06-05T23:17:44.3175934Z adding 'executorch/examples/models/llama/tests/test_export_llama_lib.py' 2025-06-05T23:17:44.3176599Z adding 'executorch/examples/models/llama/tests/test_pre_quantization_transforms.py' 2025-06-05T23:17:44.3177252Z adding 'executorch/examples/models/llama/tests/test_replace_kv_cache.py' 2025-06-05T23:17:44.3177992Z adding 'executorch/examples/models/llama/tests/test_ring_attention.py' 2025-06-05T23:17:44.3178548Z adding 'executorch/examples/models/llama/tests/test_ring_kv_cache.py' 2025-06-05T23:17:44.3179181Z adding 'executorch/examples/models/llama/tests/test_simple_sdpa.py' 2025-06-05T23:17:44.3179777Z adding 'executorch/examples/models/llama/tests/test_static_attention.py' 2025-06-05T23:17:44.3180325Z adding 'executorch/examples/models/llama/tokenizer/tiktoken.py' 2025-06-05T23:17:44.3180869Z adding 'executorch/examples/models/llama3_2_vision/__init__.py' 2025-06-05T23:17:44.3181448Z adding 'executorch/examples/models/llama3_2_vision/preprocess/__init__.py' 2025-06-05T23:17:44.3182131Z adding 'executorch/examples/models/llama3_2_vision/preprocess/export_preprocess.py' 2025-06-05T23:17:44.3182746Z adding 'executorch/examples/models/llama3_2_vision/preprocess/model.py' 2025-06-05T23:17:44.3183453Z adding 'executorch/examples/models/llama3_2_vision/preprocess/test_preprocess.py' 2025-06-05T23:17:44.3184082Z adding 'executorch/examples/models/llama3_2_vision/runner/eager.py' 2025-06-05T23:17:44.3184629Z adding 'executorch/examples/models/llama3_2_vision/runner/exported.py' 2025-06-05T23:17:44.3185197Z adding 'executorch/examples/models/llama3_2_vision/runner/generation.py' 2025-06-05T23:17:44.3185834Z adding 'executorch/examples/models/llama3_2_vision/runner/native.py' 2025-06-05T23:17:44.3186439Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/model.py' 2025-06-05T23:17:44.3608615Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/test/__init__.py' 2025-06-05T23:17:44.3609922Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/test/test_text_decoder.py' 2025-06-05T23:17:44.3611167Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/__init__.py' 2025-06-05T23:17:44.3612317Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/model.py' 2025-06-05T23:17:44.3613516Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/test/__init__.py' 2025-06-05T23:17:44.3614883Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/test/test_vision_encoder.py' 2025-06-05T23:17:44.3615848Z adding 'executorch/examples/models/llava/__init__.py' 2025-06-05T23:17:44.3616293Z adding 'executorch/examples/models/llava/export_llava.py' 2025-06-05T23:17:44.3616710Z adding 'executorch/examples/models/llava/model.py' 2025-06-05T23:17:44.3617164Z adding 'executorch/examples/models/llava/test/test_llava.py' 2025-06-05T23:17:44.3617895Z adding 'executorch/examples/models/llava/test/test_pte.py' 2025-06-05T23:17:44.3618680Z adding 'executorch/examples/models/lstm/__init__.py' 2025-06-05T23:17:44.3619375Z adding 'executorch/examples/models/lstm/model.py' 2025-06-05T23:17:44.3619815Z adding 'executorch/examples/models/mobilebert/__init__.py' 2025-06-05T23:17:44.3620342Z adding 'executorch/examples/models/mobilebert/model.py' 2025-06-05T23:17:44.3620838Z adding 'executorch/examples/models/mobilenet_v2/__init__.py' 2025-06-05T23:17:44.3621305Z adding 'executorch/examples/models/mobilenet_v2/model.py' 2025-06-05T23:17:44.3621773Z adding 'executorch/examples/models/mobilenet_v3/__init__.py' 2025-06-05T23:17:44.3622219Z adding 'executorch/examples/models/mobilenet_v3/model.py' 2025-06-05T23:17:44.3622674Z adding 'executorch/examples/models/moshi/mimi/test_mimi.py' 2025-06-05T23:17:44.3623128Z adding 'executorch/examples/models/phi-3-mini/__init__.py' 2025-06-05T23:17:44.3623770Z adding 'executorch/examples/models/phi-3-mini/eager.py' 2025-06-05T23:17:44.3624331Z adding 'executorch/examples/models/phi-3-mini/export_phi-3-mini.py' 2025-06-05T23:17:44.3624839Z adding 'executorch/examples/models/phi-3-mini/phi_3_mini.py' 2025-06-05T23:17:44.3625321Z adding 'executorch/examples/models/phi-3-mini/static_cache.py' 2025-06-05T23:17:44.3625822Z adding 'executorch/examples/models/phi-3-mini-lora/export_model.py' 2025-06-05T23:17:44.3626320Z adding 'executorch/examples/models/phi_4_mini/__init__.py' 2025-06-05T23:17:44.3626787Z adding 'executorch/examples/models/phi_4_mini/convert_weights.py' 2025-06-05T23:17:44.3627259Z adding 'executorch/examples/models/qwen2_5/__init__.py' 2025-06-05T23:17:44.3627704Z adding 'executorch/examples/models/qwen2_5/convert_weights.py' 2025-06-05T23:17:44.3628151Z adding 'executorch/examples/models/qwen3/__init__.py' 2025-06-05T23:17:44.3628592Z adding 'executorch/examples/models/qwen3/convert_weights.py' 2025-06-05T23:17:44.3629033Z adding 'executorch/examples/models/resnet/__init__.py' 2025-06-05T23:17:44.3629476Z adding 'executorch/examples/models/resnet/model.py' 2025-06-05T23:17:44.3629874Z adding 'executorch/examples/models/smollm2/__init__.py' 2025-06-05T23:17:44.3630330Z adding 'executorch/examples/models/smollm2/convert_weights.py' 2025-06-05T23:17:44.3630860Z adding 'executorch/examples/models/test/__init__.py' 2025-06-05T23:17:44.3631279Z adding 'executorch/examples/models/test/test_export.py' 2025-06-05T23:17:44.3631730Z adding 'executorch/examples/models/torchvision_vit/__init__.py' 2025-06-05T23:17:44.3632218Z adding 'executorch/examples/models/torchvision_vit/model.py' 2025-06-05T23:17:44.3632679Z adding 'executorch/examples/models/toy_model/__init__.py' 2025-06-05T23:17:44.3633101Z adding 'executorch/examples/models/toy_model/model.py' 2025-06-05T23:17:44.3633540Z adding 'executorch/examples/models/wav2letter/__init__.py' 2025-06-05T23:17:44.3633968Z adding 'executorch/examples/models/wav2letter/model.py' 2025-06-05T23:17:44.3634353Z adding 'executorch/exir/__init__.py' 2025-06-05T23:17:44.3634667Z adding 'executorch/exir/_warnings.py' 2025-06-05T23:17:44.3634985Z adding 'executorch/exir/common.py' 2025-06-05T23:17:44.3635296Z adding 'executorch/exir/control_flow.py' 2025-06-05T23:17:44.3635608Z adding 'executorch/exir/delegate.py' 2025-06-05T23:17:44.3635923Z adding 'executorch/exir/delegate.pyi' 2025-06-05T23:17:44.3636239Z adding 'executorch/exir/dim_order_utils.py' 2025-06-05T23:17:44.3636583Z adding 'executorch/exir/dynamic_shape.py' 2025-06-05T23:17:44.3636893Z adding 'executorch/exir/error.py' 2025-06-05T23:17:44.3637195Z adding 'executorch/exir/graph.py' 2025-06-05T23:17:44.3637494Z adding 'executorch/exir/graph_module.py' 2025-06-05T23:17:44.3637853Z adding 'executorch/exir/lowered_backend_module.py' 2025-06-05T23:17:44.3638211Z adding 'executorch/exir/memory.py' 2025-06-05T23:17:44.3638524Z adding 'executorch/exir/memory_planning.py' 2025-06-05T23:17:44.3638869Z adding 'executorch/exir/pass_base.py' 2025-06-05T23:17:44.3639183Z adding 'executorch/exir/pass_manager.py' 2025-06-05T23:17:44.3639523Z adding 'executorch/exir/print_program.py' 2025-06-05T23:17:44.3639842Z adding 'executorch/exir/scalar_type.py' 2025-06-05T23:17:44.3640162Z adding 'executorch/exir/schema.py' 2025-06-05T23:17:44.3640454Z adding 'executorch/exir/sym_util.py' 2025-06-05T23:17:44.3640821Z adding 'executorch/exir/tensor.py' 2025-06-05T23:17:44.3641294Z adding 'executorch/exir/tracer.py' 2025-06-05T23:17:44.3641794Z adding 'executorch/exir/types.py' 2025-06-05T23:17:44.3642322Z adding 'executorch/exir/version.py' 2025-06-05T23:17:44.3642845Z adding 'executorch/exir/wrap.py' 2025-06-05T23:17:44.3643388Z adding 'executorch/exir/_serialize/__init__.py' 2025-06-05T23:17:44.3643753Z adding 'executorch/exir/_serialize/_cord.py' 2025-06-05T23:17:44.3644230Z adding 'executorch/exir/_serialize/_dataclass.py' 2025-06-05T23:17:44.3644842Z adding 'executorch/exir/_serialize/_flatbuffer.py' 2025-06-05T23:17:44.3645247Z adding 'executorch/exir/_serialize/_named_data_store.py' 2025-06-05T23:17:44.3645739Z adding 'executorch/exir/_serialize/_program.py' 2025-06-05T23:17:44.3646105Z adding 'executorch/exir/_serialize/_serialize.py' 2025-06-05T23:17:44.3646511Z adding 'executorch/exir/_serialize/data_serializer.py' 2025-06-05T23:17:44.3646897Z adding 'executorch/exir/_serialize/padding.py' 2025-06-05T23:17:44.3647268Z adding 'executorch/exir/_serialize/program.fbs' 2025-06-05T23:17:44.3647653Z adding 'executorch/exir/_serialize/scalar_type.fbs' 2025-06-05T23:17:44.3648037Z adding 'executorch/exir/_serialize/test/__init__.py' 2025-06-05T23:17:44.3648444Z adding 'executorch/exir/_serialize/test/test_cord.py' 2025-06-05T23:17:44.3648862Z adding 'executorch/exir/_serialize/test/test_flatbuffer.py' 2025-06-05T23:17:44.3649344Z adding 'executorch/exir/_serialize/test/test_named_data_store.py' 2025-06-05T23:17:44.3649805Z adding 'executorch/exir/_serialize/test/test_program.py' 2025-06-05T23:17:44.3650218Z adding 'executorch/exir/backend/backend_api.py' 2025-06-05T23:17:44.3650602Z adding 'executorch/exir/backend/backend_details.py' 2025-06-05T23:17:44.3651000Z adding 'executorch/exir/backend/compile_spec_schema.py' 2025-06-05T23:17:44.3651420Z adding 'executorch/exir/backend/operator_support.py' 2025-06-05T23:17:44.3651808Z adding 'executorch/exir/backend/partitioner.py' 2025-06-05T23:17:44.3652170Z adding 'executorch/exir/backend/utils.py' 2025-06-05T23:17:44.3652652Z adding 'executorch/exir/backend/canonical_partitioners/all_node_partitioner.py' 2025-06-05T23:17:44.3653313Z adding 'executorch/exir/backend/canonical_partitioners/config_partitioner.py' 2025-06-05T23:17:44.3653972Z adding 'executorch/exir/backend/canonical_partitioners/duplicate_constant_node_pass.py' 2025-06-05T23:17:44.3654677Z adding 'executorch/exir/backend/canonical_partitioners/duplicate_dequant_node_pass.py' 2025-06-05T23:17:44.3655470Z adding 'executorch/exir/backend/canonical_partitioners/pattern_op_partitioner.py' 2025-06-05T23:17:44.3656073Z adding 'executorch/exir/backend/test/backend_with_compiler_demo.py' 2025-06-05T23:17:44.3656639Z adding 'executorch/exir/backend/test/backend_with_delegate_mapping_demo.py' 2025-06-05T23:17:44.3657196Z adding 'executorch/exir/backend/test/backend_with_named_data_map.py' 2025-06-05T23:17:44.3657758Z adding 'executorch/exir/backend/test/backend_with_preprocess_all_demo.py' 2025-06-05T23:17:44.3658297Z adding 'executorch/exir/backend/test/hta_partitioner_demo.py' 2025-06-05T23:17:44.3659033Z adding 'executorch/exir/backend/test/op_partitioner_demo.py' 2025-06-05T23:17:44.3659832Z adding 'executorch/exir/backend/test/qnn_backend_demo.py' 2025-06-05T23:17:44.3660742Z adding 'executorch/exir/backend/test/test_backend_with_named_data_map.py' 2025-06-05T23:17:44.3661367Z adding 'executorch/exir/backend/test/test_backends.py' 2025-06-05T23:17:44.3661916Z adding 'executorch/exir/backend/test/test_backends_lifted.py' 2025-06-05T23:17:44.3662407Z adding 'executorch/exir/backend/test/test_backends_nested.py' 2025-06-05T23:17:44.3662887Z adding 'executorch/exir/backend/test/test_compatibility.py' 2025-06-05T23:17:44.3663352Z adding 'executorch/exir/backend/test/test_debug_handle_map.py' 2025-06-05T23:17:44.3663861Z adding 'executorch/exir/backend/test/test_delegate_map_builder.py' 2025-06-05T23:17:44.3664355Z adding 'executorch/exir/backend/test/test_graph_partition.py' 2025-06-05T23:17:44.3664876Z adding 'executorch/exir/backend/test/test_lowered_backend_module.py' 2025-06-05T23:17:44.3665719Z adding 'executorch/exir/backend/test/test_partitioner.py' 2025-06-05T23:17:44.3666502Z adding 'executorch/exir/backend/test/test_passes.py' 2025-06-05T23:17:44.3667280Z adding 'executorch/exir/backend/test/test_to_backend_multi_method.py' 2025-06-05T23:17:44.3667957Z adding 'executorch/exir/backend/test/test_utils.py' 2025-06-05T23:17:44.3668559Z adding 'executorch/exir/backend/test/demos/test_delegate_aten_mode.py' 2025-06-05T23:17:44.3669232Z adding 'executorch/exir/backend/test/demos/test_xnnpack_qnnpack.py' 2025-06-05T23:17:44.3669893Z adding 'executorch/exir/backend/test/demos/rpc/executor_backend_partitioner.py' 2025-06-05T23:17:44.3670659Z adding 'executorch/exir/backend/test/demos/rpc/executor_backend_preprocess.py' 2025-06-05T23:17:44.3671277Z adding 'executorch/exir/backend/test/demos/rpc/test_rpc.py' 2025-06-05T23:17:44.3671693Z adding 'executorch/exir/capture/__init__.py' 2025-06-05T23:17:44.3672041Z adding 'executorch/exir/capture/_capture.py' 2025-06-05T23:17:44.3672395Z adding 'executorch/exir/capture/_config.py' 2025-06-05T23:17:44.3672815Z adding 'executorch/exir/capture/_unlift.py' 2025-06-05T23:17:44.3673170Z adding 'executorch/exir/dialects/__init__.py' 2025-06-05T23:17:44.3673574Z adding 'executorch/exir/dialects/_ops.py' 2025-06-05T23:17:44.3673932Z adding 'executorch/exir/dialects/backend/_ops.py' 2025-06-05T23:17:44.3674376Z adding 'executorch/exir/dialects/backend/test/test_backend_ops.py' 2025-06-05T23:17:44.3674888Z adding 'executorch/exir/dialects/edge/_ops.py' 2025-06-05T23:17:44.3675295Z adding 'executorch/exir/dialects/edge/edge.yaml' 2025-06-05T23:17:44.3675714Z adding 'executorch/exir/dialects/edge/arg/model.py' 2025-06-05T23:17:44.3676103Z adding 'executorch/exir/dialects/edge/arg/type.py' 2025-06-05T23:17:44.3676494Z adding 'executorch/exir/dialects/edge/dtype/runner.py' 2025-06-05T23:17:44.3676931Z adding 'executorch/exir/dialects/edge/dtype/supported.py' 2025-06-05T23:17:44.3677352Z adding 'executorch/exir/dialects/edge/dtype/utils.py' 2025-06-05T23:17:44.3677939Z adding 'executorch/exir/dialects/edge/op/api.py' 2025-06-05T23:17:44.3678341Z adding 'executorch/exir/dialects/edge/op/sample_input.py' 2025-06-05T23:17:44.3678790Z adding 'executorch/exir/dialects/edge/op/test/test_api.py' 2025-06-05T23:17:44.3679210Z adding 'executorch/exir/dialects/edge/spec/gen.py' 2025-06-05T23:17:44.3679596Z adding 'executorch/exir/dialects/edge/spec/utils.py' 2025-06-05T23:17:44.4643941Z adding 'executorch/exir/dialects/edge/test/test_edge_ops.py' 2025-06-05T23:17:44.4644720Z adding 'executorch/exir/dialects/edge/test/test_edge_yaml.py' 2025-06-05T23:17:44.4645470Z adding 'executorch/exir/dialects/test/test_exir_dialect_ops.py' 2025-06-05T23:17:44.4646070Z adding 'executorch/exir/emit/__init__.py' 2025-06-05T23:17:44.4646780Z adding 'executorch/exir/emit/_emit_program.py' 2025-06-05T23:17:44.4647279Z adding 'executorch/exir/emit/_emitter.py' 2025-06-05T23:17:44.4647618Z adding 'executorch/exir/emit/test/test_emit.py' 2025-06-05T23:17:44.4648063Z adding 'executorch/exir/operator/convert.py' 2025-06-05T23:17:44.4648529Z adding 'executorch/exir/operator/manip.py' 2025-06-05T23:17:44.4648869Z adding 'executorch/exir/operator/util.py' 2025-06-05T23:17:44.4649255Z adding 'executorch/exir/operator/test/test_operator.py' 2025-06-05T23:17:44.4649641Z adding 'executorch/exir/passes/__init__.py' 2025-06-05T23:17:44.4650109Z adding 'executorch/exir/passes/_quant_patterns_and_replacements.py' 2025-06-05T23:17:44.4650634Z adding 'executorch/exir/passes/const_prop_pass.py' 2025-06-05T23:17:44.4651208Z adding 'executorch/exir/passes/constant_prop_pass.py' 2025-06-05T23:17:44.4651647Z adding 'executorch/exir/passes/debug_handle_generator_pass.py' 2025-06-05T23:17:44.4652122Z adding 'executorch/exir/passes/dim_order_ops_registry.py' 2025-06-05T23:17:44.4652728Z adding 'executorch/exir/passes/dynamic_shape_prop_pass.py' 2025-06-05T23:17:44.4653249Z adding 'executorch/exir/passes/executorch_prim_ops_registry.py' 2025-06-05T23:17:44.4653730Z adding 'executorch/exir/passes/external_constants_pass.py' 2025-06-05T23:17:44.4654306Z adding 'executorch/exir/passes/init_mutable_pass.py' 2025-06-05T23:17:44.4654835Z adding 'executorch/exir/passes/insert_write_back_for_buffers_pass.py' 2025-06-05T23:17:44.4655415Z adding 'executorch/exir/passes/memory_format_ops_pass.py' 2025-06-05T23:17:44.4655910Z adding 'executorch/exir/passes/memory_planning_pass.py' 2025-06-05T23:17:44.4656736Z adding 'executorch/exir/passes/normalize_transpose_pass.py' 2025-06-05T23:17:44.4657340Z adding 'executorch/exir/passes/normalize_view_copy_base_pass.py' 2025-06-05T23:17:44.4657828Z adding 'executorch/exir/passes/pass_registry.py' 2025-06-05T23:17:44.4658399Z adding 'executorch/exir/passes/prune_empty_tensors_pass.py' 2025-06-05T23:17:44.4658838Z adding 'executorch/exir/passes/quant_fusion_pass.py' 2025-06-05T23:17:44.4659224Z adding 'executorch/exir/passes/quantize_io_pass.py' 2025-06-05T23:17:44.4659708Z adding 'executorch/exir/passes/remove_graph_asserts_pass.py' 2025-06-05T23:17:44.4660336Z adding 'executorch/exir/passes/remove_mixed_type_operators.py' 2025-06-05T23:17:44.4660777Z adding 'executorch/exir/passes/remove_noop_pass.py' 2025-06-05T23:17:44.4661226Z adding 'executorch/exir/passes/remove_unused_parameters_pass.py' 2025-06-05T23:17:44.4661764Z adding 'executorch/exir/passes/replace_aten_with_edge_pass.py' 2025-06-05T23:17:44.4662466Z adding 'executorch/exir/passes/replace_broken_ops_with_function_ops_pass.py' 2025-06-05T23:17:44.4663073Z adding 'executorch/exir/passes/replace_edge_with_backend_pass.py' 2025-06-05T23:17:44.4663547Z adding 'executorch/exir/passes/replace_sym_size_op_pass.py' 2025-06-05T23:17:44.4664096Z adding 'executorch/exir/passes/replace_view_copy_with_view_pass.py' 2025-06-05T23:17:44.4664731Z adding 'executorch/exir/passes/scalar_to_tensor_pass.py' 2025-06-05T23:17:44.4665144Z adding 'executorch/exir/passes/spec_prop_pass.py' 2025-06-05T23:17:44.4665539Z adding 'executorch/exir/passes/sym_shape_eval_pass.py' 2025-06-05T23:17:44.4665955Z adding 'executorch/exir/passes/sym_to_tensor_pass.py' 2025-06-05T23:17:44.4666392Z adding 'executorch/exir/passes/weights_to_outputs_pass.py' 2025-06-05T23:17:44.4666788Z adding 'executorch/exir/program/__init__.py' 2025-06-05T23:17:44.4667307Z adding 'executorch/exir/program/_fake_program.py' 2025-06-05T23:17:44.4667723Z adding 'executorch/exir/program/_program.py' 2025-06-05T23:17:44.4668095Z adding 'executorch/exir/program/test/__init__.py' 2025-06-05T23:17:44.4668508Z adding 'executorch/exir/program/test/test_fake_program.py' 2025-06-05T23:17:44.4668995Z adding 'executorch/exir/program/test/test_program.py' 2025-06-05T23:17:44.4669524Z adding 'executorch/exir/serde/__init__.py' 2025-06-05T23:17:44.4669891Z adding 'executorch/exir/serde/export_serialize.py' 2025-06-05T23:17:44.4670257Z adding 'executorch/exir/serde/schema.py' 2025-06-05T23:17:44.4670665Z adding 'executorch/exir/serde/schema_check.py' 2025-06-05T23:17:44.4671155Z adding 'executorch/exir/serde/serialize.py' 2025-06-05T23:17:44.4671483Z adding 'executorch/exir/serde/union.py' 2025-06-05T23:17:44.4671822Z adding 'executorch/exir/tests/asr_joiner.py' 2025-06-05T23:17:44.4672150Z adding 'executorch/exir/tests/common.py' 2025-06-05T23:17:44.4672662Z adding 'executorch/exir/tests/control_flow_models.py' 2025-06-05T23:17:44.4673080Z adding 'executorch/exir/tests/dynamic_shape_models.py' 2025-06-05T23:17:44.4673481Z adding 'executorch/exir/tests/models.py' 2025-06-05T23:17:44.4673853Z adding 'executorch/exir/tests/test_arg_validator.py' 2025-06-05T23:17:44.4674228Z adding 'executorch/exir/tests/test_capture.py' 2025-06-05T23:17:44.4674647Z adding 'executorch/exir/tests/test_common.py' 2025-06-05T23:17:44.4675050Z adding 'executorch/exir/tests/test_delegate.py' 2025-06-05T23:17:44.4675496Z adding 'executorch/exir/tests/test_dim_order_utils.py' 2025-06-05T23:17:44.4675952Z adding 'executorch/exir/tests/test_dynamic_shape_propagation.py' 2025-06-05T23:17:44.4676395Z adding 'executorch/exir/tests/test_error.py' 2025-06-05T23:17:44.4676760Z adding 'executorch/exir/tests/test_joint_graph.py' 2025-06-05T23:17:44.4677300Z adding 'executorch/exir/tests/test_memory_format_ops_pass.py' 2025-06-05T23:17:44.4678089Z adding 'executorch/exir/tests/test_memory_format_ops_pass_aten.py' 2025-06-05T23:17:44.4678608Z adding 'executorch/exir/tests/test_memory_format_ops_pass_utils.py' 2025-06-05T23:17:44.4679243Z adding 'executorch/exir/tests/test_memory_planning.py' 2025-06-05T23:17:44.4679716Z adding 'executorch/exir/tests/test_op_convert.py' 2025-06-05T23:17:44.4680181Z adding 'executorch/exir/tests/test_pass_infra.py' 2025-06-05T23:17:44.4680687Z adding 'executorch/exir/tests/test_passes.py' 2025-06-05T23:17:44.4681074Z adding 'executorch/exir/tests/test_print_program.py' 2025-06-05T23:17:44.4681522Z adding 'executorch/exir/tests/test_prune_empty_tensors_pass.py' 2025-06-05T23:17:44.4681972Z adding 'executorch/exir/tests/test_quant_fusion_pass.py' 2025-06-05T23:17:44.4682388Z adding 'executorch/exir/tests/test_quantization.py' 2025-06-05T23:17:44.4682783Z adding 'executorch/exir/tests/test_quantize_io_pass.py' 2025-06-05T23:17:44.4683265Z adding 'executorch/exir/tests/test_remove_unused_parameters_pass.py' 2025-06-05T23:17:44.4683790Z adding 'executorch/exir/tests/test_remove_view_copy.py' 2025-06-05T23:17:44.4684345Z adding 'executorch/exir/tests/test_serde.py' 2025-06-05T23:17:44.4684712Z adding 'executorch/exir/tests/test_tensor.py' 2025-06-05T23:17:44.4685063Z adding 'executorch/exir/tests/test_tracer.py' 2025-06-05T23:17:44.4685438Z adding 'executorch/exir/tests/test_verification.py' 2025-06-05T23:17:44.4685808Z adding 'executorch/exir/tests/test_warnings.py' 2025-06-05T23:17:44.4686172Z adding 'executorch/exir/tests/transformer.py' 2025-06-05T23:17:44.4686553Z adding 'executorch/exir/verification/arg_validator.py' 2025-06-05T23:17:44.4686956Z adding 'executorch/exir/verification/dev_html.py' 2025-06-05T23:17:44.4687345Z adding 'executorch/exir/verification/interpreter.py' 2025-06-05T23:17:44.4687798Z adding 'executorch/exir/verification/verifier.py' 2025-06-05T23:17:44.4688375Z adding 'executorch/exir/verification/test/test_verifier.py' 2025-06-05T23:17:44.4688801Z adding 'executorch/extension/export_util/__init__.py' 2025-06-05T23:17:44.4689204Z adding 'executorch/extension/export_util/utils.py' 2025-06-05T23:17:44.4689599Z adding 'executorch/extension/flat_tensor/__init__.py' 2025-06-05T23:17:44.4690051Z adding 'executorch/extension/flat_tensor/serialize/__init__.py' 2025-06-05T23:17:44.4690743Z adding 'executorch/extension/flat_tensor/serialize/flat_tensor.fbs' 2025-06-05T23:17:44.4691415Z adding 'executorch/extension/flat_tensor/serialize/flat_tensor_schema.py' 2025-06-05T23:17:44.4691978Z adding 'executorch/extension/flat_tensor/serialize/scalar_type.fbs' 2025-06-05T23:17:44.4692486Z adding 'executorch/extension/flat_tensor/serialize/serialize.py' 2025-06-05T23:17:44.4692989Z adding 'executorch/extension/flat_tensor/test/test_serialize.py' 2025-06-05T23:17:44.4693442Z adding 'executorch/extension/gguf_util/convert_main.py' 2025-06-05T23:17:44.4693861Z adding 'executorch/extension/gguf_util/converter.py' 2025-06-05T23:17:44.4694253Z adding 'executorch/extension/gguf_util/load_gguf.py' 2025-06-05T23:17:44.4694906Z adding 'executorch/extension/gguf_util/converters/llama_converter.py' 2025-06-05T23:17:44.4695519Z adding 'executorch/extension/llm/custom_ops/__init__.py' 2025-06-05T23:17:44.4695952Z adding 'executorch/extension/llm/custom_ops/custom_ops.py' 2025-06-05T23:17:44.4696462Z adding 'executorch/extension/llm/custom_ops/libcustom_ops_aot_lib.so' 2025-06-05T23:17:44.4696976Z adding 'executorch/extension/llm/custom_ops/model_sharding.py' 2025-06-05T23:17:44.4697476Z adding 'executorch/extension/llm/custom_ops/op_tile_crop_aot.py' 2025-06-05T23:17:44.4698095Z adding 'executorch/extension/llm/custom_ops/preprocess_custom_ops.py' 2025-06-05T23:17:44.4698720Z adding 'executorch/extension/llm/custom_ops/test_preprocess_custom_ops.py' 2025-06-05T23:17:44.4699285Z adding 'executorch/extension/llm/custom_ops/test_quantized_sdpa.py' 2025-06-05T23:17:44.4699820Z adding 'executorch/extension/llm/custom_ops/test_sdpa_with_kv_cache.py' 2025-06-05T23:17:44.4700361Z adding 'executorch/extension/llm/custom_ops/test_update_cache.py' 2025-06-05T23:17:44.4700934Z adding 'executorch/extension/llm/custom_ops/spinquant/special_hadamard_code_gen.py' 2025-06-05T23:17:44.4701795Z adding 'executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/example.py' 2025-06-05T23:17:44.4702558Z adding 'executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/gen.py' 2025-06-05T23:17:44.4703126Z adding 'executorch/extension/llm/export/__init__.py' 2025-06-05T23:17:44.4703526Z adding 'executorch/extension/llm/export/builder.py' 2025-06-05T23:17:44.4703936Z adding 'executorch/extension/llm/export/export_passes.py' 2025-06-05T23:17:44.4704393Z adding 'executorch/extension/llm/export/partitioner_lib.py' 2025-06-05T23:17:44.4704837Z adding 'executorch/extension/llm/export/quantizer_lib.py' 2025-06-05T23:17:44.4705400Z adding 'executorch/extension/llm/export/test_export_passes.py' 2025-06-05T23:17:44.4705897Z adding 'executorch/extension/llm/export/test/__init__.py' 2025-06-05T23:17:44.4706354Z adding 'executorch/extension/llm/export/test/test_builder.py' 2025-06-05T23:17:44.4706806Z adding 'executorch/extension/llm/modules/__init__.py' 2025-06-05T23:17:44.4707008Z adding 'executorch/extension/llm/modules/_position_embeddings.py' 2025-06-05T23:17:44.4707171Z adding 'executorch/extension/llm/modules/attention.py' 2025-06-05T23:17:44.4707367Z adding 'executorch/extension/llm/modules/kv_cache.py' 2025-06-05T23:17:44.4707653Z adding 'executorch/extension/llm/modules/test/__init__.py' 2025-06-05T23:17:44.4707852Z adding 'executorch/extension/llm/modules/test/test_attention.py' 2025-06-05T23:17:44.4708039Z adding 'executorch/extension/llm/modules/test/test_kv_cache.py' 2025-06-05T23:17:44.4708292Z adding 'executorch/extension/llm/modules/test/test_position_embeddings.py' 2025-06-05T23:17:44.4708440Z adding 'executorch/extension/llm/tokenizers/setup.py' 2025-06-05T23:17:44.4708739Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/__init__.py' 2025-06-05T23:17:45.0530786Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/constants.py' 2025-06-05T23:17:45.0531645Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/hf_tokenizer.py' 2025-06-05T23:17:45.0532393Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/llama2c.py' 2025-06-05T23:17:45.0533094Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tiktoken.py' 2025-06-05T23:17:45.0533836Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/__init__.py' 2025-06-05T23:17:45.0534636Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/__init__.py' 2025-06-05T23:17:45.0535530Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/convert.py' 2025-06-05T23:17:45.0536291Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/__init__.py' 2025-06-05T23:17:45.0536917Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/constants.py' 2025-06-05T23:17:45.0537547Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/hf_tokenizer.py' 2025-06-05T23:17:45.0538185Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/llama2c.py' 2025-06-05T23:17:45.0538789Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tiktoken.py' 2025-06-05T23:17:45.0539437Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/__init__.py' 2025-06-05T23:17:45.0540145Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/__init__.py' 2025-06-05T23:17:45.0540869Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/convert.py' 2025-06-05T23:17:45.0541509Z adding 'executorch/extension/llm/tokenizers/test/test_tiktoken.py' 2025-06-05T23:17:45.0542102Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/conanfile.py' 2025-06-05T23:17:45.0542778Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/create_lts.py' 2025-06-05T23:17:45.0543504Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/abseil.podspec.gen.py' 2025-06-05T23:17:45.0544610Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/copts.py' 2025-06-05T23:17:45.0545495Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/generate_copts.py' 2025-06-05T23:17:45.0546310Z adding 'executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts/check_structure.py' 2025-06-05T23:17:45.0547166Z adding 'executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl/filterbr.py' 2025-06-05T23:17:45.0548032Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate/amalgamate.py' 2025-06-05T23:17:45.0549030Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer/nlohmann-json.py' 2025-06-05T23:17:45.0549983Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis/generate_natvis.py' 2025-06-05T23:17:45.0550845Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/serve_header/serve_header.py' 2025-06-05T23:17:45.0551666Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateCommon.py' 2025-06-05T23:17:45.0552460Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateTest.py' 2025-06-05T23:17:45.0553270Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcd.py' 2025-06-05T23:17:45.0554040Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpHeader.py' 2025-06-05T23:17:45.0554825Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpTables.py' 2025-06-05T23:17:45.0555595Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateCommon.py' 2025-06-05T23:17:45.0556361Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateDates.py' 2025-06-05T23:17:45.0557214Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateRelease.py' 2025-06-05T23:17:45.0557919Z adding 'executorch/extension/llm/tokenizers/third-party/re2/benchlog/benchplot.py' 2025-06-05T23:17:45.0558723Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/re2.py' 2025-06-05T23:17:45.0559390Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/re2_test.py' 2025-06-05T23:17:45.0560007Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/setup.py' 2025-06-05T23:17:45.0560884Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/toolchains/generate.py' 2025-06-05T23:17:45.0561674Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_casefold.py' 2025-06-05T23:17:45.0562401Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_groups.py' 2025-06-05T23:17:45.0563227Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/unicode.py' 2025-06-05T23:17:45.0563923Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/setup.py' 2025-06-05T23:17:45.0564747Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/__init__.py' 2025-06-05T23:17:45.0565695Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/_version.py' 2025-06-05T23:17:45.0566888Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_model_pb2.py' 2025-06-05T23:17:45.0568108Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_pb2.py' 2025-06-05T23:17:45.0569047Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/__init__.py' 2025-06-05T23:17:45.0569891Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/sentencepiece_test.py' 2025-06-05T23:17:45.0570764Z adding 'executorch/extension/module/test/resources/gen_bundled_program.py' 2025-06-05T23:17:45.0571478Z adding 'executorch/extension/pybindings/_portable_lib.cpython-310-x86_64-linux-gnu.so' 2025-06-05T23:17:45.0572172Z adding 'executorch/extension/pybindings/portable_lib.py' 2025-06-05T23:17:45.0572678Z adding 'executorch/extension/pybindings/pybindings.pyi' 2025-06-05T23:17:45.0573129Z adding 'executorch/extension/pybindings/test/make_test.py' 2025-06-05T23:17:45.0573635Z adding 'executorch/extension/pybindings/test/test_backend_pybinding.py' 2025-06-05T23:17:45.0574188Z adding 'executorch/extension/pybindings/test/test_pybindings.py' 2025-06-05T23:17:45.0574737Z adding 'executorch/extension/pytree/__init__.py' 2025-06-05T23:17:45.0575244Z adding 'executorch/extension/pytree/test/test.py' 2025-06-05T23:17:45.0575695Z adding 'executorch/extension/training/__init__.py' 2025-06-05T23:17:45.0576157Z adding 'executorch/extension/training/examples/XOR/export_model.py' 2025-06-05T23:17:45.0576663Z adding 'executorch/extension/training/examples/XOR/model.py' 2025-06-05T23:17:45.0577346Z adding 'executorch/extension/training/examples/XOR/test/test_export.py' 2025-06-05T23:17:45.0578134Z adding 'executorch/extension/training/pybindings/_training_lib.pyi' 2025-06-05T23:17:45.0578678Z adding 'executorch/extension/training/pybindings/_training_module.py' 2025-06-05T23:17:45.0579212Z adding 'executorch/extension/training/pybindings/test/test.py' 2025-06-05T23:17:45.0579848Z adding 'executorch/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h' 2025-06-05T23:17:45.0580555Z adding 'executorch/include/executorch/extension/kernel_util/meta_programming.h' 2025-06-05T23:17:45.0581340Z adding 'executorch/include/executorch/extension/kernel_util/type_list.h' 2025-06-05T23:17:45.0581880Z adding 'executorch/include/executorch/extension/tensor/tensor.h' 2025-06-05T23:17:45.0582496Z adding 'executorch/include/executorch/extension/tensor/tensor_accessor.h' 2025-06-05T23:17:45.0583058Z adding 'executorch/include/executorch/extension/tensor/tensor_ptr.h' 2025-06-05T23:17:45.0583630Z adding 'executorch/include/executorch/extension/tensor/tensor_ptr_maker.h' 2025-06-05T23:17:45.0584247Z adding 'executorch/include/executorch/extension/threadpool/cpuinfo_utils.h' 2025-06-05T23:17:45.0584845Z adding 'executorch/include/executorch/extension/threadpool/threadpool.h' 2025-06-05T23:17:45.0585464Z adding 'executorch/include/executorch/extension/threadpool/threadpool_guard.h' 2025-06-05T23:17:45.0586024Z adding 'executorch/include/executorch/runtime/core/array_ref.h' 2025-06-05T23:17:45.0586556Z adding 'executorch/include/executorch/runtime/core/data_loader.h' 2025-06-05T23:17:45.0587184Z adding 'executorch/include/executorch/runtime/core/defines.h' 2025-06-05T23:17:45.0587707Z adding 'executorch/include/executorch/runtime/core/error.h' 2025-06-05T23:17:45.0588174Z adding 'executorch/include/executorch/runtime/core/evalue.h' 2025-06-05T23:17:45.0588659Z adding 'executorch/include/executorch/runtime/core/event_tracer.h' 2025-06-05T23:17:45.0589212Z adding 'executorch/include/executorch/runtime/core/event_tracer_hooks.h' 2025-06-05T23:17:45.0589822Z adding 'executorch/include/executorch/runtime/core/event_tracer_hooks_delegate.h' 2025-06-05T23:17:45.0590586Z adding 'executorch/include/executorch/runtime/core/freeable_buffer.h' 2025-06-05T23:17:45.0591166Z adding 'executorch/include/executorch/runtime/core/function_ref.h' 2025-06-05T23:17:45.0591799Z adding 'executorch/include/executorch/runtime/core/hierarchical_allocator.h' 2025-06-05T23:17:45.0592396Z adding 'executorch/include/executorch/runtime/core/memory_allocator.h' 2025-06-05T23:17:45.0592939Z adding 'executorch/include/executorch/runtime/core/named_data_map.h' 2025-06-05T23:17:45.0593485Z adding 'executorch/include/executorch/runtime/core/result.h' 2025-06-05T23:17:45.0594062Z adding 'executorch/include/executorch/runtime/core/span.h' 2025-06-05T23:17:45.0594557Z adding 'executorch/include/executorch/runtime/core/tag.h' 2025-06-05T23:17:45.0595039Z adding 'executorch/include/executorch/runtime/core/tensor_layout.h' 2025-06-05T23:17:45.0595616Z adding 'executorch/include/executorch/runtime/core/tensor_shape_dynamism.h' 2025-06-05T23:17:45.0596577Z adding 'executorch/include/executorch/runtime/core/exec_aten/exec_aten.h' 2025-06-05T23:17:45.0597391Z adding 'executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h' 2025-06-05T23:17:45.0598136Z adding 'executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h' 2025-06-05T23:17:45.0598821Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/dim_order_util.h' 2025-06-05T23:17:45.0599676Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h' 2025-06-05T23:17:46.2076985Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h' 2025-06-05T23:17:46.2078018Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h' 2025-06-05T23:17:46.2078804Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_util.h' 2025-06-05T23:17:46.2079516Z adding 'executorch/include/executorch/runtime/core/portable_type/bfloat16.h' 2025-06-05T23:17:46.2080260Z adding 'executorch/include/executorch/runtime/core/portable_type/bfloat16_math.h' 2025-06-05T23:17:46.2080980Z adding 'executorch/include/executorch/runtime/core/portable_type/bits_types.h' 2025-06-05T23:17:46.2081656Z adding 'executorch/include/executorch/runtime/core/portable_type/complex.h' 2025-06-05T23:17:46.2082298Z adding 'executorch/include/executorch/runtime/core/portable_type/device.h' 2025-06-05T23:17:46.2082912Z adding 'executorch/include/executorch/runtime/core/portable_type/half.h' 2025-06-05T23:17:46.2083562Z adding 'executorch/include/executorch/runtime/core/portable_type/optional.h' 2025-06-05T23:17:46.2084246Z adding 'executorch/include/executorch/runtime/core/portable_type/qint_types.h' 2025-06-05T23:17:46.2084911Z adding 'executorch/include/executorch/runtime/core/portable_type/scalar.h' 2025-06-05T23:17:46.2085595Z adding 'executorch/include/executorch/runtime/core/portable_type/scalar_type.h' 2025-06-05T23:17:46.2086296Z adding 'executorch/include/executorch/runtime/core/portable_type/string_view.h' 2025-06-05T23:17:46.2086981Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor.h' 2025-06-05T23:17:46.2087637Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor_impl.h' 2025-06-05T23:17:46.2088307Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor_options.h' 2025-06-05T23:17:46.2089076Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h' 2025-06-05T23:17:46.2089869Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h' 2025-06-05T23:17:46.2090694Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h' 2025-06-05T23:17:46.2091540Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h' 2025-06-05T23:17:46.2092343Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h' 2025-06-05T23:17:46.2093137Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h' 2025-06-05T23:17:46.2093900Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h' 2025-06-05T23:17:46.2094750Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h' 2025-06-05T23:17:46.2095636Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h' 2025-06-05T23:17:46.2096406Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h' 2025-06-05T23:17:46.2097319Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h' 2025-06-05T23:17:46.2098094Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h' 2025-06-05T23:17:46.2098895Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h' 2025-06-05T23:17:46.2099896Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h' 2025-06-05T23:17:46.2100626Z adding 'executorch/include/executorch/runtime/kernel/kernel_includes.h' 2025-06-05T23:17:46.2101245Z adding 'executorch/include/executorch/runtime/kernel/kernel_runtime_context.h' 2025-06-05T23:17:46.2101869Z adding 'executorch/include/executorch/runtime/kernel/operator_registry.h' 2025-06-05T23:17:46.2102493Z adding 'executorch/include/executorch/runtime/kernel/thread_parallel_interface.h' 2025-06-05T23:17:46.2103115Z adding 'executorch/include/executorch/runtime/kernel/test/test_util.h' 2025-06-05T23:17:46.2103640Z adding 'executorch/include/executorch/runtime/platform/abort.h' 2025-06-05T23:17:46.2104153Z adding 'executorch/include/executorch/runtime/platform/assert.h' 2025-06-05T23:17:46.2104650Z adding 'executorch/include/executorch/runtime/platform/clock.h' 2025-06-05T23:17:46.2105190Z adding 'executorch/include/executorch/runtime/platform/compat_unistd.h' 2025-06-05T23:17:46.2105756Z adding 'executorch/include/executorch/runtime/platform/compiler.h' 2025-06-05T23:17:46.2106255Z adding 'executorch/include/executorch/runtime/platform/log.h' 2025-06-05T23:17:46.2106767Z adding 'executorch/include/executorch/runtime/platform/platform.h' 2025-06-05T23:17:46.2107285Z adding 'executorch/include/executorch/runtime/platform/profiler.h' 2025-06-05T23:17:46.2107809Z adding 'executorch/include/executorch/runtime/platform/runtime.h' 2025-06-05T23:17:46.2108310Z adding 'executorch/include/executorch/runtime/platform/system.h' 2025-06-05T23:17:46.2108815Z adding 'executorch/include/executorch/runtime/platform/types.h' 2025-06-05T23:17:46.2109350Z adding 'executorch/include/executorch/runtime/platform/test/pal_spy.h' 2025-06-05T23:17:46.2109933Z adding 'executorch/include/executorch/runtime/platform/test/stub_platform.h' 2025-06-05T23:17:46.2110438Z adding 'executorch/kernels/quantized/__init__.py' 2025-06-05T23:17:46.2110880Z adding 'executorch/kernels/quantized/libquantized_ops_aot_lib.so' 2025-06-05T23:17:46.2111346Z adding 'executorch/kernels/quantized/quantized.yaml' 2025-06-05T23:17:46.2111826Z adding 'executorch/kernels/quantized/test/supported_features_def.yaml' 2025-06-05T23:17:46.2112360Z adding 'executorch/kernels/quantized/test/test_out_variants.py' 2025-06-05T23:17:46.2112911Z adding 'executorch/kernels/quantized/test/test_quant_dequant_per_token.py' 2025-06-05T23:17:46.2113367Z adding 'executorch/runtime/__init__.py' 2025-06-05T23:17:46.2113744Z adding 'executorch/runtime/kernel/test/functions.yaml' 2025-06-05T23:17:46.2114133Z adding 'executorch/runtime/test/test_runtime.py' 2025-06-05T23:17:46.2114492Z adding 'executorch/schema/program.fbs' 2025-06-05T23:17:46.2114813Z adding 'executorch/schema/scalar_type.fbs' 2025-06-05T23:17:46.2115206Z adding 'executorch/share/cmake/executorch-config.cmake' 2025-06-05T23:17:46.2115625Z adding 'executorch/util/activation_memory_profiler.py' 2025-06-05T23:17:46.2116010Z adding 'executorch/util/collect_env.py' 2025-06-05T23:17:46.2116347Z adding 'executorch/util/python_profiler.py' 2025-06-05T23:17:46.2116762Z adding 'executorch-0.7.0a0+bd57234.dist-info/licenses/LICENSE' 2025-06-05T23:17:46.2117219Z adding 'executorch-0.7.0a0+bd57234.dist-info/METADATA' 2025-06-05T23:17:46.2117617Z adding 'executorch-0.7.0a0+bd57234.dist-info/WHEEL' 2025-06-05T23:17:46.2118181Z adding 'executorch-0.7.0a0+bd57234.dist-info/entry_points.txt' 2025-06-05T23:17:46.2118648Z adding 'executorch-0.7.0a0+bd57234.dist-info/top_level.txt' 2025-06-05T23:17:46.2119083Z adding 'executorch-0.7.0a0+bd57234.dist-info/RECORD' 2025-06-05T23:17:46.2119463Z removing pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:17:46.2120132Z Building wheel for executorch (pyproject.toml) ... [?25l[?25hdone 2025-06-05T23:17:46.2121102Z Created wheel for executorch: filename=executorch-0.7.0a0+bd57234-cp310-cp310-linux_x86_64.whl size=9987128 sha256=bb3f8633f5e6c65b11204d284454aa562c17f0a2611676eae91c954a07d3ce09 2025-06-05T23:17:46.2122487Z Stored in directory: /tmp/pip-ephem-wheel-cache-wqhlrl3c/wheels/9e/f0/2b/6a778c77421b91e006bef425e288a1e5c7c35b04c51317756b 2025-06-05T23:17:46.2123176Z Successfully built executorch 2025-06-05T23:17:46.2123961Z Installing collected packages: flatbuffers, tabulate, pyaml, protobuf, execnet, pytest, cattrs, pytest-xdist, pytest-rerunfailures, coremltools, executorch 2025-06-05T23:17:46.2124851Z [?25l 2025-06-05T23:17:46.2125215Z  changing mode of /opt/conda/envs/py_3.10/bin/tabulate to 755 2025-06-05T23:17:46.2125501Z 2025-06-05T23:17:46.2125733Z  changing mode of /opt/conda/envs/py_3.10/bin/pyaml to 755 2025-06-05T23:17:46.2126018Z 2025-06-05T23:17:46.2126361Z  ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:17:46.2126807Z  Attempting uninstall: pytest 2025-06-05T23:17:46.2127303Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:17:46.2127802Z  Found existing installation: pytest 7.2.0 2025-06-05T23:17:46.2128330Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:17:46.2128777Z  Uninstalling pytest-7.2.0: 2025-06-05T23:17:46.2129255Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:17:46.2129849Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:17:46.2130396Z  Removing file or directory /opt/conda/envs/py_3.10/bin/py.test 2025-06-05T23:17:46.2130981Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:17:46.2131522Z  Removing file or directory /opt/conda/envs/py_3.10/bin/pytest 2025-06-05T23:17:46.2132089Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:17:46.2132868Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/__pycache__/py.cpython-310.pyc 2025-06-05T23:17:46.2133671Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:17:46.2134258Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:17:46.2135018Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/_pytest/ 2025-06-05T23:17:46.2135697Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:17:50.5990721Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/py.py 2025-06-05T23:17:50.5991866Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:17:50.5992882Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pytest-7.2.0.dist-info/ 2025-06-05T23:17:50.5994062Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:17:50.5995015Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pytest/ 2025-06-05T23:17:50.5995704Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:17:50.5996356Z  Successfully uninstalled pytest-7.2.0 2025-06-05T23:17:50.5996880Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:17:50.5997593Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:17:50.5998264Z  changing mode of /opt/conda/envs/py_3.10/bin/py.test to 755 2025-06-05T23:17:50.5999049Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:17:50.5999609Z  changing mode of /opt/conda/envs/py_3.10/bin/pytest to 755 2025-06-05T23:17:50.6000384Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:17:50.6001140Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:17:50.6001837Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:17:50.6002580Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:17:50.6003271Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:17:50.6004018Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:17:50.6004678Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:17:50.6005509Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:17:50.6006259Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:17:50.6006962Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:17:50.6007730Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:17:50.6008373Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:17:50.6009142Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:17:50.6009852Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:17:50.6010512Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:17:50.6011236Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:17:50.6012017Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:17:50.6012939Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:17:50.6013644Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:17:50.6014433Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:17:50.6015282Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:17:50.6016004Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:17:50.6016688Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:17:50.6017520Z  changing mode of /opt/conda/envs/py_3.10/bin/flatc to 755 2025-06-05T23:17:50.6018251Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:17:50.6018897Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11/11 [executorch] 2025-06-05T23:17:50.6019445Z [?25h 2025-06-05T23:17:50.6020761Z Successfully installed cattrs-25.1.1 coremltools-8.3.0 execnet-2.1.1 executorch-0.7.0a0+bd57234 flatbuffers-25.2.10 protobuf-6.31.1 pyaml-25.5.0 pytest-8.4.0 pytest-rerunfailures-15.1 pytest-xdist-3.7.0 tabulate-0.9.0 2025-06-05T23:17:50.6021981Z + pip list 2025-06-05T23:17:50.6022287Z Package Version Build Editable project location 2025-06-05T23:17:50.6022839Z ----------------------------- ------------------ ----- ----------------------------------- 2025-06-05T23:17:50.6023362Z aiohappyeyeballs 2.6.1 2025-06-05T23:17:50.6023679Z aiohttp 3.12.9 2025-06-05T23:17:50.6023970Z aiosignal 1.3.2 2025-06-05T23:17:50.6024412Z alabaster 0.7.16 2025-06-05T23:17:50.6024717Z antlr4-python3-runtime 4.9.3 2025-06-05T23:17:50.6025054Z async-timeout 5.0.1 2025-06-05T23:17:50.6025317Z attrs 25.3.0 2025-06-05T23:17:50.6025694Z babel 2.17.0 2025-06-05T23:17:50.6025963Z beautifulsoup4 4.13.4 2025-06-05T23:17:50.6026282Z blobfile 3.0.0 2025-06-05T23:17:50.6026557Z breathe 4.34.0 2025-06-05T23:17:50.6026941Z bs4 0.0.2 2025-06-05T23:17:50.6027208Z cattrs 25.1.1 2025-06-05T23:17:50.6027492Z certifi 2025.4.26 2025-06-05T23:17:50.6027805Z charset-normalizer 3.4.2 2025-06-05T23:17:50.6028149Z cmake 3.31.6 2025-06-05T23:17:50.6028458Z contourpy 1.3.2 2025-06-05T23:17:50.6028729Z coremltools 8.3.0 2025-06-05T23:17:50.6029030Z coverage 7.8.2 2025-06-05T23:17:50.6029506Z cycler 0.12.1 2025-06-05T23:17:50.6029775Z datasets 3.6.0 2025-06-05T23:17:50.6030138Z dill 0.3.8 2025-06-05T23:17:50.6030449Z docutils 0.16 2025-06-05T23:17:50.6030804Z exceptiongroup 1.3.0 2025-06-05T23:17:50.6031071Z execnet 2.1.1 2025-06-05T23:17:50.6031403Z executorch 0.7.0a0+bd57234 2025-06-05T23:17:50.6031718Z exhale 0.2.3 2025-06-05T23:17:50.6032076Z expecttest 0.1.6 2025-06-05T23:17:50.6032338Z filelock 3.18.0 2025-06-05T23:17:50.6032653Z flatbuffers 25.2.10 2025-06-05T23:17:50.6032999Z fonttools 4.58.1 2025-06-05T23:17:50.6033353Z frozenlist 1.6.2 2025-06-05T23:17:50.6033673Z fsspec 2025.3.0 2025-06-05T23:17:50.6033980Z hf_transfer 0.1.9 2025-06-05T23:17:50.6034310Z hf-xet 1.1.3 2025-06-05T23:17:50.6034656Z huggingface-hub 0.32.4 2025-06-05T23:17:50.6034946Z hypothesis 6.84.2 2025-06-05T23:17:50.6035246Z idna 3.10 2025-06-05T23:17:50.6035570Z imagesize 1.4.1 2025-06-05T23:17:50.6035915Z iniconfig 2.1.0 2025-06-05T23:17:50.6036176Z Jinja2 3.1.6 2025-06-05T23:17:50.6036487Z kagglehub 0.3.12 2025-06-05T23:17:50.6036785Z kiwisolver 1.4.8 2025-06-05T23:17:50.6037156Z lxml 5.4.0 2025-06-05T23:18:19.4294513Z markdown-it-py 2.2.0 2025-06-05T23:18:19.4294901Z MarkupSafe 3.0.2 2025-06-05T23:18:19.4295290Z matplotlib 3.10.3 2025-06-05T23:18:19.4295589Z mdit-py-plugins 0.3.5 2025-06-05T23:18:19.4295863Z mdurl 0.1.2 2025-06-05T23:18:19.4296133Z mpmath 1.3.0 2025-06-05T23:18:19.4296427Z multidict 6.4.4 2025-06-05T23:18:19.4296708Z multiprocess 0.70.16 2025-06-05T23:18:19.4297009Z myst-parser 0.18.1 2025-06-05T23:18:19.4297300Z networkx 3.4.2 2025-06-05T23:18:19.4297569Z numpy 2.2.6 2025-06-05T23:18:19.4297839Z nvidia-cublas-cu12 12.1.3.1 2025-06-05T23:18:19.4298148Z nvidia-cuda-cupti-cu12 12.1.105 2025-06-05T23:18:19.4298445Z nvidia-cuda-nvrtc-cu12 12.1.105 2025-06-05T23:18:19.4298777Z nvidia-cuda-runtime-cu12 12.1.105 2025-06-05T23:18:19.4299072Z nvidia-cudnn-cu12 9.1.0.70 2025-06-05T23:18:19.4299427Z nvidia-cufft-cu12 11.0.2.54 2025-06-05T23:18:19.4299723Z nvidia-curand-cu12 10.3.2.106 2025-06-05T23:18:19.4300038Z nvidia-cusolver-cu12 11.4.5.107 2025-06-05T23:18:19.4300348Z nvidia-cusparse-cu12 12.1.0.106 2025-06-05T23:18:19.4300655Z nvidia-nccl-cu12 2.20.5 2025-06-05T23:18:19.4300960Z nvidia-nvjitlink-cu12 12.9.41 2025-06-05T23:18:19.4301247Z nvidia-nvtx-cu12 12.1.105 2025-06-05T23:18:19.4301543Z omegaconf 2.3.0 2025-06-05T23:18:19.4301809Z packaging 25.0 2025-06-05T23:18:19.4302102Z pandas 2.2.3 2025-06-05T23:18:19.4302369Z parameterized 0.9.0 2025-06-05T23:18:19.4302652Z pillow 11.2.1 2025-06-05T23:18:19.4302971Z pip 25.1 2025-06-05T23:18:19.4303240Z pluggy 1.6.0 2025-06-05T23:18:19.4303504Z propcache 0.3.1 2025-06-05T23:18:19.4303779Z protobuf 6.31.1 2025-06-05T23:18:19.4304041Z psutil 7.0.0 2025-06-05T23:18:19.4304313Z pyaml 25.5.0 2025-06-05T23:18:19.4304573Z pyarrow 20.0.0 2025-06-05T23:18:19.4304853Z pycryptodomex 3.23.0 2025-06-05T23:18:19.4305121Z Pygments 2.19.1 2025-06-05T23:18:19.4305638Z pyparsing 3.2.3 2025-06-05T23:18:19.4305914Z pytest 8.4.0 2025-06-05T23:18:19.4306287Z pytest-cov 4.1.0 2025-06-05T23:18:19.4306630Z pytest-rerunfailures 15.1 2025-06-05T23:18:19.4306906Z pytest-xdist 3.7.0 2025-06-05T23:18:19.4307204Z python-dateutil 2.9.0.post0 2025-06-05T23:18:19.4307632Z pytorch_sphinx_theme 0.0.24 /opt/conda/src/pytorch-sphinx-theme 2025-06-05T23:18:19.4308080Z pytorch_tokenizers 0.1.0 2025-06-05T23:18:19.4308352Z pytz 2025.2 2025-06-05T23:18:19.4308627Z PyYAML 6.0.1 2025-06-05T23:18:19.4308890Z regex 2024.11.6 2025-06-05T23:18:19.4309174Z requests 2.32.3 2025-06-05T23:18:19.4309456Z ruamel.yaml 0.17.32 2025-06-05T23:18:19.4309729Z ruamel.yaml.clib 0.2.12 2025-06-05T23:18:19.4310021Z safetensors 0.5.3 2025-06-05T23:18:19.4310289Z sentencepiece 0.2.0 2025-06-05T23:18:19.4310572Z setuptools 78.1.1 2025-06-05T23:18:19.4310832Z six 1.17.0 2025-06-05T23:18:19.4311107Z snowballstemmer 3.0.1 2025-06-05T23:18:19.4311380Z sortedcontainers 2.4.0 2025-06-05T23:18:19.4311662Z soupsieve 2.7 2025-06-05T23:18:19.4311935Z Sphinx 5.3.0 2025-06-05T23:18:19.4312201Z sphinx-copybutton 0.5.0 2025-06-05T23:18:19.4312485Z sphinx_design 0.4.1 2025-06-05T23:18:19.4312753Z sphinx-gallery 0.14.0 2025-06-05T23:18:19.4313039Z sphinx_reredirects 0.1.4 2025-06-05T23:18:19.4313329Z sphinxcontrib-applehelp 2.0.0 2025-06-05T23:18:19.4313631Z sphinxcontrib-devhelp 2.0.0 2025-06-05T23:18:19.4313920Z sphinxcontrib-htmlhelp 2.1.0 2025-06-05T23:18:19.4314217Z sphinxcontrib-jsmath 1.0.1 2025-06-05T23:18:19.4314505Z sphinxcontrib-qthelp 2.0.0 2025-06-05T23:18:19.4314812Z sphinxcontrib-serializinghtml 2.0.0 2025-06-05T23:18:19.4315112Z sympy 1.14.0 2025-06-05T23:18:19.4315373Z tabulate 0.9.0 2025-06-05T23:18:19.4315642Z tiktoken 0.9.0 2025-06-05T23:18:19.4315894Z timm 1.0.7 2025-06-05T23:18:19.4316162Z tokenizers 0.21.1 2025-06-05T23:18:19.4322562Z tomli 2.0.1 2025-06-05T23:18:19.4323041Z torch 2.8.0a0+git5616fa4 2025-06-05T23:18:19.4323436Z torchao 0.12.0+gitbc68b11 2025-06-05T23:18:19.4323780Z torchaudio 2.6.0a0+1a8f621 2025-06-05T23:18:19.4324116Z torchdata 0.11.0 2025-06-05T23:18:19.4324423Z torchsr 1.0.4 2025-06-05T23:18:19.4324690Z torchtune 0.6.1 2025-06-05T23:18:19.4325048Z torchvision 0.22.0a0+966da7e 2025-06-05T23:18:19.4325366Z tqdm 4.67.1 2025-06-05T23:18:19.4325699Z transformers 4.47.1 2025-06-05T23:18:19.4326018Z triton 3.0.0 1 2025-06-05T23:18:19.4326339Z typing_extensions 4.14.0 2025-06-05T23:18:19.4326677Z tzdata 2025.2 2025-06-05T23:18:19.4326976Z urllib3 2.4.0 2025-06-05T23:18:19.4327298Z wheel 0.45.1 2025-06-05T23:18:19.4327554Z xxhash 3.5.0 2025-06-05T23:18:19.4327823Z yarl 1.20.0 2025-06-05T23:18:19.4328138Z zstd 1.5.5.1 2025-06-05T23:18:19.4328450Z + .ci/scripts/setup-arm-baremetal-tools.sh 2025-06-05T23:18:19.4328938Z [main] Using root dir /pytorch/executorch/examples/arm/ethos-u-scratch 2025-06-05T23:18:19.4329374Z [setup_fvp] Downloading FVP corstone300... 2025-06-05T23:18:19.4329806Z % Total % Received % Xferd Average Speed Time Time Time Current 2025-06-05T23:18:19.4330458Z Dload Upload Total Spent Left Speed 2025-06-05T23:18:19.4330721Z 2025-06-05T23:18:19.4330931Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-06-05T23:18:19.4331316Z 4 80.1M 4 4006k 0 0 6783k 0 0:00:12 --:--:-- 0:00:12 6779k 2025-06-05T23:18:19.4331728Z 63 80.1M 63 50.9M 0 0 32.2M 0 0:00:02 0:00:01 0:00:01 32.2M 2025-06-05T23:18:19.4332133Z 100 80.1M 100 80.1M 0 0 34.0M 0 0:00:02 0:00:02 --:--:-- 34.0M 2025-06-05T23:18:19.4332557Z [setup_fvp] Installing FVP corstone300... 2025-06-05T23:18:19.4332898Z [setup_fvp] Downloading FVP corstone320... 2025-06-05T23:18:19.4333312Z % Total % Received % Xferd Average Speed Time Time Time Current 2025-06-05T23:18:19.4333764Z Dload Upload Total Spent Left Speed 2025-06-05T23:18:19.4334008Z 2025-06-05T23:18:19.4334131Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-06-05T23:18:19.4334521Z 12 113M 12 13.6M 0 0 14.2M 0 0:00:07 --:--:-- 0:00:07 14.2M 2025-06-05T23:18:19.4334925Z 51 113M 51 58.6M 0 0 29.2M 0 0:00:03 0:00:02 0:00:01 29.2M 2025-06-05T23:18:19.4335387Z 90 113M 90 102M 0 0 34.5M 0 0:00:03 0:00:02 0:00:01 34.5M 2025-06-05T23:18:19.4335804Z 100 113M 100 113M 0 0 35.6M 0 0:00:03 0:00:03 --:--:-- 35.7M 2025-06-05T23:18:19.4336223Z [setup_fvp] Installing FVP corstone320... 2025-06-05T23:18:19.4336580Z [setup_toolchain] Downloading toolchain ... 2025-06-05T23:18:19.4337001Z % Total % Received % Xferd Average Speed Time Time Time Current 2025-06-05T23:18:19.4337461Z Dload Upload Total Spent Left Speed 2025-06-05T23:18:19.4337706Z 2025-06-05T23:18:19.4337839Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-06-05T23:18:19.4338210Z 0 140M 0 239k 0 0 350k 0 0:06:49 --:--:-- 0:06:49 350k 2025-06-05T23:18:19.4338613Z 9 140M 9 13.6M 0 0 8148k 0 0:00:17 0:00:01 0:00:16 8148k 2025-06-05T23:18:19.4338999Z 19 140M 19 28.0M 0 0 10.3M 0 0:00:13 0:00:02 0:00:11 10.3M 2025-06-05T23:18:19.4339394Z 30 140M 30 42.5M 0 0 11.5M 0 0:00:12 0:00:03 0:00:09 11.5M 2025-06-05T23:18:19.4339786Z 39 140M 39 56.0M 0 0 12.0M 0 0:00:11 0:00:04 0:00:07 12.0M 2025-06-05T23:18:19.4340164Z 51 140M 51 71.9M 0 0 12.6M 0 0:00:11 0:00:05 0:00:06 14.2M 2025-06-05T23:18:19.4340555Z 60 140M 60 85.3M 0 0 12.7M 0 0:00:11 0:00:06 0:00:05 14.4M 2025-06-05T23:18:19.4340940Z 74 140M 74 104M 0 0 13.5M 0 0:00:10 0:00:07 0:00:03 15.2M 2025-06-05T23:18:19.4341341Z 87 140M 87 122M 0 0 14.1M 0 0:00:09 0:00:08 0:00:01 16.0M 2025-06-05T23:18:19.4341738Z 100 140M 100 140M 0 0 14.6M 0 0:00:09 0:00:09 --:--:-- 17.0M 2025-06-05T23:18:19.4342131Z [setup_toolchain] Installing toolchain ... 2025-06-05T23:18:19.4342713Z /pytorch/executorch/examples/arm/ethos-u-scratch /pytorch/executorch/examples/arm/ethos-u-scratch 2025-06-05T23:18:19.4343340Z Cloning into 'reference_model'... 2025-06-05T23:18:19.4343866Z remote: Enumerating objects: 11605, done. 2025-06-05T23:18:19.4344233Z remote: Counting objects: 1% (1/84) 2025-06-05T23:18:19.4344598Z remote: Counting objects: 2% (2/84) 2025-06-05T23:18:19.4344949Z remote: Counting objects: 3% (3/84) 2025-06-05T23:18:19.4345310Z remote: Counting objects: 4% (4/84) 2025-06-05T23:18:19.4345668Z remote: Counting objects: 5% (5/84) 2025-06-05T23:18:19.4346012Z remote: Counting objects: 7% (6/84) 2025-06-05T23:18:19.4346366Z remote: Counting objects: 8% (7/84) 2025-06-05T23:18:19.4346708Z remote: Counting objects: 9% (8/84) 2025-06-05T23:18:19.4347061Z remote: Counting objects: 10% (9/84) 2025-06-05T23:18:19.4347410Z remote: Counting objects: 11% (10/84) 2025-06-05T23:18:19.4347893Z remote: Counting objects: 13% (11/84) 2025-06-05T23:18:19.4348241Z remote: Counting objects: 14% (12/84) 2025-06-05T23:18:19.4348664Z remote: Counting objects: 15% (13/84) 2025-06-05T23:18:19.4349018Z remote: Counting objects: 16% (14/84) 2025-06-05T23:18:19.4349379Z remote: Counting objects: 17% (15/84) 2025-06-05T23:18:19.4349738Z remote: Counting objects: 19% (16/84) 2025-06-05T23:18:19.4350088Z remote: Counting objects: 20% (17/84) 2025-06-05T23:18:19.4350449Z remote: Counting objects: 21% (18/84) 2025-06-05T23:18:19.4350799Z remote: Counting objects: 22% (19/84) 2025-06-05T23:18:19.4351164Z remote: Counting objects: 23% (20/84) 2025-06-05T23:18:19.4351515Z remote: Counting objects: 25% (21/84) 2025-06-05T23:18:19.4351879Z remote: Counting objects: 26% (22/84) 2025-06-05T23:18:19.4352227Z remote: Counting objects: 27% (23/84) 2025-06-05T23:18:19.4352590Z remote: Counting objects: 28% (24/84) 2025-06-05T23:18:19.4352956Z remote: Counting objects: 29% (25/84) 2025-06-05T23:18:19.4353308Z remote: Counting objects: 30% (26/84) 2025-06-05T23:18:19.4353672Z remote: Counting objects: 32% (27/84) 2025-06-05T23:18:19.4354019Z remote: Counting objects: 33% (28/84) 2025-06-05T23:18:19.4354381Z remote: Counting objects: 34% (29/84) 2025-06-05T23:18:19.4354729Z remote: Counting objects: 35% (30/84) 2025-06-05T23:18:19.4355093Z remote: Counting objects: 36% (31/84) 2025-06-05T23:18:19.4355439Z remote: Counting objects: 38% (32/84) 2025-06-05T23:18:19.4355799Z remote: Counting objects: 39% (33/84) 2025-06-05T23:18:19.4356161Z remote: Counting objects: 40% (34/84) 2025-06-05T23:18:19.4356545Z remote: Counting objects: 41% (35/84) 2025-06-05T23:18:19.4356944Z remote: Counting objects: 42% (36/84) 2025-06-05T23:18:19.4357295Z remote: Counting objects: 44% (37/84) 2025-06-05T23:18:19.4357656Z remote: Counting objects: 45% (38/84) 2025-06-05T23:18:19.4358006Z remote: Counting objects: 46% (39/84) 2025-06-05T23:18:19.4358370Z remote: Counting objects: 47% (40/84) 2025-06-05T23:18:19.4358722Z remote: Counting objects: 48% (41/84) 2025-06-05T23:18:19.4359083Z remote: Counting objects: 50% (42/84) 2025-06-05T23:18:19.4359443Z remote: Counting objects: 51% (43/84) 2025-06-05T23:18:19.4359790Z remote: Counting objects: 52% (44/84) 2025-06-05T23:18:19.4360153Z remote: Counting objects: 53% (45/84) 2025-06-05T23:18:19.4360501Z remote: Counting objects: 54% (46/84) 2025-06-05T23:18:19.4360861Z remote: Counting objects: 55% (47/84) 2025-06-05T23:18:19.4361211Z remote: Counting objects: 57% (48/84) 2025-06-05T23:18:19.4361576Z remote: Counting objects: 58% (49/84) 2025-06-05T23:18:19.9272028Z remote: Counting objects: 59% (50/84) 2025-06-05T23:18:19.9272709Z remote: Counting objects: 60% (51/84) 2025-06-05T23:18:19.9273355Z remote: Counting objects: 61% (52/84) 2025-06-05T23:18:19.9273993Z remote: Counting objects: 63% (53/84) 2025-06-05T23:18:19.9274668Z remote: Counting objects: 64% (54/84) 2025-06-05T23:18:19.9275321Z remote: Counting objects: 65% (55/84) 2025-06-05T23:18:19.9276003Z remote: Counting objects: 66% (56/84) 2025-06-05T23:18:19.9276587Z remote: Counting objects: 67% (57/84) 2025-06-05T23:18:19.9277178Z remote: Counting objects: 69% (58/84) 2025-06-05T23:18:19.9277918Z remote: Counting objects: 70% (59/84) 2025-06-05T23:18:19.9278573Z remote: Counting objects: 71% (60/84) 2025-06-05T23:18:19.9279168Z remote: Counting objects: 72% (61/84) 2025-06-05T23:18:19.9279812Z remote: Counting objects: 73% (62/84) 2025-06-05T23:18:19.9280440Z remote: Counting objects: 75% (63/84) 2025-06-05T23:18:19.9281093Z remote: Counting objects: 76% (64/84) 2025-06-05T23:18:19.9281753Z remote: Counting objects: 77% (65/84) 2025-06-05T23:18:19.9282376Z remote: Counting objects: 78% (66/84) 2025-06-05T23:18:19.9283020Z remote: Counting objects: 79% (67/84) 2025-06-05T23:18:19.9283917Z remote: Counting objects: 80% (68/84) 2025-06-05T23:18:19.9284507Z remote: Counting objects: 82% (69/84) 2025-06-05T23:18:19.9285262Z remote: Counting objects: 83% (70/84) 2025-06-05T23:18:19.9285911Z remote: Counting objects: 84% (71/84) 2025-06-05T23:18:19.9286572Z remote: Counting objects: 85% (72/84) 2025-06-05T23:18:19.9287142Z remote: Counting objects: 86% (73/84) 2025-06-05T23:18:19.9287751Z remote: Counting objects: 88% (74/84) 2025-06-05T23:18:19.9288353Z remote: Counting objects: 89% (75/84) 2025-06-05T23:18:19.9288955Z remote: Counting objects: 90% (76/84) 2025-06-05T23:18:19.9289572Z remote: Counting objects: 91% (77/84) 2025-06-05T23:18:19.9290207Z remote: Counting objects: 92% (78/84) 2025-06-05T23:18:19.9290830Z remote: Counting objects: 94% (79/84) 2025-06-05T23:18:19.9291387Z remote: Counting objects: 95% (80/84) 2025-06-05T23:18:19.9291808Z remote: Counting objects: 96% (81/84) 2025-06-05T23:18:19.9292285Z remote: Counting objects: 97% (82/84) 2025-06-05T23:18:19.9292673Z remote: Counting objects: 98% (83/84) 2025-06-05T23:18:19.9293026Z remote: Counting objects: 100% (84/84) 2025-06-05T23:18:19.9293428Z remote: Counting objects: 100% (84/84), done. 2025-06-05T23:18:19.9293822Z remote: Compressing objects: 2% (1/37) 2025-06-05T23:18:19.9294210Z remote: Compressing objects: 5% (2/37) 2025-06-05T23:18:19.9294580Z remote: Compressing objects: 8% (3/37) 2025-06-05T23:18:19.9295015Z remote: Compressing objects: 10% (4/37) 2025-06-05T23:18:19.9295697Z remote: Compressing objects: 13% (5/37) 2025-06-05T23:18:19.9296265Z remote: Compressing objects: 16% (6/37) 2025-06-05T23:18:19.9296901Z remote: Compressing objects: 18% (7/37) 2025-06-05T23:18:19.9297510Z remote: Compressing objects: 21% (8/37) 2025-06-05T23:18:19.9298168Z remote: Compressing objects: 24% (9/37) 2025-06-05T23:18:19.9298832Z remote: Compressing objects: 27% (10/37) 2025-06-05T23:18:19.9299512Z remote: Compressing objects: 29% (11/37) 2025-06-05T23:18:19.9300161Z remote: Compressing objects: 32% (12/37) 2025-06-05T23:18:19.9300803Z remote: Compressing objects: 35% (13/37) 2025-06-05T23:18:19.9301454Z remote: Compressing objects: 37% (14/37) 2025-06-05T23:18:19.9302101Z remote: Compressing objects: 40% (15/37) 2025-06-05T23:18:19.9302745Z remote: Compressing objects: 43% (16/37) 2025-06-05T23:18:19.9303354Z remote: Compressing objects: 45% (17/37) 2025-06-05T23:18:19.9304031Z remote: Compressing objects: 48% (18/37) 2025-06-05T23:18:19.9304715Z remote: Compressing objects: 51% (19/37) 2025-06-05T23:18:19.9305340Z remote: Compressing objects: 54% (20/37) 2025-06-05T23:18:19.9305995Z remote: Compressing objects: 56% (21/37) 2025-06-05T23:18:19.9306650Z remote: Compressing objects: 59% (22/37) 2025-06-05T23:18:19.9307283Z remote: Compressing objects: 62% (23/37) 2025-06-05T23:18:19.9307960Z remote: Compressing objects: 64% (24/37) 2025-06-05T23:18:19.9308649Z remote: Compressing objects: 67% (25/37) 2025-06-05T23:18:19.9309243Z remote: Compressing objects: 70% (26/37) 2025-06-05T23:18:19.9309921Z remote: Compressing objects: 72% (27/37) 2025-06-05T23:18:19.9310570Z remote: Compressing objects: 75% (28/37) 2025-06-05T23:18:19.9311169Z remote: Compressing objects: 78% (29/37) 2025-06-05T23:18:19.9311823Z remote: Compressing objects: 81% (30/37) 2025-06-05T23:18:19.9312497Z remote: Compressing objects: 83% (31/37) 2025-06-05T23:18:19.9313153Z remote: Compressing objects: 86% (32/37) 2025-06-05T23:18:19.9313834Z remote: Compressing objects: 89% (33/37) 2025-06-05T23:18:19.9314432Z remote: Compressing objects: 91% (34/37) 2025-06-05T23:18:19.9315092Z remote: Compressing objects: 94% (35/37) 2025-06-05T23:18:19.9315726Z remote: Compressing objects: 97% (36/37) 2025-06-05T23:18:19.9316389Z remote: Compressing objects: 100% (37/37) 2025-06-05T23:18:19.9317067Z remote: Compressing objects: 100% (37/37), done. 2025-06-05T23:18:19.9317833Z Receiving objects: 0% (1/11605) 2025-06-05T23:18:19.9318329Z Receiving objects: 1% (117/11605) 2025-06-05T23:18:19.9318822Z Receiving objects: 2% (233/11605) 2025-06-05T23:18:19.9319437Z Receiving objects: 3% (349/11605) 2025-06-05T23:18:19.9319936Z Receiving objects: 4% (465/11605) 2025-06-05T23:18:19.9320419Z Receiving objects: 5% (581/11605) 2025-06-05T23:18:19.9320932Z Receiving objects: 6% (697/11605) 2025-06-05T23:18:19.9321403Z Receiving objects: 7% (813/11605) 2025-06-05T23:18:19.9321889Z Receiving objects: 8% (929/11605) 2025-06-05T23:18:19.9322381Z Receiving objects: 9% (1045/11605) 2025-06-05T23:18:19.9322841Z Receiving objects: 10% (1161/11605) 2025-06-05T23:18:19.9323326Z Receiving objects: 11% (1277/11605) 2025-06-05T23:18:19.9323826Z Receiving objects: 12% (1393/11605) 2025-06-05T23:18:19.9324258Z Receiving objects: 13% (1509/11605) 2025-06-05T23:18:19.9324770Z Receiving objects: 14% (1625/11605) 2025-06-05T23:18:19.9325197Z Receiving objects: 15% (1741/11605) 2025-06-05T23:18:19.9325709Z Receiving objects: 16% (1857/11605) 2025-06-05T23:18:19.9326191Z Receiving objects: 17% (1973/11605) 2025-06-05T23:18:19.9326694Z Receiving objects: 18% (2089/11605) 2025-06-05T23:18:19.9327157Z Receiving objects: 19% (2205/11605) 2025-06-05T23:18:19.9327602Z Receiving objects: 20% (2321/11605) 2025-06-05T23:18:19.9328090Z Receiving objects: 21% (2438/11605) 2025-06-05T23:18:19.9328567Z Receiving objects: 22% (2554/11605) 2025-06-05T23:18:19.9329058Z Receiving objects: 23% (2670/11605) 2025-06-05T23:18:19.9329480Z Receiving objects: 24% (2786/11605) 2025-06-05T23:18:19.9329952Z Receiving objects: 25% (2902/11605) 2025-06-05T23:18:19.9330434Z Receiving objects: 26% (3018/11605) 2025-06-05T23:18:19.9330897Z Receiving objects: 27% (3134/11605) 2025-06-05T23:18:19.9331363Z Receiving objects: 28% (3250/11605) 2025-06-05T23:18:19.9331851Z Receiving objects: 29% (3366/11605) 2025-06-05T23:18:19.9332332Z Receiving objects: 30% (3482/11605) 2025-06-05T23:18:19.9332814Z Receiving objects: 31% (3598/11605) 2025-06-05T23:18:19.9333294Z Receiving objects: 32% (3714/11605) 2025-06-05T23:18:19.9333780Z Receiving objects: 33% (3830/11605) 2025-06-05T23:18:19.9334234Z Receiving objects: 34% (3946/11605) 2025-06-05T23:18:19.9334707Z Receiving objects: 35% (4062/11605) 2025-06-05T23:18:19.9335212Z Receiving objects: 36% (4178/11605) 2025-06-05T23:18:19.9335696Z Receiving objects: 37% (4294/11605) 2025-06-05T23:18:19.9336187Z Receiving objects: 38% (4410/11605) 2025-06-05T23:18:19.9336623Z Receiving objects: 39% (4526/11605) 2025-06-05T23:18:19.9337127Z Receiving objects: 40% (4642/11605) 2025-06-05T23:18:19.9337633Z Receiving objects: 41% (4759/11605) 2025-06-05T23:18:19.9338106Z Receiving objects: 42% (4875/11605) 2025-06-05T23:18:19.9338610Z Receiving objects: 43% (4991/11605) 2025-06-05T23:18:19.9339090Z Receiving objects: 44% (5107/11605) 2025-06-05T23:18:19.9339576Z Receiving objects: 45% (5223/11605) 2025-06-05T23:18:19.9340040Z Receiving objects: 46% (5339/11605) 2025-06-05T23:18:19.9340522Z Receiving objects: 47% (5455/11605) 2025-06-05T23:18:19.9341015Z Receiving objects: 48% (5571/11605) 2025-06-05T23:18:19.9341475Z Receiving objects: 49% (5687/11605) 2025-06-05T23:18:19.9341959Z Receiving objects: 50% (5803/11605) 2025-06-05T23:18:19.9342467Z Receiving objects: 51% (5919/11605) 2025-06-05T23:18:19.9342918Z Receiving objects: 52% (6035/11605) 2025-06-05T23:18:19.9343390Z Receiving objects: 53% (6151/11605) 2025-06-05T23:18:19.9343861Z Receiving objects: 54% (6267/11605) 2025-06-05T23:18:19.9344339Z Receiving objects: 55% (6383/11605) 2025-06-05T23:18:19.9344828Z Receiving objects: 56% (6499/11605) 2025-06-05T23:18:19.9345287Z Receiving objects: 57% (6615/11605) 2025-06-05T23:18:19.9345786Z Receiving objects: 58% (6731/11605) 2025-06-05T23:18:19.9346281Z Receiving objects: 59% (6847/11605) 2025-06-05T23:18:19.9346756Z Receiving objects: 60% (6963/11605) 2025-06-05T23:18:19.9347157Z Receiving objects: 61% (7080/11605) 2025-06-05T23:18:19.9347608Z Receiving objects: 62% (7196/11605) 2025-06-05T23:18:19.9348062Z Receiving objects: 63% (7312/11605) 2025-06-05T23:18:19.9348341Z Receiving objects: 64% (7428/11605) 2025-06-05T23:18:19.9348696Z Receiving objects: 65% (7544/11605) 2025-06-05T23:18:19.9348973Z Receiving objects: 66% (7660/11605) 2025-06-05T23:18:19.9349263Z Receiving objects: 67% (7776/11605) 2025-06-05T23:18:19.9349540Z Receiving objects: 68% (7892/11605) 2025-06-05T23:18:19.9349831Z Receiving objects: 69% (8008/11605) 2025-06-05T23:18:19.9350115Z Receiving objects: 70% (8124/11605) 2025-06-05T23:18:19.9350407Z Receiving objects: 71% (8240/11605) 2025-06-05T23:18:19.9350693Z Receiving objects: 72% (8356/11605) 2025-06-05T23:18:19.9351098Z Receiving objects: 73% (8472/11605) 2025-06-05T23:18:19.9351433Z Receiving objects: 74% (8588/11605) 2025-06-05T23:18:19.9351707Z Receiving objects: 75% (8704/11605) 2025-06-05T23:18:19.9351992Z Receiving objects: 76% (8820/11605) 2025-06-05T23:18:19.9352266Z Receiving objects: 77% (8936/11605) 2025-06-05T23:18:19.9352559Z Receiving objects: 78% (9052/11605) 2025-06-05T23:18:19.9352832Z Receiving objects: 79% (9168/11605) 2025-06-05T23:18:19.9353123Z Receiving objects: 80% (9284/11605) 2025-06-05T23:18:19.9353397Z Receiving objects: 81% (9401/11605) 2025-06-05T23:18:19.9353688Z Receiving objects: 82% (9517/11605) 2025-06-05T23:18:19.9353974Z Receiving objects: 83% (9633/11605) 2025-06-05T23:18:19.9354247Z Receiving objects: 84% (9749/11605) 2025-06-05T23:18:19.9354536Z Receiving objects: 85% (9865/11605) 2025-06-05T23:18:19.9354911Z Receiving objects: 86% (9981/11605) 2025-06-05T23:18:19.9355239Z Receiving objects: 87% (10097/11605) 2025-06-05T23:18:19.9355522Z Receiving objects: 88% (10213/11605) 2025-06-05T23:18:19.9355814Z Receiving objects: 89% (10329/11605) 2025-06-05T23:18:19.9356093Z Receiving objects: 90% (10445/11605) 2025-06-05T23:18:19.9356381Z Receiving objects: 91% (10561/11605) 2025-06-05T23:18:19.9356672Z Receiving objects: 92% (10677/11605) 2025-06-05T23:18:19.9356951Z Receiving objects: 93% (10793/11605) 2025-06-05T23:18:19.9357244Z Receiving objects: 94% (10909/11605) 2025-06-05T23:18:19.9357579Z Receiving objects: 95% (11025/11605) 2025-06-05T23:18:19.9357924Z Receiving objects: 96% (11141/11605) 2025-06-05T23:18:19.9358258Z Receiving objects: 97% (11257/11605) 2025-06-05T23:18:19.9358547Z Receiving objects: 98% (11373/11605) 2025-06-05T23:18:19.9358823Z Receiving objects: 99% (11489/11605) 2025-06-05T23:18:19.9359415Z remote: Total 11605 (delta 48), reused 76 (delta 45), pack-reused 11521 (from 1) 2025-06-05T23:18:19.9359859Z Receiving objects: 100% (11605/11605) 2025-06-05T23:18:19.9360240Z Receiving objects: 100% (11605/11605), 4.02 MiB | 9.43 MiB/s, done. 2025-06-05T23:18:19.9360636Z Resolving deltas: 0% (0/9212) 2025-06-05T23:18:19.9360908Z Resolving deltas: 1% (93/9212) 2025-06-05T23:18:19.9361188Z Resolving deltas: 2% (185/9212) 2025-06-05T23:18:19.9361551Z Resolving deltas: 3% (277/9212) 2025-06-05T23:18:19.9361915Z Resolving deltas: 4% (369/9212) 2025-06-05T23:18:19.9362271Z Resolving deltas: 5% (461/9212) 2025-06-05T23:18:19.9362551Z Resolving deltas: 6% (553/9212) 2025-06-05T23:18:19.9362824Z Resolving deltas: 7% (645/9212) 2025-06-05T23:18:19.9363106Z Resolving deltas: 8% (737/9212) 2025-06-05T23:18:19.9363385Z Resolving deltas: 9% (830/9212) 2025-06-05T23:18:19.9363649Z Resolving deltas: 10% (922/9212) 2025-06-05T23:18:19.9363930Z Resolving deltas: 11% (1014/9212) 2025-06-05T23:18:19.9364204Z Resolving deltas: 12% (1106/9212) 2025-06-05T23:18:19.9364490Z Resolving deltas: 13% (1198/9212) 2025-06-05T23:18:19.9364760Z Resolving deltas: 14% (1290/9212) 2025-06-05T23:18:19.9365043Z Resolving deltas: 15% (1382/9212) 2025-06-05T23:18:19.9365311Z Resolving deltas: 16% (1474/9212) 2025-06-05T23:18:19.9365594Z Resolving deltas: 17% (1567/9212) 2025-06-05T23:18:19.9365864Z Resolving deltas: 18% (1659/9212) 2025-06-05T23:18:19.9366148Z Resolving deltas: 19% (1751/9212) 2025-06-05T23:18:19.9366433Z Resolving deltas: 20% (1843/9212) 2025-06-05T23:18:19.9366826Z Resolving deltas: 21% (1935/9212) 2025-06-05T23:18:19.9367112Z Resolving deltas: 22% (2027/9212) 2025-06-05T23:18:19.9367440Z Resolving deltas: 23% (2119/9212) 2025-06-05T23:18:19.9367726Z Resolving deltas: 24% (2211/9212) 2025-06-05T23:18:19.9367996Z Resolving deltas: 25% (2304/9212) 2025-06-05T23:18:19.9368282Z Resolving deltas: 26% (2396/9212) 2025-06-05T23:18:19.9368552Z Resolving deltas: 27% (2488/9212) 2025-06-05T23:18:19.9368834Z Resolving deltas: 28% (2580/9212) 2025-06-05T23:18:19.9369118Z Resolving deltas: 29% (2672/9212) 2025-06-05T23:18:19.9369386Z Resolving deltas: 30% (2764/9212) 2025-06-05T23:18:20.3980685Z Resolving deltas: 31% (2856/9212) 2025-06-05T23:18:20.3981481Z Resolving deltas: 32% (2948/9212) 2025-06-05T23:18:20.3981959Z Resolving deltas: 33% (3040/9212) 2025-06-05T23:18:20.3982274Z Resolving deltas: 34% (3133/9212) 2025-06-05T23:18:20.3982657Z Resolving deltas: 35% (3225/9212) 2025-06-05T23:18:20.3982959Z Resolving deltas: 36% (3317/9212) 2025-06-05T23:18:20.3983342Z Resolving deltas: 37% (3409/9212) 2025-06-05T23:18:20.3983610Z Resolving deltas: 38% (3501/9212) 2025-06-05T23:18:20.3983905Z Resolving deltas: 39% (3593/9212) 2025-06-05T23:18:20.3984381Z Resolving deltas: 40% (3685/9212) 2025-06-05T23:18:20.3984647Z Resolving deltas: 41% (3777/9212) 2025-06-05T23:18:20.3984926Z Resolving deltas: 42% (3871/9212) 2025-06-05T23:18:20.3985192Z Resolving deltas: 43% (3962/9212) 2025-06-05T23:18:20.3985471Z Resolving deltas: 44% (4054/9212) 2025-06-05T23:18:20.3985793Z Resolving deltas: 45% (4146/9212) 2025-06-05T23:18:20.3986073Z Resolving deltas: 46% (4238/9212) 2025-06-05T23:18:20.3986339Z Resolving deltas: 47% (4330/9212) 2025-06-05T23:18:20.3986661Z Resolving deltas: 48% (4422/9212) 2025-06-05T23:18:20.3986945Z Resolving deltas: 49% (4514/9212) 2025-06-05T23:18:20.3987213Z Resolving deltas: 50% (4606/9212) 2025-06-05T23:18:20.3987496Z Resolving deltas: 51% (4699/9212) 2025-06-05T23:18:20.3987766Z Resolving deltas: 52% (4791/9212) 2025-06-05T23:18:20.3988058Z Resolving deltas: 53% (4883/9212) 2025-06-05T23:18:20.3988326Z Resolving deltas: 54% (4975/9212) 2025-06-05T23:18:20.3988610Z Resolving deltas: 55% (5067/9212) 2025-06-05T23:18:20.3988878Z Resolving deltas: 56% (5159/9212) 2025-06-05T23:18:20.3989157Z Resolving deltas: 57% (5251/9212) 2025-06-05T23:18:20.3989422Z Resolving deltas: 58% (5343/9212) 2025-06-05T23:18:20.3989701Z Resolving deltas: 59% (5436/9212) 2025-06-05T23:18:20.3989981Z Resolving deltas: 60% (5528/9212) 2025-06-05T23:18:20.3990248Z Resolving deltas: 61% (5620/9212) 2025-06-05T23:18:20.3990527Z Resolving deltas: 62% (5712/9212) 2025-06-05T23:18:20.3990795Z Resolving deltas: 63% (5804/9212) 2025-06-05T23:18:20.3991075Z Resolving deltas: 64% (5896/9212) 2025-06-05T23:18:20.3991342Z Resolving deltas: 65% (5988/9212) 2025-06-05T23:18:20.3991623Z Resolving deltas: 66% (6080/9212) 2025-06-05T23:18:20.3991891Z Resolving deltas: 67% (6173/9212) 2025-06-05T23:18:20.3992170Z Resolving deltas: 68% (6265/9212) 2025-06-05T23:18:20.3992443Z Resolving deltas: 69% (6357/9212) 2025-06-05T23:18:20.3992722Z Resolving deltas: 70% (6449/9212) 2025-06-05T23:18:20.3993004Z Resolving deltas: 71% (6541/9212) 2025-06-05T23:18:20.3993270Z Resolving deltas: 72% (6633/9212) 2025-06-05T23:18:20.3993550Z Resolving deltas: 73% (6725/9212) 2025-06-05T23:18:20.3993813Z Resolving deltas: 74% (6817/9212) 2025-06-05T23:18:20.3994091Z Resolving deltas: 75% (6909/9212) 2025-06-05T23:18:20.3994356Z Resolving deltas: 76% (7002/9212) 2025-06-05T23:18:20.3994634Z Resolving deltas: 77% (7094/9212) 2025-06-05T23:18:20.3994898Z Resolving deltas: 78% (7186/9212) 2025-06-05T23:18:20.3995344Z Resolving deltas: 79% (7278/9212) 2025-06-05T23:18:20.3995627Z Resolving deltas: 80% (7370/9212) 2025-06-05T23:18:20.3995895Z Resolving deltas: 81% (7462/9212) 2025-06-05T23:18:20.3996229Z Resolving deltas: 82% (7554/9212) 2025-06-05T23:18:20.3996545Z Resolving deltas: 83% (7646/9212) 2025-06-05T23:18:20.3996826Z Resolving deltas: 84% (7739/9212) 2025-06-05T23:18:20.3997379Z Resolving deltas: 85% (7831/9212) 2025-06-05T23:18:20.3997660Z Resolving deltas: 86% (7923/9212) 2025-06-05T23:18:20.3998026Z Resolving deltas: 87% (8015/9212) 2025-06-05T23:18:20.3998306Z Resolving deltas: 88% (8107/9212) 2025-06-05T23:18:20.3998571Z Resolving deltas: 89% (8199/9212) 2025-06-05T23:18:20.3998850Z Resolving deltas: 90% (8291/9212) 2025-06-05T23:18:20.3999129Z Resolving deltas: 91% (8383/9212) 2025-06-05T23:18:20.3999395Z Resolving deltas: 92% (8476/9212) 2025-06-05T23:18:20.3999675Z Resolving deltas: 93% (8568/9212) 2025-06-05T23:18:20.3999942Z Resolving deltas: 94% (8660/9212) 2025-06-05T23:18:20.4000221Z Resolving deltas: 95% (8752/9212) 2025-06-05T23:18:20.4000489Z Resolving deltas: 96% (8844/9212) 2025-06-05T23:18:20.4000767Z Resolving deltas: 97% (8936/9212) 2025-06-05T23:18:20.4001034Z Resolving deltas: 98% (9028/9212) 2025-06-05T23:18:20.4001315Z Resolving deltas: 99% (9120/9212) 2025-06-05T23:18:20.4001583Z Resolving deltas: 100% (9212/9212) 2025-06-05T23:18:20.4001882Z Resolving deltas: 100% (9212/9212), done. 2025-06-05T23:18:20.4002533Z Submodule 'thirdparty/doctest' (https://github.com/doctest/doctest.git) registered for path 'thirdparty/doctest' 2025-06-05T23:18:20.4003433Z Submodule 'thirdparty/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'thirdparty/eigen' 2025-06-05T23:18:20.4004263Z Submodule 'thirdparty/json' (https://github.com/nlohmann/json.git) registered for path 'thirdparty/json' 2025-06-05T23:18:20.4005144Z Submodule 'thirdparty/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'thirdparty/pybind11' 2025-06-05T23:18:20.4006208Z Submodule 'thirdparty/serialization_lib' (https://review.mlplatform.org/tosa/serialization_lib) registered for path 'thirdparty/serialization_lib' 2025-06-05T23:18:20.4007390Z Submodule 'thirdparty/specification' (https://review.mlplatform.org/tosa/specification) registered for path 'thirdparty/specification' 2025-06-05T23:18:20.4008383Z Cloning into '/pytorch/executorch/examples/arm/ethos-u-scratch/reference_model/thirdparty/doctest'... 2025-06-05T23:18:20.4008982Z remote: Enumerating objects: 13364, done. 2025-06-05T23:18:20.4009354Z remote: Counting objects: 0% (1/3714) 2025-06-05T23:18:20.4009697Z remote: Counting objects: 1% (38/3714) 2025-06-05T23:18:20.4010053Z remote: Counting objects: 2% (75/3714) 2025-06-05T23:18:20.4010395Z remote: Counting objects: 3% (112/3714) 2025-06-05T23:18:20.4010752Z remote: Counting objects: 4% (149/3714) 2025-06-05T23:18:20.4011109Z remote: Counting objects: 5% (186/3714) 2025-06-05T23:18:20.4011449Z remote: Counting objects: 6% (223/3714) 2025-06-05T23:18:20.4011804Z remote: Counting objects: 7% (260/3714) 2025-06-05T23:18:20.4012142Z remote: Counting objects: 8% (298/3714) 2025-06-05T23:18:20.4012499Z remote: Counting objects: 9% (335/3714) 2025-06-05T23:18:20.4012836Z remote: Counting objects: 10% (372/3714) 2025-06-05T23:18:20.4013195Z remote: Counting objects: 11% (409/3714) 2025-06-05T23:18:20.4013543Z remote: Counting objects: 12% (446/3714) 2025-06-05T23:18:20.4013882Z remote: Counting objects: 13% (483/3714) 2025-06-05T23:18:20.4014232Z remote: Counting objects: 14% (520/3714) 2025-06-05T23:18:20.4014566Z remote: Counting objects: 15% (558/3714) 2025-06-05T23:18:20.4014913Z remote: Counting objects: 16% (595/3714) 2025-06-05T23:18:20.4015535Z remote: Counting objects: 17% (632/3714) 2025-06-05T23:18:20.4015884Z remote: Counting objects: 18% (669/3714) 2025-06-05T23:18:20.4016288Z remote: Counting objects: 19% (706/3714) 2025-06-05T23:18:20.4016691Z remote: Counting objects: 20% (743/3714) 2025-06-05T23:18:20.4017038Z remote: Counting objects: 21% (780/3714) 2025-06-05T23:18:20.4017432Z remote: Counting objects: 22% (818/3714) 2025-06-05T23:18:20.4017777Z remote: Counting objects: 23% (855/3714) 2025-06-05T23:18:20.4018227Z remote: Counting objects: 24% (892/3714) 2025-06-05T23:18:20.4018573Z remote: Counting objects: 25% (929/3714) 2025-06-05T23:18:20.4018976Z remote: Counting objects: 26% (966/3714) 2025-06-05T23:18:20.4019484Z remote: Counting objects: 27% (1003/3714) 2025-06-05T23:18:20.4019842Z remote: Counting objects: 28% (1040/3714) 2025-06-05T23:18:20.4020279Z remote: Counting objects: 29% (1078/3714) 2025-06-05T23:18:20.4020634Z remote: Counting objects: 30% (1115/3714) 2025-06-05T23:18:20.4021050Z remote: Counting objects: 31% (1152/3714) 2025-06-05T23:18:20.4021406Z remote: Counting objects: 32% (1189/3714) 2025-06-05T23:18:20.4021750Z remote: Counting objects: 33% (1226/3714) 2025-06-05T23:18:20.4022103Z remote: Counting objects: 34% (1263/3714) 2025-06-05T23:18:20.4022455Z remote: Counting objects: 35% (1300/3714) 2025-06-05T23:18:20.4022795Z remote: Counting objects: 36% (1338/3714) 2025-06-05T23:18:20.4023152Z remote: Counting objects: 37% (1375/3714) 2025-06-05T23:18:20.4023489Z remote: Counting objects: 38% (1412/3714) 2025-06-05T23:18:20.4023845Z remote: Counting objects: 39% (1449/3714) 2025-06-05T23:18:20.4024187Z remote: Counting objects: 40% (1486/3714) 2025-06-05T23:18:20.4024536Z remote: Counting objects: 41% (1523/3714) 2025-06-05T23:18:20.4024879Z remote: Counting objects: 42% (1560/3714) 2025-06-05T23:18:20.4025232Z remote: Counting objects: 43% (1598/3714) 2025-06-05T23:18:20.4025583Z remote: Counting objects: 44% (1635/3714) 2025-06-05T23:18:20.4025924Z remote: Counting objects: 45% (1672/3714) 2025-06-05T23:18:20.4026404Z remote: Counting objects: 46% (1709/3714) 2025-06-05T23:18:20.4026752Z remote: Counting objects: 47% (1746/3714) 2025-06-05T23:18:20.4027157Z remote: Counting objects: 48% (1783/3714) 2025-06-05T23:18:20.4027542Z remote: Counting objects: 49% (1820/3714) 2025-06-05T23:18:20.4027896Z remote: Counting objects: 50% (1857/3714) 2025-06-05T23:18:20.4028291Z remote: Counting objects: 51% (1895/3714) 2025-06-05T23:18:20.4028644Z remote: Counting objects: 52% (1932/3714) 2025-06-05T23:18:20.4028993Z remote: Counting objects: 53% (1969/3714) 2025-06-05T23:18:20.4029332Z remote: Counting objects: 54% (2006/3714) 2025-06-05T23:18:20.4029683Z remote: Counting objects: 55% (2043/3714) 2025-06-05T23:18:20.4030018Z remote: Counting objects: 56% (2080/3714) 2025-06-05T23:18:20.4030370Z remote: Counting objects: 57% (2117/3714) 2025-06-05T23:18:20.4030709Z remote: Counting objects: 58% (2155/3714) 2025-06-05T23:18:20.4031192Z remote: Counting objects: 59% (2192/3714) 2025-06-05T23:18:20.4031589Z remote: Counting objects: 60% (2229/3714) 2025-06-05T23:18:20.4031973Z remote: Counting objects: 61% (2266/3714) 2025-06-05T23:18:20.4032325Z remote: Counting objects: 62% (2303/3714) 2025-06-05T23:18:20.4032720Z remote: Counting objects: 63% (2340/3714) 2025-06-05T23:18:20.4033076Z remote: Counting objects: 64% (2377/3714) 2025-06-05T23:18:20.4033418Z remote: Counting objects: 65% (2415/3714) 2025-06-05T23:18:20.4033765Z remote: Counting objects: 66% (2452/3714) 2025-06-05T23:18:20.4034102Z remote: Counting objects: 67% (2489/3714) 2025-06-05T23:18:20.4034452Z remote: Counting objects: 68% (2526/3714) 2025-06-05T23:18:20.4034800Z remote: Counting objects: 69% (2563/3714) 2025-06-05T23:18:20.4035140Z remote: Counting objects: 70% (2600/3714) 2025-06-05T23:18:20.4035488Z remote: Counting objects: 71% (2637/3714) 2025-06-05T23:18:20.4035946Z remote: Counting objects: 72% (2675/3714) 2025-06-05T23:18:20.4036348Z remote: Counting objects: 73% (2712/3714) 2025-06-05T23:18:20.4036833Z remote: Counting objects: 74% (2749/3714) 2025-06-05T23:18:20.4037201Z remote: Counting objects: 75% (2786/3714) 2025-06-05T23:18:20.4037681Z remote: Counting objects: 76% (2823/3714) 2025-06-05T23:18:20.4038093Z remote: Counting objects: 77% (2860/3714) 2025-06-05T23:18:20.4038446Z remote: Counting objects: 78% (2897/3714) 2025-06-05T23:18:20.4038788Z remote: Counting objects: 79% (2935/3714) 2025-06-05T23:18:20.4039146Z remote: Counting objects: 80% (2972/3714) 2025-06-05T23:18:20.4039484Z remote: Counting objects: 81% (3009/3714) 2025-06-05T23:18:20.4039837Z remote: Counting objects: 82% (3046/3714) 2025-06-05T23:18:20.4040176Z remote: Counting objects: 83% (3083/3714) 2025-06-05T23:18:20.4040647Z remote: Counting objects: 84% (3120/3714) 2025-06-05T23:18:20.4041044Z remote: Counting objects: 85% (3157/3714) 2025-06-05T23:18:20.4041385Z remote: Counting objects: 86% (3195/3714) 2025-06-05T23:18:20.4041735Z remote: Counting objects: 87% (3232/3714) 2025-06-05T23:18:20.4042081Z remote: Counting objects: 88% (3269/3714) 2025-06-05T23:18:20.4042432Z remote: Counting objects: 89% (3306/3714) 2025-06-05T23:18:20.4042774Z remote: Counting objects: 90% (3343/3714) 2025-06-05T23:18:20.4043123Z remote: Counting objects: 91% (3380/3714) 2025-06-05T23:18:20.4043464Z remote: Counting objects: 92% (3417/3714) 2025-06-05T23:18:20.4043817Z remote: Counting objects: 93% (3455/3714) 2025-06-05T23:18:20.4044170Z remote: Counting objects: 94% (3492/3714) 2025-06-05T23:18:20.5823992Z remote: Counting objects: 95% (3529/3714) 2025-06-05T23:18:20.5824779Z remote: Counting objects: 96% (3566/3714) 2025-06-05T23:18:20.5825157Z remote: Counting objects: 97% (3603/3714) 2025-06-05T23:18:20.5825535Z remote: Counting objects: 98% (3640/3714) 2025-06-05T23:18:20.5825952Z remote: Counting objects: 99% (3677/3714) 2025-06-05T23:18:20.5826526Z remote: Counting objects: 100% (3714/3714) 2025-06-05T23:18:20.5827129Z remote: Counting objects: 100% (3714/3714), done. 2025-06-05T23:18:20.5827531Z remote: Compressing objects: 0% (1/399) 2025-06-05T23:18:20.5827907Z remote: Compressing objects: 1% (4/399) 2025-06-05T23:18:20.5828254Z remote: Compressing objects: 2% (8/399) 2025-06-05T23:18:20.5828617Z remote: Compressing objects: 3% (12/399) 2025-06-05T23:18:20.5828966Z remote: Compressing objects: 4% (16/399) 2025-06-05T23:18:20.5829325Z remote: Compressing objects: 5% (20/399) 2025-06-05T23:18:20.5829675Z remote: Compressing objects: 6% (24/399) 2025-06-05T23:18:20.5830033Z remote: Compressing objects: 7% (28/399) 2025-06-05T23:18:20.5830390Z remote: Compressing objects: 8% (32/399) 2025-06-05T23:18:20.5830738Z remote: Compressing objects: 9% (36/399) 2025-06-05T23:18:20.5831092Z remote: Compressing objects: 10% (40/399) 2025-06-05T23:18:20.5831435Z remote: Compressing objects: 11% (44/399) 2025-06-05T23:18:20.5831794Z remote: Compressing objects: 12% (48/399) 2025-06-05T23:18:20.5832140Z remote: Compressing objects: 13% (52/399) 2025-06-05T23:18:20.5832496Z remote: Compressing objects: 14% (56/399) 2025-06-05T23:18:20.5832837Z remote: Compressing objects: 15% (60/399) 2025-06-05T23:18:20.5833197Z remote: Compressing objects: 16% (64/399) 2025-06-05T23:18:20.5833553Z remote: Compressing objects: 17% (68/399) 2025-06-05T23:18:20.5833894Z remote: Compressing objects: 18% (72/399) 2025-06-05T23:18:20.5834252Z remote: Compressing objects: 19% (76/399) 2025-06-05T23:18:20.5834596Z remote: Compressing objects: 20% (80/399) 2025-06-05T23:18:20.5834949Z remote: Compressing objects: 21% (84/399) 2025-06-05T23:18:20.5835294Z remote: Compressing objects: 22% (88/399) 2025-06-05T23:18:20.5835653Z remote: Compressing objects: 23% (92/399) 2025-06-05T23:18:20.5836000Z remote: Compressing objects: 24% (96/399) 2025-06-05T23:18:20.5836606Z remote: Compressing objects: 25% (100/399) 2025-06-05T23:18:20.5837067Z remote: Compressing objects: 26% (104/399) 2025-06-05T23:18:20.5837454Z remote: Compressing objects: 27% (108/399) 2025-06-05T23:18:20.5837818Z remote: Compressing objects: 28% (112/399) 2025-06-05T23:18:20.5838166Z remote: Compressing objects: 29% (116/399) 2025-06-05T23:18:20.5838526Z remote: Compressing objects: 30% (120/399) 2025-06-05T23:18:20.5838872Z remote: Compressing objects: 31% (124/399) 2025-06-05T23:18:20.5839232Z remote: Compressing objects: 32% (128/399) 2025-06-05T23:18:20.5839589Z remote: Compressing objects: 33% (132/399) 2025-06-05T23:18:20.5839937Z remote: Compressing objects: 34% (136/399) 2025-06-05T23:18:20.5840294Z remote: Compressing objects: 35% (140/399) 2025-06-05T23:18:20.5840640Z remote: Compressing objects: 36% (144/399) 2025-06-05T23:18:20.5841005Z remote: Compressing objects: 37% (148/399) 2025-06-05T23:18:20.5841353Z remote: Compressing objects: 38% (152/399) 2025-06-05T23:18:20.5841719Z remote: Compressing objects: 39% (156/399) 2025-06-05T23:18:20.5842066Z remote: Compressing objects: 40% (160/399) 2025-06-05T23:18:20.5842429Z remote: Compressing objects: 41% (164/399) 2025-06-05T23:18:20.5842789Z remote: Compressing objects: 42% (168/399) 2025-06-05T23:18:20.5843139Z remote: Compressing objects: 43% (172/399) 2025-06-05T23:18:20.5843498Z remote: Compressing objects: 44% (176/399) 2025-06-05T23:18:20.5843844Z remote: Compressing objects: 45% (180/399) 2025-06-05T23:18:20.5844204Z remote: Compressing objects: 46% (184/399) 2025-06-05T23:18:20.5844552Z remote: Compressing objects: 47% (188/399) 2025-06-05T23:18:20.5844912Z remote: Compressing objects: 48% (192/399) 2025-06-05T23:18:20.5845257Z remote: Compressing objects: 49% (196/399) 2025-06-05T23:18:20.5845619Z remote: Compressing objects: 50% (200/399) 2025-06-05T23:18:20.5846022Z remote: Compressing objects: 51% (204/399) 2025-06-05T23:18:20.5846395Z remote: Compressing objects: 52% (208/399) 2025-06-05T23:18:20.5846755Z remote: Compressing objects: 53% (212/399) 2025-06-05T23:18:20.5847101Z remote: Compressing objects: 54% (216/399) 2025-06-05T23:18:20.5847503Z remote: Compressing objects: 55% (220/399) 2025-06-05T23:18:20.5847919Z remote: Compressing objects: 56% (224/399) 2025-06-05T23:18:20.5848413Z remote: Compressing objects: 57% (228/399) 2025-06-05T23:18:20.5848776Z remote: Compressing objects: 58% (232/399) 2025-06-05T23:18:20.5849202Z remote: Compressing objects: 59% (236/399) 2025-06-05T23:18:20.5849562Z remote: Compressing objects: 60% (240/399) 2025-06-05T23:18:20.5849910Z remote: Compressing objects: 61% (244/399) 2025-06-05T23:18:20.5850272Z remote: Compressing objects: 62% (248/399) 2025-06-05T23:18:20.5850628Z remote: Compressing objects: 63% (252/399) 2025-06-05T23:18:20.5850992Z remote: Compressing objects: 64% (256/399) 2025-06-05T23:18:20.5851338Z remote: Compressing objects: 65% (260/399) 2025-06-05T23:18:20.5851699Z remote: Compressing objects: 66% (264/399) 2025-06-05T23:18:20.5852060Z remote: Compressing objects: 67% (268/399) 2025-06-05T23:18:20.5852406Z remote: Compressing objects: 68% (272/399) 2025-06-05T23:18:20.5852763Z remote: Compressing objects: 69% (276/399) 2025-06-05T23:18:20.5853108Z remote: Compressing objects: 70% (280/399) 2025-06-05T23:18:20.5853466Z remote: Compressing objects: 71% (284/399) 2025-06-05T23:18:20.5853857Z remote: Compressing objects: 72% (288/399) 2025-06-05T23:18:20.5854206Z remote: Compressing objects: 73% (292/399) 2025-06-05T23:18:20.5854565Z remote: Compressing objects: 74% (296/399) 2025-06-05T23:18:20.5855024Z remote: Compressing objects: 75% (300/399) 2025-06-05T23:18:20.5855455Z remote: Compressing objects: 76% (304/399) 2025-06-05T23:18:20.5855873Z remote: Compressing objects: 77% (308/399) 2025-06-05T23:18:20.5856242Z remote: Compressing objects: 78% (312/399) 2025-06-05T23:18:20.5856601Z remote: Compressing objects: 79% (316/399) 2025-06-05T23:18:20.5856951Z remote: Compressing objects: 80% (320/399) 2025-06-05T23:18:20.5857312Z remote: Compressing objects: 81% (324/399) 2025-06-05T23:18:20.5857659Z remote: Compressing objects: 82% (328/399) 2025-06-05T23:18:20.5858017Z remote: Compressing objects: 83% (332/399) 2025-06-05T23:18:20.5858364Z remote: Compressing objects: 84% (336/399) 2025-06-05T23:18:20.5858725Z remote: Compressing objects: 85% (340/399) 2025-06-05T23:18:20.5859069Z remote: Compressing objects: 86% (344/399) 2025-06-05T23:18:20.5859428Z remote: Compressing objects: 87% (348/399) 2025-06-05T23:18:20.5859809Z remote: Compressing objects: 88% (352/399) 2025-06-05T23:18:20.5860161Z remote: Compressing objects: 89% (356/399) 2025-06-05T23:18:20.5860523Z remote: Compressing objects: 90% (360/399) 2025-06-05T23:18:20.5860874Z remote: Compressing objects: 91% (364/399) 2025-06-05T23:18:20.5861237Z remote: Compressing objects: 92% (368/399) 2025-06-05T23:18:20.5861589Z remote: Compressing objects: 93% (372/399) 2025-06-05T23:18:20.5861952Z remote: Compressing objects: 94% (376/399) 2025-06-05T23:18:20.5862314Z remote: Compressing objects: 95% (380/399) 2025-06-05T23:18:20.5862664Z remote: Compressing objects: 96% (384/399) 2025-06-05T23:18:20.5863028Z remote: Compressing objects: 97% (388/399) 2025-06-05T23:18:20.5863380Z remote: Compressing objects: 98% (392/399) 2025-06-05T23:18:20.5863744Z remote: Compressing objects: 99% (396/399) 2025-06-05T23:18:20.5864092Z remote: Compressing objects: 100% (399/399) 2025-06-05T23:18:20.5864494Z remote: Compressing objects: 100% (399/399), done. 2025-06-05T23:18:20.5864859Z Receiving objects: 0% (1/13364) 2025-06-05T23:18:20.5865149Z Receiving objects: 1% (134/13364) 2025-06-05T23:18:20.5865441Z Receiving objects: 2% (268/13364) 2025-06-05T23:18:20.5865716Z Receiving objects: 3% (401/13364) 2025-06-05T23:18:20.5865998Z Receiving objects: 4% (535/13364) 2025-06-05T23:18:20.5866267Z Receiving objects: 5% (669/13364) 2025-06-05T23:18:20.5866550Z Receiving objects: 6% (802/13364) 2025-06-05T23:18:20.5866820Z Receiving objects: 7% (936/13364) 2025-06-05T23:18:20.5867107Z Receiving objects: 8% (1070/13364) 2025-06-05T23:18:20.5867385Z Receiving objects: 9% (1203/13364) 2025-06-05T23:18:20.5867675Z Receiving objects: 10% (1337/13364) 2025-06-05T23:18:20.5867948Z Receiving objects: 11% (1471/13364) 2025-06-05T23:18:20.5868233Z Receiving objects: 12% (1604/13364) 2025-06-05T23:18:20.5868516Z Receiving objects: 13% (1738/13364) 2025-06-05T23:18:20.5868850Z Receiving objects: 14% (1871/13364) 2025-06-05T23:18:20.5869259Z Receiving objects: 15% (2005/13364) 2025-06-05T23:18:20.5869614Z Receiving objects: 16% (2139/13364) 2025-06-05T23:18:20.5869899Z Receiving objects: 17% (2272/13364) 2025-06-05T23:18:20.5870222Z Receiving objects: 18% (2406/13364) 2025-06-05T23:18:20.5870507Z Receiving objects: 19% (2540/13364) 2025-06-05T23:18:20.5870785Z Receiving objects: 20% (2673/13364) 2025-06-05T23:18:20.5871072Z Receiving objects: 21% (2807/13364) 2025-06-05T23:18:20.5871355Z Receiving objects: 22% (2941/13364) 2025-06-05T23:18:20.5871627Z Receiving objects: 23% (3074/13364) 2025-06-05T23:18:20.5871915Z Receiving objects: 24% (3208/13364) 2025-06-05T23:18:20.5872217Z Receiving objects: 25% (3341/13364) 2025-06-05T23:18:20.5872504Z Receiving objects: 26% (3475/13364) 2025-06-05T23:18:20.5872776Z Receiving objects: 27% (3609/13364) 2025-06-05T23:18:20.5873060Z Receiving objects: 28% (3742/13364) 2025-06-05T23:18:20.5873438Z Receiving objects: 29% (3876/13364) 2025-06-05T23:18:20.5873722Z Receiving objects: 30% (4010/13364) 2025-06-05T23:18:20.5874056Z Receiving objects: 31% (4143/13364) 2025-06-05T23:18:20.5874348Z Receiving objects: 32% (4277/13364) 2025-06-05T23:18:20.5874631Z Receiving objects: 33% (4411/13364) 2025-06-05T23:18:20.5874901Z Receiving objects: 34% (4544/13364) 2025-06-05T23:18:20.5875186Z Receiving objects: 35% (4678/13364) 2025-06-05T23:18:20.5875458Z Receiving objects: 36% (4812/13364) 2025-06-05T23:18:20.5875743Z Receiving objects: 37% (4945/13364) 2025-06-05T23:18:20.5876019Z Receiving objects: 38% (5079/13364) 2025-06-05T23:18:20.5876304Z Receiving objects: 39% (5212/13364) 2025-06-05T23:18:20.5876576Z Receiving objects: 40% (5346/13364) 2025-06-05T23:18:20.5876859Z Receiving objects: 41% (5480/13364) 2025-06-05T23:18:20.5877129Z Receiving objects: 42% (5613/13364) 2025-06-05T23:18:20.5877410Z Receiving objects: 43% (5747/13364) 2025-06-05T23:18:20.5877869Z Receiving objects: 44% (5881/13364) 2025-06-05T23:18:20.5878186Z Receiving objects: 45% (6014/13364) 2025-06-05T23:18:20.5878576Z Receiving objects: 46% (6148/13364) 2025-06-05T23:18:20.5878948Z Receiving objects: 47% (6282/13364) 2025-06-05T23:18:20.5879234Z Receiving objects: 48% (6415/13364) 2025-06-05T23:18:20.5879559Z Receiving objects: 49% (6549/13364) 2025-06-05T23:18:20.5879848Z Receiving objects: 50% (6682/13364) 2025-06-05T23:18:20.5880119Z Receiving objects: 51% (6816/13364) 2025-06-05T23:18:20.5880404Z Receiving objects: 52% (6950/13364) 2025-06-05T23:18:20.5880687Z Receiving objects: 53% (7083/13364) 2025-06-05T23:18:20.5880958Z Receiving objects: 54% (7217/13364) 2025-06-05T23:18:20.5881244Z Receiving objects: 55% (7351/13364) 2025-06-05T23:18:20.5881541Z Receiving objects: 56% (7484/13364) 2025-06-05T23:18:20.5881824Z Receiving objects: 57% (7618/13364) 2025-06-05T23:18:20.5882120Z Receiving objects: 58% (7752/13364) 2025-06-05T23:18:20.5882406Z Receiving objects: 59% (7885/13364) 2025-06-05T23:18:20.5882682Z Receiving objects: 60% (8019/13364) 2025-06-05T23:18:20.5882963Z Receiving objects: 61% (8153/13364) 2025-06-05T23:18:20.5883239Z Receiving objects: 62% (8286/13364) 2025-06-05T23:18:20.5883559Z Receiving objects: 63% (8420/13364) 2025-06-05T23:18:20.5883889Z Receiving objects: 64% (8553/13364) 2025-06-05T23:18:20.5884187Z Receiving objects: 65% (8687/13364) 2025-06-05T23:18:20.5884484Z Receiving objects: 66% (8821/13364) 2025-06-05T23:18:20.5884757Z Receiving objects: 67% (8954/13364) 2025-06-05T23:18:20.5885119Z Receiving objects: 68% (9088/13364) 2025-06-05T23:18:21.6051368Z Receiving objects: 69% (9222/13364) 2025-06-05T23:18:21.6052119Z Receiving objects: 70% (9355/13364) 2025-06-05T23:18:21.6052689Z Receiving objects: 71% (9489/13364) 2025-06-05T23:18:21.6053200Z Receiving objects: 72% (9623/13364) 2025-06-05T23:18:21.6053763Z Receiving objects: 73% (9756/13364) 2025-06-05T23:18:21.6054312Z Receiving objects: 74% (9890/13364) 2025-06-05T23:18:21.6054652Z Receiving objects: 75% (10023/13364) 2025-06-05T23:18:21.6054965Z Receiving objects: 76% (10157/13364) 2025-06-05T23:18:21.6055324Z Receiving objects: 77% (10291/13364) 2025-06-05T23:18:21.6055619Z Receiving objects: 78% (10424/13364) 2025-06-05T23:18:21.6055914Z Receiving objects: 79% (10558/13364) 2025-06-05T23:18:21.6056206Z Receiving objects: 80% (10692/13364) 2025-06-05T23:18:21.6056487Z Receiving objects: 81% (10825/13364) 2025-06-05T23:18:21.6056782Z Receiving objects: 82% (10959/13364) 2025-06-05T23:18:21.6057058Z Receiving objects: 83% (11093/13364) 2025-06-05T23:18:21.6057346Z Receiving objects: 84% (11226/13364) 2025-06-05T23:18:21.6057622Z Receiving objects: 85% (11360/13364) 2025-06-05T23:18:21.6057913Z Receiving objects: 86% (11494/13364) 2025-06-05T23:18:21.6058189Z Receiving objects: 87% (11627/13364) 2025-06-05T23:18:21.6058478Z Receiving objects: 88% (11761/13364) 2025-06-05T23:18:21.6058757Z Receiving objects: 89% (11894/13364) 2025-06-05T23:18:21.6059046Z Receiving objects: 90% (12028/13364) 2025-06-05T23:18:21.6060033Z Receiving objects: 91% (12162/13364) 2025-06-05T23:18:21.6060312Z Receiving objects: 92% (12295/13364) 2025-06-05T23:18:21.6060703Z Receiving objects: 93% (12429/13364) 2025-06-05T23:18:21.6060981Z Receiving objects: 94% (12563/13364) 2025-06-05T23:18:21.6061271Z Receiving objects: 95% (12696/13364) 2025-06-05T23:18:21.6061548Z Receiving objects: 96% (12830/13364) 2025-06-05T23:18:21.6061838Z Receiving objects: 97% (12964/13364) 2025-06-05T23:18:21.6062114Z Receiving objects: 98% (13097/13364) 2025-06-05T23:18:21.6062406Z Receiving objects: 99% (13231/13364) 2025-06-05T23:18:21.6062867Z remote: Total 13364 (delta 3447), reused 3316 (delta 3315), pack-reused 9650 (from 3) 2025-06-05T23:18:21.6063333Z Receiving objects: 100% (13364/13364) 2025-06-05T23:18:21.6063707Z Receiving objects: 100% (13364/13364), 6.71 MiB | 45.83 MiB/s, done. 2025-06-05T23:18:21.6064089Z Resolving deltas: 0% (0/8802) 2025-06-05T23:18:21.6064371Z Resolving deltas: 1% (89/8802) 2025-06-05T23:18:21.6064640Z Resolving deltas: 2% (177/8802) 2025-06-05T23:18:21.6064920Z Resolving deltas: 3% (265/8802) 2025-06-05T23:18:21.6065188Z Resolving deltas: 4% (353/8802) 2025-06-05T23:18:21.6065462Z Resolving deltas: 5% (441/8802) 2025-06-05T23:18:21.6065736Z Resolving deltas: 6% (529/8802) 2025-06-05T23:18:21.6065998Z Resolving deltas: 7% (617/8802) 2025-06-05T23:18:21.6066272Z Resolving deltas: 8% (705/8802) 2025-06-05T23:18:21.6066533Z Resolving deltas: 9% (793/8802) 2025-06-05T23:18:21.6066806Z Resolving deltas: 10% (881/8802) 2025-06-05T23:18:21.6067068Z Resolving deltas: 11% (969/8802) 2025-06-05T23:18:21.6067345Z Resolving deltas: 12% (1057/8802) 2025-06-05T23:18:21.6067615Z Resolving deltas: 13% (1145/8802) 2025-06-05T23:18:21.6067895Z Resolving deltas: 14% (1233/8802) 2025-06-05T23:18:21.6068161Z Resolving deltas: 15% (1321/8802) 2025-06-05T23:18:21.6068438Z Resolving deltas: 16% (1409/8802) 2025-06-05T23:18:21.6068713Z Resolving deltas: 17% (1497/8802) 2025-06-05T23:18:21.6068981Z Resolving deltas: 18% (1585/8802) 2025-06-05T23:18:21.6069258Z Resolving deltas: 19% (1673/8802) 2025-06-05T23:18:21.6069532Z Resolving deltas: 20% (1761/8802) 2025-06-05T23:18:21.6069821Z Resolving deltas: 21% (1849/8802) 2025-06-05T23:18:21.6070086Z Resolving deltas: 22% (1937/8802) 2025-06-05T23:18:21.6070363Z Resolving deltas: 23% (2026/8802) 2025-06-05T23:18:21.6070630Z Resolving deltas: 24% (2113/8802) 2025-06-05T23:18:21.6070907Z Resolving deltas: 25% (2201/8802) 2025-06-05T23:18:21.6071171Z Resolving deltas: 26% (2289/8802) 2025-06-05T23:18:21.6071448Z Resolving deltas: 27% (2377/8802) 2025-06-05T23:18:21.6071724Z Resolving deltas: 28% (2465/8802) 2025-06-05T23:18:21.6071987Z Resolving deltas: 29% (2553/8802) 2025-06-05T23:18:21.6072264Z Resolving deltas: 30% (2641/8802) 2025-06-05T23:18:21.6072528Z Resolving deltas: 31% (2729/8802) 2025-06-05T23:18:21.6072805Z Resolving deltas: 32% (2817/8802) 2025-06-05T23:18:21.6073069Z Resolving deltas: 33% (2905/8802) 2025-06-05T23:18:21.6073355Z Resolving deltas: 34% (2993/8802) 2025-06-05T23:18:21.6073622Z Resolving deltas: 35% (3081/8802) 2025-06-05T23:18:21.6073903Z Resolving deltas: 36% (3169/8802) 2025-06-05T23:18:21.6074182Z Resolving deltas: 37% (3257/8802) 2025-06-05T23:18:21.6074447Z Resolving deltas: 38% (3345/8802) 2025-06-05T23:18:21.6074723Z Resolving deltas: 39% (3433/8802) 2025-06-05T23:18:21.6074989Z Resolving deltas: 40% (3521/8802) 2025-06-05T23:18:21.6075277Z Resolving deltas: 41% (3609/8802) 2025-06-05T23:18:21.6075542Z Resolving deltas: 42% (3697/8802) 2025-06-05T23:18:21.6075823Z Resolving deltas: 43% (3785/8802) 2025-06-05T23:18:21.6076090Z Resolving deltas: 44% (3873/8802) 2025-06-05T23:18:21.6076367Z Resolving deltas: 45% (3961/8802) 2025-06-05T23:18:21.6076634Z Resolving deltas: 46% (4049/8802) 2025-06-05T23:18:21.6076910Z Resolving deltas: 47% (4137/8802) 2025-06-05T23:18:21.6077185Z Resolving deltas: 48% (4225/8802) 2025-06-05T23:18:21.6077449Z Resolving deltas: 49% (4313/8802) 2025-06-05T23:18:21.6078150Z Resolving deltas: 50% (4401/8802) 2025-06-05T23:18:21.6078419Z Resolving deltas: 51% (4490/8802) 2025-06-05T23:18:21.6078818Z Resolving deltas: 52% (4578/8802) 2025-06-05T23:18:21.6079089Z Resolving deltas: 53% (4666/8802) 2025-06-05T23:18:21.6079367Z Resolving deltas: 54% (4754/8802) 2025-06-05T23:18:21.6079631Z Resolving deltas: 55% (4842/8802) 2025-06-05T23:18:21.6079910Z Resolving deltas: 56% (4930/8802) 2025-06-05T23:18:21.6080173Z Resolving deltas: 57% (5018/8802) 2025-06-05T23:18:21.6080452Z Resolving deltas: 58% (5106/8802) 2025-06-05T23:18:21.6080731Z Resolving deltas: 59% (5195/8802) 2025-06-05T23:18:21.6080995Z Resolving deltas: 60% (5282/8802) 2025-06-05T23:18:21.6081269Z Resolving deltas: 61% (5370/8802) 2025-06-05T23:18:21.6081535Z Resolving deltas: 62% (5458/8802) 2025-06-05T23:18:21.6081812Z Resolving deltas: 63% (5546/8802) 2025-06-05T23:18:21.6082075Z Resolving deltas: 64% (5634/8802) 2025-06-05T23:18:21.6082350Z Resolving deltas: 65% (5722/8802) 2025-06-05T23:18:21.6082619Z Resolving deltas: 66% (5810/8802) 2025-06-05T23:18:21.6082897Z Resolving deltas: 67% (5898/8802) 2025-06-05T23:18:21.6083176Z Resolving deltas: 68% (5986/8802) 2025-06-05T23:18:21.6083441Z Resolving deltas: 69% (6074/8802) 2025-06-05T23:18:21.6083719Z Resolving deltas: 70% (6162/8802) 2025-06-05T23:18:21.6083986Z Resolving deltas: 71% (6250/8802) 2025-06-05T23:18:21.6084279Z Resolving deltas: 72% (6338/8802) 2025-06-05T23:18:21.6084545Z Resolving deltas: 73% (6426/8802) 2025-06-05T23:18:21.6084827Z Resolving deltas: 74% (6514/8802) 2025-06-05T23:18:21.6085094Z Resolving deltas: 75% (6602/8802) 2025-06-05T23:18:21.6085375Z Resolving deltas: 76% (6690/8802) 2025-06-05T23:18:21.6085642Z Resolving deltas: 77% (6778/8802) 2025-06-05T23:18:21.6085925Z Resolving deltas: 78% (6866/8802) 2025-06-05T23:18:21.6086193Z Resolving deltas: 79% (6954/8802) 2025-06-05T23:18:21.6086475Z Resolving deltas: 80% (7042/8802) 2025-06-05T23:18:21.6086760Z Resolving deltas: 81% (7130/8802) 2025-06-05T23:18:21.6087037Z Resolving deltas: 82% (7218/8802) 2025-06-05T23:18:21.6087320Z Resolving deltas: 83% (7306/8802) 2025-06-05T23:18:21.6087591Z Resolving deltas: 84% (7394/8802) 2025-06-05T23:18:21.6087874Z Resolving deltas: 85% (7482/8802) 2025-06-05T23:18:21.6088143Z Resolving deltas: 86% (7570/8802) 2025-06-05T23:18:21.6088426Z Resolving deltas: 87% (7658/8802) 2025-06-05T23:18:21.6088692Z Resolving deltas: 88% (7746/8802) 2025-06-05T23:18:21.6088970Z Resolving deltas: 89% (7834/8802) 2025-06-05T23:18:21.6089232Z Resolving deltas: 90% (7922/8802) 2025-06-05T23:18:21.6089512Z Resolving deltas: 91% (8010/8802) 2025-06-05T23:18:21.6089786Z Resolving deltas: 92% (8098/8802) 2025-06-05T23:18:21.6090049Z Resolving deltas: 93% (8186/8802) 2025-06-05T23:18:21.6090325Z Resolving deltas: 94% (8274/8802) 2025-06-05T23:18:21.6090588Z Resolving deltas: 95% (8362/8802) 2025-06-05T23:18:21.6090864Z Resolving deltas: 96% (8450/8802) 2025-06-05T23:18:21.6091128Z Resolving deltas: 97% (8538/8802) 2025-06-05T23:18:21.6091405Z Resolving deltas: 98% (8626/8802) 2025-06-05T23:18:21.6091669Z Resolving deltas: 99% (8714/8802) 2025-06-05T23:18:21.6091948Z Resolving deltas: 100% (8802/8802) 2025-06-05T23:18:21.6092225Z Resolving deltas: 100% (8802/8802), done. 2025-06-05T23:18:21.6092804Z Cloning into '/pytorch/executorch/examples/arm/ethos-u-scratch/reference_model/thirdparty/eigen'... 2025-06-05T23:18:21.6093408Z remote: Enumerating objects: 128219, done. 2025-06-05T23:18:21.6093761Z remote: Counting objects: 0% (1/1534) 2025-06-05T23:18:21.6094110Z remote: Counting objects: 1% (16/1534) 2025-06-05T23:18:21.6094444Z remote: Counting objects: 2% (31/1534) 2025-06-05T23:18:21.6094796Z remote: Counting objects: 3% (47/1534) 2025-06-05T23:18:21.6095235Z remote: Counting objects: 4% (62/1534) 2025-06-05T23:18:21.6095590Z remote: Counting objects: 5% (77/1534) 2025-06-05T23:18:21.6095936Z remote: Counting objects: 6% (93/1534) 2025-06-05T23:18:21.6096388Z remote: Counting objects: 7% (108/1534) 2025-06-05T23:18:21.6096744Z remote: Counting objects: 8% (123/1534) 2025-06-05T23:18:21.6097144Z remote: Counting objects: 9% (139/1534) 2025-06-05T23:18:21.6097495Z remote: Counting objects: 10% (154/1534) 2025-06-05T23:18:21.6097829Z remote: Counting objects: 11% (169/1534) 2025-06-05T23:18:21.6098175Z remote: Counting objects: 12% (185/1534) 2025-06-05T23:18:21.6098508Z remote: Counting objects: 13% (200/1534) 2025-06-05T23:18:21.6098858Z remote: Counting objects: 14% (215/1534) 2025-06-05T23:18:21.6099207Z remote: Counting objects: 15% (231/1534) 2025-06-05T23:18:21.6099543Z remote: Counting objects: 16% (246/1534) 2025-06-05T23:18:21.6099892Z remote: Counting objects: 17% (261/1534) 2025-06-05T23:18:21.6100227Z remote: Counting objects: 18% (277/1534) 2025-06-05T23:18:21.6100576Z remote: Counting objects: 19% (292/1534) 2025-06-05T23:18:21.6100915Z remote: Counting objects: 20% (307/1534) 2025-06-05T23:18:21.6101263Z remote: Counting objects: 21% (323/1534) 2025-06-05T23:18:21.6101601Z remote: Counting objects: 22% (338/1534) 2025-06-05T23:18:21.6101949Z remote: Counting objects: 23% (353/1534) 2025-06-05T23:18:21.6102295Z remote: Counting objects: 24% (369/1534) 2025-06-05T23:18:21.6102628Z remote: Counting objects: 25% (384/1534) 2025-06-05T23:18:21.6102973Z remote: Counting objects: 26% (399/1534) 2025-06-05T23:18:21.6103306Z remote: Counting objects: 27% (415/1534) 2025-06-05T23:18:21.6103649Z remote: Counting objects: 28% (430/1534) 2025-06-05T23:18:21.6103981Z remote: Counting objects: 29% (445/1534) 2025-06-05T23:18:21.6104325Z remote: Counting objects: 30% (461/1534) 2025-06-05T23:18:21.6104672Z remote: Counting objects: 31% (476/1534) 2025-06-05T23:18:21.6105006Z remote: Counting objects: 32% (491/1534) 2025-06-05T23:18:21.6105356Z remote: Counting objects: 33% (507/1534) 2025-06-05T23:18:21.6105689Z remote: Counting objects: 34% (522/1534) 2025-06-05T23:18:21.6106041Z remote: Counting objects: 35% (537/1534) 2025-06-05T23:18:21.6106373Z remote: Counting objects: 36% (553/1534) 2025-06-05T23:18:21.6106720Z remote: Counting objects: 37% (568/1534) 2025-06-05T23:18:21.6107053Z remote: Counting objects: 38% (583/1534) 2025-06-05T23:18:21.6107397Z remote: Counting objects: 39% (599/1534) 2025-06-05T23:18:21.6107741Z remote: Counting objects: 40% (614/1534) 2025-06-05T23:18:21.6108073Z remote: Counting objects: 41% (629/1534) 2025-06-05T23:18:21.6108419Z remote: Counting objects: 42% (645/1534) 2025-06-05T23:18:21.6108751Z remote: Counting objects: 43% (660/1534) 2025-06-05T23:18:21.6109096Z remote: Counting objects: 44% (675/1534) 2025-06-05T23:18:21.6109428Z remote: Counting objects: 45% (691/1534) 2025-06-05T23:18:21.6109775Z remote: Counting objects: 46% (706/1534) 2025-06-05T23:18:21.6110107Z remote: Counting objects: 47% (721/1534) 2025-06-05T23:18:21.6110454Z remote: Counting objects: 48% (737/1534) 2025-06-05T23:18:21.6110800Z remote: Counting objects: 49% (752/1534) 2025-06-05T23:18:21.6111133Z remote: Counting objects: 50% (767/1534) 2025-06-05T23:18:21.6111480Z remote: Counting objects: 51% (783/1534) 2025-06-05T23:18:21.6111811Z remote: Counting objects: 52% (798/1534) 2025-06-05T23:18:21.6112159Z remote: Counting objects: 53% (814/1534) 2025-06-05T23:18:21.6112496Z remote: Counting objects: 54% (829/1534) 2025-06-05T23:18:21.6112847Z remote: Counting objects: 55% (844/1534) 2025-06-05T23:18:21.6113185Z remote: Counting objects: 56% (860/1534) 2025-06-05T23:18:21.6113534Z remote: Counting objects: 57% (875/1534) 2025-06-05T23:18:21.6113887Z remote: Counting objects: 58% (890/1534) 2025-06-05T23:18:21.6114319Z remote: Counting objects: 59% (906/1534) 2025-06-05T23:18:21.6114666Z remote: Counting objects: 60% (921/1534) 2025-06-05T23:18:21.6115052Z remote: Counting objects: 61% (936/1534) 2025-06-05T23:18:22.6241967Z remote: Counting objects: 62% (952/1534) 2025-06-05T23:18:22.6242711Z remote: Counting objects: 63% (967/1534) 2025-06-05T23:18:22.6243169Z remote: Counting objects: 64% (982/1534) 2025-06-05T23:18:22.6243526Z remote: Counting objects: 65% (998/1534) 2025-06-05T23:18:22.6243871Z remote: Counting objects: 66% (1013/1534) 2025-06-05T23:18:22.6244241Z remote: Counting objects: 67% (1028/1534) 2025-06-05T23:18:22.6244594Z remote: Counting objects: 68% (1044/1534) 2025-06-05T23:18:22.6244932Z remote: Counting objects: 69% (1059/1534) 2025-06-05T23:18:22.6245284Z remote: Counting objects: 70% (1074/1534) 2025-06-05T23:18:22.6245621Z remote: Counting objects: 71% (1090/1534) 2025-06-05T23:18:22.6246003Z remote: Counting objects: 72% (1105/1534) 2025-06-05T23:18:22.6246340Z remote: Counting objects: 73% (1120/1534) 2025-06-05T23:18:22.6246705Z remote: Counting objects: 74% (1136/1534) 2025-06-05T23:18:22.6247056Z remote: Counting objects: 75% (1151/1534) 2025-06-05T23:18:22.6247394Z remote: Counting objects: 76% (1166/1534) 2025-06-05T23:18:22.6247745Z remote: Counting objects: 77% (1182/1534) 2025-06-05T23:18:22.6248084Z remote: Counting objects: 78% (1197/1534) 2025-06-05T23:18:22.6248436Z remote: Counting objects: 79% (1212/1534) 2025-06-05T23:18:22.6248773Z remote: Counting objects: 80% (1228/1534) 2025-06-05T23:18:22.6249126Z remote: Counting objects: 81% (1243/1534) 2025-06-05T23:18:22.6249465Z remote: Counting objects: 82% (1258/1534) 2025-06-05T23:18:22.6249815Z remote: Counting objects: 83% (1274/1534) 2025-06-05T23:18:22.6250171Z remote: Counting objects: 84% (1289/1534) 2025-06-05T23:18:22.6250518Z remote: Counting objects: 85% (1304/1534) 2025-06-05T23:18:22.6250873Z remote: Counting objects: 86% (1320/1534) 2025-06-05T23:18:22.6251213Z remote: Counting objects: 87% (1335/1534) 2025-06-05T23:18:22.6251566Z remote: Counting objects: 88% (1350/1534) 2025-06-05T23:18:22.6251902Z remote: Counting objects: 89% (1366/1534) 2025-06-05T23:18:22.6252252Z remote: Counting objects: 90% (1381/1534) 2025-06-05T23:18:22.6252588Z remote: Counting objects: 91% (1396/1534) 2025-06-05T23:18:22.6252938Z remote: Counting objects: 92% (1412/1534) 2025-06-05T23:18:22.6253292Z remote: Counting objects: 93% (1427/1534) 2025-06-05T23:18:22.6253634Z remote: Counting objects: 94% (1442/1534) 2025-06-05T23:18:22.6253986Z remote: Counting objects: 95% (1458/1534) 2025-06-05T23:18:22.6254325Z remote: Counting objects: 96% (1473/1534) 2025-06-05T23:18:22.6254676Z remote: Counting objects: 97% (1488/1534) 2025-06-05T23:18:22.6255021Z remote: Counting objects: 98% (1504/1534) 2025-06-05T23:18:22.6255483Z remote: Counting objects: 99% (1519/1534) 2025-06-05T23:18:22.6255839Z remote: Counting objects: 100% (1534/1534) 2025-06-05T23:18:22.6256215Z remote: Counting objects: 100% (1534/1534), done. 2025-06-05T23:18:22.6256651Z remote: Compressing objects: 0% (1/561) 2025-06-05T23:18:22.6257000Z remote: Compressing objects: 1% (6/561) 2025-06-05T23:18:22.6257366Z remote: Compressing objects: 2% (12/561) 2025-06-05T23:18:22.6257727Z remote: Compressing objects: 3% (17/561) 2025-06-05T23:18:22.6258077Z remote: Compressing objects: 4% (23/561) 2025-06-05T23:18:22.6258440Z remote: Compressing objects: 5% (29/561) 2025-06-05T23:18:22.6258789Z remote: Compressing objects: 6% (34/561) 2025-06-05T23:18:22.6259146Z remote: Compressing objects: 7% (40/561) 2025-06-05T23:18:22.6259774Z remote: Compressing objects: 8% (45/561) 2025-06-05T23:18:22.6260135Z remote: Compressing objects: 9% (51/561) 2025-06-05T23:18:22.6260591Z remote: Compressing objects: 10% (57/561) 2025-06-05T23:18:22.6260940Z remote: Compressing objects: 11% (62/561) 2025-06-05T23:18:22.6261295Z remote: Compressing objects: 12% (68/561) 2025-06-05T23:18:22.6261638Z remote: Compressing objects: 13% (73/561) 2025-06-05T23:18:22.6261998Z remote: Compressing objects: 14% (79/561) 2025-06-05T23:18:22.6262344Z remote: Compressing objects: 15% (85/561) 2025-06-05T23:18:22.6262697Z remote: Compressing objects: 16% (90/561) 2025-06-05T23:18:22.6263045Z remote: Compressing objects: 17% (96/561) 2025-06-05T23:18:22.6263403Z remote: Compressing objects: 18% (101/561) 2025-06-05T23:18:22.6263765Z remote: Compressing objects: 19% (107/561) 2025-06-05T23:18:22.6264114Z remote: Compressing objects: 20% (113/561) 2025-06-05T23:18:22.6264481Z remote: Compressing objects: 21% (118/561) 2025-06-05T23:18:22.6264828Z remote: Compressing objects: 22% (124/561) 2025-06-05T23:18:22.6265192Z remote: Compressing objects: 23% (130/561) 2025-06-05T23:18:22.6265539Z remote: Compressing objects: 24% (135/561) 2025-06-05T23:18:22.6265898Z remote: Compressing objects: 25% (141/561) 2025-06-05T23:18:22.6266247Z remote: Compressing objects: 26% (146/561) 2025-06-05T23:18:22.6266611Z remote: Compressing objects: 27% (152/561) 2025-06-05T23:18:22.6266973Z remote: Compressing objects: 28% (158/561) 2025-06-05T23:18:22.6267324Z remote: Compressing objects: 29% (163/561) 2025-06-05T23:18:22.6267684Z remote: Compressing objects: 30% (169/561) 2025-06-05T23:18:22.6268034Z remote: Compressing objects: 31% (174/561) 2025-06-05T23:18:22.6268393Z remote: Compressing objects: 32% (180/561) 2025-06-05T23:18:22.6268740Z remote: Compressing objects: 33% (186/561) 2025-06-05T23:18:22.6269105Z remote: Compressing objects: 34% (191/561) 2025-06-05T23:18:22.6269467Z remote: Compressing objects: 35% (197/561) 2025-06-05T23:18:22.6269813Z remote: Compressing objects: 36% (202/561) 2025-06-05T23:18:22.6270172Z remote: Compressing objects: 37% (208/561) 2025-06-05T23:18:22.6270521Z remote: Compressing objects: 38% (214/561) 2025-06-05T23:18:22.6270883Z remote: Compressing objects: 39% (219/561) 2025-06-05T23:18:22.6271228Z remote: Compressing objects: 40% (225/561) 2025-06-05T23:18:22.6271588Z remote: Compressing objects: 41% (231/561) 2025-06-05T23:18:22.6271937Z remote: Compressing objects: 42% (236/561) 2025-06-05T23:18:22.6272296Z remote: Compressing objects: 43% (242/561) 2025-06-05T23:18:22.6272655Z remote: Compressing objects: 44% (247/561) 2025-06-05T23:18:22.6273005Z remote: Compressing objects: 45% (253/561) 2025-06-05T23:18:22.6273365Z remote: Compressing objects: 46% (259/561) 2025-06-05T23:18:22.6273719Z remote: Compressing objects: 47% (264/561) 2025-06-05T23:18:22.6274082Z remote: Compressing objects: 48% (270/561) 2025-06-05T23:18:22.6274427Z remote: Compressing objects: 49% (275/561) 2025-06-05T23:18:22.6274784Z remote: Compressing objects: 50% (281/561) 2025-06-05T23:18:22.6275132Z remote: Compressing objects: 51% (287/561) 2025-06-05T23:18:22.6275494Z remote: Compressing objects: 52% (292/561) 2025-06-05T23:18:22.6275854Z remote: Compressing objects: 53% (298/561) 2025-06-05T23:18:22.6276203Z remote: Compressing objects: 54% (303/561) 2025-06-05T23:18:22.6276565Z remote: Compressing objects: 55% (309/561) 2025-06-05T23:18:22.6276916Z remote: Compressing objects: 56% (315/561) 2025-06-05T23:18:22.6277282Z remote: Compressing objects: 57% (320/561) 2025-06-05T23:18:22.6277824Z remote: Compressing objects: 58% (326/561) 2025-06-05T23:18:22.6278345Z remote: Compressing objects: 59% (331/561) 2025-06-05T23:18:22.6278711Z remote: Compressing objects: 60% (337/561) 2025-06-05T23:18:22.6279167Z remote: Compressing objects: 61% (343/561) 2025-06-05T23:18:22.6279531Z remote: Compressing objects: 62% (348/561) 2025-06-05T23:18:22.6279881Z remote: Compressing objects: 63% (354/561) 2025-06-05T23:18:22.6280245Z remote: Compressing objects: 64% (360/561) 2025-06-05T23:18:22.6280592Z remote: Compressing objects: 65% (365/561) 2025-06-05T23:18:22.6280952Z remote: Compressing objects: 66% (371/561) 2025-06-05T23:18:22.6281298Z remote: Compressing objects: 67% (376/561) 2025-06-05T23:18:22.6281655Z remote: Compressing objects: 68% (382/561) 2025-06-05T23:18:22.6282013Z remote: Compressing objects: 69% (388/561) 2025-06-05T23:18:22.6282358Z remote: Compressing objects: 70% (393/561) 2025-06-05T23:18:22.6282716Z remote: Compressing objects: 71% (399/561) 2025-06-05T23:18:22.6283066Z remote: Compressing objects: 72% (404/561) 2025-06-05T23:18:22.6283429Z remote: Compressing objects: 73% (410/561) 2025-06-05T23:18:22.6283774Z remote: Compressing objects: 74% (416/561) 2025-06-05T23:18:22.6284131Z remote: Compressing objects: 75% (421/561) 2025-06-05T23:18:22.6284485Z remote: Compressing objects: 76% (427/561) 2025-06-05T23:18:22.6284843Z remote: Compressing objects: 77% (432/561) 2025-06-05T23:18:22.6285207Z remote: Compressing objects: 78% (438/561) 2025-06-05T23:18:22.6285552Z remote: Compressing objects: 79% (444/561) 2025-06-05T23:18:22.6285915Z remote: Compressing objects: 80% (449/561) 2025-06-05T23:18:22.6286262Z remote: Compressing objects: 81% (455/561) 2025-06-05T23:18:22.6286627Z remote: Compressing objects: 82% (461/561) 2025-06-05T23:18:22.6286977Z remote: Compressing objects: 83% (466/561) 2025-06-05T23:18:22.6287336Z remote: Compressing objects: 84% (472/561) 2025-06-05T23:18:22.6287693Z remote: Compressing objects: 85% (477/561) 2025-06-05T23:18:22.6288044Z remote: Compressing objects: 86% (483/561) 2025-06-05T23:18:22.6288406Z remote: Compressing objects: 87% (489/561) 2025-06-05T23:18:22.6288753Z remote: Compressing objects: 88% (494/561) 2025-06-05T23:18:22.6289112Z remote: Compressing objects: 89% (500/561) 2025-06-05T23:18:22.6289459Z remote: Compressing objects: 90% (505/561) 2025-06-05T23:18:22.6289819Z remote: Compressing objects: 91% (511/561) 2025-06-05T23:18:22.6290168Z remote: Compressing objects: 92% (517/561) 2025-06-05T23:18:22.6290527Z remote: Compressing objects: 93% (522/561) 2025-06-05T23:18:22.6290887Z remote: Compressing objects: 94% (528/561) 2025-06-05T23:18:22.6291235Z remote: Compressing objects: 95% (533/561) 2025-06-05T23:18:22.6291643Z remote: Compressing objects: 96% (539/561) 2025-06-05T23:18:22.6291997Z remote: Compressing objects: 97% (545/561) 2025-06-05T23:18:22.6292364Z remote: Compressing objects: 98% (550/561) 2025-06-05T23:18:22.6292722Z remote: Compressing objects: 99% (556/561) 2025-06-05T23:18:22.6293082Z remote: Compressing objects: 100% (561/561) 2025-06-05T23:18:22.6293478Z remote: Compressing objects: 100% (561/561), done. 2025-06-05T23:18:22.6293845Z Receiving objects: 0% (1/128219) 2025-06-05T23:18:22.6294145Z Receiving objects: 1% (1283/128219) 2025-06-05T23:18:22.6294430Z Receiving objects: 2% (2565/128219) 2025-06-05T23:18:22.6294728Z Receiving objects: 3% (3847/128219) 2025-06-05T23:18:22.6295047Z Receiving objects: 4% (5129/128219) 2025-06-05T23:18:22.6295497Z Receiving objects: 5% (6411/128219) 2025-06-05T23:18:22.6295797Z Receiving objects: 6% (7694/128219) 2025-06-05T23:18:22.6296075Z Receiving objects: 7% (8976/128219) 2025-06-05T23:18:22.6296368Z Receiving objects: 8% (10258/128219) 2025-06-05T23:18:22.6296743Z Receiving objects: 9% (11540/128219) 2025-06-05T23:18:22.6297040Z Receiving objects: 10% (12822/128219) 2025-06-05T23:18:22.6297397Z Receiving objects: 11% (14105/128219) 2025-06-05T23:18:22.6297685Z Receiving objects: 12% (15387/128219) 2025-06-05T23:18:22.6297984Z Receiving objects: 13% (16669/128219) 2025-06-05T23:18:22.6298266Z Receiving objects: 14% (17951/128219) 2025-06-05T23:18:22.6298561Z Receiving objects: 15% (19233/128219) 2025-06-05T23:18:22.6298841Z Receiving objects: 16% (20516/128219) 2025-06-05T23:18:22.6299135Z Receiving objects: 17% (21798/128219) 2025-06-05T23:18:22.6299416Z Receiving objects: 18% (23080/128219) 2025-06-05T23:18:22.6299711Z Receiving objects: 19% (24362/128219) 2025-06-05T23:18:22.6300076Z Receiving objects: 20% (25644/128219), 19.40 MiB | 38.86 MiB/s 2025-06-05T23:18:28.0938927Z Receiving objects: 21% (26926/128219), 19.40 MiB | 38.86 MiB/s 2025-06-05T23:18:28.0939898Z Receiving objects: 21% (27473/128219), 25.75 MiB | 25.71 MiB/s 2025-06-05T23:18:28.0940774Z Receiving objects: 22% (28209/128219), 25.75 MiB | 25.71 MiB/s 2025-06-05T23:18:28.0941577Z Receiving objects: 23% (29491/128219), 28.74 MiB | 19.13 MiB/s 2025-06-05T23:18:28.0942353Z Receiving objects: 24% (30773/128219), 28.74 MiB | 19.13 MiB/s 2025-06-05T23:18:28.0943119Z Receiving objects: 25% (32055/128219), 28.74 MiB | 19.13 MiB/s 2025-06-05T23:18:28.0943950Z Receiving objects: 26% (33337/128219), 28.74 MiB | 19.13 MiB/s 2025-06-05T23:18:28.0944776Z Receiving objects: 27% (34620/128219), 28.74 MiB | 19.13 MiB/s 2025-06-05T23:18:28.0945597Z Receiving objects: 28% (35902/128219), 28.74 MiB | 19.13 MiB/s 2025-06-05T23:18:28.0946431Z Receiving objects: 28% (37095/128219), 43.80 MiB | 21.87 MiB/s 2025-06-05T23:18:28.0947250Z Receiving objects: 29% (37184/128219), 43.80 MiB | 21.87 MiB/s 2025-06-05T23:18:28.0948081Z Receiving objects: 30% (38466/128219), 46.86 MiB | 18.70 MiB/s 2025-06-05T23:18:28.0948893Z Receiving objects: 31% (39748/128219), 46.86 MiB | 18.70 MiB/s 2025-06-05T23:18:28.0949725Z Receiving objects: 32% (41031/128219), 46.86 MiB | 18.70 MiB/s 2025-06-05T23:18:28.0950545Z Receiving objects: 32% (42125/128219), 46.86 MiB | 18.70 MiB/s 2025-06-05T23:18:28.0951372Z Receiving objects: 33% (42313/128219), 55.44 MiB | 18.44 MiB/s 2025-06-05T23:18:28.0952201Z Receiving objects: 34% (43595/128219), 55.44 MiB | 18.44 MiB/s 2025-06-05T23:18:28.0953013Z Receiving objects: 35% (44877/128219), 55.44 MiB | 18.44 MiB/s 2025-06-05T23:18:28.0953853Z Receiving objects: 36% (46159/128219), 61.23 MiB | 17.43 MiB/s 2025-06-05T23:18:28.0954603Z Receiving objects: 37% (47442/128219), 61.23 MiB | 17.43 MiB/s 2025-06-05T23:18:28.0955395Z Receiving objects: 38% (48724/128219), 61.23 MiB | 17.43 MiB/s 2025-06-05T23:18:28.0956210Z Receiving objects: 39% (50006/128219), 61.23 MiB | 17.43 MiB/s 2025-06-05T23:18:28.0957037Z Receiving objects: 40% (51288/128219), 61.23 MiB | 17.43 MiB/s 2025-06-05T23:18:28.0957849Z Receiving objects: 41% (52570/128219), 61.23 MiB | 17.43 MiB/s 2025-06-05T23:18:28.0958686Z Receiving objects: 41% (53228/128219), 61.23 MiB | 17.43 MiB/s 2025-06-05T23:18:28.0959523Z Receiving objects: 42% (53852/128219), 64.42 MiB | 16.05 MiB/s 2025-06-05T23:18:28.0960344Z Receiving objects: 43% (55135/128219), 64.42 MiB | 16.05 MiB/s 2025-06-05T23:18:28.0961175Z Receiving objects: 44% (56417/128219), 64.42 MiB | 16.05 MiB/s 2025-06-05T23:18:28.0961990Z Receiving objects: 45% (57699/128219), 64.42 MiB | 16.05 MiB/s 2025-06-05T23:18:28.0962820Z Receiving objects: 46% (58981/128219), 64.42 MiB | 16.05 MiB/s 2025-06-05T23:18:28.0963635Z Receiving objects: 47% (60263/128219), 64.42 MiB | 16.05 MiB/s 2025-06-05T23:18:28.0964468Z Receiving objects: 48% (61546/128219), 64.42 MiB | 16.05 MiB/s 2025-06-05T23:18:28.0965298Z Receiving objects: 49% (62828/128219), 64.42 MiB | 16.05 MiB/s 2025-06-05T23:18:28.0966086Z Receiving objects: 50% (64110/128219), 64.42 MiB | 16.05 MiB/s 2025-06-05T23:18:28.0966878Z Receiving objects: 51% (65392/128219), 64.42 MiB | 16.05 MiB/s 2025-06-05T23:18:28.0968020Z Receiving objects: 52% (66674/128219), 64.42 MiB | 16.05 MiB/s 2025-06-05T23:18:28.0968975Z Receiving objects: 53% (67957/128219), 64.42 MiB | 16.05 MiB/s 2025-06-05T23:18:28.0969771Z Receiving objects: 54% (69239/128219), 64.42 MiB | 16.05 MiB/s 2025-06-05T23:18:28.0970588Z Receiving objects: 55% (70521/128219), 64.42 MiB | 16.05 MiB/s 2025-06-05T23:18:28.0971397Z Receiving objects: 56% (71803/128219), 64.42 MiB | 16.05 MiB/s 2025-06-05T23:18:28.0972198Z Receiving objects: 57% (73085/128219), 73.86 MiB | 16.35 MiB/s 2025-06-05T23:18:28.0973013Z Receiving objects: 58% (74368/128219), 73.86 MiB | 16.35 MiB/s 2025-06-05T23:18:28.0973820Z Receiving objects: 59% (75650/128219), 73.86 MiB | 16.35 MiB/s 2025-06-05T23:18:28.0974631Z Receiving objects: 60% (76932/128219), 73.86 MiB | 16.35 MiB/s 2025-06-05T23:18:28.0975518Z Receiving objects: 61% (78214/128219), 73.86 MiB | 16.35 MiB/s 2025-06-05T23:18:28.0976347Z Receiving objects: 62% (79496/128219), 73.86 MiB | 16.35 MiB/s 2025-06-05T23:18:28.0977191Z Receiving objects: 63% (80778/128219), 73.86 MiB | 16.35 MiB/s 2025-06-05T23:18:28.0978149Z Receiving objects: 64% (82061/128219), 73.86 MiB | 16.35 MiB/s 2025-06-05T23:18:28.0978971Z Receiving objects: 64% (82324/128219), 73.86 MiB | 16.35 MiB/s 2025-06-05T23:18:28.0979782Z Receiving objects: 65% (83343/128219), 73.86 MiB | 16.35 MiB/s 2025-06-05T23:18:28.0980590Z Receiving objects: 66% (84625/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0981369Z Receiving objects: 67% (85907/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0982192Z Receiving objects: 68% (87189/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0983006Z Receiving objects: 69% (88472/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0983811Z Receiving objects: 70% (89754/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0984626Z Receiving objects: 71% (91036/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0985406Z Receiving objects: 72% (92318/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0986240Z Receiving objects: 73% (93600/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0987038Z Receiving objects: 74% (94883/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0987853Z Receiving objects: 75% (96165/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0988660Z Receiving objects: 76% (97447/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0989473Z Receiving objects: 77% (98729/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0990303Z Receiving objects: 78% (100011/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0991104Z Receiving objects: 79% (101294/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0991920Z Receiving objects: 80% (102576/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0992749Z Receiving objects: 81% (103858/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0993573Z Receiving objects: 82% (105140/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0994390Z Receiving objects: 83% (106422/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0995217Z Receiving objects: 84% (107704/128219), 76.92 MiB | 12.71 MiB/s 2025-06-05T23:18:28.0996025Z Receiving objects: 85% (108987/128219), 90.92 MiB | 14.40 MiB/s 2025-06-05T23:18:28.0996857Z Receiving objects: 86% (110269/128219), 90.92 MiB | 14.40 MiB/s 2025-06-05T23:18:28.0997700Z Receiving objects: 87% (111551/128219), 90.92 MiB | 14.40 MiB/s 2025-06-05T23:18:28.0998502Z Receiving objects: 88% (112833/128219), 90.92 MiB | 14.40 MiB/s 2025-06-05T23:18:28.0999343Z Receiving objects: 89% (114115/128219), 90.92 MiB | 14.40 MiB/s 2025-06-05T23:18:28.1000172Z Receiving objects: 90% (115398/128219), 90.92 MiB | 14.40 MiB/s 2025-06-05T23:18:28.1001011Z Receiving objects: 91% (116680/128219), 90.92 MiB | 14.40 MiB/s 2025-06-05T23:18:28.1001855Z Receiving objects: 92% (117962/128219), 90.92 MiB | 14.40 MiB/s 2025-06-05T23:18:28.1002688Z Receiving objects: 93% (119244/128219), 90.92 MiB | 14.40 MiB/s 2025-06-05T23:18:28.1003523Z Receiving objects: 94% (120526/128219), 90.92 MiB | 14.40 MiB/s 2025-06-05T23:18:28.1004577Z Receiving objects: 95% (121809/128219), 90.92 MiB | 14.40 MiB/s 2025-06-05T23:18:28.1005540Z Receiving objects: 96% (123091/128219), 90.92 MiB | 14.40 MiB/s 2025-06-05T23:18:28.1006369Z Receiving objects: 97% (124373/128219), 90.92 MiB | 14.40 MiB/s 2025-06-05T23:18:28.1007213Z Receiving objects: 98% (125655/128219), 90.92 MiB | 14.40 MiB/s 2025-06-05T23:18:28.1008052Z Receiving objects: 99% (126937/128219), 90.92 MiB | 14.40 MiB/s 2025-06-05T23:18:28.1009074Z remote: Total 128219 (delta 973), reused 1482 (delta 970), pack-reused 126685 (from 1) 2025-06-05T23:18:28.1010121Z Receiving objects: 100% (128219/128219), 90.92 MiB | 14.40 MiB/s 2025-06-05T23:18:28.1011012Z Receiving objects: 100% (128219/128219), 107.15 MiB | 18.05 MiB/s, done. 2025-06-05T23:18:28.1011787Z Resolving deltas: 0% (0/106077) 2025-06-05T23:18:28.1012306Z Resolving deltas: 1% (1061/106077) 2025-06-05T23:18:28.1012849Z Resolving deltas: 2% (2122/106077) 2025-06-05T23:18:28.1013390Z Resolving deltas: 3% (3183/106077) 2025-06-05T23:18:28.1013926Z Resolving deltas: 4% (4244/106077) 2025-06-05T23:18:28.1014461Z Resolving deltas: 5% (5304/106077) 2025-06-05T23:18:28.1014988Z Resolving deltas: 6% (6365/106077) 2025-06-05T23:18:28.1015593Z Resolving deltas: 7% (7426/106077) 2025-06-05T23:18:28.1016114Z Resolving deltas: 8% (8487/106077) 2025-06-05T23:18:28.1016642Z Resolving deltas: 9% (9547/106077) 2025-06-05T23:18:28.1017165Z Resolving deltas: 10% (10608/106077) 2025-06-05T23:18:28.1017708Z Resolving deltas: 11% (11669/106077) 2025-06-05T23:18:28.1018238Z Resolving deltas: 12% (12730/106077) 2025-06-05T23:18:28.1018779Z Resolving deltas: 13% (13791/106077) 2025-06-05T23:18:28.1019323Z Resolving deltas: 14% (14851/106077) 2025-06-05T23:18:28.1019853Z Resolving deltas: 15% (15912/106077) 2025-06-05T23:18:28.1020390Z Resolving deltas: 16% (16973/106077) 2025-06-05T23:18:28.1020922Z Resolving deltas: 17% (18034/106077) 2025-06-05T23:18:28.1021460Z Resolving deltas: 18% (19094/106077) 2025-06-05T23:18:28.1022000Z Resolving deltas: 19% (20155/106077) 2025-06-05T23:18:28.1022545Z Resolving deltas: 20% (21216/106077) 2025-06-05T23:18:28.1023090Z Resolving deltas: 21% (22277/106077) 2025-06-05T23:18:28.1023629Z Resolving deltas: 22% (23337/106077) 2025-06-05T23:18:28.1024173Z Resolving deltas: 23% (24398/106077) 2025-06-05T23:18:28.1024707Z Resolving deltas: 24% (25460/106077) 2025-06-05T23:18:28.1025251Z Resolving deltas: 25% (26520/106077) 2025-06-05T23:18:28.1025781Z Resolving deltas: 26% (27581/106077) 2025-06-05T23:18:28.1026327Z Resolving deltas: 27% (28641/106077) 2025-06-05T23:18:28.1026857Z Resolving deltas: 28% (29702/106077) 2025-06-05T23:18:28.1027404Z Resolving deltas: 29% (30763/106077) 2025-06-05T23:18:28.1027929Z Resolving deltas: 30% (31824/106077) 2025-06-05T23:18:28.1028470Z Resolving deltas: 31% (32884/106077) 2025-06-05T23:18:28.1028999Z Resolving deltas: 32% (33945/106077) 2025-06-05T23:18:28.1029546Z Resolving deltas: 33% (35007/106077) 2025-06-05T23:18:28.1030102Z Resolving deltas: 34% (36067/106077) 2025-06-05T23:18:28.1030628Z Resolving deltas: 35% (37127/106077) 2025-06-05T23:18:28.1031224Z Resolving deltas: 36% (38188/106077) 2025-06-05T23:18:28.1031753Z Resolving deltas: 37% (39249/106077) 2025-06-05T23:18:28.1032297Z Resolving deltas: 38% (40310/106077) 2025-06-05T23:18:28.1032827Z Resolving deltas: 39% (41371/106077) 2025-06-05T23:18:28.1033372Z Resolving deltas: 40% (42431/106077) 2025-06-05T23:18:28.1033908Z Resolving deltas: 41% (43492/106077) 2025-06-05T23:18:28.1034461Z Resolving deltas: 42% (44553/106077) 2025-06-05T23:18:28.1035004Z Resolving deltas: 43% (45614/106077) 2025-06-05T23:18:28.1035538Z Resolving deltas: 44% (46674/106077) 2025-06-05T23:18:28.1036122Z Resolving deltas: 45% (47735/106077) 2025-06-05T23:18:28.1036655Z Resolving deltas: 46% (48797/106077) 2025-06-05T23:18:28.1037200Z Resolving deltas: 47% (49857/106077) 2025-06-05T23:18:28.1037732Z Resolving deltas: 48% (50917/106077) 2025-06-05T23:18:28.1038287Z Resolving deltas: 49% (51978/106077) 2025-06-05T23:18:28.1038983Z Resolving deltas: 50% (53039/106077) 2025-06-05T23:18:28.1039539Z Resolving deltas: 51% (54100/106077) 2025-06-05T23:18:28.1040164Z Resolving deltas: 52% (55161/106077) 2025-06-05T23:18:28.1040697Z Resolving deltas: 53% (56221/106077) 2025-06-05T23:18:28.1041249Z Resolving deltas: 54% (57282/106077) 2025-06-05T23:18:28.1041770Z Resolving deltas: 55% (58343/106077) 2025-06-05T23:18:28.1042302Z Resolving deltas: 56% (59404/106077) 2025-06-05T23:18:28.1042827Z Resolving deltas: 57% (60464/106077) 2025-06-05T23:18:28.1043369Z Resolving deltas: 58% (61525/106077) 2025-06-05T23:18:28.1043891Z Resolving deltas: 59% (62586/106077) 2025-06-05T23:18:28.1044431Z Resolving deltas: 60% (63647/106077) 2025-06-05T23:18:28.1044976Z Resolving deltas: 61% (64707/106077) 2025-06-05T23:18:28.1045502Z Resolving deltas: 62% (65768/106077) 2025-06-05T23:18:28.1046046Z Resolving deltas: 63% (66829/106077) 2025-06-05T23:18:28.1046574Z Resolving deltas: 64% (67890/106077) 2025-06-05T23:18:28.1047127Z Resolving deltas: 65% (68951/106077) 2025-06-05T23:18:28.1047657Z Resolving deltas: 66% (70011/106077) 2025-06-05T23:18:29.6517686Z Resolving deltas: 67% (71072/106077) 2025-06-05T23:18:29.6518246Z Resolving deltas: 68% (72133/106077) 2025-06-05T23:18:29.6518822Z Resolving deltas: 69% (73194/106077) 2025-06-05T23:18:29.6519159Z Resolving deltas: 70% (74254/106077) 2025-06-05T23:18:29.6519474Z Resolving deltas: 71% (75315/106077) 2025-06-05T23:18:29.6519796Z Resolving deltas: 72% (76376/106077) 2025-06-05T23:18:29.6520073Z Resolving deltas: 73% (77437/106077) 2025-06-05T23:18:29.6520361Z Resolving deltas: 74% (78497/106077) 2025-06-05T23:18:29.6520637Z Resolving deltas: 75% (79558/106077) 2025-06-05T23:18:29.6520926Z Resolving deltas: 76% (80621/106077) 2025-06-05T23:18:29.6521209Z Resolving deltas: 77% (81680/106077) 2025-06-05T23:18:29.6521500Z Resolving deltas: 78% (82741/106077) 2025-06-05T23:18:29.6521789Z Resolving deltas: 79% (83801/106077) 2025-06-05T23:18:29.6522081Z Resolving deltas: 80% (84862/106077) 2025-06-05T23:18:29.6522399Z Resolving deltas: 81% (85923/106077) 2025-06-05T23:18:29.6522680Z Resolving deltas: 82% (86984/106077) 2025-06-05T23:18:29.6522973Z Resolving deltas: 83% (88044/106077) 2025-06-05T23:18:29.6523249Z Resolving deltas: 84% (89105/106077) 2025-06-05T23:18:29.6523538Z Resolving deltas: 85% (90166/106077) 2025-06-05T23:18:29.6523813Z Resolving deltas: 86% (91227/106077) 2025-06-05T23:18:29.6524099Z Resolving deltas: 87% (92287/106077) 2025-06-05T23:18:29.6524387Z Resolving deltas: 87% (92500/106077) 2025-06-05T23:18:29.6524662Z Resolving deltas: 88% (93348/106077) 2025-06-05T23:18:29.6524951Z Resolving deltas: 89% (94409/106077) 2025-06-05T23:18:29.6525227Z Resolving deltas: 90% (95470/106077) 2025-06-05T23:18:29.6525516Z Resolving deltas: 91% (96531/106077) 2025-06-05T23:18:29.6525794Z Resolving deltas: 92% (97591/106077) 2025-06-05T23:18:29.6526086Z Resolving deltas: 93% (98652/106077) 2025-06-05T23:18:29.6526374Z Resolving deltas: 94% (99713/106077) 2025-06-05T23:18:29.6526669Z Resolving deltas: 95% (100774/106077) 2025-06-05T23:18:29.6526962Z Resolving deltas: 96% (101834/106077) 2025-06-05T23:18:29.6527264Z Resolving deltas: 97% (102895/106077) 2025-06-05T23:18:29.6527565Z Resolving deltas: 98% (103956/106077) 2025-06-05T23:18:29.6527848Z Resolving deltas: 99% (105017/106077) 2025-06-05T23:18:29.6528142Z Resolving deltas: 100% (106077/106077) 2025-06-05T23:18:29.6528442Z Resolving deltas: 100% (106077/106077), done. 2025-06-05T23:18:29.6529030Z Cloning into '/pytorch/executorch/examples/arm/ethos-u-scratch/reference_model/thirdparty/json'... 2025-06-05T23:18:29.6529615Z remote: Enumerating objects: 60588, done. 2025-06-05T23:18:29.6529976Z remote: Counting objects: 0% (1/816) 2025-06-05T23:18:29.6530317Z remote: Counting objects: 1% (9/816) 2025-06-05T23:18:29.6530652Z remote: Counting objects: 2% (17/816) 2025-06-05T23:18:29.6530997Z remote: Counting objects: 3% (25/816) 2025-06-05T23:18:29.6531667Z remote: Counting objects: 4% (33/816) 2025-06-05T23:18:29.6532020Z remote: Counting objects: 5% (41/816) 2025-06-05T23:18:29.6532445Z remote: Counting objects: 6% (49/816) 2025-06-05T23:18:29.6532804Z remote: Counting objects: 7% (58/816) 2025-06-05T23:18:29.6533203Z remote: Counting objects: 8% (66/816) 2025-06-05T23:18:29.6533550Z remote: Counting objects: 9% (74/816) 2025-06-05T23:18:29.6533894Z remote: Counting objects: 10% (82/816) 2025-06-05T23:18:29.6534224Z remote: Counting objects: 11% (90/816) 2025-06-05T23:18:29.6534569Z remote: Counting objects: 12% (98/816) 2025-06-05T23:18:29.6534901Z remote: Counting objects: 13% (107/816) 2025-06-05T23:18:29.6535318Z remote: Counting objects: 14% (115/816) 2025-06-05T23:18:29.6535654Z remote: Counting objects: 15% (123/816) 2025-06-05T23:18:29.6536002Z remote: Counting objects: 16% (131/816) 2025-06-05T23:18:29.6536343Z remote: Counting objects: 17% (139/816) 2025-06-05T23:18:29.6536725Z remote: Counting objects: 18% (147/816) 2025-06-05T23:18:29.6537087Z remote: Counting objects: 19% (156/816) 2025-06-05T23:18:29.6537469Z remote: Counting objects: 20% (164/816) 2025-06-05T23:18:29.6537807Z remote: Counting objects: 21% (172/816) 2025-06-05T23:18:29.6538159Z remote: Counting objects: 22% (180/816) 2025-06-05T23:18:29.6538495Z remote: Counting objects: 23% (188/816) 2025-06-05T23:18:29.6538844Z remote: Counting objects: 24% (196/816) 2025-06-05T23:18:29.6539176Z remote: Counting objects: 25% (204/816) 2025-06-05T23:18:29.6539527Z remote: Counting objects: 26% (213/816) 2025-06-05T23:18:29.6539861Z remote: Counting objects: 27% (221/816) 2025-06-05T23:18:29.6540214Z remote: Counting objects: 28% (229/816) 2025-06-05T23:18:29.6540564Z remote: Counting objects: 29% (237/816) 2025-06-05T23:18:29.6540906Z remote: Counting objects: 30% (245/816) 2025-06-05T23:18:29.6541259Z remote: Counting objects: 31% (253/816) 2025-06-05T23:18:29.6541598Z remote: Counting objects: 32% (262/816) 2025-06-05T23:18:29.6541953Z remote: Counting objects: 33% (270/816) 2025-06-05T23:18:29.6542289Z remote: Counting objects: 34% (278/816) 2025-06-05T23:18:29.6542634Z remote: Counting objects: 35% (286/816) 2025-06-05T23:18:29.6542971Z remote: Counting objects: 36% (294/816) 2025-06-05T23:18:29.6543322Z remote: Counting objects: 37% (302/816) 2025-06-05T23:18:29.6543672Z remote: Counting objects: 38% (311/816) 2025-06-05T23:18:29.6544002Z remote: Counting objects: 39% (319/816) 2025-06-05T23:18:29.6544349Z remote: Counting objects: 40% (327/816) 2025-06-05T23:18:29.6544681Z remote: Counting objects: 41% (335/816) 2025-06-05T23:18:29.6545054Z remote: Counting objects: 42% (343/816) 2025-06-05T23:18:29.6545394Z remote: Counting objects: 43% (351/816) 2025-06-05T23:18:29.6545737Z remote: Counting objects: 44% (360/816) 2025-06-05T23:18:29.6546073Z remote: Counting objects: 45% (368/816) 2025-06-05T23:18:29.6546416Z remote: Counting objects: 46% (376/816) 2025-06-05T23:18:29.6546756Z remote: Counting objects: 47% (384/816) 2025-06-05T23:18:29.6547088Z remote: Counting objects: 48% (392/816) 2025-06-05T23:18:29.6547430Z remote: Counting objects: 49% (400/816) 2025-06-05T23:18:29.6547761Z remote: Counting objects: 50% (408/816) 2025-06-05T23:18:29.6548102Z remote: Counting objects: 51% (417/816) 2025-06-05T23:18:29.6548435Z remote: Counting objects: 52% (425/816) 2025-06-05T23:18:29.6548780Z remote: Counting objects: 53% (433/816) 2025-06-05T23:18:29.6549113Z remote: Counting objects: 54% (441/816) 2025-06-05T23:18:29.6549463Z remote: Counting objects: 55% (449/816) 2025-06-05T23:18:29.6549808Z remote: Counting objects: 56% (457/816) 2025-06-05T23:18:29.6550789Z remote: Counting objects: 57% (466/816) 2025-06-05T23:18:29.6551201Z remote: Counting objects: 58% (474/816) 2025-06-05T23:18:29.6551537Z remote: Counting objects: 59% (482/816) 2025-06-05T23:18:29.6551913Z remote: Counting objects: 60% (490/816) 2025-06-05T23:18:29.6552246Z remote: Counting objects: 61% (498/816) 2025-06-05T23:18:29.6552591Z remote: Counting objects: 62% (506/816) 2025-06-05T23:18:29.6552937Z remote: Counting objects: 63% (515/816) 2025-06-05T23:18:29.6553269Z remote: Counting objects: 64% (523/816) 2025-06-05T23:18:29.6553615Z remote: Counting objects: 65% (531/816) 2025-06-05T23:18:29.6553947Z remote: Counting objects: 66% (539/816) 2025-06-05T23:18:29.6554291Z remote: Counting objects: 67% (547/816) 2025-06-05T23:18:29.6554623Z remote: Counting objects: 68% (555/816) 2025-06-05T23:18:29.6554970Z remote: Counting objects: 69% (564/816) 2025-06-05T23:18:29.6555310Z remote: Counting objects: 70% (572/816) 2025-06-05T23:18:29.6555660Z remote: Counting objects: 71% (580/816) 2025-06-05T23:18:29.6556009Z remote: Counting objects: 72% (588/816) 2025-06-05T23:18:29.6556342Z remote: Counting objects: 73% (596/816) 2025-06-05T23:18:29.6556685Z remote: Counting objects: 74% (604/816) 2025-06-05T23:18:29.6557017Z remote: Counting objects: 75% (612/816) 2025-06-05T23:18:29.6557364Z remote: Counting objects: 76% (621/816) 2025-06-05T23:18:29.6557694Z remote: Counting objects: 77% (629/816) 2025-06-05T23:18:29.6558049Z remote: Counting objects: 78% (637/816) 2025-06-05T23:18:29.6558392Z remote: Counting objects: 79% (645/816) 2025-06-05T23:18:29.6558736Z remote: Counting objects: 80% (653/816) 2025-06-05T23:18:29.6559120Z remote: Counting objects: 81% (661/816) 2025-06-05T23:18:29.6559475Z remote: Counting objects: 82% (670/816) 2025-06-05T23:18:29.6559822Z remote: Counting objects: 83% (678/816) 2025-06-05T23:18:29.6560154Z remote: Counting objects: 84% (686/816) 2025-06-05T23:18:29.6560498Z remote: Counting objects: 85% (694/816) 2025-06-05T23:18:29.6560829Z remote: Counting objects: 86% (702/816) 2025-06-05T23:18:29.6561172Z remote: Counting objects: 87% (710/816) 2025-06-05T23:18:29.6561504Z remote: Counting objects: 88% (719/816) 2025-06-05T23:18:29.6561846Z remote: Counting objects: 89% (727/816) 2025-06-05T23:18:29.6562189Z remote: Counting objects: 90% (735/816) 2025-06-05T23:18:29.6562519Z remote: Counting objects: 91% (743/816) 2025-06-05T23:18:29.6562884Z remote: Counting objects: 92% (751/816) 2025-06-05T23:18:29.6563213Z remote: Counting objects: 93% (759/816) 2025-06-05T23:18:29.6563557Z remote: Counting objects: 94% (768/816) 2025-06-05T23:18:29.6563887Z remote: Counting objects: 95% (776/816) 2025-06-05T23:18:29.6564235Z remote: Counting objects: 96% (784/816) 2025-06-05T23:18:29.6564567Z remote: Counting objects: 97% (792/816) 2025-06-05T23:18:29.6564915Z remote: Counting objects: 98% (800/816) 2025-06-05T23:18:29.6565258Z remote: Counting objects: 99% (808/816) 2025-06-05T23:18:29.6565588Z remote: Counting objects: 100% (816/816) 2025-06-05T23:18:29.6565958Z remote: Counting objects: 100% (816/816), done. 2025-06-05T23:18:29.6566330Z remote: Compressing objects: 0% (1/525) 2025-06-05T23:18:29.6566721Z remote: Compressing objects: 1% (6/525) 2025-06-05T23:18:29.6567071Z remote: Compressing objects: 2% (11/525) 2025-06-05T23:18:29.6567441Z remote: Compressing objects: 3% (16/525) 2025-06-05T23:18:29.6567795Z remote: Compressing objects: 4% (21/525) 2025-06-05T23:18:29.6568162Z remote: Compressing objects: 5% (27/525) 2025-06-05T23:18:29.6568522Z remote: Compressing objects: 6% (32/525) 2025-06-05T23:18:29.6568964Z remote: Compressing objects: 7% (37/525) 2025-06-05T23:18:29.6569387Z remote: Compressing objects: 8% (42/525) 2025-06-05T23:18:29.6569735Z remote: Compressing objects: 9% (48/525) 2025-06-05T23:18:29.6570093Z remote: Compressing objects: 10% (53/525) 2025-06-05T23:18:29.6570439Z remote: Compressing objects: 11% (58/525) 2025-06-05T23:18:29.6570819Z remote: Compressing objects: 12% (63/525) 2025-06-05T23:18:29.6571181Z remote: Compressing objects: 13% (69/525) 2025-06-05T23:18:29.6571529Z remote: Compressing objects: 14% (74/525) 2025-06-05T23:18:29.6571886Z remote: Compressing objects: 15% (79/525) 2025-06-05T23:18:29.6572230Z remote: Compressing objects: 16% (84/525) 2025-06-05T23:18:29.6572590Z remote: Compressing objects: 17% (90/525) 2025-06-05T23:18:29.6572936Z remote: Compressing objects: 18% (95/525) 2025-06-05T23:18:29.6573305Z remote: Compressing objects: 19% (100/525) 2025-06-05T23:18:29.6573668Z remote: Compressing objects: 20% (105/525) 2025-06-05T23:18:29.6574040Z remote: Compressing objects: 21% (111/525) 2025-06-05T23:18:29.6574428Z remote: Compressing objects: 22% (116/525) 2025-06-05T23:18:29.6574784Z remote: Compressing objects: 23% (121/525) 2025-06-05T23:18:29.6575248Z remote: Compressing objects: 24% (126/525) 2025-06-05T23:18:29.6575603Z remote: Compressing objects: 25% (132/525) 2025-06-05T23:18:29.6575973Z remote: Compressing objects: 26% (137/525) 2025-06-05T23:18:29.6576329Z remote: Compressing objects: 27% (142/525) 2025-06-05T23:18:29.6576723Z remote: Compressing objects: 28% (147/525) 2025-06-05T23:18:29.6577077Z remote: Compressing objects: 29% (153/525) 2025-06-05T23:18:29.6577446Z remote: Compressing objects: 30% (158/525) 2025-06-05T23:18:29.6577993Z remote: Compressing objects: 31% (163/525) 2025-06-05T23:18:33.5537922Z remote: Compressing objects: 32% (168/525) 2025-06-05T23:18:33.5538645Z remote: Compressing objects: 33% (174/525) 2025-06-05T23:18:33.5539202Z remote: Compressing objects: 34% (179/525) 2025-06-05T23:18:33.5539632Z remote: Compressing objects: 35% (184/525) 2025-06-05T23:18:33.5539989Z remote: Compressing objects: 36% (189/525) 2025-06-05T23:18:33.5540409Z remote: Compressing objects: 37% (195/525) 2025-06-05T23:18:33.5540762Z remote: Compressing objects: 38% (200/525) 2025-06-05T23:18:33.5541180Z remote: Compressing objects: 39% (205/525) 2025-06-05T23:18:33.5541593Z remote: Compressing objects: 40% (210/525) 2025-06-05T23:18:33.5542017Z remote: Compressing objects: 41% (216/525) 2025-06-05T23:18:33.5542370Z remote: Compressing objects: 42% (221/525) 2025-06-05T23:18:33.5542798Z remote: Compressing objects: 43% (226/525) 2025-06-05T23:18:33.5543157Z remote: Compressing objects: 44% (231/525) 2025-06-05T23:18:33.5543577Z remote: Compressing objects: 45% (237/525) 2025-06-05T23:18:33.5543943Z remote: Compressing objects: 46% (242/525) 2025-06-05T23:18:33.5544343Z remote: Compressing objects: 47% (247/525) 2025-06-05T23:18:33.5544700Z remote: Compressing objects: 48% (252/525) 2025-06-05T23:18:33.5545097Z remote: Compressing objects: 49% (258/525) 2025-06-05T23:18:33.5545456Z remote: Compressing objects: 50% (263/525) 2025-06-05T23:18:33.5545855Z remote: Compressing objects: 51% (268/525) 2025-06-05T23:18:33.5546215Z remote: Compressing objects: 52% (273/525) 2025-06-05T23:18:33.5546624Z remote: Compressing objects: 53% (279/525) 2025-06-05T23:18:33.5546971Z remote: Compressing objects: 54% (284/525) 2025-06-05T23:18:33.5547419Z remote: Compressing objects: 55% (289/525) 2025-06-05T23:18:33.5547919Z remote: Compressing objects: 56% (294/525) 2025-06-05T23:18:33.5548283Z remote: Compressing objects: 57% (300/525) 2025-06-05T23:18:33.5548889Z remote: Compressing objects: 58% (305/525) 2025-06-05T23:18:33.5549420Z remote: Compressing objects: 59% (310/525) 2025-06-05T23:18:33.5549826Z remote: Compressing objects: 60% (315/525) 2025-06-05T23:18:33.5550173Z remote: Compressing objects: 61% (321/525) 2025-06-05T23:18:33.5550565Z remote: Compressing objects: 62% (326/525) 2025-06-05T23:18:33.5550923Z remote: Compressing objects: 63% (331/525) 2025-06-05T23:18:33.5551272Z remote: Compressing objects: 64% (336/525) 2025-06-05T23:18:33.5551630Z remote: Compressing objects: 65% (342/525) 2025-06-05T23:18:33.5551978Z remote: Compressing objects: 66% (347/525) 2025-06-05T23:18:33.5552340Z remote: Compressing objects: 67% (352/525) 2025-06-05T23:18:33.5552692Z remote: Compressing objects: 68% (357/525) 2025-06-05T23:18:33.5553054Z remote: Compressing objects: 69% (363/525) 2025-06-05T23:18:33.5553409Z remote: Compressing objects: 70% (368/525) 2025-06-05T23:18:33.5553804Z remote: Compressing objects: 71% (373/525) 2025-06-05T23:18:33.5554173Z remote: Compressing objects: 72% (378/525) 2025-06-05T23:18:33.5554525Z remote: Compressing objects: 73% (384/525) 2025-06-05T23:18:33.5554895Z remote: Compressing objects: 74% (389/525) 2025-06-05T23:18:33.5555243Z remote: Compressing objects: 75% (394/525) 2025-06-05T23:18:33.5555604Z remote: Compressing objects: 76% (399/525) 2025-06-05T23:18:33.5555951Z remote: Compressing objects: 77% (405/525) 2025-06-05T23:18:33.5556312Z remote: Compressing objects: 78% (410/525) 2025-06-05T23:18:33.5556693Z remote: Compressing objects: 79% (415/525) 2025-06-05T23:18:33.5557053Z remote: Compressing objects: 80% (420/525) 2025-06-05T23:18:33.5557412Z remote: Compressing objects: 81% (426/525) 2025-06-05T23:18:33.5557759Z remote: Compressing objects: 82% (431/525) 2025-06-05T23:18:33.5558161Z remote: Compressing objects: 83% (436/525) 2025-06-05T23:18:33.5558514Z remote: Compressing objects: 84% (441/525) 2025-06-05T23:18:33.5558873Z remote: Compressing objects: 85% (447/525) 2025-06-05T23:18:33.5559224Z remote: Compressing objects: 86% (452/525) 2025-06-05T23:18:33.5559584Z remote: Compressing objects: 87% (457/525) 2025-06-05T23:18:33.5559945Z remote: Compressing objects: 88% (462/525) 2025-06-05T23:18:33.5560292Z remote: Compressing objects: 89% (468/525) 2025-06-05T23:18:33.5560653Z remote: Compressing objects: 90% (473/525) 2025-06-05T23:18:33.5561000Z remote: Compressing objects: 91% (478/525) 2025-06-05T23:18:33.5561391Z remote: Compressing objects: 92% (483/525) 2025-06-05T23:18:33.5561737Z remote: Compressing objects: 93% (489/525) 2025-06-05T23:18:33.5562097Z remote: Compressing objects: 94% (494/525) 2025-06-05T23:18:33.5562453Z remote: Compressing objects: 95% (499/525) 2025-06-05T23:18:33.5562842Z remote: Compressing objects: 96% (504/525) 2025-06-05T23:18:33.5563207Z remote: Compressing objects: 97% (510/525) 2025-06-05T23:18:33.5563553Z remote: Compressing objects: 98% (515/525) 2025-06-05T23:18:33.5563912Z remote: Compressing objects: 99% (520/525) 2025-06-05T23:18:33.5564294Z remote: Compressing objects: 100% (525/525) 2025-06-05T23:18:33.5564687Z remote: Compressing objects: 100% (525/525), done. 2025-06-05T23:18:33.5565049Z Receiving objects: 0% (1/60588) 2025-06-05T23:18:33.5565335Z Receiving objects: 1% (606/60588) 2025-06-05T23:18:33.5565612Z Receiving objects: 2% (1212/60588) 2025-06-05T23:18:33.5565936Z Receiving objects: 3% (1818/60588) 2025-06-05T23:18:33.5566223Z Receiving objects: 4% (2424/60588) 2025-06-05T23:18:33.5566530Z Receiving objects: 5% (3030/60588) 2025-06-05T23:18:33.5566816Z Receiving objects: 6% (3636/60588) 2025-06-05T23:18:33.5567177Z Receiving objects: 7% (4242/60588) 2025-06-05T23:18:33.5567485Z Receiving objects: 8% (4848/60588) 2025-06-05T23:18:33.5567843Z Receiving objects: 9% (5453/60588) 2025-06-05T23:18:33.5568118Z Receiving objects: 10% (6059/60588) 2025-06-05T23:18:33.5568408Z Receiving objects: 11% (6665/60588) 2025-06-05T23:18:33.5568684Z Receiving objects: 12% (7271/60588) 2025-06-05T23:18:33.5568974Z Receiving objects: 13% (7877/60588) 2025-06-05T23:18:33.5569249Z Receiving objects: 14% (8483/60588) 2025-06-05T23:18:33.5569541Z Receiving objects: 15% (9089/60588) 2025-06-05T23:18:33.5569818Z Receiving objects: 16% (9695/60588) 2025-06-05T23:18:33.5570115Z Receiving objects: 17% (10300/60588) 2025-06-05T23:18:33.5570402Z Receiving objects: 18% (10906/60588) 2025-06-05T23:18:33.5570702Z Receiving objects: 19% (11512/60588) 2025-06-05T23:18:33.5571069Z Receiving objects: 20% (12118/60588), 32.99 MiB | 65.97 MiB/s 2025-06-05T23:18:33.5571499Z Receiving objects: 21% (12724/60588), 32.99 MiB | 65.97 MiB/s 2025-06-05T23:18:33.5571939Z Receiving objects: 22% (13330/60588), 32.99 MiB | 65.97 MiB/s 2025-06-05T23:18:33.5572362Z Receiving objects: 23% (13936/60588), 32.99 MiB | 65.97 MiB/s 2025-06-05T23:18:33.5572794Z Receiving objects: 24% (14542/60588), 32.99 MiB | 65.97 MiB/s 2025-06-05T23:18:33.5573208Z Receiving objects: 25% (15147/60588), 32.99 MiB | 65.97 MiB/s 2025-06-05T23:18:33.5573674Z Receiving objects: 26% (15753/60588), 32.99 MiB | 65.97 MiB/s 2025-06-05T23:18:33.5574143Z Receiving objects: 27% (16359/60588), 32.99 MiB | 65.97 MiB/s 2025-06-05T23:18:33.5574559Z Receiving objects: 28% (16965/60588), 32.99 MiB | 65.97 MiB/s 2025-06-05T23:18:33.5575025Z Receiving objects: 29% (17571/60588), 32.99 MiB | 65.97 MiB/s 2025-06-05T23:18:33.5575512Z Receiving objects: 30% (18177/60588), 32.99 MiB | 65.97 MiB/s 2025-06-05T23:18:33.5575940Z Receiving objects: 31% (18783/60588), 32.99 MiB | 65.97 MiB/s 2025-06-05T23:18:33.5576351Z Receiving objects: 31% (19082/60588), 53.19 MiB | 53.18 MiB/s 2025-06-05T23:18:33.5576784Z Receiving objects: 32% (19389/60588), 53.19 MiB | 53.18 MiB/s 2025-06-05T23:18:33.5577213Z Receiving objects: 33% (19995/60588), 71.64 MiB | 47.75 MiB/s 2025-06-05T23:18:33.5577816Z Receiving objects: 33% (20351/60588), 93.19 MiB | 46.59 MiB/s 2025-06-05T23:18:33.5578304Z Receiving objects: 33% (20357/60588), 142.79 MiB | 47.59 MiB/s 2025-06-05T23:18:33.5578731Z Receiving objects: 34% (20600/60588), 142.79 MiB | 47.59 MiB/s 2025-06-05T23:18:33.5579167Z Receiving objects: 35% (21206/60588), 142.79 MiB | 47.59 MiB/s 2025-06-05T23:18:33.5579583Z Receiving objects: 36% (21812/60588), 142.79 MiB | 47.59 MiB/s 2025-06-05T23:18:33.5580014Z Receiving objects: 37% (22418/60588), 142.79 MiB | 47.59 MiB/s 2025-06-05T23:18:33.5580446Z Receiving objects: 38% (23024/60588), 142.79 MiB | 47.59 MiB/s 2025-06-05T23:18:33.5580903Z Receiving objects: 39% (23630/60588), 142.79 MiB | 47.59 MiB/s 2025-06-05T23:18:33.5581334Z Receiving objects: 40% (24236/60588), 142.79 MiB | 47.59 MiB/s 2025-06-05T23:18:33.5581763Z Receiving objects: 41% (24842/60588), 142.79 MiB | 47.59 MiB/s 2025-06-05T23:18:33.5582202Z Receiving objects: 42% (25447/60588), 142.79 MiB | 47.59 MiB/s 2025-06-05T23:18:33.5582662Z Receiving objects: 43% (26053/60588), 142.79 MiB | 47.59 MiB/s 2025-06-05T23:18:33.5583129Z Receiving objects: 44% (26659/60588), 142.79 MiB | 47.59 MiB/s 2025-06-05T23:18:33.5583561Z Receiving objects: 45% (27265/60588), 142.79 MiB | 47.59 MiB/s 2025-06-05T23:18:33.5583980Z Receiving objects: 46% (27871/60588), 142.79 MiB | 47.59 MiB/s 2025-06-05T23:18:33.5584408Z Receiving objects: 47% (28477/60588), 142.79 MiB | 47.59 MiB/s 2025-06-05T23:18:33.5584825Z Receiving objects: 48% (29083/60588), 142.79 MiB | 47.59 MiB/s 2025-06-05T23:18:33.5585256Z Receiving objects: 49% (29689/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5585706Z Receiving objects: 50% (30294/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5586136Z Receiving objects: 51% (30900/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5586727Z Receiving objects: 52% (31506/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5587200Z Receiving objects: 53% (32112/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5587717Z Receiving objects: 54% (32718/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5588140Z Receiving objects: 55% (33324/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5588613Z Receiving objects: 56% (33930/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5589040Z Receiving objects: 57% (34536/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5589511Z Receiving objects: 58% (35142/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5589929Z Receiving objects: 59% (35747/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5590360Z Receiving objects: 60% (36353/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5590791Z Receiving objects: 61% (36959/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5591210Z Receiving objects: 62% (37565/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5591643Z Receiving objects: 63% (38171/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5592061Z Receiving objects: 64% (38777/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5592493Z Receiving objects: 65% (39383/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5592911Z Receiving objects: 66% (39989/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5593431Z Receiving objects: 67% (40594/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5593866Z Receiving objects: 68% (41200/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5594320Z Receiving objects: 69% (41806/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5594792Z Receiving objects: 70% (42412/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5595354Z Receiving objects: 71% (43018/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5595792Z Receiving objects: 72% (43624/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5596253Z Receiving objects: 73% (44230/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5596693Z Receiving objects: 74% (44836/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:33.5597123Z Receiving objects: 75% (45441/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:37.2485343Z Receiving objects: 76% (46047/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:37.2486087Z Receiving objects: 77% (46653/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:37.2486661Z Receiving objects: 78% (47259/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:37.2487316Z Receiving objects: 79% (47865/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:37.2487830Z Receiving objects: 80% (48471/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:37.2488326Z Receiving objects: 81% (49077/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:37.2488765Z Receiving objects: 82% (49683/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:37.2489189Z Receiving objects: 83% (50289/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:37.2489625Z Receiving objects: 84% (50894/60588), 175.94 MiB | 50.27 MiB/s 2025-06-05T23:18:37.2490080Z Receiving objects: 84% (51406/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2490499Z Receiving objects: 85% (51500/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2490939Z Receiving objects: 86% (52106/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2491355Z Receiving objects: 87% (52712/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2491783Z Receiving objects: 88% (53318/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2492197Z Receiving objects: 89% (53924/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2492625Z Receiving objects: 90% (54530/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2493044Z Receiving objects: 91% (55136/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2493474Z Receiving objects: 92% (55741/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2493903Z Receiving objects: 93% (56347/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2494320Z Receiving objects: 94% (56953/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2495002Z Receiving objects: 95% (57559/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2495508Z Receiving objects: 96% (58165/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2496145Z Receiving objects: 97% (58771/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2496568Z Receiving objects: 98% (59377/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2497003Z Receiving objects: 99% (59983/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2497540Z remote: Total 60588 (delta 652), reused 292 (delta 291), pack-reused 59772 (from 3) 2025-06-05T23:18:37.2498070Z Receiving objects: 100% (60588/60588), 204.13 MiB | 51.03 MiB/s 2025-06-05T23:18:37.2498534Z Receiving objects: 100% (60588/60588), 217.57 MiB | 50.74 MiB/s, done. 2025-06-05T23:18:37.2498925Z Resolving deltas: 0% (0/34955) 2025-06-05T23:18:37.2499208Z Resolving deltas: 1% (350/34955) 2025-06-05T23:18:37.2499479Z Resolving deltas: 2% (700/34955) 2025-06-05T23:18:37.2499762Z Resolving deltas: 3% (1049/34955) 2025-06-05T23:18:37.2500054Z Resolving deltas: 4% (1399/34955) 2025-06-05T23:18:37.2500324Z Resolving deltas: 5% (1748/34955) 2025-06-05T23:18:37.2500610Z Resolving deltas: 6% (2098/34955) 2025-06-05T23:18:37.2500878Z Resolving deltas: 7% (2447/34955) 2025-06-05T23:18:37.2501158Z Resolving deltas: 8% (2797/34955) 2025-06-05T23:18:37.2501426Z Resolving deltas: 9% (3146/34955) 2025-06-05T23:18:37.2501708Z Resolving deltas: 10% (3496/34955) 2025-06-05T23:18:37.2501976Z Resolving deltas: 11% (3846/34955) 2025-06-05T23:18:37.2502321Z Resolving deltas: 12% (4195/34955) 2025-06-05T23:18:37.2502677Z Resolving deltas: 13% (4545/34955) 2025-06-05T23:18:37.2503049Z Resolving deltas: 14% (4894/34955) 2025-06-05T23:18:37.2503471Z Resolving deltas: 15% (5244/34955) 2025-06-05T23:18:37.2503795Z Resolving deltas: 16% (5593/34955) 2025-06-05T23:18:37.2504076Z Resolving deltas: 17% (5943/34955) 2025-06-05T23:18:37.2504346Z Resolving deltas: 18% (6292/34955) 2025-06-05T23:18:37.2504627Z Resolving deltas: 19% (6642/34955) 2025-06-05T23:18:37.2504908Z Resolving deltas: 20% (6991/34955) 2025-06-05T23:18:37.2505191Z Resolving deltas: 21% (7341/34955) 2025-06-05T23:18:37.2505469Z Resolving deltas: 22% (7691/34955) 2025-06-05T23:18:37.2505751Z Resolving deltas: 23% (8040/34955) 2025-06-05T23:18:37.2506021Z Resolving deltas: 24% (8390/34955) 2025-06-05T23:18:37.2506299Z Resolving deltas: 25% (8739/34955) 2025-06-05T23:18:37.2506640Z Resolving deltas: 26% (9089/34955) 2025-06-05T23:18:37.2506910Z Resolving deltas: 27% (9438/34955) 2025-06-05T23:18:37.2507189Z Resolving deltas: 28% (9788/34955) 2025-06-05T23:18:37.2507459Z Resolving deltas: 29% (10137/34955) 2025-06-05T23:18:37.2507748Z Resolving deltas: 30% (10487/34955) 2025-06-05T23:18:37.2508021Z Resolving deltas: 31% (10837/34955) 2025-06-05T23:18:37.2508306Z Resolving deltas: 32% (11186/34955) 2025-06-05T23:18:37.2508576Z Resolving deltas: 33% (11536/34955) 2025-06-05T23:18:37.2508860Z Resolving deltas: 33% (11844/34955) 2025-06-05T23:18:37.2509139Z Resolving deltas: 34% (11885/34955) 2025-06-05T23:18:37.2509418Z Resolving deltas: 35% (12235/34955) 2025-06-05T23:18:37.2509699Z Resolving deltas: 36% (12584/34955) 2025-06-05T23:18:37.2509974Z Resolving deltas: 37% (12934/34955) 2025-06-05T23:18:37.2510253Z Resolving deltas: 38% (13283/34955) 2025-06-05T23:18:37.2510523Z Resolving deltas: 39% (13633/34955) 2025-06-05T23:18:37.2510803Z Resolving deltas: 40% (13982/34955) 2025-06-05T23:18:37.2511071Z Resolving deltas: 41% (14332/34955) 2025-06-05T23:18:37.2511351Z Resolving deltas: 42% (14682/34955) 2025-06-05T23:18:37.2511619Z Resolving deltas: 43% (15031/34955) 2025-06-05T23:18:37.2511901Z Resolving deltas: 44% (15381/34955) 2025-06-05T23:18:37.2512187Z Resolving deltas: 45% (15730/34955) 2025-06-05T23:18:37.2512455Z Resolving deltas: 46% (16080/34955) 2025-06-05T23:18:37.2512738Z Resolving deltas: 47% (16429/34955) 2025-06-05T23:18:37.2513006Z Resolving deltas: 48% (16779/34955) 2025-06-05T23:18:37.2513290Z Resolving deltas: 49% (17128/34955) 2025-06-05T23:18:37.2513677Z Resolving deltas: 50% (17478/34955) 2025-06-05T23:18:37.2513962Z Resolving deltas: 51% (17828/34955) 2025-06-05T23:18:37.2514296Z Resolving deltas: 52% (18177/34955) 2025-06-05T23:18:37.2514579Z Resolving deltas: 53% (18527/34955) 2025-06-05T23:18:37.2514849Z Resolving deltas: 54% (18876/34955) 2025-06-05T23:18:37.2515129Z Resolving deltas: 55% (19226/34955) 2025-06-05T23:18:37.2515413Z Resolving deltas: 56% (19575/34955) 2025-06-05T23:18:37.2515682Z Resolving deltas: 57% (19925/34955) 2025-06-05T23:18:37.2515966Z Resolving deltas: 58% (20274/34955) 2025-06-05T23:18:37.2516241Z Resolving deltas: 59% (20624/34955) 2025-06-05T23:18:37.2516561Z Resolving deltas: 60% (20973/34955) 2025-06-05T23:18:37.2516967Z Resolving deltas: 61% (21323/34955) 2025-06-05T23:18:37.2517354Z Resolving deltas: 62% (21673/34955) 2025-06-05T23:18:37.2517720Z Resolving deltas: 63% (22022/34955) 2025-06-05T23:18:37.2518079Z Resolving deltas: 64% (22372/34955) 2025-06-05T23:18:37.2518363Z Resolving deltas: 65% (22721/34955) 2025-06-05T23:18:37.2518647Z Resolving deltas: 66% (23071/34955) 2025-06-05T23:18:37.2518930Z Resolving deltas: 67% (23420/34955) 2025-06-05T23:18:37.2519211Z Resolving deltas: 68% (23770/34955) 2025-06-05T23:18:37.2519494Z Resolving deltas: 69% (24119/34955) 2025-06-05T23:18:37.2519764Z Resolving deltas: 70% (24469/34955) 2025-06-05T23:18:37.2520097Z Resolving deltas: 71% (24819/34955) 2025-06-05T23:18:37.2520456Z Resolving deltas: 72% (25168/34955) 2025-06-05T23:18:37.2520767Z Resolving deltas: 73% (25518/34955) 2025-06-05T23:18:37.2521131Z Resolving deltas: 74% (25867/34955) 2025-06-05T23:18:37.2521414Z Resolving deltas: 75% (26217/34955) 2025-06-05T23:18:37.2521701Z Resolving deltas: 76% (26566/34955) 2025-06-05T23:18:37.2521971Z Resolving deltas: 77% (26916/34955) 2025-06-05T23:18:37.2522254Z Resolving deltas: 78% (27265/34955) 2025-06-05T23:18:37.2522526Z Resolving deltas: 79% (27615/34955) 2025-06-05T23:18:37.2522809Z Resolving deltas: 80% (27964/34955) 2025-06-05T23:18:37.2523087Z Resolving deltas: 81% (28314/34955) 2025-06-05T23:18:37.2523367Z Resolving deltas: 82% (28664/34955) 2025-06-05T23:18:37.2523644Z Resolving deltas: 83% (29013/34955) 2025-06-05T23:18:37.2523925Z Resolving deltas: 84% (29363/34955) 2025-06-05T23:18:37.2524193Z Resolving deltas: 85% (29712/34955) 2025-06-05T23:18:37.2524477Z Resolving deltas: 86% (30062/34955) 2025-06-05T23:18:37.2524757Z Resolving deltas: 86% (30335/34955) 2025-06-05T23:18:37.2525027Z Resolving deltas: 87% (30411/34955) 2025-06-05T23:18:37.2525308Z Resolving deltas: 88% (30761/34955) 2025-06-05T23:18:37.2525578Z Resolving deltas: 89% (31110/34955) 2025-06-05T23:18:37.2525860Z Resolving deltas: 90% (31460/34955) 2025-06-05T23:18:37.2526128Z Resolving deltas: 91% (31810/34955) 2025-06-05T23:18:37.2526424Z Resolving deltas: 92% (32159/34955) 2025-06-05T23:18:37.2526709Z Resolving deltas: 93% (32509/34955) 2025-06-05T23:18:37.2527095Z Resolving deltas: 94% (32858/34955) 2025-06-05T23:18:37.2527492Z Resolving deltas: 95% (33208/34955) 2025-06-05T23:18:37.2527861Z Resolving deltas: 96% (33557/34955) 2025-06-05T23:18:37.2528211Z Resolving deltas: 97% (33907/34955) 2025-06-05T23:18:37.2528496Z Resolving deltas: 98% (34256/34955) 2025-06-05T23:18:37.2528786Z Resolving deltas: 99% (34606/34955) 2025-06-05T23:18:37.2529058Z Resolving deltas: 100% (34955/34955) 2025-06-05T23:18:37.2529360Z Resolving deltas: 100% (34955/34955), done. 2025-06-05T23:18:37.2529968Z Cloning into '/pytorch/executorch/examples/arm/ethos-u-scratch/reference_model/thirdparty/pybind11'... 2025-06-05T23:18:37.2530592Z remote: Enumerating objects: 31544, done. 2025-06-05T23:18:37.2531096Z remote: Counting objects: 2% (1/46) 2025-06-05T23:18:37.2531471Z remote: Counting objects: 4% (2/46) 2025-06-05T23:18:37.2531811Z remote: Counting objects: 6% (3/46) 2025-06-05T23:18:37.2532134Z remote: Counting objects: 8% (4/46) 2025-06-05T23:18:37.2532468Z remote: Counting objects: 10% (5/46) 2025-06-05T23:18:37.2532905Z remote: Counting objects: 13% (6/46) 2025-06-05T23:18:37.2533243Z remote: Counting objects: 15% (7/46) 2025-06-05T23:18:37.2533637Z remote: Counting objects: 17% (8/46) 2025-06-05T23:18:37.2533953Z remote: Counting objects: 19% (9/46) 2025-06-05T23:18:37.2534287Z remote: Counting objects: 21% (10/46) 2025-06-05T23:18:37.2534613Z remote: Counting objects: 23% (11/46) 2025-06-05T23:18:37.2534948Z remote: Counting objects: 26% (12/46) 2025-06-05T23:18:37.2535339Z remote: Counting objects: 28% (13/46) 2025-06-05T23:18:37.2535673Z remote: Counting objects: 30% (14/46) 2025-06-05T23:18:37.2535994Z remote: Counting objects: 32% (15/46) 2025-06-05T23:18:37.2536331Z remote: Counting objects: 34% (16/46) 2025-06-05T23:18:37.2536667Z remote: Counting objects: 36% (17/46) 2025-06-05T23:18:37.2536992Z remote: Counting objects: 39% (18/46) 2025-06-05T23:18:37.2537328Z remote: Counting objects: 41% (19/46) 2025-06-05T23:18:37.2537659Z remote: Counting objects: 43% (20/46) 2025-06-05T23:18:37.2537997Z remote: Counting objects: 45% (21/46) 2025-06-05T23:18:37.2538322Z remote: Counting objects: 47% (22/46) 2025-06-05T23:18:37.2538661Z remote: Counting objects: 50% (23/46) 2025-06-05T23:18:37.2538999Z remote: Counting objects: 52% (24/46) 2025-06-05T23:18:37.2539321Z remote: Counting objects: 54% (25/46) 2025-06-05T23:18:37.2539654Z remote: Counting objects: 56% (26/46) 2025-06-05T23:18:37.2539979Z remote: Counting objects: 58% (27/46) 2025-06-05T23:18:37.2540319Z remote: Counting objects: 60% (28/46) 2025-06-05T23:18:37.2540642Z remote: Counting objects: 63% (29/46) 2025-06-05T23:18:37.2540984Z remote: Counting objects: 65% (30/46) 2025-06-05T23:18:37.2541307Z remote: Counting objects: 67% (31/46) 2025-06-05T23:18:37.2541641Z remote: Counting objects: 69% (32/46) 2025-06-05T23:18:37.2541981Z remote: Counting objects: 71% (33/46) 2025-06-05T23:18:37.2542303Z remote: Counting objects: 73% (34/46) 2025-06-05T23:18:37.2542642Z remote: Counting objects: 76% (35/46) 2025-06-05T23:18:37.2542966Z remote: Counting objects: 78% (36/46) 2025-06-05T23:18:37.2543300Z remote: Counting objects: 80% (37/46) 2025-06-05T23:18:37.2543630Z remote: Counting objects: 82% (38/46) 2025-06-05T23:18:37.2543968Z remote: Counting objects: 84% (39/46) 2025-06-05T23:18:37.2544292Z remote: Counting objects: 86% (40/46) 2025-06-05T23:18:37.2544630Z remote: Counting objects: 89% (41/46) 2025-06-05T23:18:37.2544969Z remote: Counting objects: 91% (42/46) 2025-06-05T23:18:37.2545289Z remote: Counting objects: 93% (43/46) 2025-06-05T23:18:37.2545624Z remote: Counting objects: 95% (44/46) 2025-06-05T23:18:37.2545946Z remote: Counting objects: 97% (45/46) 2025-06-05T23:18:37.2546280Z remote: Counting objects: 100% (46/46) 2025-06-05T23:18:37.2546631Z remote: Counting objects: 100% (46/46), done. 2025-06-05T23:18:37.2547013Z remote: Compressing objects: 2% (1/42) 2025-06-05T23:18:37.2547354Z remote: Compressing objects: 4% (2/42) 2025-06-05T23:18:37.2547703Z remote: Compressing objects: 7% (3/42) 2025-06-05T23:18:37.8277858Z remote: Compressing objects: 9% (4/42) 2025-06-05T23:18:37.8278534Z remote: Compressing objects: 11% (5/42) 2025-06-05T23:18:37.8279133Z remote: Compressing objects: 14% (6/42) 2025-06-05T23:18:37.8279699Z remote: Compressing objects: 16% (7/42) 2025-06-05T23:18:37.8280323Z remote: Compressing objects: 19% (8/42) 2025-06-05T23:18:37.8280858Z remote: Compressing objects: 21% (9/42) 2025-06-05T23:18:37.8281474Z remote: Compressing objects: 23% (10/42) 2025-06-05T23:18:37.8281968Z remote: Compressing objects: 26% (11/42) 2025-06-05T23:18:37.8282586Z remote: Compressing objects: 28% (12/42) 2025-06-05T23:18:37.8284279Z remote: Compressing objects: 30% (13/42) 2025-06-05T23:18:37.8285049Z remote: Compressing objects: 33% (14/42) 2025-06-05T23:18:37.8285679Z remote: Compressing objects: 35% (15/42) 2025-06-05T23:18:37.8286177Z remote: Compressing objects: 38% (16/42) 2025-06-05T23:18:37.8286800Z remote: Compressing objects: 40% (17/42) 2025-06-05T23:18:37.8287390Z remote: Compressing objects: 42% (18/42) 2025-06-05T23:18:37.8287989Z remote: Compressing objects: 45% (19/42) 2025-06-05T23:18:37.8288604Z remote: Compressing objects: 47% (20/42) 2025-06-05T23:18:37.8289278Z remote: Compressing objects: 50% (21/42) 2025-06-05T23:18:37.8289912Z remote: Compressing objects: 52% (22/42) 2025-06-05T23:18:37.8290525Z remote: Compressing objects: 54% (23/42) 2025-06-05T23:18:37.8291125Z remote: Compressing objects: 57% (24/42) 2025-06-05T23:18:37.8291772Z remote: Compressing objects: 59% (25/42) 2025-06-05T23:18:37.8292435Z remote: Compressing objects: 61% (26/42) 2025-06-05T23:18:37.8302232Z remote: Compressing objects: 64% (27/42) 2025-06-05T23:18:37.8302928Z remote: Compressing objects: 66% (28/42) 2025-06-05T23:18:37.8303599Z remote: Compressing objects: 69% (29/42) 2025-06-05T23:18:37.8304285Z remote: Compressing objects: 71% (30/42) 2025-06-05T23:18:37.8304956Z remote: Compressing objects: 73% (31/42) 2025-06-05T23:18:37.8305615Z remote: Compressing objects: 76% (32/42) 2025-06-05T23:18:37.8306277Z remote: Compressing objects: 78% (33/42) 2025-06-05T23:18:37.8306959Z remote: Compressing objects: 80% (34/42) 2025-06-05T23:18:37.8307623Z remote: Compressing objects: 83% (35/42) 2025-06-05T23:18:37.8308296Z remote: Compressing objects: 85% (36/42) 2025-06-05T23:18:37.8308971Z remote: Compressing objects: 88% (37/42) 2025-06-05T23:18:37.8309634Z remote: Compressing objects: 90% (38/42) 2025-06-05T23:18:37.8310330Z remote: Compressing objects: 92% (39/42) 2025-06-05T23:18:37.8310995Z remote: Compressing objects: 95% (40/42) 2025-06-05T23:18:37.8311665Z remote: Compressing objects: 97% (41/42) 2025-06-05T23:18:37.8312321Z remote: Compressing objects: 100% (42/42) 2025-06-05T23:18:37.8313054Z remote: Compressing objects: 100% (42/42), done. 2025-06-05T23:18:37.8313723Z Receiving objects: 0% (1/31544) 2025-06-05T23:18:37.8314261Z Receiving objects: 1% (316/31544) 2025-06-05T23:18:37.8314801Z Receiving objects: 2% (631/31544) 2025-06-05T23:18:37.8315328Z Receiving objects: 3% (947/31544) 2025-06-05T23:18:37.8315862Z Receiving objects: 4% (1262/31544) 2025-06-05T23:18:37.8316395Z Receiving objects: 5% (1578/31544) 2025-06-05T23:18:37.8316931Z Receiving objects: 6% (1893/31544) 2025-06-05T23:18:37.8317458Z Receiving objects: 7% (2209/31544) 2025-06-05T23:18:37.8318001Z Receiving objects: 8% (2524/31544) 2025-06-05T23:18:37.8318541Z Receiving objects: 9% (2839/31544) 2025-06-05T23:18:37.8319078Z Receiving objects: 10% (3155/31544) 2025-06-05T23:18:37.8319605Z Receiving objects: 11% (3470/31544) 2025-06-05T23:18:37.8320130Z Receiving objects: 12% (3786/31544) 2025-06-05T23:18:37.8320668Z Receiving objects: 13% (4101/31544) 2025-06-05T23:18:37.8321194Z Receiving objects: 14% (4417/31544) 2025-06-05T23:18:37.8321740Z Receiving objects: 15% (4732/31544) 2025-06-05T23:18:37.8322264Z Receiving objects: 16% (5048/31544) 2025-06-05T23:18:37.8322808Z Receiving objects: 17% (5363/31544) 2025-06-05T23:18:37.8323324Z Receiving objects: 18% (5678/31544) 2025-06-05T23:18:37.8323862Z Receiving objects: 19% (5994/31544) 2025-06-05T23:18:37.8324388Z Receiving objects: 20% (6309/31544) 2025-06-05T23:18:37.8324926Z Receiving objects: 21% (6625/31544) 2025-06-05T23:18:37.8325463Z Receiving objects: 22% (6940/31544) 2025-06-05T23:18:37.8325992Z Receiving objects: 23% (7256/31544) 2025-06-05T23:18:37.8326529Z Receiving objects: 24% (7571/31544) 2025-06-05T23:18:37.8327237Z Receiving objects: 25% (7886/31544) 2025-06-05T23:18:37.8327784Z Receiving objects: 26% (8202/31544) 2025-06-05T23:18:37.8328410Z Receiving objects: 27% (8517/31544) 2025-06-05T23:18:37.8328949Z Receiving objects: 28% (8833/31544) 2025-06-05T23:18:37.8329476Z Receiving objects: 29% (9148/31544) 2025-06-05T23:18:37.8330019Z Receiving objects: 30% (9464/31544) 2025-06-05T23:18:37.8330548Z Receiving objects: 31% (9779/31544) 2025-06-05T23:18:37.8331093Z Receiving objects: 32% (10095/31544) 2025-06-05T23:18:37.8331642Z Receiving objects: 33% (10410/31544) 2025-06-05T23:18:37.8332176Z Receiving objects: 34% (10725/31544) 2025-06-05T23:18:37.8332734Z Receiving objects: 35% (11041/31544) 2025-06-05T23:18:37.8333269Z Receiving objects: 36% (11356/31544) 2025-06-05T23:18:37.8333812Z Receiving objects: 37% (11672/31544) 2025-06-05T23:18:37.8334340Z Receiving objects: 38% (11987/31544) 2025-06-05T23:18:37.8334884Z Receiving objects: 39% (12303/31544) 2025-06-05T23:18:37.8335512Z Receiving objects: 40% (12618/31544) 2025-06-05T23:18:37.8336046Z Receiving objects: 41% (12934/31544) 2025-06-05T23:18:37.8336581Z Receiving objects: 42% (13249/31544) 2025-06-05T23:18:37.8337103Z Receiving objects: 43% (13564/31544) 2025-06-05T23:18:37.8337632Z Receiving objects: 44% (13880/31544) 2025-06-05T23:18:37.8338126Z Receiving objects: 45% (14195/31544) 2025-06-05T23:18:37.8338579Z Receiving objects: 46% (14511/31544) 2025-06-05T23:18:37.8338995Z Receiving objects: 47% (14826/31544) 2025-06-05T23:18:37.8339511Z Receiving objects: 48% (15142/31544) 2025-06-05T23:18:37.8339984Z Receiving objects: 49% (15457/31544) 2025-06-05T23:18:37.8340447Z Receiving objects: 50% (15772/31544) 2025-06-05T23:18:37.8340919Z Receiving objects: 51% (16088/31544) 2025-06-05T23:18:37.8341388Z Receiving objects: 52% (16403/31544) 2025-06-05T23:18:37.8341915Z Receiving objects: 53% (16719/31544) 2025-06-05T23:18:37.8342417Z Receiving objects: 54% (17034/31544) 2025-06-05T23:18:37.8342938Z Receiving objects: 55% (17350/31544) 2025-06-05T23:18:37.8343441Z Receiving objects: 56% (17665/31544) 2025-06-05T23:18:37.8343973Z Receiving objects: 57% (17981/31544) 2025-06-05T23:18:37.8344470Z Receiving objects: 58% (18296/31544) 2025-06-05T23:18:37.8345000Z Receiving objects: 59% (18611/31544) 2025-06-05T23:18:37.8345501Z Receiving objects: 60% (18927/31544) 2025-06-05T23:18:37.8346018Z Receiving objects: 61% (19242/31544) 2025-06-05T23:18:37.8346546Z Receiving objects: 62% (19558/31544) 2025-06-05T23:18:37.8347071Z Receiving objects: 63% (19873/31544) 2025-06-05T23:18:37.8347592Z Receiving objects: 64% (20189/31544) 2025-06-05T23:18:37.8348114Z Receiving objects: 65% (20504/31544) 2025-06-05T23:18:37.8348655Z Receiving objects: 66% (20820/31544) 2025-06-05T23:18:37.8349160Z Receiving objects: 67% (21135/31544) 2025-06-05T23:18:37.8349681Z Receiving objects: 68% (21450/31544) 2025-06-05T23:18:37.8350204Z Receiving objects: 69% (21766/31544) 2025-06-05T23:18:37.8350727Z Receiving objects: 70% (22081/31544) 2025-06-05T23:18:37.8351258Z Receiving objects: 71% (22397/31544) 2025-06-05T23:18:37.8351730Z Receiving objects: 72% (22712/31544) 2025-06-05T23:18:37.8352201Z Receiving objects: 73% (23028/31544) 2025-06-05T23:18:37.8352686Z Receiving objects: 74% (23343/31544) 2025-06-05T23:18:37.8353231Z Receiving objects: 75% (23658/31544) 2025-06-05T23:18:37.8353760Z Receiving objects: 76% (23974/31544) 2025-06-05T23:18:37.8354299Z Receiving objects: 77% (24289/31544) 2025-06-05T23:18:37.8354817Z Receiving objects: 78% (24605/31544) 2025-06-05T23:18:37.8355364Z Receiving objects: 79% (24920/31544) 2025-06-05T23:18:37.8355896Z Receiving objects: 80% (25236/31544) 2025-06-05T23:18:37.8356443Z Receiving objects: 81% (25551/31544) 2025-06-05T23:18:37.8356990Z Receiving objects: 82% (25867/31544) 2025-06-05T23:18:37.8357525Z Receiving objects: 83% (26182/31544) 2025-06-05T23:18:37.8358072Z Receiving objects: 84% (26497/31544) 2025-06-05T23:18:37.8358604Z Receiving objects: 85% (26813/31544) 2025-06-05T23:18:37.8359309Z Receiving objects: 86% (27128/31544) 2025-06-05T23:18:37.8359846Z Receiving objects: 87% (27444/31544) 2025-06-05T23:18:37.8360479Z Receiving objects: 88% (27759/31544) 2025-06-05T23:18:37.8361013Z Receiving objects: 89% (28075/31544) 2025-06-05T23:18:37.8361563Z Receiving objects: 90% (28390/31544) 2025-06-05T23:18:37.8362095Z Receiving objects: 91% (28706/31544) 2025-06-05T23:18:37.8362637Z Receiving objects: 92% (29021/31544) 2025-06-05T23:18:37.8363183Z Receiving objects: 93% (29336/31544) 2025-06-05T23:18:37.8363716Z Receiving objects: 94% (29652/31544) 2025-06-05T23:18:37.8364255Z Receiving objects: 95% (29967/31544) 2025-06-05T23:18:37.8364760Z Receiving objects: 96% (30283/31544) 2025-06-05T23:18:37.8365284Z Receiving objects: 97% (30598/31544) 2025-06-05T23:18:37.8365819Z Receiving objects: 98% (30914/31544) 2025-06-05T23:18:37.8366363Z Receiving objects: 99% (31229/31544) 2025-06-05T23:18:37.8367171Z remote: Total 31544 (delta 19), reused 4 (delta 4), pack-reused 31498 (from 2) 2025-06-05T23:18:37.8368037Z Receiving objects: 100% (31544/31544) 2025-06-05T23:18:37.8368753Z Receiving objects: 100% (31544/31544), 12.39 MiB | 42.56 MiB/s, done. 2025-06-05T23:18:37.8369489Z Resolving deltas: 0% (0/22494) 2025-06-05T23:18:37.8370010Z Resolving deltas: 1% (225/22494) 2025-06-05T23:18:37.8370510Z Resolving deltas: 2% (450/22494) 2025-06-05T23:18:37.8371036Z Resolving deltas: 3% (675/22494) 2025-06-05T23:18:37.8371547Z Resolving deltas: 4% (900/22494) 2025-06-05T23:18:37.8372074Z Resolving deltas: 5% (1125/22494) 2025-06-05T23:18:37.8372600Z Resolving deltas: 6% (1350/22494) 2025-06-05T23:18:37.8373130Z Resolving deltas: 7% (1575/22494) 2025-06-05T23:18:37.8373660Z Resolving deltas: 8% (1800/22494) 2025-06-05T23:18:37.8374176Z Resolving deltas: 9% (2025/22494) 2025-06-05T23:18:37.8374703Z Resolving deltas: 10% (2250/22494) 2025-06-05T23:18:37.8375307Z Resolving deltas: 11% (2475/22494) 2025-06-05T23:18:37.8375838Z Resolving deltas: 12% (2700/22494) 2025-06-05T23:18:37.8376355Z Resolving deltas: 13% (2925/22494) 2025-06-05T23:18:37.8376885Z Resolving deltas: 14% (3150/22494) 2025-06-05T23:18:37.8377407Z Resolving deltas: 15% (3375/22494) 2025-06-05T23:18:37.8378149Z Resolving deltas: 16% (3600/22494) 2025-06-05T23:18:37.8378669Z Resolving deltas: 17% (3824/22494) 2025-06-05T23:18:37.8379195Z Resolving deltas: 18% (4049/22494) 2025-06-05T23:18:37.8379727Z Resolving deltas: 19% (4274/22494) 2025-06-05T23:18:37.8380239Z Resolving deltas: 20% (4499/22494) 2025-06-05T23:18:37.8380768Z Resolving deltas: 21% (4724/22494) 2025-06-05T23:18:37.8381285Z Resolving deltas: 22% (4949/22494) 2025-06-05T23:18:37.8381812Z Resolving deltas: 23% (5174/22494) 2025-06-05T23:18:37.8382319Z Resolving deltas: 24% (5399/22494) 2025-06-05T23:18:37.8382846Z Resolving deltas: 25% (5624/22494) 2025-06-05T23:18:37.8383362Z Resolving deltas: 26% (5849/22494) 2025-06-05T23:18:37.8383893Z Resolving deltas: 27% (6074/22494) 2025-06-05T23:18:37.8384422Z Resolving deltas: 28% (6299/22494) 2025-06-05T23:18:37.8384951Z Resolving deltas: 29% (6524/22494) 2025-06-05T23:18:37.8385488Z Resolving deltas: 30% (6749/22494) 2025-06-05T23:18:37.8386009Z Resolving deltas: 31% (6974/22494) 2025-06-05T23:18:37.8386537Z Resolving deltas: 32% (7199/22494) 2025-06-05T23:18:37.8387046Z Resolving deltas: 33% (7424/22494) 2025-06-05T23:18:37.8387576Z Resolving deltas: 34% (7648/22494) 2025-06-05T23:18:37.8388091Z Resolving deltas: 35% (7873/22494) 2025-06-05T23:18:37.8388621Z Resolving deltas: 36% (8098/22494) 2025-06-05T23:18:37.8389135Z Resolving deltas: 37% (8323/22494) 2025-06-05T23:18:37.8389667Z Resolving deltas: 38% (8548/22494) 2025-06-05T23:18:37.8390218Z Resolving deltas: 39% (8773/22494) 2025-06-05T23:18:37.8390710Z Resolving deltas: 40% (8998/22494) 2025-06-05T23:18:37.8391235Z Resolving deltas: 41% (9223/22494) 2025-06-05T23:18:37.8391745Z Resolving deltas: 42% (9448/22494) 2025-06-05T23:18:37.8392273Z Resolving deltas: 43% (9673/22494) 2025-06-05T23:18:37.8392998Z Resolving deltas: 44% (9898/22494) 2025-06-05T23:18:37.8393534Z Resolving deltas: 45% (10123/22494) 2025-06-05T23:18:37.8394196Z Resolving deltas: 46% (10348/22494) 2025-06-05T23:18:37.8394717Z Resolving deltas: 47% (10575/22494) 2025-06-05T23:18:37.8395232Z Resolving deltas: 48% (10798/22494) 2025-06-05T23:18:37.8395740Z Resolving deltas: 49% (11023/22494) 2025-06-05T23:18:37.8396274Z Resolving deltas: 50% (11247/22494) 2025-06-05T23:18:37.8396769Z Resolving deltas: 51% (11472/22494) 2025-06-05T23:18:37.8397287Z Resolving deltas: 52% (11697/22494) 2025-06-05T23:18:37.8397805Z Resolving deltas: 53% (11922/22494) 2025-06-05T23:18:37.8398320Z Resolving deltas: 54% (12147/22494) 2025-06-05T23:18:37.8398839Z Resolving deltas: 55% (12372/22494) 2025-06-05T23:18:37.8399379Z Resolving deltas: 56% (12597/22494) 2025-06-05T23:18:37.8399886Z Resolving deltas: 57% (12822/22494) 2025-06-05T23:18:37.8400430Z Resolving deltas: 58% (13047/22494) 2025-06-05T23:18:37.8400961Z Resolving deltas: 59% (13272/22494) 2025-06-05T23:18:37.8401493Z Resolving deltas: 60% (13497/22494) 2025-06-05T23:18:38.0471962Z Resolving deltas: 61% (13722/22494) 2025-06-05T23:18:38.0472571Z Resolving deltas: 62% (13947/22494) 2025-06-05T23:18:38.0473052Z Resolving deltas: 63% (14172/22494) 2025-06-05T23:18:38.0473502Z Resolving deltas: 64% (14397/22494) 2025-06-05T23:18:38.0473979Z Resolving deltas: 65% (14622/22494) 2025-06-05T23:18:38.0474526Z Resolving deltas: 66% (14847/22494) 2025-06-05T23:18:38.0475059Z Resolving deltas: 67% (15071/22494) 2025-06-05T23:18:38.0475612Z Resolving deltas: 68% (15296/22494) 2025-06-05T23:18:38.0475922Z Resolving deltas: 69% (15521/22494) 2025-06-05T23:18:38.0476304Z Resolving deltas: 70% (15746/22494) 2025-06-05T23:18:38.0476591Z Resolving deltas: 71% (15971/22494) 2025-06-05T23:18:38.0476874Z Resolving deltas: 72% (16196/22494) 2025-06-05T23:18:38.0477254Z Resolving deltas: 73% (16421/22494) 2025-06-05T23:18:38.0477747Z Resolving deltas: 74% (16646/22494) 2025-06-05T23:18:38.0478160Z Resolving deltas: 75% (16871/22494) 2025-06-05T23:18:38.0478509Z Resolving deltas: 76% (17096/22494) 2025-06-05T23:18:38.0478896Z Resolving deltas: 77% (17321/22494) 2025-06-05T23:18:38.0479173Z Resolving deltas: 78% (17546/22494) 2025-06-05T23:18:38.0479462Z Resolving deltas: 79% (17771/22494) 2025-06-05T23:18:38.0479751Z Resolving deltas: 80% (17996/22494) 2025-06-05T23:18:38.0480110Z Resolving deltas: 81% (18221/22494) 2025-06-05T23:18:38.0480401Z Resolving deltas: 82% (18446/22494) 2025-06-05T23:18:38.0480810Z Resolving deltas: 83% (18671/22494) 2025-06-05T23:18:38.0481178Z Resolving deltas: 84% (18895/22494) 2025-06-05T23:18:38.0481464Z Resolving deltas: 85% (19120/22494) 2025-06-05T23:18:38.0481786Z Resolving deltas: 86% (19345/22494) 2025-06-05T23:18:38.0482192Z Resolving deltas: 87% (19570/22494) 2025-06-05T23:18:38.0482586Z Resolving deltas: 88% (19795/22494) 2025-06-05T23:18:38.0482907Z Resolving deltas: 89% (20020/22494) 2025-06-05T23:18:38.0483333Z Resolving deltas: 90% (20245/22494) 2025-06-05T23:18:38.0483723Z Resolving deltas: 91% (20470/22494) 2025-06-05T23:18:38.0484104Z Resolving deltas: 92% (20695/22494) 2025-06-05T23:18:38.0484405Z Resolving deltas: 93% (20920/22494) 2025-06-05T23:18:38.0484696Z Resolving deltas: 94% (21145/22494) 2025-06-05T23:18:38.0485036Z Resolving deltas: 95% (21370/22494) 2025-06-05T23:18:38.0485351Z Resolving deltas: 96% (21595/22494) 2025-06-05T23:18:38.0485764Z Resolving deltas: 97% (21820/22494) 2025-06-05T23:18:38.0486114Z Resolving deltas: 98% (22045/22494) 2025-06-05T23:18:38.0486400Z Resolving deltas: 99% (22270/22494) 2025-06-05T23:18:38.0486696Z Resolving deltas: 100% (22494/22494) 2025-06-05T23:18:38.0487021Z Resolving deltas: 100% (22494/22494), done. 2025-06-05T23:18:38.0487670Z Cloning into '/pytorch/executorch/examples/arm/ethos-u-scratch/reference_model/thirdparty/serialization_lib'... 2025-06-05T23:18:38.0488296Z remote: Counting objects: 1 2025-06-05T23:18:38.0488613Z remote: Counting objects: 434, done 2025-06-05T23:18:38.0489179Z remote: Finding sources: 1% (3/422) 2025-06-05T23:18:38.0489532Z remote: Finding sources: 2% (7/422) 2025-06-05T23:18:38.0489963Z remote: Finding sources: 3% (11/422) 2025-06-05T23:18:38.0490318Z remote: Finding sources: 4% (15/422) 2025-06-05T23:18:38.0490668Z remote: Finding sources: 5% (19/422) 2025-06-05T23:18:38.0491003Z remote: Finding sources: 6% (24/422) 2025-06-05T23:18:38.0491351Z remote: Finding sources: 7% (28/422) 2025-06-05T23:18:38.0491690Z remote: Finding sources: 8% (32/422) 2025-06-05T23:18:38.0492037Z remote: Finding sources: 9% (36/422) 2025-06-05T23:18:38.0492372Z remote: Finding sources: 10% (41/422) 2025-06-05T23:18:38.0492820Z remote: Finding sources: 11% (45/422) 2025-06-05T23:18:38.0493429Z remote: Finding sources: 12% (49/422) 2025-06-05T23:18:38.0494083Z remote: Finding sources: 13% (53/422) 2025-06-05T23:18:38.0494754Z remote: Finding sources: 14% (57/422) 2025-06-05T23:18:38.0495332Z remote: Finding sources: 15% (62/422) 2025-06-05T23:18:38.0495685Z remote: Finding sources: 16% (66/422) 2025-06-05T23:18:38.0496062Z remote: Finding sources: 17% (70/422) 2025-06-05T23:18:38.0496461Z remote: Finding sources: 18% (74/422) 2025-06-05T23:18:38.0496797Z remote: Finding sources: 19% (79/422) 2025-06-05T23:18:38.0497141Z remote: Finding sources: 20% (83/422) 2025-06-05T23:18:38.0497474Z remote: Finding sources: 21% (87/422) 2025-06-05T23:18:38.0497822Z remote: Finding sources: 22% (91/422) 2025-06-05T23:18:38.0498168Z remote: Finding sources: 23% (95/422) 2025-06-05T23:18:38.0498506Z remote: Finding sources: 24% (100/422) 2025-06-05T23:18:38.0498866Z remote: Finding sources: 25% (104/422) 2025-06-05T23:18:38.0499211Z remote: Finding sources: 26% (108/422) 2025-06-05T23:18:38.0499569Z remote: Finding sources: 27% (112/422) 2025-06-05T23:18:38.0499911Z remote: Finding sources: 28% (117/422) 2025-06-05T23:18:38.0500261Z remote: Finding sources: 29% (121/422) 2025-06-05T23:18:38.0500610Z remote: Finding sources: 30% (125/422) 2025-06-05T23:18:38.0500947Z remote: Finding sources: 31% (129/422) 2025-06-05T23:18:38.0501303Z remote: Finding sources: 32% (133/422) 2025-06-05T23:18:38.0501643Z remote: Finding sources: 33% (138/422) 2025-06-05T23:18:38.0501995Z remote: Finding sources: 34% (142/422) 2025-06-05T23:18:38.0502333Z remote: Finding sources: 35% (146/422) 2025-06-05T23:18:38.0502681Z remote: Finding sources: 36% (150/422) 2025-06-05T23:18:38.0503020Z remote: Finding sources: 37% (155/422) 2025-06-05T23:18:38.0503369Z remote: Finding sources: 38% (159/422) 2025-06-05T23:18:38.0503718Z remote: Finding sources: 39% (163/422) 2025-06-05T23:18:38.0504104Z remote: Finding sources: 40% (167/422) 2025-06-05T23:18:38.0504463Z remote: Finding sources: 41% (171/422) 2025-06-05T23:18:38.0504816Z remote: Finding sources: 42% (176/422) 2025-06-05T23:18:38.0505156Z remote: Finding sources: 43% (180/422) 2025-06-05T23:18:38.0505508Z remote: Finding sources: 44% (184/422) 2025-06-05T23:18:38.0505848Z remote: Finding sources: 45% (188/422) 2025-06-05T23:18:38.0506198Z remote: Finding sources: 46% (193/422) 2025-06-05T23:18:38.0506534Z remote: Finding sources: 47% (197/422) 2025-06-05T23:18:38.0506884Z remote: Finding sources: 48% (201/422) 2025-06-05T23:18:38.0507220Z remote: Finding sources: 49% (205/422) 2025-06-05T23:18:38.0507569Z remote: Finding sources: 50% (209/422) 2025-06-05T23:18:38.0507918Z remote: Finding sources: 51% (214/422) 2025-06-05T23:18:38.0508385Z remote: Finding sources: 52% (218/422) 2025-06-05T23:18:38.0508736Z remote: Finding sources: 53% (222/422) 2025-06-05T23:18:38.0509140Z remote: Finding sources: 54% (226/422) 2025-06-05T23:18:38.0509490Z remote: Finding sources: 55% (230/422) 2025-06-05T23:18:38.0509827Z remote: Finding sources: 56% (235/422) 2025-06-05T23:18:38.0510177Z remote: Finding sources: 57% (239/422) 2025-06-05T23:18:38.0510528Z remote: Finding sources: 58% (243/422) 2025-06-05T23:18:38.0510870Z remote: Finding sources: 59% (247/422) 2025-06-05T23:18:38.0511225Z remote: Finding sources: 60% (252/422) 2025-06-05T23:18:38.0511564Z remote: Finding sources: 61% (256/422) 2025-06-05T23:18:38.0511918Z remote: Finding sources: 62% (260/422) 2025-06-05T23:18:38.0512255Z remote: Finding sources: 63% (264/422) 2025-06-05T23:18:38.0512608Z remote: Finding sources: 64% (268/422) 2025-06-05T23:18:38.0512950Z remote: Finding sources: 65% (273/422) 2025-06-05T23:18:38.0513301Z remote: Finding sources: 66% (277/422) 2025-06-05T23:18:38.0513654Z remote: Finding sources: 67% (281/422) 2025-06-05T23:18:38.0513990Z remote: Finding sources: 68% (285/422) 2025-06-05T23:18:38.0514339Z remote: Finding sources: 69% (290/422) 2025-06-05T23:18:38.0514677Z remote: Finding sources: 70% (294/422) 2025-06-05T23:18:38.0515024Z remote: Finding sources: 71% (298/422) 2025-06-05T23:18:38.0515442Z remote: Finding sources: 72% (302/422) 2025-06-05T23:18:38.0515814Z remote: Finding sources: 73% (306/422) 2025-06-05T23:18:38.0516153Z remote: Finding sources: 74% (311/422) 2025-06-05T23:18:38.0516509Z remote: Finding sources: 75% (315/422) 2025-06-05T23:18:38.0516863Z remote: Finding sources: 76% (319/422) 2025-06-05T23:18:38.0517203Z remote: Finding sources: 77% (323/422) 2025-06-05T23:18:38.0517562Z remote: Finding sources: 78% (328/422) 2025-06-05T23:18:38.0517982Z remote: Finding sources: 79% (332/422) 2025-06-05T23:18:38.0518618Z remote: Finding sources: 80% (336/422) 2025-06-05T23:18:38.0519269Z remote: Finding sources: 81% (340/422) 2025-06-05T23:18:38.0519936Z remote: Finding sources: 82% (344/422) 2025-06-05T23:18:38.0520321Z remote: Finding sources: 83% (349/422) 2025-06-05T23:18:38.0520661Z remote: Finding sources: 84% (353/422) 2025-06-05T23:18:38.0521018Z remote: Finding sources: 85% (357/422) 2025-06-05T23:18:38.0521444Z remote: Finding sources: 86% (361/422) 2025-06-05T23:18:38.0521799Z remote: Finding sources: 87% (366/422) 2025-06-05T23:18:38.0522138Z remote: Finding sources: 88% (370/422) 2025-06-05T23:18:38.0522563Z remote: Finding sources: 89% (374/422) 2025-06-05T23:18:38.0522914Z remote: Finding sources: 90% (378/422) 2025-06-05T23:18:38.0523309Z remote: Finding sources: 91% (382/422) 2025-06-05T23:18:38.0523726Z remote: Finding sources: 92% (387/422) 2025-06-05T23:18:38.0524114Z remote: Finding sources: 93% (391/422) 2025-06-05T23:18:38.0524461Z remote: Finding sources: 94% (395/422) 2025-06-05T23:18:38.0524886Z remote: Finding sources: 95% (399/422) 2025-06-05T23:18:38.0525234Z remote: Finding sources: 96% (404/422) 2025-06-05T23:18:38.0525622Z remote: Finding sources: 97% (408/422) 2025-06-05T23:18:38.0525979Z remote: Finding sources: 98% (412/422) 2025-06-05T23:18:38.0526375Z remote: Finding sources: 99% (416/422) 2025-06-05T23:18:38.0526723Z remote: Finding sources: 100% (420/422) 2025-06-05T23:18:38.0527072Z remote: Finding sources: 100% (422/422) 2025-06-05T23:18:38.0527432Z Receiving objects: 0% (1/2844) 2025-06-05T23:18:38.0527719Z Receiving objects: 1% (29/2844) 2025-06-05T23:18:38.0528137Z Receiving objects: 2% (57/2844) 2025-06-05T23:18:38.0528422Z Receiving objects: 3% (86/2844) 2025-06-05T23:18:38.0528796Z Receiving objects: 4% (114/2844) 2025-06-05T23:18:38.0529084Z Receiving objects: 5% (143/2844) 2025-06-05T23:18:38.0529376Z Receiving objects: 6% (171/2844) 2025-06-05T23:18:38.0529693Z Receiving objects: 7% (200/2844) 2025-06-05T23:18:38.0529977Z Receiving objects: 8% (228/2844) 2025-06-05T23:18:38.0530245Z Receiving objects: 9% (256/2844) 2025-06-05T23:18:38.0530531Z Receiving objects: 10% (285/2844) 2025-06-05T23:18:38.0530800Z Receiving objects: 11% (313/2844) 2025-06-05T23:18:38.0531084Z Receiving objects: 12% (342/2844) 2025-06-05T23:18:38.0531352Z Receiving objects: 13% (370/2844) 2025-06-05T23:18:38.0531634Z Receiving objects: 14% (399/2844) 2025-06-05T23:18:38.0531900Z Receiving objects: 15% (427/2844) 2025-06-05T23:18:38.0532180Z Receiving objects: 16% (456/2844) 2025-06-05T23:18:38.0532447Z Receiving objects: 17% (484/2844) 2025-06-05T23:18:38.0532732Z Receiving objects: 18% (512/2844) 2025-06-05T23:18:38.0533011Z Receiving objects: 19% (541/2844) 2025-06-05T23:18:38.0533282Z Receiving objects: 20% (569/2844) 2025-06-05T23:18:38.0533563Z Receiving objects: 21% (598/2844) 2025-06-05T23:18:38.0533830Z Receiving objects: 22% (626/2844) 2025-06-05T23:18:38.0534118Z Receiving objects: 23% (655/2844) 2025-06-05T23:18:38.0534385Z Receiving objects: 24% (683/2844) 2025-06-05T23:18:38.0534668Z Receiving objects: 25% (711/2844) 2025-06-05T23:18:38.0534936Z Receiving objects: 26% (740/2844) 2025-06-05T23:18:38.0535286Z Receiving objects: 27% (768/2844) 2025-06-05T23:18:38.0535559Z Receiving objects: 28% (797/2844) 2025-06-05T23:18:38.0535845Z Receiving objects: 29% (825/2844) 2025-06-05T23:18:38.0536127Z Receiving objects: 30% (854/2844) 2025-06-05T23:18:38.0536395Z Receiving objects: 31% (882/2844) 2025-06-05T23:18:38.0536685Z Receiving objects: 32% (911/2844) 2025-06-05T23:18:38.0537100Z Receiving objects: 33% (939/2844) 2025-06-05T23:18:38.0537642Z Receiving objects: 34% (967/2844) 2025-06-05T23:18:38.0538166Z Receiving objects: 35% (996/2844) 2025-06-05T23:18:38.0538711Z Receiving objects: 36% (1024/2844) 2025-06-05T23:18:38.0539186Z Receiving objects: 37% (1053/2844) 2025-06-05T23:18:38.1813857Z Receiving objects: 38% (1081/2844) 2025-06-05T23:18:38.1814447Z Receiving objects: 39% (1110/2844) 2025-06-05T23:18:38.1814907Z Receiving objects: 40% (1138/2844) 2025-06-05T23:18:38.1815345Z Receiving objects: 41% (1167/2844) 2025-06-05T23:18:38.1815767Z Receiving objects: 42% (1195/2844) 2025-06-05T23:18:38.1816119Z Receiving objects: 43% (1223/2844) 2025-06-05T23:18:38.1816439Z Receiving objects: 44% (1252/2844) 2025-06-05T23:18:38.1816723Z Receiving objects: 45% (1280/2844) 2025-06-05T23:18:38.1816994Z Receiving objects: 46% (1309/2844) 2025-06-05T23:18:38.1817276Z Receiving objects: 47% (1337/2844) 2025-06-05T23:18:38.1817546Z Receiving objects: 48% (1366/2844) 2025-06-05T23:18:38.1817841Z Receiving objects: 49% (1394/2844) 2025-06-05T23:18:38.1818233Z Receiving objects: 50% (1422/2844) 2025-06-05T23:18:38.1818624Z Receiving objects: 51% (1451/2844) 2025-06-05T23:18:38.1818929Z Receiving objects: 52% (1479/2844) 2025-06-05T23:18:38.1819233Z Receiving objects: 53% (1508/2844) 2025-06-05T23:18:38.1819564Z Receiving objects: 54% (1536/2844) 2025-06-05T23:18:38.1819880Z Receiving objects: 55% (1565/2844) 2025-06-05T23:18:38.1820224Z Receiving objects: 56% (1593/2844) 2025-06-05T23:18:38.1820533Z Receiving objects: 57% (1622/2844) 2025-06-05T23:18:38.1820888Z Receiving objects: 58% (1650/2844) 2025-06-05T23:18:38.1821192Z Receiving objects: 59% (1678/2844) 2025-06-05T23:18:38.1821556Z Receiving objects: 60% (1707/2844) 2025-06-05T23:18:38.1821866Z Receiving objects: 61% (1735/2844) 2025-06-05T23:18:38.1822155Z Receiving objects: 62% (1764/2844) 2025-06-05T23:18:38.1822490Z Receiving objects: 63% (1792/2844) 2025-06-05T23:18:38.1822889Z Receiving objects: 64% (1821/2844) 2025-06-05T23:18:38.1823200Z Receiving objects: 65% (1849/2844) 2025-06-05T23:18:38.1823829Z Receiving objects: 66% (1878/2844) 2025-06-05T23:18:38.1824128Z Receiving objects: 67% (1906/2844) 2025-06-05T23:18:38.1824583Z Receiving objects: 68% (1934/2844) 2025-06-05T23:18:38.1824974Z Receiving objects: 69% (1963/2844) 2025-06-05T23:18:38.1825290Z Receiving objects: 70% (1991/2844) 2025-06-05T23:18:38.1825630Z Receiving objects: 71% (2020/2844) 2025-06-05T23:18:38.1825947Z Receiving objects: 72% (2048/2844) 2025-06-05T23:18:38.1826242Z Receiving objects: 73% (2077/2844) 2025-06-05T23:18:38.1826659Z Receiving objects: 74% (2105/2844) 2025-06-05T23:18:38.1826990Z Receiving objects: 75% (2133/2844) 2025-06-05T23:18:38.1827348Z Receiving objects: 76% (2162/2844) 2025-06-05T23:18:38.1827634Z Receiving objects: 77% (2190/2844) 2025-06-05T23:18:38.1828000Z Receiving objects: 78% (2219/2844) 2025-06-05T23:18:38.1828406Z Receiving objects: 79% (2247/2844) 2025-06-05T23:18:38.1828686Z Receiving objects: 80% (2276/2844) 2025-06-05T23:18:38.1829029Z Receiving objects: 81% (2304/2844) 2025-06-05T23:18:38.1829353Z Receiving objects: 82% (2333/2844) 2025-06-05T23:18:38.1829677Z Receiving objects: 83% (2361/2844) 2025-06-05T23:18:38.1829955Z Receiving objects: 84% (2389/2844) 2025-06-05T23:18:38.1830237Z Receiving objects: 85% (2418/2844) 2025-06-05T23:18:38.1830595Z Receiving objects: 86% (2446/2844) 2025-06-05T23:18:38.1830913Z Receiving objects: 87% (2475/2844) 2025-06-05T23:18:38.1831220Z Receiving objects: 88% (2503/2844) 2025-06-05T23:18:38.1831644Z remote: Total 2844 (delta 196), reused 2772 (delta 196) 2025-06-05T23:18:38.1832034Z Receiving objects: 89% (2532/2844) 2025-06-05T23:18:38.1832357Z Receiving objects: 90% (2560/2844) 2025-06-05T23:18:38.1832714Z Receiving objects: 91% (2589/2844) 2025-06-05T23:18:38.1833052Z Receiving objects: 92% (2617/2844) 2025-06-05T23:18:38.1833382Z Receiving objects: 93% (2645/2844) 2025-06-05T23:18:38.1833738Z Receiving objects: 94% (2674/2844) 2025-06-05T23:18:38.1834121Z Receiving objects: 95% (2702/2844) 2025-06-05T23:18:38.1834460Z Receiving objects: 96% (2731/2844) 2025-06-05T23:18:38.1834850Z Receiving objects: 97% (2759/2844) 2025-06-05T23:18:38.1835148Z Receiving objects: 98% (2788/2844) 2025-06-05T23:18:38.1835499Z Receiving objects: 99% (2816/2844) 2025-06-05T23:18:38.1835826Z Receiving objects: 100% (2844/2844) 2025-06-05T23:18:38.1836188Z Receiving objects: 100% (2844/2844), 891.22 KiB | 20.25 MiB/s, done. 2025-06-05T23:18:38.1836674Z Resolving deltas: 0% (0/1845) 2025-06-05T23:18:38.1836964Z Resolving deltas: 1% (19/1845) 2025-06-05T23:18:38.1837299Z Resolving deltas: 2% (37/1845) 2025-06-05T23:18:38.1837607Z Resolving deltas: 3% (56/1845) 2025-06-05T23:18:38.1837939Z Resolving deltas: 4% (74/1845) 2025-06-05T23:18:38.1838254Z Resolving deltas: 5% (93/1845) 2025-06-05T23:18:38.1838519Z Resolving deltas: 6% (111/1845) 2025-06-05T23:18:38.1838871Z Resolving deltas: 7% (130/1845) 2025-06-05T23:18:38.1839238Z Resolving deltas: 8% (148/1845) 2025-06-05T23:18:38.1839522Z Resolving deltas: 9% (167/1845) 2025-06-05T23:18:38.1839847Z Resolving deltas: 10% (185/1845) 2025-06-05T23:18:38.1840224Z Resolving deltas: 11% (203/1845) 2025-06-05T23:18:38.1840496Z Resolving deltas: 12% (222/1845) 2025-06-05T23:18:38.1840831Z Resolving deltas: 13% (240/1845) 2025-06-05T23:18:38.1841205Z Resolving deltas: 14% (259/1845) 2025-06-05T23:18:38.1841485Z Resolving deltas: 15% (277/1845) 2025-06-05T23:18:38.1841818Z Resolving deltas: 16% (296/1845) 2025-06-05T23:18:38.1842192Z Resolving deltas: 17% (314/1845) 2025-06-05T23:18:38.1842470Z Resolving deltas: 18% (333/1845) 2025-06-05T23:18:38.1842811Z Resolving deltas: 19% (351/1845) 2025-06-05T23:18:38.1843180Z Resolving deltas: 20% (369/1845) 2025-06-05T23:18:38.1843446Z Resolving deltas: 21% (388/1845) 2025-06-05T23:18:38.1843724Z Resolving deltas: 22% (406/1845) 2025-06-05T23:18:38.1844048Z Resolving deltas: 23% (425/1845) 2025-06-05T23:18:38.1844368Z Resolving deltas: 24% (443/1845) 2025-06-05T23:18:38.1844631Z Resolving deltas: 25% (462/1845) 2025-06-05T23:18:38.1845041Z Resolving deltas: 26% (480/1845) 2025-06-05T23:18:38.1845406Z Resolving deltas: 27% (499/1845) 2025-06-05T23:18:38.1845838Z Resolving deltas: 28% (517/1845) 2025-06-05T23:18:38.1846127Z Resolving deltas: 29% (536/1845) 2025-06-05T23:18:38.1846437Z Resolving deltas: 30% (554/1845) 2025-06-05T23:18:38.1846755Z Resolving deltas: 31% (572/1845) 2025-06-05T23:18:38.1847020Z Resolving deltas: 32% (591/1845) 2025-06-05T23:18:38.1847400Z Resolving deltas: 33% (609/1845) 2025-06-05T23:18:38.1847751Z Resolving deltas: 34% (628/1845) 2025-06-05T23:18:38.1848086Z Resolving deltas: 35% (646/1845) 2025-06-05T23:18:38.1848407Z Resolving deltas: 36% (665/1845) 2025-06-05T23:18:38.1848728Z Resolving deltas: 37% (683/1845) 2025-06-05T23:18:38.1849139Z Resolving deltas: 38% (702/1845) 2025-06-05T23:18:38.1849457Z Resolving deltas: 39% (720/1845) 2025-06-05T23:18:38.1849803Z Resolving deltas: 40% (738/1845) 2025-06-05T23:18:38.1850124Z Resolving deltas: 41% (757/1845) 2025-06-05T23:18:38.1850467Z Resolving deltas: 42% (775/1845) 2025-06-05T23:18:38.1850762Z Resolving deltas: 43% (794/1845) 2025-06-05T23:18:38.1851169Z Resolving deltas: 44% (812/1845) 2025-06-05T23:18:38.1851475Z Resolving deltas: 45% (831/1845) 2025-06-05T23:18:38.1851914Z Resolving deltas: 46% (849/1845) 2025-06-05T23:18:38.1852203Z Resolving deltas: 47% (868/1845) 2025-06-05T23:18:38.1852500Z Resolving deltas: 48% (886/1845) 2025-06-05T23:18:38.1852916Z Resolving deltas: 49% (905/1845) 2025-06-05T23:18:38.1853247Z Resolving deltas: 50% (923/1845) 2025-06-05T23:18:38.1853527Z Resolving deltas: 51% (941/1845) 2025-06-05T23:18:38.1853838Z Resolving deltas: 52% (960/1845) 2025-06-05T23:18:38.1854192Z Resolving deltas: 53% (978/1845) 2025-06-05T23:18:38.1854502Z Resolving deltas: 54% (997/1845) 2025-06-05T23:18:38.1854783Z Resolving deltas: 55% (1015/1845) 2025-06-05T23:18:38.1855221Z Resolving deltas: 56% (1034/1845) 2025-06-05T23:18:38.1855578Z Resolving deltas: 57% (1052/1845) 2025-06-05T23:18:38.1855875Z Resolving deltas: 58% (1071/1845) 2025-06-05T23:18:38.1856229Z Resolving deltas: 59% (1090/1845) 2025-06-05T23:18:38.1856564Z Resolving deltas: 60% (1107/1845) 2025-06-05T23:18:38.1856839Z Resolving deltas: 61% (1126/1845) 2025-06-05T23:18:38.1857184Z Resolving deltas: 62% (1144/1845) 2025-06-05T23:18:38.1857539Z Resolving deltas: 63% (1163/1845) 2025-06-05T23:18:38.1857918Z Resolving deltas: 64% (1181/1845) 2025-06-05T23:18:38.1858345Z Resolving deltas: 65% (1200/1845) 2025-06-05T23:18:38.1858746Z Resolving deltas: 66% (1218/1845) 2025-06-05T23:18:38.1859049Z Resolving deltas: 67% (1237/1845) 2025-06-05T23:18:38.1859410Z Resolving deltas: 68% (1255/1845) 2025-06-05T23:18:38.1859786Z Resolving deltas: 69% (1274/1845) 2025-06-05T23:18:38.1860064Z Resolving deltas: 70% (1292/1845) 2025-06-05T23:18:38.1860460Z Resolving deltas: 71% (1310/1845) 2025-06-05T23:18:38.1860785Z Resolving deltas: 72% (1329/1845) 2025-06-05T23:18:38.1861138Z Resolving deltas: 73% (1347/1845) 2025-06-05T23:18:38.1861446Z Resolving deltas: 74% (1366/1845) 2025-06-05T23:18:38.1861799Z Resolving deltas: 75% (1384/1845) 2025-06-05T23:18:38.1862155Z Resolving deltas: 76% (1403/1845) 2025-06-05T23:18:38.1862574Z Resolving deltas: 77% (1421/1845) 2025-06-05T23:18:38.1862861Z Resolving deltas: 78% (1440/1845) 2025-06-05T23:18:38.1863133Z Resolving deltas: 79% (1458/1845) 2025-06-05T23:18:38.1863415Z Resolving deltas: 80% (1476/1845) 2025-06-05T23:18:38.1863679Z Resolving deltas: 81% (1495/1845) 2025-06-05T23:18:38.1863957Z Resolving deltas: 82% (1513/1845) 2025-06-05T23:18:38.1864221Z Resolving deltas: 83% (1532/1845) 2025-06-05T23:18:38.1864499Z Resolving deltas: 84% (1550/1845) 2025-06-05T23:18:38.1864767Z Resolving deltas: 85% (1569/1845) 2025-06-05T23:18:38.1865044Z Resolving deltas: 86% (1587/1845) 2025-06-05T23:18:38.1865311Z Resolving deltas: 87% (1606/1845) 2025-06-05T23:18:38.1865586Z Resolving deltas: 88% (1624/1845) 2025-06-05T23:18:38.1865862Z Resolving deltas: 89% (1643/1845) 2025-06-05T23:18:38.1866254Z Resolving deltas: 90% (1661/1845) 2025-06-05T23:18:38.1866539Z Resolving deltas: 91% (1679/1845) 2025-06-05T23:18:38.1866874Z Resolving deltas: 92% (1698/1845) 2025-06-05T23:18:38.1867158Z Resolving deltas: 93% (1716/1845) 2025-06-05T23:18:38.1867423Z Resolving deltas: 94% (1735/1845) 2025-06-05T23:18:38.1867705Z Resolving deltas: 95% (1753/1845) 2025-06-05T23:18:38.1867970Z Resolving deltas: 96% (1772/1845) 2025-06-05T23:18:38.1868255Z Resolving deltas: 97% (1790/1845) 2025-06-05T23:18:38.1868524Z Resolving deltas: 98% (1809/1845) 2025-06-05T23:18:38.1868805Z Resolving deltas: 99% (1827/1845) 2025-06-05T23:18:38.1869081Z Resolving deltas: 100% (1845/1845) 2025-06-05T23:18:38.1869356Z Resolving deltas: 100% (1845/1845), done. 2025-06-05T23:18:38.1869988Z Cloning into '/pytorch/executorch/examples/arm/ethos-u-scratch/reference_model/thirdparty/specification'... 2025-06-05T23:18:38.1870626Z remote: Counting objects: 1 2025-06-05T23:18:38.1870972Z remote: Counting objects: 272, done 2025-06-05T23:18:38.1871310Z remote: Finding sources: 1% (15/2881) 2025-06-05T23:18:38.1871706Z remote: Finding sources: 2% (44/2881) 2025-06-05T23:18:38.1872062Z remote: Finding sources: 3% (73/2881) 2025-06-05T23:18:38.1872427Z remote: Finding sources: 4% (101/2881) 2025-06-05T23:18:38.1872787Z remote: Finding sources: 5% (130/2881) 2025-06-05T23:18:38.1873132Z remote: Finding sources: 6% (159/2881) 2025-06-05T23:18:38.1873487Z remote: Finding sources: 7% (188/2881) 2025-06-05T23:18:38.1873830Z remote: Finding sources: 8% (217/2881) 2025-06-05T23:18:38.1874187Z remote: Finding sources: 9% (245/2881) 2025-06-05T23:18:38.1874528Z remote: Finding sources: 10% (274/2881) 2025-06-05T23:18:38.1874881Z remote: Finding sources: 11% (303/2881) 2025-06-05T23:18:38.1875234Z remote: Finding sources: 12% (332/2881) 2025-06-05T23:18:38.1875578Z remote: Finding sources: 13% (361/2881) 2025-06-05T23:18:38.1875930Z remote: Finding sources: 14% (389/2881) 2025-06-05T23:18:38.1876272Z remote: Finding sources: 15% (418/2881) 2025-06-05T23:18:38.1876624Z remote: Finding sources: 16% (447/2881) 2025-06-05T23:18:38.1876962Z remote: Finding sources: 17% (476/2881) 2025-06-05T23:18:38.1877341Z remote: Finding sources: 18% (505/2881) 2025-06-05T23:18:38.1877886Z remote: Finding sources: 19% (533/2881) 2025-06-05T23:18:38.1878244Z remote: Finding sources: 20% (562/2881) 2025-06-05T23:18:38.1878628Z remote: Finding sources: 21% (591/2881) 2025-06-05T23:18:38.1878970Z remote: Finding sources: 22% (620/2881) 2025-06-05T23:18:38.1879348Z remote: Finding sources: 23% (649/2881) 2025-06-05T23:18:38.1879689Z remote: Finding sources: 24% (678/2881) 2025-06-05T23:18:38.1880174Z remote: Finding sources: 25% (706/2881) 2025-06-05T23:18:38.1880577Z remote: Finding sources: 26% (735/2881) 2025-06-05T23:18:38.1880984Z remote: Finding sources: 27% (764/2881) 2025-06-05T23:18:38.1881340Z remote: Finding sources: 28% (793/2881) 2025-06-05T23:18:38.1881683Z remote: Finding sources: 29% (822/2881) 2025-06-05T23:18:38.1882035Z remote: Finding sources: 30% (850/2881) 2025-06-05T23:18:38.1882375Z remote: Finding sources: 31% (879/2881) 2025-06-05T23:18:38.1882725Z remote: Finding sources: 32% (908/2881) 2025-06-05T23:18:38.1883064Z remote: Finding sources: 33% (937/2881) 2025-06-05T23:18:38.1883417Z remote: Finding sources: 34% (966/2881) 2025-06-05T23:18:38.1883803Z remote: Finding sources: 35% (994/2881) 2025-06-05T23:18:38.1884243Z remote: Finding sources: 36% (1023/2881) 2025-06-05T23:18:38.1884755Z remote: Finding sources: 37% (1052/2881) 2025-06-05T23:18:38.1885112Z remote: Finding sources: 38% (1081/2881) 2025-06-05T23:18:38.1885681Z remote: Finding sources: 39% (1110/2881) 2025-06-05T23:18:38.1886127Z remote: Finding sources: 40% (1138/2881) 2025-06-05T23:18:38.2314297Z remote: Finding sources: 41% (1167/2881) 2025-06-05T23:18:38.2314931Z remote: Finding sources: 42% (1196/2881) 2025-06-05T23:18:38.2315474Z remote: Finding sources: 43% (1225/2881) 2025-06-05T23:18:38.2316065Z remote: Finding sources: 44% (1254/2881) 2025-06-05T23:18:38.2316672Z remote: Finding sources: 45% (1283/2881) 2025-06-05T23:18:38.2317112Z remote: Finding sources: 46% (1311/2881) 2025-06-05T23:18:38.2317633Z remote: Finding sources: 47% (1340/2881) 2025-06-05T23:18:38.2318157Z remote: Finding sources: 48% (1369/2881) 2025-06-05T23:18:38.2318627Z remote: Finding sources: 49% (1398/2881) 2025-06-05T23:18:38.2319164Z remote: Finding sources: 50% (1427/2881) 2025-06-05T23:18:38.2319610Z remote: Finding sources: 51% (1455/2881) 2025-06-05T23:18:38.2319990Z remote: Finding sources: 52% (1484/2881) 2025-06-05T23:18:38.2320435Z remote: Finding sources: 53% (1513/2881) 2025-06-05T23:18:38.2320984Z remote: Finding sources: 54% (1542/2881) 2025-06-05T23:18:38.2321393Z remote: Finding sources: 55% (1571/2881) 2025-06-05T23:18:38.2321764Z remote: Finding sources: 56% (1599/2881) 2025-06-05T23:18:38.2322120Z remote: Finding sources: 57% (1628/2881) 2025-06-05T23:18:38.2322491Z remote: Finding sources: 58% (1657/2881) 2025-06-05T23:18:38.2322848Z remote: Finding sources: 59% (1686/2881) 2025-06-05T23:18:38.2323222Z remote: Finding sources: 60% (1715/2881) 2025-06-05T23:18:38.2323592Z remote: Finding sources: 61% (1744/2881) 2025-06-05T23:18:38.2323948Z remote: Finding sources: 62% (1772/2881) 2025-06-05T23:18:38.2324336Z remote: Finding sources: 63% (1801/2881) 2025-06-05T23:18:38.2324834Z remote: Finding sources: 64% (1830/2881) 2025-06-05T23:18:38.2325428Z remote: Finding sources: 65% (1859/2881) 2025-06-05T23:18:38.2325785Z remote: Finding sources: 66% (1888/2881) 2025-06-05T23:18:38.2326204Z remote: Finding sources: 67% (1916/2881) 2025-06-05T23:18:38.2326573Z remote: Finding sources: 68% (1945/2881) 2025-06-05T23:18:38.2326928Z remote: Finding sources: 69% (1974/2881) 2025-06-05T23:18:38.2327293Z remote: Finding sources: 70% (2003/2881) 2025-06-05T23:18:38.2327646Z remote: Finding sources: 71% (2032/2881) 2025-06-05T23:18:38.2328013Z remote: Finding sources: 72% (2060/2881) 2025-06-05T23:18:38.2328367Z remote: Finding sources: 73% (2089/2881) 2025-06-05T23:18:38.2328739Z remote: Finding sources: 74% (2118/2881) 2025-06-05T23:18:38.2329091Z remote: Finding sources: 75% (2147/2881) 2025-06-05T23:18:38.2329466Z remote: Finding sources: 76% (2176/2881) 2025-06-05T23:18:38.2329833Z remote: Finding sources: 77% (2204/2881) 2025-06-05T23:18:38.2330196Z remote: Finding sources: 78% (2233/2881) 2025-06-05T23:18:38.2330561Z remote: Finding sources: 79% (2262/2881) 2025-06-05T23:18:38.2330915Z remote: Finding sources: 80% (2291/2881) 2025-06-05T23:18:38.2331281Z remote: Finding sources: 81% (2320/2881) 2025-06-05T23:18:38.2331703Z remote: Finding sources: 82% (2349/2881) 2025-06-05T23:18:38.2332135Z remote: Finding sources: 83% (2377/2881) 2025-06-05T23:18:38.2332574Z remote: Finding sources: 84% (2406/2881) 2025-06-05T23:18:38.2332946Z remote: Finding sources: 85% (2435/2881) 2025-06-05T23:18:38.2333368Z remote: Finding sources: 86% (2464/2881) 2025-06-05T23:18:38.2333720Z remote: Finding sources: 87% (2493/2881) 2025-06-05T23:18:38.2334104Z remote: Finding sources: 88% (2521/2881) 2025-06-05T23:18:38.2334663Z remote: Finding sources: 89% (2550/2881) 2025-06-05T23:18:38.2335123Z remote: Finding sources: 90% (2579/2881) 2025-06-05T23:18:38.2335553Z remote: Finding sources: 91% (2608/2881) 2025-06-05T23:18:38.2335920Z remote: Finding sources: 92% (2637/2881) 2025-06-05T23:18:38.2336291Z remote: Finding sources: 93% (2665/2881) 2025-06-05T23:18:38.2336643Z remote: Finding sources: 94% (2694/2881) 2025-06-05T23:18:38.2337013Z remote: Finding sources: 95% (2723/2881) 2025-06-05T23:18:38.2337368Z remote: Finding sources: 96% (2752/2881) 2025-06-05T23:18:38.2337734Z remote: Finding sources: 97% (2781/2881) 2025-06-05T23:18:38.2338087Z remote: Finding sources: 98% (2809/2881) 2025-06-05T23:18:38.2338452Z remote: Finding sources: 99% (2838/2881) 2025-06-05T23:18:38.2338883Z remote: Finding sources: 100% (2867/2881) 2025-06-05T23:18:38.2339362Z remote: Finding sources: 100% (2881/2881) 2025-06-05T23:18:38.2339780Z Receiving objects: 0% (1/2881) 2025-06-05T23:18:38.2340059Z Receiving objects: 1% (29/2881) 2025-06-05T23:18:38.2340404Z Receiving objects: 2% (58/2881) 2025-06-05T23:18:38.2340673Z Receiving objects: 3% (87/2881) 2025-06-05T23:18:38.2340957Z Receiving objects: 4% (116/2881) 2025-06-05T23:18:38.2341232Z Receiving objects: 5% (145/2881) 2025-06-05T23:18:38.2341513Z Receiving objects: 6% (173/2881) 2025-06-05T23:18:38.2341779Z Receiving objects: 7% (202/2881) 2025-06-05T23:18:38.2342058Z Receiving objects: 8% (231/2881) 2025-06-05T23:18:38.2342323Z Receiving objects: 9% (260/2881) 2025-06-05T23:18:38.2342601Z Receiving objects: 10% (289/2881) 2025-06-05T23:18:38.2342881Z Receiving objects: 11% (317/2881) 2025-06-05T23:18:38.2343147Z Receiving objects: 12% (346/2881) 2025-06-05T23:18:38.2343426Z Receiving objects: 13% (375/2881) 2025-06-05T23:18:38.2343692Z Receiving objects: 14% (404/2881) 2025-06-05T23:18:38.2343981Z Receiving objects: 15% (433/2881) 2025-06-05T23:18:38.2344249Z Receiving objects: 16% (461/2881) 2025-06-05T23:18:38.2344533Z Receiving objects: 17% (490/2881) 2025-06-05T23:18:38.2344799Z Receiving objects: 18% (519/2881) 2025-06-05T23:18:38.2345078Z Receiving objects: 19% (548/2881) 2025-06-05T23:18:38.2345428Z Receiving objects: 20% (577/2881) 2025-06-05T23:18:38.2345850Z Receiving objects: 21% (606/2881) 2025-06-05T23:18:38.2346172Z Receiving objects: 22% (634/2881) 2025-06-05T23:18:38.2346439Z Receiving objects: 23% (663/2881) 2025-06-05T23:18:38.2346787Z Receiving objects: 24% (692/2881) 2025-06-05T23:18:38.2347055Z Receiving objects: 25% (721/2881) 2025-06-05T23:18:38.2347334Z Receiving objects: 26% (750/2881) 2025-06-05T23:18:38.2347599Z Receiving objects: 27% (778/2881) 2025-06-05T23:18:38.2347880Z Receiving objects: 28% (807/2881) 2025-06-05T23:18:38.2348150Z Receiving objects: 29% (836/2881) 2025-06-05T23:18:38.2348430Z Receiving objects: 30% (865/2881) 2025-06-05T23:18:38.2348718Z Receiving objects: 31% (894/2881) 2025-06-05T23:18:38.2348983Z Receiving objects: 32% (922/2881) 2025-06-05T23:18:38.2349269Z Receiving objects: 33% (951/2881) 2025-06-05T23:18:38.2349537Z Receiving objects: 34% (980/2881) 2025-06-05T23:18:38.2349825Z Receiving objects: 35% (1009/2881) 2025-06-05T23:18:38.2350107Z Receiving objects: 36% (1038/2881) 2025-06-05T23:18:38.2350400Z Receiving objects: 37% (1066/2881) 2025-06-05T23:18:38.2350686Z Receiving objects: 38% (1095/2881) 2025-06-05T23:18:38.2351022Z Receiving objects: 39% (1124/2881) 2025-06-05T23:18:38.2351389Z Receiving objects: 40% (1153/2881) 2025-06-05T23:18:38.2351714Z Receiving objects: 41% (1182/2881) 2025-06-05T23:18:38.2352000Z Receiving objects: 42% (1211/2881) 2025-06-05T23:18:38.2352336Z Receiving objects: 43% (1239/2881) 2025-06-05T23:18:38.2352623Z Receiving objects: 44% (1268/2881) 2025-06-05T23:18:38.2352894Z Receiving objects: 45% (1297/2881) 2025-06-05T23:18:38.2353177Z Receiving objects: 46% (1326/2881) 2025-06-05T23:18:38.2353590Z Receiving objects: 47% (1355/2881) 2025-06-05T23:18:38.2353942Z Receiving objects: 48% (1383/2881) 2025-06-05T23:18:38.2354372Z Receiving objects: 49% (1412/2881) 2025-06-05T23:18:38.2354664Z Receiving objects: 50% (1441/2881) 2025-06-05T23:18:38.2354956Z Receiving objects: 51% (1470/2881) 2025-06-05T23:18:38.2355280Z Receiving objects: 52% (1499/2881) 2025-06-05T23:18:38.2355571Z Receiving objects: 53% (1527/2881) 2025-06-05T23:18:38.2355847Z Receiving objects: 54% (1556/2881) 2025-06-05T23:18:38.2356134Z Receiving objects: 55% (1585/2881) 2025-06-05T23:18:38.2356440Z Receiving objects: 56% (1614/2881) 2025-06-05T23:18:38.2356824Z Receiving objects: 57% (1643/2881) 2025-06-05T23:18:38.2357244Z Receiving objects: 58% (1671/2881) 2025-06-05T23:18:38.2357570Z Receiving objects: 59% (1700/2881) 2025-06-05T23:18:38.2357909Z Receiving objects: 60% (1729/2881) 2025-06-05T23:18:38.2358255Z Receiving objects: 61% (1758/2881) 2025-06-05T23:18:38.2358585Z Receiving objects: 62% (1787/2881) 2025-06-05T23:18:38.2359001Z Receiving objects: 63% (1816/2881) 2025-06-05T23:18:38.2359322Z Receiving objects: 64% (1844/2881) 2025-06-05T23:18:38.2359706Z Receiving objects: 65% (1873/2881) 2025-06-05T23:18:38.2360094Z Receiving objects: 66% (1902/2881) 2025-06-05T23:18:38.2360516Z Receiving objects: 67% (1931/2881) 2025-06-05T23:18:38.2360801Z Receiving objects: 68% (1960/2881) 2025-06-05T23:18:38.2361156Z Receiving objects: 69% (1988/2881) 2025-06-05T23:18:38.2361548Z Receiving objects: 70% (2017/2881) 2025-06-05T23:18:38.2361983Z Receiving objects: 71% (2046/2881) 2025-06-05T23:18:38.2362342Z Receiving objects: 72% (2075/2881) 2025-06-05T23:18:38.2362776Z Receiving objects: 73% (2104/2881) 2025-06-05T23:18:38.2363192Z Receiving objects: 74% (2132/2881) 2025-06-05T23:18:38.2363617Z Receiving objects: 75% (2161/2881) 2025-06-05T23:18:38.2364070Z Receiving objects: 76% (2190/2881) 2025-06-05T23:18:38.2364450Z Receiving objects: 77% (2219/2881) 2025-06-05T23:18:38.2364822Z Receiving objects: 78% (2248/2881) 2025-06-05T23:18:38.2365300Z Receiving objects: 79% (2276/2881) 2025-06-05T23:18:38.2365596Z Receiving objects: 80% (2305/2881) 2025-06-05T23:18:38.2365878Z Receiving objects: 81% (2334/2881) 2025-06-05T23:18:38.2366274Z Receiving objects: 82% (2363/2881) 2025-06-05T23:18:38.2366699Z Receiving objects: 83% (2392/2881) 2025-06-05T23:18:38.2367037Z Receiving objects: 84% (2421/2881) 2025-06-05T23:18:38.2367307Z Receiving objects: 85% (2449/2881) 2025-06-05T23:18:38.2367591Z Receiving objects: 86% (2478/2881) 2025-06-05T23:18:38.2367861Z Receiving objects: 87% (2507/2881) 2025-06-05T23:18:38.2368142Z Receiving objects: 88% (2536/2881) 2025-06-05T23:18:38.2368415Z Receiving objects: 89% (2565/2881) 2025-06-05T23:18:38.2368701Z Receiving objects: 90% (2593/2881) 2025-06-05T23:18:38.2368972Z Receiving objects: 91% (2622/2881) 2025-06-05T23:18:38.2369253Z Receiving objects: 92% (2651/2881) 2025-06-05T23:18:38.2369605Z remote: Total 2881 (delta 2045), reused 2671 (delta 2045) 2025-06-05T23:18:38.2369986Z Receiving objects: 93% (2680/2881) 2025-06-05T23:18:38.2370271Z Receiving objects: 94% (2709/2881) 2025-06-05T23:18:38.2370575Z Receiving objects: 95% (2737/2881) 2025-06-05T23:18:38.2370973Z Receiving objects: 96% (2766/2881) 2025-06-05T23:18:38.2371389Z Receiving objects: 97% (2795/2881) 2025-06-05T23:18:38.2371694Z Receiving objects: 98% (2824/2881) 2025-06-05T23:18:38.2371965Z Receiving objects: 99% (2853/2881) 2025-06-05T23:18:38.2372247Z Receiving objects: 100% (2881/2881) 2025-06-05T23:18:38.2372618Z Receiving objects: 100% (2881/2881), 735.63 KiB | 18.39 MiB/s, done. 2025-06-05T23:18:38.2373000Z Resolving deltas: 0% (0/2045) 2025-06-05T23:18:38.2373277Z Resolving deltas: 1% (21/2045) 2025-06-05T23:18:38.2373541Z Resolving deltas: 2% (41/2045) 2025-06-05T23:18:38.2373815Z Resolving deltas: 3% (62/2045) 2025-06-05T23:18:38.2374076Z Resolving deltas: 4% (82/2045) 2025-06-05T23:18:38.2374349Z Resolving deltas: 5% (103/2045) 2025-06-05T23:18:38.2374731Z Resolving deltas: 6% (123/2045) 2025-06-05T23:18:38.2375012Z Resolving deltas: 7% (144/2045) 2025-06-05T23:18:38.2375439Z Resolving deltas: 8% (164/2045) 2025-06-05T23:18:38.2375720Z Resolving deltas: 9% (185/2045) 2025-06-05T23:18:38.2375995Z Resolving deltas: 10% (205/2045) 2025-06-05T23:18:38.2376256Z Resolving deltas: 11% (225/2045) 2025-06-05T23:18:38.2376535Z Resolving deltas: 12% (246/2045) 2025-06-05T23:18:38.2376798Z Resolving deltas: 13% (266/2045) 2025-06-05T23:18:38.2377072Z Resolving deltas: 14% (287/2045) 2025-06-05T23:18:38.2377334Z Resolving deltas: 15% (307/2045) 2025-06-05T23:18:38.2377877Z Resolving deltas: 16% (328/2045) 2025-06-05T23:18:38.2378147Z Resolving deltas: 17% (349/2045) 2025-06-05T23:18:38.2378423Z Resolving deltas: 18% (369/2045) 2025-06-05T23:18:38.2378689Z Resolving deltas: 19% (389/2045) 2025-06-05T23:18:38.2378966Z Resolving deltas: 20% (409/2045) 2025-06-05T23:18:38.2379240Z Resolving deltas: 21% (430/2045) 2025-06-05T23:18:38.2379508Z Resolving deltas: 22% (450/2045) 2025-06-05T23:18:38.2379782Z Resolving deltas: 23% (471/2045) 2025-06-05T23:18:38.2380044Z Resolving deltas: 24% (491/2045) 2025-06-05T23:18:38.2380323Z Resolving deltas: 25% (512/2045) 2025-06-05T23:18:38.2380586Z Resolving deltas: 26% (532/2045) 2025-06-05T23:18:38.2380863Z Resolving deltas: 27% (553/2045) 2025-06-05T23:18:38.2381127Z Resolving deltas: 28% (573/2045) 2025-06-05T23:18:38.2381402Z Resolving deltas: 29% (594/2045) 2025-06-05T23:18:38.2381667Z Resolving deltas: 30% (614/2045) 2025-06-05T23:18:38.2381943Z Resolving deltas: 31% (634/2045) 2025-06-05T23:18:38.2382218Z Resolving deltas: 32% (655/2045) 2025-06-05T23:18:38.2382484Z Resolving deltas: 33% (675/2045) 2025-06-05T23:18:38.2382762Z Resolving deltas: 34% (696/2045) 2025-06-05T23:18:38.2383028Z Resolving deltas: 35% (716/2045) 2025-06-05T23:18:38.9898505Z Resolving deltas: 36% (737/2045) 2025-06-05T23:18:38.9899004Z Resolving deltas: 37% (757/2045) 2025-06-05T23:18:38.9899452Z Resolving deltas: 38% (778/2045) 2025-06-05T23:18:38.9899865Z Resolving deltas: 39% (798/2045) 2025-06-05T23:18:38.9900218Z Resolving deltas: 40% (818/2045) 2025-06-05T23:18:38.9900518Z Resolving deltas: 41% (839/2045) 2025-06-05T23:18:38.9900787Z Resolving deltas: 42% (859/2045) 2025-06-05T23:18:38.9901069Z Resolving deltas: 43% (880/2045) 2025-06-05T23:18:38.9901335Z Resolving deltas: 44% (900/2045) 2025-06-05T23:18:38.9901615Z Resolving deltas: 45% (921/2045) 2025-06-05T23:18:38.9901884Z Resolving deltas: 46% (941/2045) 2025-06-05T23:18:38.9902261Z Resolving deltas: 47% (962/2045) 2025-06-05T23:18:38.9902612Z Resolving deltas: 48% (982/2045) 2025-06-05T23:18:38.9902938Z Resolving deltas: 49% (1003/2045) 2025-06-05T23:18:38.9903274Z Resolving deltas: 50% (1023/2045) 2025-06-05T23:18:38.9903543Z Resolving deltas: 51% (1043/2045) 2025-06-05T23:18:38.9903913Z Resolving deltas: 52% (1064/2045) 2025-06-05T23:18:38.9904182Z Resolving deltas: 53% (1084/2045) 2025-06-05T23:18:38.9904460Z Resolving deltas: 54% (1105/2045) 2025-06-05T23:18:38.9904738Z Resolving deltas: 55% (1125/2045) 2025-06-05T23:18:38.9905018Z Resolving deltas: 56% (1146/2045) 2025-06-05T23:18:38.9905289Z Resolving deltas: 57% (1166/2045) 2025-06-05T23:18:38.9905567Z Resolving deltas: 58% (1187/2045) 2025-06-05T23:18:38.9905846Z Resolving deltas: 59% (1207/2045) 2025-06-05T23:18:38.9906109Z Resolving deltas: 60% (1227/2045) 2025-06-05T23:18:38.9906389Z Resolving deltas: 61% (1248/2045) 2025-06-05T23:18:38.9906653Z Resolving deltas: 62% (1268/2045) 2025-06-05T23:18:38.9906929Z Resolving deltas: 63% (1289/2045) 2025-06-05T23:18:38.9907192Z Resolving deltas: 64% (1309/2045) 2025-06-05T23:18:38.9907468Z Resolving deltas: 65% (1330/2045) 2025-06-05T23:18:38.9907732Z Resolving deltas: 66% (1350/2045) 2025-06-05T23:18:38.9908009Z Resolving deltas: 67% (1371/2045) 2025-06-05T23:18:38.9908292Z Resolving deltas: 68% (1391/2045) 2025-06-05T23:18:38.9908563Z Resolving deltas: 69% (1412/2045) 2025-06-05T23:18:38.9908843Z Resolving deltas: 70% (1432/2045) 2025-06-05T23:18:38.9909334Z Resolving deltas: 71% (1452/2045) 2025-06-05T23:18:38.9909618Z Resolving deltas: 72% (1473/2045) 2025-06-05T23:18:38.9909984Z Resolving deltas: 73% (1493/2045) 2025-06-05T23:18:38.9910266Z Resolving deltas: 74% (1514/2045) 2025-06-05T23:18:38.9910530Z Resolving deltas: 75% (1534/2045) 2025-06-05T23:18:38.9911154Z Resolving deltas: 76% (1555/2045) 2025-06-05T23:18:38.9911484Z Resolving deltas: 77% (1575/2045) 2025-06-05T23:18:38.9911764Z Resolving deltas: 78% (1597/2045) 2025-06-05T23:18:38.9912096Z Resolving deltas: 79% (1616/2045) 2025-06-05T23:18:38.9912365Z Resolving deltas: 80% (1636/2045) 2025-06-05T23:18:38.9912641Z Resolving deltas: 81% (1657/2045) 2025-06-05T23:18:38.9912906Z Resolving deltas: 82% (1677/2045) 2025-06-05T23:18:38.9913182Z Resolving deltas: 83% (1698/2045) 2025-06-05T23:18:38.9913449Z Resolving deltas: 84% (1718/2045) 2025-06-05T23:18:38.9913769Z Resolving deltas: 85% (1739/2045) 2025-06-05T23:18:38.9914052Z Resolving deltas: 86% (1759/2045) 2025-06-05T23:18:38.9914438Z Resolving deltas: 87% (1780/2045) 2025-06-05T23:18:38.9914773Z Resolving deltas: 88% (1800/2045) 2025-06-05T23:18:38.9915049Z Resolving deltas: 89% (1821/2045) 2025-06-05T23:18:38.9915332Z Resolving deltas: 90% (1841/2045) 2025-06-05T23:18:38.9915599Z Resolving deltas: 91% (1861/2045) 2025-06-05T23:18:38.9915884Z Resolving deltas: 92% (1882/2045) 2025-06-05T23:18:38.9916165Z Resolving deltas: 93% (1902/2045) 2025-06-05T23:18:38.9916428Z Resolving deltas: 94% (1923/2045) 2025-06-05T23:18:38.9916704Z Resolving deltas: 95% (1943/2045) 2025-06-05T23:18:38.9916968Z Resolving deltas: 96% (1964/2045) 2025-06-05T23:18:38.9917242Z Resolving deltas: 97% (1984/2045) 2025-06-05T23:18:38.9917505Z Resolving deltas: 98% (2005/2045) 2025-06-05T23:18:38.9917781Z Resolving deltas: 99% (2025/2045) 2025-06-05T23:18:38.9918045Z Resolving deltas: 100% (2045/2045) 2025-06-05T23:18:38.9918333Z Resolving deltas: 100% (2045/2045), done. 2025-06-05T23:18:38.9918827Z Submodule path 'thirdparty/doctest': checked out '86892fc480f80fb57d9a3926cb506c0e974489d8' 2025-06-05T23:18:38.9919530Z Submodule path 'thirdparty/eigen': checked out '3147391d946bb4b6c68edd901f2add6ac1f31f8c' 2025-06-05T23:18:38.9920194Z Submodule path 'thirdparty/json': checked out 'e7452d87783fbf6e9d320d515675e26dfd1271c5' 2025-06-05T23:18:38.9920864Z Submodule path 'thirdparty/pybind11': checked out 'a406a62e5b3ca74a76b6db9a1cd7cf3578c50772' 2025-06-05T23:18:38.9921615Z Submodule path 'thirdparty/serialization_lib': checked out '021bbad29b7328fbac3769a7ac27c9bf10225c15' 2025-06-05T23:18:38.9922652Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'thirdparty/serialization_lib/third_party/flatbuffers' 2025-06-05T23:18:38.9923868Z Cloning into '/pytorch/executorch/examples/arm/ethos-u-scratch/reference_model/thirdparty/serialization_lib/third_party/flatbuffers'... 2025-06-05T23:18:38.9924635Z remote: Enumerating objects: 38908, done. 2025-06-05T23:18:38.9924991Z remote: Counting objects: 0% (1/13237) 2025-06-05T23:18:38.9925346Z remote: Counting objects: 1% (133/13237) 2025-06-05T23:18:38.9925694Z remote: Counting objects: 2% (265/13237) 2025-06-05T23:18:38.9926047Z remote: Counting objects: 3% (398/13237) 2025-06-05T23:18:38.9926386Z remote: Counting objects: 4% (530/13237) 2025-06-05T23:18:38.9926739Z remote: Counting objects: 5% (662/13237) 2025-06-05T23:18:38.9927088Z remote: Counting objects: 6% (795/13237) 2025-06-05T23:18:38.9927427Z remote: Counting objects: 7% (927/13237) 2025-06-05T23:18:38.9927785Z remote: Counting objects: 8% (1059/13237) 2025-06-05T23:18:38.9928135Z remote: Counting objects: 9% (1192/13237) 2025-06-05T23:18:38.9928492Z remote: Counting objects: 10% (1324/13237) 2025-06-05T23:18:38.9928836Z remote: Counting objects: 11% (1457/13237) 2025-06-05T23:18:38.9929193Z remote: Counting objects: 12% (1589/13237) 2025-06-05T23:18:38.9929667Z remote: Counting objects: 13% (1721/13237) 2025-06-05T23:18:38.9930029Z remote: Counting objects: 14% (1854/13237) 2025-06-05T23:18:38.9930451Z remote: Counting objects: 15% (1986/13237) 2025-06-05T23:18:38.9930796Z remote: Counting objects: 16% (2118/13237) 2025-06-05T23:18:38.9931148Z remote: Counting objects: 17% (2251/13237) 2025-06-05T23:18:38.9938659Z remote: Counting objects: 18% (2383/13237) 2025-06-05T23:18:38.9939220Z remote: Counting objects: 19% (2516/13237) 2025-06-05T23:18:38.9939576Z remote: Counting objects: 20% (2648/13237) 2025-06-05T23:18:38.9939945Z remote: Counting objects: 21% (2780/13237) 2025-06-05T23:18:38.9940385Z remote: Counting objects: 22% (2913/13237) 2025-06-05T23:18:38.9940746Z remote: Counting objects: 23% (3045/13237) 2025-06-05T23:18:38.9941104Z remote: Counting objects: 24% (3177/13237) 2025-06-05T23:18:38.9941440Z remote: Counting objects: 25% (3310/13237) 2025-06-05T23:18:38.9941822Z remote: Counting objects: 26% (3442/13237) 2025-06-05T23:18:38.9942170Z remote: Counting objects: 27% (3574/13237) 2025-06-05T23:18:38.9942525Z remote: Counting objects: 28% (3707/13237) 2025-06-05T23:18:38.9942868Z remote: Counting objects: 29% (3839/13237) 2025-06-05T23:18:38.9943223Z remote: Counting objects: 30% (3972/13237) 2025-06-05T23:18:38.9943566Z remote: Counting objects: 31% (4104/13237) 2025-06-05T23:18:38.9943915Z remote: Counting objects: 32% (4236/13237) 2025-06-05T23:18:38.9944256Z remote: Counting objects: 33% (4369/13237) 2025-06-05T23:18:38.9944609Z remote: Counting objects: 34% (4501/13237) 2025-06-05T23:18:38.9944963Z remote: Counting objects: 35% (4633/13237) 2025-06-05T23:18:38.9945303Z remote: Counting objects: 36% (4766/13237) 2025-06-05T23:18:38.9945658Z remote: Counting objects: 37% (4898/13237) 2025-06-05T23:18:38.9946005Z remote: Counting objects: 38% (5031/13237) 2025-06-05T23:18:38.9946357Z remote: Counting objects: 39% (5163/13237) 2025-06-05T23:18:38.9946703Z remote: Counting objects: 40% (5295/13237) 2025-06-05T23:18:38.9947056Z remote: Counting objects: 41% (5428/13237) 2025-06-05T23:18:38.9947400Z remote: Counting objects: 42% (5560/13237) 2025-06-05T23:18:38.9947751Z remote: Counting objects: 43% (5692/13237) 2025-06-05T23:18:38.9948105Z remote: Counting objects: 44% (5825/13237) 2025-06-05T23:18:38.9948450Z remote: Counting objects: 45% (5957/13237) 2025-06-05T23:18:38.9948806Z remote: Counting objects: 46% (6090/13237) 2025-06-05T23:18:38.9949149Z remote: Counting objects: 47% (6222/13237) 2025-06-05T23:18:38.9949503Z remote: Counting objects: 48% (6354/13237) 2025-06-05T23:18:38.9949841Z remote: Counting objects: 49% (6487/13237) 2025-06-05T23:18:38.9950192Z remote: Counting objects: 50% (6619/13237) 2025-06-05T23:18:38.9950674Z remote: Counting objects: 51% (6751/13237) 2025-06-05T23:18:38.9951127Z remote: Counting objects: 52% (6884/13237) 2025-06-05T23:18:38.9951619Z remote: Counting objects: 53% (7016/13237) 2025-06-05T23:18:38.9952005Z remote: Counting objects: 54% (7148/13237) 2025-06-05T23:18:38.9952357Z remote: Counting objects: 55% (7281/13237) 2025-06-05T23:18:38.9952696Z remote: Counting objects: 56% (7413/13237) 2025-06-05T23:18:38.9953051Z remote: Counting objects: 57% (7546/13237) 2025-06-05T23:18:38.9953391Z remote: Counting objects: 58% (7678/13237) 2025-06-05T23:18:38.9953744Z remote: Counting objects: 59% (7810/13237) 2025-06-05T23:18:38.9954100Z remote: Counting objects: 60% (7943/13237) 2025-06-05T23:18:38.9954442Z remote: Counting objects: 61% (8075/13237) 2025-06-05T23:18:38.9954793Z remote: Counting objects: 62% (8207/13237) 2025-06-05T23:18:38.9955133Z remote: Counting objects: 63% (8340/13237) 2025-06-05T23:18:38.9955628Z remote: Counting objects: 64% (8472/13237) 2025-06-05T23:18:38.9956036Z remote: Counting objects: 65% (8605/13237) 2025-06-05T23:18:38.9956390Z remote: Counting objects: 66% (8737/13237) 2025-06-05T23:18:38.9956728Z remote: Counting objects: 67% (8869/13237) 2025-06-05T23:18:38.9957082Z remote: Counting objects: 68% (9002/13237) 2025-06-05T23:18:38.9957437Z remote: Counting objects: 69% (9134/13237) 2025-06-05T23:18:38.9957779Z remote: Counting objects: 70% (9266/13237) 2025-06-05T23:18:38.9958134Z remote: Counting objects: 71% (9399/13237) 2025-06-05T23:18:38.9958477Z remote: Counting objects: 72% (9531/13237) 2025-06-05T23:18:38.9958832Z remote: Counting objects: 73% (9664/13237) 2025-06-05T23:18:38.9959171Z remote: Counting objects: 74% (9796/13237) 2025-06-05T23:18:38.9959525Z remote: Counting objects: 75% (9928/13237) 2025-06-05T23:18:38.9959896Z remote: Counting objects: 76% (10061/13237) 2025-06-05T23:18:38.9960257Z remote: Counting objects: 77% (10193/13237) 2025-06-05T23:18:38.9960627Z remote: Counting objects: 78% (10325/13237) 2025-06-05T23:18:38.9960980Z remote: Counting objects: 79% (10458/13237) 2025-06-05T23:18:38.9961342Z remote: Counting objects: 80% (10590/13237) 2025-06-05T23:18:38.9961693Z remote: Counting objects: 81% (10722/13237) 2025-06-05T23:18:38.9962054Z remote: Counting objects: 82% (10855/13237) 2025-06-05T23:18:38.9962406Z remote: Counting objects: 83% (10987/13237) 2025-06-05T23:18:38.9962767Z remote: Counting objects: 84% (11120/13237) 2025-06-05T23:18:38.9963131Z remote: Counting objects: 85% (11252/13237) 2025-06-05T23:18:38.9963483Z remote: Counting objects: 86% (11384/13237) 2025-06-05T23:18:38.9963849Z remote: Counting objects: 87% (11517/13237) 2025-06-05T23:18:38.9964203Z remote: Counting objects: 88% (11649/13237) 2025-06-05T23:18:38.9964573Z remote: Counting objects: 89% (11781/13237) 2025-06-05T23:18:38.9964930Z remote: Counting objects: 90% (11914/13237) 2025-06-05T23:18:38.9965293Z remote: Counting objects: 91% (12046/13237) 2025-06-05T23:18:38.9965646Z remote: Counting objects: 92% (12179/13237) 2025-06-05T23:18:38.9966017Z remote: Counting objects: 93% (12311/13237) 2025-06-05T23:18:38.9966387Z remote: Counting objects: 94% (12443/13237) 2025-06-05T23:18:38.9966743Z remote: Counting objects: 95% (12576/13237) 2025-06-05T23:18:38.9967109Z remote: Counting objects: 96% (12708/13237) 2025-06-05T23:18:39.6300179Z remote: Counting objects: 97% (12840/13237) 2025-06-05T23:18:39.6300913Z remote: Counting objects: 98% (12973/13237) 2025-06-05T23:18:39.6301613Z remote: Counting objects: 99% (13105/13237) 2025-06-05T23:18:39.6302287Z remote: Counting objects: 100% (13237/13237) 2025-06-05T23:18:39.6303063Z remote: Counting objects: 100% (13237/13237), done. 2025-06-05T23:18:39.6303865Z remote: Compressing objects: 0% (1/1032) 2025-06-05T23:18:39.6304560Z remote: Compressing objects: 1% (11/1032) 2025-06-05T23:18:39.6305226Z remote: Compressing objects: 2% (21/1032) 2025-06-05T23:18:39.6305913Z remote: Compressing objects: 3% (31/1032) 2025-06-05T23:18:39.6306572Z remote: Compressing objects: 4% (42/1032) 2025-06-05T23:18:39.6307250Z remote: Compressing objects: 5% (52/1032) 2025-06-05T23:18:39.6307924Z remote: Compressing objects: 6% (62/1032) 2025-06-05T23:18:39.6308588Z remote: Compressing objects: 7% (73/1032) 2025-06-05T23:18:39.6309262Z remote: Compressing objects: 8% (83/1032) 2025-06-05T23:18:39.6309925Z remote: Compressing objects: 9% (93/1032) 2025-06-05T23:18:39.6310608Z remote: Compressing objects: 10% (104/1032) 2025-06-05T23:18:39.6311287Z remote: Compressing objects: 11% (114/1032) 2025-06-05T23:18:39.6312242Z remote: Compressing objects: 12% (124/1032) 2025-06-05T23:18:39.6313064Z remote: Compressing objects: 13% (135/1032) 2025-06-05T23:18:39.6313775Z remote: Compressing objects: 14% (145/1032) 2025-06-05T23:18:39.6314472Z remote: Compressing objects: 15% (155/1032) 2025-06-05T23:18:39.6315150Z remote: Compressing objects: 16% (166/1032) 2025-06-05T23:18:39.6315867Z remote: Compressing objects: 17% (176/1032) 2025-06-05T23:18:39.6316547Z remote: Compressing objects: 18% (186/1032) 2025-06-05T23:18:39.6317246Z remote: Compressing objects: 19% (197/1032) 2025-06-05T23:18:39.6317935Z remote: Compressing objects: 20% (207/1032) 2025-06-05T23:18:39.6318619Z remote: Compressing objects: 21% (217/1032) 2025-06-05T23:18:39.6319291Z remote: Compressing objects: 22% (228/1032) 2025-06-05T23:18:39.6319977Z remote: Compressing objects: 23% (238/1032) 2025-06-05T23:18:39.6320675Z remote: Compressing objects: 24% (248/1032) 2025-06-05T23:18:39.6321350Z remote: Compressing objects: 25% (258/1032) 2025-06-05T23:18:39.6322047Z remote: Compressing objects: 26% (269/1032) 2025-06-05T23:18:39.6322708Z remote: Compressing objects: 27% (279/1032) 2025-06-05T23:18:39.6323404Z remote: Compressing objects: 28% (289/1032) 2025-06-05T23:18:39.6324079Z remote: Compressing objects: 29% (300/1032) 2025-06-05T23:18:39.6324774Z remote: Compressing objects: 30% (310/1032) 2025-06-05T23:18:39.6325477Z remote: Compressing objects: 31% (320/1032) 2025-06-05T23:18:39.6326253Z remote: Compressing objects: 32% (331/1032) 2025-06-05T23:18:39.6326942Z remote: Compressing objects: 33% (341/1032) 2025-06-05T23:18:39.6327638Z remote: Compressing objects: 34% (351/1032) 2025-06-05T23:18:39.6328314Z remote: Compressing objects: 35% (362/1032) 2025-06-05T23:18:39.6329005Z remote: Compressing objects: 36% (372/1032) 2025-06-05T23:18:39.6329696Z remote: Compressing objects: 37% (382/1032) 2025-06-05T23:18:39.6330380Z remote: Compressing objects: 38% (393/1032) 2025-06-05T23:18:39.6331053Z remote: Compressing objects: 39% (403/1032) 2025-06-05T23:18:39.6331730Z remote: Compressing objects: 40% (413/1032) 2025-06-05T23:18:39.6332428Z remote: Compressing objects: 41% (424/1032) 2025-06-05T23:18:39.6333099Z remote: Compressing objects: 42% (434/1032) 2025-06-05T23:18:39.6333732Z remote: Compressing objects: 43% (444/1032) 2025-06-05T23:18:39.6334415Z remote: Compressing objects: 44% (455/1032) 2025-06-05T23:18:39.6335107Z remote: Compressing objects: 45% (465/1032) 2025-06-05T23:18:39.6335867Z remote: Compressing objects: 46% (475/1032) 2025-06-05T23:18:39.6336541Z remote: Compressing objects: 47% (486/1032) 2025-06-05T23:18:39.6337199Z remote: Compressing objects: 48% (496/1032) 2025-06-05T23:18:39.6337902Z remote: Compressing objects: 49% (506/1032) 2025-06-05T23:18:39.6338598Z remote: Compressing objects: 50% (516/1032) 2025-06-05T23:18:39.6339276Z remote: Compressing objects: 51% (527/1032) 2025-06-05T23:18:39.6339967Z remote: Compressing objects: 52% (537/1032) 2025-06-05T23:18:39.6340639Z remote: Compressing objects: 53% (547/1032) 2025-06-05T23:18:39.6341323Z remote: Compressing objects: 54% (558/1032) 2025-06-05T23:18:39.6341991Z remote: Compressing objects: 55% (568/1032) 2025-06-05T23:18:39.6342682Z remote: Compressing objects: 56% (578/1032) 2025-06-05T23:18:39.6343366Z remote: Compressing objects: 57% (589/1032) 2025-06-05T23:18:39.6344043Z remote: Compressing objects: 58% (599/1032) 2025-06-05T23:18:39.6344728Z remote: Compressing objects: 59% (609/1032) 2025-06-05T23:18:39.6345404Z remote: Compressing objects: 60% (620/1032) 2025-06-05T23:18:39.6346075Z remote: Compressing objects: 61% (630/1032) 2025-06-05T23:18:39.6346883Z remote: Compressing objects: 62% (640/1032) 2025-06-05T23:18:39.6347680Z remote: Compressing objects: 63% (651/1032) 2025-06-05T23:18:39.6348354Z remote: Compressing objects: 64% (661/1032) 2025-06-05T23:18:39.6349020Z remote: Compressing objects: 65% (671/1032) 2025-06-05T23:18:39.6349702Z remote: Compressing objects: 66% (682/1032) 2025-06-05T23:18:39.6350376Z remote: Compressing objects: 67% (692/1032) 2025-06-05T23:18:39.6351064Z remote: Compressing objects: 68% (702/1032) 2025-06-05T23:18:39.6351730Z remote: Compressing objects: 69% (713/1032) 2025-06-05T23:18:39.6352421Z remote: Compressing objects: 70% (723/1032) 2025-06-05T23:18:39.6353102Z remote: Compressing objects: 71% (733/1032) 2025-06-05T23:18:39.6353799Z remote: Compressing objects: 72% (744/1032) 2025-06-05T23:18:39.6354473Z remote: Compressing objects: 73% (754/1032) 2025-06-05T23:18:39.6355181Z remote: Compressing objects: 74% (764/1032) 2025-06-05T23:18:39.6355879Z remote: Compressing objects: 75% (774/1032) 2025-06-05T23:18:39.6356557Z remote: Compressing objects: 76% (785/1032) 2025-06-05T23:18:39.6357257Z remote: Compressing objects: 77% (795/1032) 2025-06-05T23:18:39.6357939Z remote: Compressing objects: 78% (805/1032) 2025-06-05T23:18:39.6358627Z remote: Compressing objects: 79% (816/1032) 2025-06-05T23:18:39.6359298Z remote: Compressing objects: 80% (826/1032) 2025-06-05T23:18:39.6359994Z remote: Compressing objects: 81% (836/1032) 2025-06-05T23:18:39.6360690Z remote: Compressing objects: 82% (847/1032) 2025-06-05T23:18:39.6361369Z remote: Compressing objects: 83% (857/1032) 2025-06-05T23:18:39.6362065Z remote: Compressing objects: 84% (867/1032) 2025-06-05T23:18:39.6362750Z remote: Compressing objects: 85% (878/1032) 2025-06-05T23:18:39.6363443Z remote: Compressing objects: 86% (888/1032) 2025-06-05T23:18:39.6364107Z remote: Compressing objects: 87% (898/1032) 2025-06-05T23:18:39.6364813Z remote: Compressing objects: 88% (909/1032) 2025-06-05T23:18:39.6365486Z remote: Compressing objects: 89% (919/1032) 2025-06-05T23:18:39.6366184Z remote: Compressing objects: 90% (929/1032) 2025-06-05T23:18:39.6366868Z remote: Compressing objects: 91% (940/1032) 2025-06-05T23:18:39.6367543Z remote: Compressing objects: 92% (950/1032) 2025-06-05T23:18:39.6368229Z remote: Compressing objects: 93% (960/1032) 2025-06-05T23:18:39.6368916Z remote: Compressing objects: 94% (971/1032) 2025-06-05T23:18:39.6369592Z remote: Compressing objects: 95% (981/1032) 2025-06-05T23:18:39.6370275Z remote: Compressing objects: 96% (991/1032) 2025-06-05T23:18:39.6370985Z remote: Compressing objects: 97% (1002/1032) 2025-06-05T23:18:39.6371687Z remote: Compressing objects: 98% (1012/1032) 2025-06-05T23:18:39.6372401Z remote: Compressing objects: 99% (1022/1032) 2025-06-05T23:18:39.6373099Z remote: Compressing objects: 100% (1032/1032) 2025-06-05T23:18:39.6373860Z remote: Compressing objects: 100% (1032/1032), done. 2025-06-05T23:18:39.6374557Z Receiving objects: 0% (1/38908) 2025-06-05T23:18:39.6375082Z Receiving objects: 1% (390/38908) 2025-06-05T23:18:39.6375679Z Receiving objects: 2% (779/38908) 2025-06-05T23:18:39.6376203Z Receiving objects: 3% (1168/38908) 2025-06-05T23:18:39.6376771Z Receiving objects: 4% (1557/38908) 2025-06-05T23:18:39.6377282Z Receiving objects: 5% (1946/38908) 2025-06-05T23:18:39.6377991Z Receiving objects: 6% (2335/38908) 2025-06-05T23:18:39.6378517Z Receiving objects: 7% (2724/38908) 2025-06-05T23:18:39.6379048Z Receiving objects: 8% (3113/38908) 2025-06-05T23:18:39.6379574Z Receiving objects: 9% (3502/38908) 2025-06-05T23:18:39.6380104Z Receiving objects: 10% (3891/38908) 2025-06-05T23:18:39.6380624Z Receiving objects: 11% (4280/38908) 2025-06-05T23:18:39.6381334Z Receiving objects: 12% (4669/38908) 2025-06-05T23:18:39.6381857Z Receiving objects: 13% (5059/38908) 2025-06-05T23:18:39.6382491Z Receiving objects: 14% (5448/38908) 2025-06-05T23:18:39.6383034Z Receiving objects: 15% (5837/38908) 2025-06-05T23:18:39.6383556Z Receiving objects: 16% (6226/38908) 2025-06-05T23:18:39.6384093Z Receiving objects: 17% (6615/38908) 2025-06-05T23:18:39.6384617Z Receiving objects: 18% (7004/38908) 2025-06-05T23:18:39.6385140Z Receiving objects: 19% (7393/38908) 2025-06-05T23:18:39.6385653Z Receiving objects: 20% (7782/38908) 2025-06-05T23:18:39.6386173Z Receiving objects: 21% (8171/38908) 2025-06-05T23:18:39.6386705Z Receiving objects: 22% (8560/38908) 2025-06-05T23:18:39.6387216Z Receiving objects: 23% (8949/38908) 2025-06-05T23:18:39.6387746Z Receiving objects: 24% (9338/38908) 2025-06-05T23:18:39.6388255Z Receiving objects: 25% (9727/38908) 2025-06-05T23:18:39.6388796Z Receiving objects: 26% (10117/38908) 2025-06-05T23:18:39.6389338Z Receiving objects: 27% (10506/38908) 2025-06-05T23:18:39.6389895Z Receiving objects: 28% (10895/38908) 2025-06-05T23:18:39.6390420Z Receiving objects: 29% (11284/38908) 2025-06-05T23:18:39.6390950Z Receiving objects: 30% (11673/38908) 2025-06-05T23:18:39.6391477Z Receiving objects: 31% (12062/38908) 2025-06-05T23:18:39.6392005Z Receiving objects: 32% (12451/38908) 2025-06-05T23:18:39.6392547Z Receiving objects: 33% (12840/38908) 2025-06-05T23:18:39.6393060Z Receiving objects: 34% (13229/38908) 2025-06-05T23:18:39.6393591Z Receiving objects: 35% (13618/38908) 2025-06-05T23:18:39.6394113Z Receiving objects: 36% (14007/38908) 2025-06-05T23:18:39.6394610Z Receiving objects: 37% (14396/38908) 2025-06-05T23:18:39.6395135Z Receiving objects: 38% (14786/38908) 2025-06-05T23:18:39.6395672Z Receiving objects: 39% (15175/38908) 2025-06-05T23:18:39.6396182Z Receiving objects: 40% (15564/38908) 2025-06-05T23:18:39.6396726Z Receiving objects: 41% (15953/38908) 2025-06-05T23:18:39.6397263Z Receiving objects: 42% (16342/38908) 2025-06-05T23:18:39.6397791Z Receiving objects: 43% (16731/38908) 2025-06-05T23:18:39.6398327Z Receiving objects: 44% (17120/38908) 2025-06-05T23:18:39.6398868Z Receiving objects: 45% (17509/38908) 2025-06-05T23:18:39.6399402Z Receiving objects: 46% (17898/38908) 2025-06-05T23:18:39.6399929Z Receiving objects: 47% (18287/38908) 2025-06-05T23:18:39.6400474Z Receiving objects: 48% (18676/38908) 2025-06-05T23:18:39.6400986Z Receiving objects: 49% (19065/38908) 2025-06-05T23:18:39.6401532Z Receiving objects: 50% (19454/38908) 2025-06-05T23:18:39.6402050Z Receiving objects: 51% (19844/38908) 2025-06-05T23:18:39.6402589Z Receiving objects: 52% (20233/38908) 2025-06-05T23:18:39.6403118Z Receiving objects: 53% (20622/38908) 2025-06-05T23:18:39.6403631Z Receiving objects: 54% (21011/38908) 2025-06-05T23:18:39.6404149Z Receiving objects: 55% (21400/38908) 2025-06-05T23:18:39.6404658Z Receiving objects: 56% (21789/38908) 2025-06-05T23:18:39.6405191Z Receiving objects: 57% (22178/38908) 2025-06-05T23:18:39.6405703Z Receiving objects: 58% (22567/38908) 2025-06-05T23:18:39.6406223Z Receiving objects: 59% (22956/38908) 2025-06-05T23:18:39.6406758Z Receiving objects: 60% (23345/38908) 2025-06-05T23:18:39.6407285Z Receiving objects: 61% (23734/38908) 2025-06-05T23:18:39.6407807Z Receiving objects: 62% (24123/38908) 2025-06-05T23:18:39.6408322Z Receiving objects: 63% (24513/38908) 2025-06-05T23:18:39.6408840Z Receiving objects: 64% (24902/38908) 2025-06-05T23:18:39.6409372Z Receiving objects: 65% (25291/38908) 2025-06-05T23:18:58.8322005Z Receiving objects: 66% (25680/38908) 2025-06-05T23:18:58.8322488Z Receiving objects: 67% (26069/38908) 2025-06-05T23:18:58.8322993Z Receiving objects: 68% (26458/38908) 2025-06-05T23:18:58.8323489Z Receiving objects: 69% (26847/38908) 2025-06-05T23:18:58.8324019Z Receiving objects: 70% (27236/38908) 2025-06-05T23:18:58.8324297Z Receiving objects: 71% (27625/38908) 2025-06-05T23:18:58.8324586Z Receiving objects: 72% (28014/38908) 2025-06-05T23:18:58.8325531Z Receiving objects: 73% (28403/38908) 2025-06-05T23:18:58.8325820Z Receiving objects: 74% (28792/38908) 2025-06-05T23:18:58.8326195Z Receiving objects: 75% (29181/38908) 2025-06-05T23:18:58.8326488Z Receiving objects: 76% (29571/38908) 2025-06-05T23:18:58.8326778Z Receiving objects: 77% (29960/38908) 2025-06-05T23:18:58.8327112Z Receiving objects: 78% (30349/38908) 2025-06-05T23:18:58.8327391Z Receiving objects: 79% (30738/38908) 2025-06-05T23:18:58.8327683Z Receiving objects: 80% (31127/38908) 2025-06-05T23:18:58.8327964Z Receiving objects: 81% (31516/38908) 2025-06-05T23:18:58.8328256Z Receiving objects: 82% (31905/38908) 2025-06-05T23:18:58.8328536Z Receiving objects: 83% (32294/38908) 2025-06-05T23:18:58.8328828Z Receiving objects: 84% (32683/38908) 2025-06-05T23:18:58.8329107Z Receiving objects: 85% (33072/38908) 2025-06-05T23:18:58.8329400Z Receiving objects: 86% (33461/38908) 2025-06-05T23:18:58.8329689Z Receiving objects: 87% (33850/38908) 2025-06-05T23:18:58.8329965Z Receiving objects: 88% (34240/38908) 2025-06-05T23:18:58.8330262Z Receiving objects: 89% (34629/38908) 2025-06-05T23:18:58.8330540Z Receiving objects: 90% (35018/38908) 2025-06-05T23:18:58.8330834Z Receiving objects: 91% (35407/38908) 2025-06-05T23:18:58.8331112Z Receiving objects: 92% (35796/38908) 2025-06-05T23:18:58.8331400Z Receiving objects: 93% (36185/38908) 2025-06-05T23:18:58.8331678Z Receiving objects: 94% (36574/38908) 2025-06-05T23:18:58.8331969Z Receiving objects: 95% (36963/38908) 2025-06-05T23:18:58.8332258Z Receiving objects: 96% (37352/38908) 2025-06-05T23:18:58.8332538Z Receiving objects: 97% (37741/38908) 2025-06-05T23:18:58.8332829Z Receiving objects: 98% (38130/38908) 2025-06-05T23:18:58.8333107Z Receiving objects: 99% (38519/38908) 2025-06-05T23:18:58.8333586Z remote: Total 38908 (delta 12504), reused 12205 (delta 12205), pack-reused 25671 (from 3) 2025-06-05T23:18:58.8334065Z Receiving objects: 100% (38908/38908) 2025-06-05T23:18:58.8334446Z Receiving objects: 100% (38908/38908), 20.79 MiB | 42.08 MiB/s, done. 2025-06-05T23:18:58.8334843Z Resolving deltas: 0% (0/28535) 2025-06-05T23:18:58.8335131Z Resolving deltas: 1% (286/28535) 2025-06-05T23:18:58.8335530Z Resolving deltas: 2% (571/28535) 2025-06-05T23:18:58.8335804Z Resolving deltas: 3% (857/28535) 2025-06-05T23:18:58.8336092Z Resolving deltas: 4% (1142/28535) 2025-06-05T23:18:58.8336367Z Resolving deltas: 5% (1427/28535) 2025-06-05T23:18:58.8336658Z Resolving deltas: 6% (1713/28535) 2025-06-05T23:18:58.8336932Z Resolving deltas: 7% (1998/28535) 2025-06-05T23:18:58.8337214Z Resolving deltas: 8% (2283/28535) 2025-06-05T23:18:58.8337481Z Resolving deltas: 9% (2569/28535) 2025-06-05T23:18:58.8337762Z Resolving deltas: 10% (2854/28535) 2025-06-05T23:18:58.8338031Z Resolving deltas: 11% (3139/28535) 2025-06-05T23:18:58.8338311Z Resolving deltas: 12% (3425/28535) 2025-06-05T23:18:58.8338592Z Resolving deltas: 13% (3710/28535) 2025-06-05T23:18:58.8338860Z Resolving deltas: 14% (3995/28535) 2025-06-05T23:18:58.8339149Z Resolving deltas: 15% (4281/28535) 2025-06-05T23:18:58.8339418Z Resolving deltas: 16% (4566/28535) 2025-06-05T23:18:58.8339703Z Resolving deltas: 17% (4851/28535) 2025-06-05T23:18:58.8339972Z Resolving deltas: 18% (5137/28535) 2025-06-05T23:18:58.8340252Z Resolving deltas: 19% (5422/28535) 2025-06-05T23:18:58.8340520Z Resolving deltas: 20% (5707/28535) 2025-06-05T23:18:58.8340800Z Resolving deltas: 21% (5993/28535) 2025-06-05T23:18:58.8341080Z Resolving deltas: 22% (6278/28535) 2025-06-05T23:18:58.8341350Z Resolving deltas: 23% (6564/28535) 2025-06-05T23:18:58.8341632Z Resolving deltas: 24% (6849/28535) 2025-06-05T23:18:58.8341902Z Resolving deltas: 25% (7134/28535) 2025-06-05T23:18:58.8342183Z Resolving deltas: 26% (7420/28535) 2025-06-05T23:18:58.8342455Z Resolving deltas: 27% (7705/28535) 2025-06-05T23:18:58.8342740Z Resolving deltas: 28% (7990/28535) 2025-06-05T23:18:58.8343013Z Resolving deltas: 29% (8276/28535) 2025-06-05T23:18:58.8343296Z Resolving deltas: 30% (8561/28535) 2025-06-05T23:18:58.8343659Z Resolving deltas: 31% (8846/28535) 2025-06-05T23:18:58.8343943Z Resolving deltas: 32% (9132/28535) 2025-06-05T23:18:58.8344289Z Resolving deltas: 33% (9417/28535) 2025-06-05T23:18:58.8344562Z Resolving deltas: 34% (9702/28535) 2025-06-05T23:18:58.8344843Z Resolving deltas: 35% (9988/28535) 2025-06-05T23:18:58.8345114Z Resolving deltas: 36% (10273/28535) 2025-06-05T23:18:58.8345406Z Resolving deltas: 37% (10558/28535) 2025-06-05T23:18:58.8345682Z Resolving deltas: 38% (10844/28535) 2025-06-05T23:18:58.8345967Z Resolving deltas: 39% (11129/28535) 2025-06-05T23:18:58.8346240Z Resolving deltas: 40% (11414/28535) 2025-06-05T23:18:58.8346526Z Resolving deltas: 41% (11700/28535) 2025-06-05T23:18:58.8346800Z Resolving deltas: 42% (11985/28535) 2025-06-05T23:18:58.8347084Z Resolving deltas: 43% (12271/28535) 2025-06-05T23:18:58.8347370Z Resolving deltas: 44% (12556/28535) 2025-06-05T23:18:58.8347642Z Resolving deltas: 45% (12841/28535) 2025-06-05T23:18:58.8347927Z Resolving deltas: 46% (13127/28535) 2025-06-05T23:18:58.8348208Z Resolving deltas: 47% (13412/28535) 2025-06-05T23:18:58.8348490Z Resolving deltas: 48% (13697/28535) 2025-06-05T23:18:58.8348765Z Resolving deltas: 49% (13983/28535) 2025-06-05T23:18:58.8349048Z Resolving deltas: 50% (14268/28535) 2025-06-05T23:18:58.8349317Z Resolving deltas: 51% (14553/28535) 2025-06-05T23:18:58.8349600Z Resolving deltas: 52% (14839/28535) 2025-06-05T23:18:58.8349888Z Resolving deltas: 53% (15124/28535) 2025-06-05T23:18:58.8350158Z Resolving deltas: 54% (15409/28535) 2025-06-05T23:18:58.8350445Z Resolving deltas: 55% (15695/28535) 2025-06-05T23:18:58.8350715Z Resolving deltas: 56% (15980/28535) 2025-06-05T23:18:58.8350998Z Resolving deltas: 57% (16265/28535) 2025-06-05T23:18:58.8351270Z Resolving deltas: 58% (16551/28535) 2025-06-05T23:18:58.8351554Z Resolving deltas: 59% (16836/28535) 2025-06-05T23:18:58.8351826Z Resolving deltas: 60% (17121/28535) 2025-06-05T23:18:58.8352109Z Resolving deltas: 61% (17407/28535) 2025-06-05T23:18:58.8352386Z Resolving deltas: 62% (17692/28535) 2025-06-05T23:18:58.8352670Z Resolving deltas: 63% (17978/28535) 2025-06-05T23:18:58.8352959Z Resolving deltas: 64% (18263/28535) 2025-06-05T23:18:58.8353230Z Resolving deltas: 65% (18548/28535) 2025-06-05T23:18:58.8353513Z Resolving deltas: 66% (18834/28535) 2025-06-05T23:18:58.8353787Z Resolving deltas: 67% (19119/28535) 2025-06-05T23:18:58.8354068Z Resolving deltas: 68% (19404/28535) 2025-06-05T23:18:58.8354339Z Resolving deltas: 69% (19690/28535) 2025-06-05T23:18:58.8354621Z Resolving deltas: 70% (19975/28535) 2025-06-05T23:18:58.8354893Z Resolving deltas: 71% (20260/28535) 2025-06-05T23:18:58.8355175Z Resolving deltas: 72% (20546/28535) 2025-06-05T23:18:58.8355450Z Resolving deltas: 73% (20831/28535) 2025-06-05T23:18:58.8355732Z Resolving deltas: 74% (21116/28535) 2025-06-05T23:18:58.8356017Z Resolving deltas: 75% (21402/28535) 2025-06-05T23:18:58.8356289Z Resolving deltas: 76% (21687/28535) 2025-06-05T23:18:58.8356573Z Resolving deltas: 77% (21972/28535) 2025-06-05T23:18:58.8356855Z Resolving deltas: 78% (22258/28535) 2025-06-05T23:18:58.8357144Z Resolving deltas: 79% (22543/28535) 2025-06-05T23:18:58.8357424Z Resolving deltas: 80% (22828/28535) 2025-06-05T23:18:58.8357712Z Resolving deltas: 81% (23114/28535) 2025-06-05T23:18:58.8357983Z Resolving deltas: 82% (23399/28535) 2025-06-05T23:18:58.8358268Z Resolving deltas: 83% (23685/28535) 2025-06-05T23:18:58.8358551Z Resolving deltas: 84% (23970/28535) 2025-06-05T23:18:58.8358822Z Resolving deltas: 85% (24255/28535) 2025-06-05T23:18:58.8359104Z Resolving deltas: 86% (24541/28535) 2025-06-05T23:18:58.8359375Z Resolving deltas: 87% (24826/28535) 2025-06-05T23:18:58.8359659Z Resolving deltas: 88% (25111/28535) 2025-06-05T23:18:58.8359931Z Resolving deltas: 89% (25397/28535) 2025-06-05T23:18:58.8360211Z Resolving deltas: 90% (25682/28535) 2025-06-05T23:18:58.8360512Z Resolving deltas: 91% (25967/28535) 2025-06-05T23:18:58.8360787Z Resolving deltas: 92% (26253/28535) 2025-06-05T23:18:58.8361155Z Resolving deltas: 93% (26538/28535) 2025-06-05T23:18:58.8361445Z Resolving deltas: 94% (26823/28535) 2025-06-05T23:18:58.8361779Z Resolving deltas: 95% (27109/28535) 2025-06-05T23:18:58.8362068Z Resolving deltas: 96% (27394/28535) 2025-06-05T23:18:58.8362341Z Resolving deltas: 97% (27679/28535) 2025-06-05T23:18:58.8362632Z Resolving deltas: 98% (27965/28535) 2025-06-05T23:18:58.8362908Z Resolving deltas: 99% (28250/28535) 2025-06-05T23:18:58.8363197Z Resolving deltas: 100% (28535/28535) 2025-06-05T23:18:58.8363486Z Resolving deltas: 100% (28535/28535), done. 2025-06-05T23:18:58.8364155Z Submodule path 'thirdparty/serialization_lib/third_party/flatbuffers': checked out '0100f6a5779831fa7a651e4b67ef389a8752bd9b' 2025-06-05T23:18:58.8365039Z Submodule path 'thirdparty/specification': checked out 'b5b067819e5de11153b41cf3d26da4f3f9dd23e8' 2025-06-05T23:18:58.8366346Z [patch_repo] Patching reference_model repo_dir:reference_model base_rev:70ed0b40fa831387e36abdb4f7fb9670a3464f5a patch_dir:/pytorch/executorch/backends/arm/scripts/../third-party/reference_model/patches/v0.80/reference_model 2025-06-05T23:18:58.8367995Z /pytorch/executorch/examples/arm/ethos-u-scratch/reference_model /pytorch/executorch/examples/arm/ethos-u-scratch /pytorch/executorch/examples/arm/ethos-u-scratch 2025-06-05T23:18:58.8368913Z HEAD is now at 70ed0b4 Add boolean input argument support 2025-06-05T23:18:58.8369377Z Applying: Move tosa-tools to be namespaced into tosa-tools.v0_80 2025-06-05T23:18:58.8369946Z [patch_repo] Patched reference_model @ heads/v0.80-0-g5282de1 in reference_model dir. 2025-06-05T23:18:58.8370322Z 2025-06-05T23:18:58.8370673Z /pytorch/executorch/examples/arm/ethos-u-scratch /pytorch/executorch/examples/arm/ethos-u-scratch 2025-06-05T23:18:58.8372000Z [patch_repo] Patching serialization_lib repo_dir:reference_model/thirdparty/serialization_lib base_rev:v0.80.1 patch_dir:/pytorch/executorch/backends/arm/scripts/../third-party/reference_model/patches/v0.80/serialization_lib 2025-06-05T23:18:58.8373759Z /pytorch/executorch/examples/arm/ethos-u-scratch/reference_model/thirdparty/serialization_lib /pytorch/executorch/examples/arm/ethos-u-scratch /pytorch/executorch/examples/arm/ethos-u-scratch 2025-06-05T23:18:58.8374885Z HEAD is now at 021bbad Use binary mode when loading and saving flatbuffer files 2025-06-05T23:18:58.8375466Z Applying: Make TOSA serializer lib to be self contained 2025-06-05T23:18:58.8376108Z [patch_repo] Patched serialization_lib @ tags/v0.80.1-1-gb9c83e6 in reference_model/thirdparty/serialization_lib dir. 2025-06-05T23:18:58.8376608Z 2025-06-05T23:18:58.8376962Z /pytorch/executorch/examples/arm/ethos-u-scratch /pytorch/executorch/examples/arm/ethos-u-scratch 2025-06-05T23:18:58.8378290Z /pytorch/executorch/examples/arm/ethos-u-scratch/reference_model /pytorch/executorch/examples/arm/ethos-u-scratch /pytorch/executorch/examples/arm/ethos-u-scratch 2025-06-05T23:18:58.8379300Z Processing /pytorch/executorch/examples/arm/ethos-u-scratch/reference_model 2025-06-05T23:18:58.8380137Z Installing build dependencies ... [?25l- \ | / - \ | / done 2025-06-05T23:18:58.8380726Z [?25h Getting requirements to build wheel ... [?25l- \ | done 2025-06-05T23:18:58.8381278Z [?25h Preparing metadata (pyproject.toml) ... [?25l- \ done 2025-06-05T23:18:58.8382060Z [?25hRequirement already satisfied: flatbuffers in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (25.2.10) 2025-06-05T23:18:58.8382728Z Building wheels for collected packages: tosa-tools-v0.80 2025-06-05T23:18:58.8383582Z Building wheel for tosa-tools-v0.80 (pyproject.toml) ... [?25l- \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - done 2025-06-05T23:18:58.8384989Z [?25h Created wheel for tosa-tools-v0.80: filename=tosa_tools_v0_80-0.80.2.dev2+g5282de1.d20250605-py3-none-any.whl size=4971388 sha256=ea8ec01e7eab6f53da1d3c316628a09bfbe527c096424fc76d6e842f62611f44 2025-06-05T23:18:58.8386409Z Stored in directory: /tmp/pip-ephem-wheel-cache-uqdmb338/wheels/02/93/e8/92072c9c8f53773ec1a5f14f540f0db117da02e5cf64dd838c 2025-06-05T23:18:58.8387199Z Successfully built tosa-tools-v0.80 2025-06-05T23:24:53.0895756Z Installing collected packages: tosa-tools-v0.80 2025-06-05T23:24:53.0897548Z Successfully installed tosa-tools-v0.80-0.80.2.dev2+g5282de1.d20250605 2025-06-05T23:24:53.0898305Z /pytorch/executorch/examples/arm/ethos-u-scratch /pytorch/executorch/examples/arm/ethos-u-scratch 2025-06-05T23:24:53.0899281Z Collecting tosa-tools@ git+https://git.gitlab.arm.com/tosa/tosa-reference-model.git@d102f426dd2e3c1f25bbf23292ec8ee51aa9c677 2025-06-05T23:24:53.0901396Z Cloning https://git.gitlab.arm.com/tosa/tosa-reference-model.git (to revision d102f426dd2e3c1f25bbf23292ec8ee51aa9c677) to /tmp/pip-install-7zgm720r/tosa-tools_2165c46d44af4e3f85a5511badf3655e 2025-06-05T23:24:53.0903269Z Running command git clone --filter=blob:none --quiet https://git.gitlab.arm.com/tosa/tosa-reference-model.git /tmp/pip-install-7zgm720r/tosa-tools_2165c46d44af4e3f85a5511badf3655e 2025-06-05T23:24:53.0904373Z Running command git rev-parse -q --verify 'sha^d102f426dd2e3c1f25bbf23292ec8ee51aa9c677' 2025-06-05T23:24:53.0905220Z Running command git fetch -q https://git.gitlab.arm.com/tosa/tosa-reference-model.git d102f426dd2e3c1f25bbf23292ec8ee51aa9c677 2025-06-05T23:24:53.0905995Z Running command git checkout -q d102f426dd2e3c1f25bbf23292ec8ee51aa9c677 2025-06-05T23:24:53.0906742Z Resolved https://git.gitlab.arm.com/tosa/tosa-reference-model.git to commit d102f426dd2e3c1f25bbf23292ec8ee51aa9c677 2025-06-05T23:24:53.0907434Z Running command git submodule update --init --recursive -q 2025-06-05T23:24:53.0961080Z Installing build dependencies ... [?25l- \ | / done 2025-06-05T23:24:53.0961636Z [?25h Getting requirements to build wheel ... [?25l- \ done 2025-06-05T23:24:53.0962165Z [?25h Preparing metadata (pyproject.toml) ... [?25l- done 2025-06-05T23:24:53.0962627Z [?25hCollecting ml_dtypes==0.5.1 2025-06-05T23:24:53.0963155Z Downloading ml_dtypes-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB) 2025-06-05T23:24:53.0963991Z Requirement already satisfied: flatbuffers in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (25.2.10) 2025-06-05T23:24:53.0964771Z Downloading ml_dtypes-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB) 2025-06-05T23:24:53.0965554Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/4.7 MB ? eta -:--:-- 2025-06-05T23:24:53.0966224Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 125.0 MB/s eta 0:00:00 2025-06-05T23:24:53.0966762Z [?25hBuilding wheels for collected packages: tosa-tools 2025-06-05T23:24:53.0968700Z Building wheel for tosa-tools (pyproject.toml) ... [?25l- \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / done 2025-06-05T23:24:53.0970447Z [?25h Created wheel for tosa-tools: filename=tosa_tools-1.0.0rc0.post1.dev304+gd102f42-py3-none-any.whl size=6270138 sha256=3876a769324fd2c097e40769eb8b668d13a4db10335c6ad81017a19051ed6c1f 2025-06-05T23:24:53.0971665Z Stored in directory: /var/lib/ci-user/.cache/pip/wheels/41/ea/48/97040d2df3bafb675660708c9b6fa45791226fd800e7dd3878 2025-06-05T23:24:53.0972294Z Successfully built tosa-tools 2025-06-05T23:24:53.0972639Z Installing collected packages: tosa-tools, ml_dtypes 2025-06-05T23:24:53.0973009Z [?25l 2025-06-05T23:24:53.0973391Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [tosa-tools] 2025-06-05T23:24:53.0973996Z  ━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 1/2 [ml_dtypes] 2025-06-05T23:24:53.0974538Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2/2 [ml_dtypes] 2025-06-05T23:24:53.0974908Z [?25h 2025-06-05T23:24:53.0975501Z Successfully installed ml_dtypes-0.5.1 tosa-tools-1.0.0rc0.post1.dev304+gd102f42 2025-06-05T23:24:53.0976423Z Collecting ethos-u-vela@ git+https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela@8cac2b9a7204b57125a8718049519b091a98846c 2025-06-05T23:24:53.0978034Z Cloning https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela (to revision 8cac2b9a7204b57125a8718049519b091a98846c) to /tmp/pip-install-rsegpjbb/ethos-u-vela_a6f018e67d2a420893506e9c71145f8b 2025-06-05T23:24:53.0979679Z Running command git clone --filter=blob:none --quiet https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela /tmp/pip-install-rsegpjbb/ethos-u-vela_a6f018e67d2a420893506e9c71145f8b 2025-06-05T23:24:53.0980874Z warning: redirecting to https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela.git/ 2025-06-05T23:24:53.0981581Z Running command git rev-parse -q --verify 'sha^8cac2b9a7204b57125a8718049519b091a98846c' 2025-06-05T23:24:53.0982458Z Running command git fetch -q https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela 8cac2b9a7204b57125a8718049519b091a98846c 2025-06-05T23:24:53.0983278Z Running command git checkout -q 8cac2b9a7204b57125a8718049519b091a98846c 2025-06-05T23:24:53.0983922Z warning: redirecting to https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela.git/ 2025-06-05T23:24:53.0984904Z Resolved https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela to commit 8cac2b9a7204b57125a8718049519b091a98846c 2025-06-05T23:24:53.0985739Z Installing build dependencies ... [?25l- \ | / - done 2025-06-05T23:24:53.0986292Z [?25h Getting requirements to build wheel ... [?25l- \ done 2025-06-05T23:24:53.0986819Z [?25h Preparing metadata (pyproject.toml) ... [?25l- \ done 2025-06-05T23:24:53.0987917Z [?25hCollecting flatbuffers==24.12.23 (from ethos-u-vela@ git+https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela@8cac2b9a7204b57125a8718049519b091a98846c) 2025-06-05T23:24:53.0988909Z Downloading flatbuffers-24.12.23-py2.py3-none-any.whl.metadata (876 bytes) 2025-06-05T23:24:53.0990175Z Requirement already satisfied: numpy>=1.23.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ethos-u-vela@ git+https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela@8cac2b9a7204b57125a8718049519b091a98846c) (2.2.6) 2025-06-05T23:24:53.0992099Z Requirement already satisfied: lxml>=4.5.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ethos-u-vela@ git+https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela@8cac2b9a7204b57125a8718049519b091a98846c) (5.4.0) 2025-06-05T23:24:53.0993468Z Downloading flatbuffers-24.12.23-py2.py3-none-any.whl (30 kB) 2025-06-05T23:24:53.0994015Z Building wheels for collected packages: ethos-u-vela 2025-06-05T23:24:53.0994995Z Building wheel for ethos-u-vela (pyproject.toml) ... [?25l- \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - done 2025-06-05T23:24:53.0996417Z [?25h Created wheel for ethos-u-vela: filename=ethos_u_vela-4.2.1.dev111+g8cac2b9-cp310-cp310-linux_x86_64.whl size=1860162 sha256=21102e899af359155d0c7d45d58579c0c4a075a98a2360cde7493054c1824a95 2025-06-05T23:24:53.0997621Z Stored in directory: /var/lib/ci-user/.cache/pip/wheels/77/c7/c5/e99ea73fc70c96cf6e7db473508e3891adee2dd36019b7c365 2025-06-05T23:24:53.0998273Z Successfully built ethos-u-vela 2025-06-05T23:24:53.0998632Z Installing collected packages: flatbuffers, ethos-u-vela 2025-06-05T23:24:53.0999007Z [?25l 2025-06-05T23:24:53.0999277Z  Attempting uninstall: flatbuffers 2025-06-05T23:24:53.0999506Z 2025-06-05T23:24:53.0999713Z  Found existing installation: flatbuffers 25.2.10 2025-06-05T23:24:53.0999977Z 2025-06-05T23:24:53.1000143Z  Uninstalling flatbuffers-25.2.10: 2025-06-05T23:24:53.1000359Z 2025-06-05T23:24:53.1000571Z  Successfully uninstalled flatbuffers-25.2.10 2025-06-05T23:24:53.1000812Z 2025-06-05T23:24:53.1001141Z  ━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 1/2 [ethos-u-vela] 2025-06-05T23:24:53.1001759Z  ━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 1/2 [ethos-u-vela] 2025-06-05T23:24:53.1002310Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2/2 [ethos-u-vela] 2025-06-05T23:24:53.1002700Z [?25h 2025-06-05T23:24:53.1003606Z ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. 2025-06-05T23:24:53.1004604Z tosa-tools 1.0.0rc0.post1.dev304+gd102f42 requires jsonschema, which is not installed. 2025-06-05T23:24:53.1005273Z tosa-tools-v0-80 0.80.2.dev2+g5282de1.d20250605 requires jsonschema, which is not installed. 2025-06-05T23:24:53.1006081Z tosa-tools 1.0.0rc0.post1.dev304+gd102f42 requires flatbuffers==23.5.26, but you have flatbuffers 24.12.23 which is incompatible. 2025-06-05T23:24:54.2177899Z tosa-tools 1.0.0rc0.post1.dev304+gd102f42 requires numpy<2, but you have numpy 2.2.6 which is incompatible. 2025-06-05T23:24:54.2178916Z tosa-tools-v0-80 0.80.2.dev2+g5282de1.d20250605 requires flatbuffers==23.5.26, but you have flatbuffers 24.12.23 which is incompatible. 2025-06-05T23:24:54.2180134Z tosa-tools-v0-80 0.80.2.dev2+g5282de1.d20250605 requires numpy<2, but you have numpy 2.2.6 which is incompatible. 2025-06-05T23:24:54.2181405Z Successfully installed ethos-u-vela-4.2.1.dev111+g8cac2b9 flatbuffers-24.12.23 2025-06-05T23:24:54.2182285Z [main] update path by doing 'source /pytorch/executorch/examples/arm/ethos-u-scratch/setup_path.sh' 2025-06-05T23:24:54.2182801Z [main] success! 2025-06-05T23:24:54.2183075Z + source examples/arm/ethos-u-scratch/setup_path.sh 2025-06-05T23:24:54.2184339Z ++ 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-06-05T23:24:54.2186507Z ++ 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-06-05T23:24:54.2190416Z ++ 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-06-05T23:24:54.2193276Z ++ 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-06-05T23:24:54.2195105Z ++ export LD_LIBRARY_PATH=/pytorch/executorch/examples/arm/ethos-u-scratch/FVP-corstone320/python/lib/ 2025-06-05T23:24:54.2195871Z ++ LD_LIBRARY_PATH=/pytorch/executorch/examples/arm/ethos-u-scratch/FVP-corstone320/python/lib/ 2025-06-05T23:24:54.2198386Z ++ 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-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin 2025-06-05T23:24:54.2202156Z ++ 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-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin 2025-06-05T23:24:54.2204172Z ++ hash FVP_Corstone_SSE-300_Ethos-U55 2025-06-05T23:24:54.2204494Z ++ hash FVP_Corstone_SSE-300_Ethos-U65 2025-06-05T23:24:54.2204799Z ++ hash FVP_Corstone_SSE-320 2025-06-05T23:24:54.2205071Z + arm-none-eabi-c++ --version 2025-06-05T23:24:54.2205483Z arm-none-eabi-c++ (Arm GNU Toolchain 13.3.Rel1 (Build arm-13.24)) 13.3.1 20240614 2025-06-05T23:24:54.2208692Z Copyright (C) 2023 Free Software Foundation, Inc. 2025-06-05T23:24:54.2209158Z This is free software; see the source for copying conditions. There is NO 2025-06-05T23:24:54.2209715Z warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 2025-06-05T23:24:54.2210060Z 2025-06-05T23:24:54.2210286Z + toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake 2025-06-05T23:24:54.2210784Z ++ realpath examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake 2025-06-05T23:24:54.2211379Z + toolchain_cmake=/pytorch/executorch/examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake 2025-06-05T23:24:54.2212397Z + bash test/build_size_test.sh '-DCMAKE_TOOLCHAIN_FILE=/pytorch/executorch/examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON' 2025-06-05T23:24:54.2213202Z Installing libexecutorch.a 2025-06-05T23:24:54.2213482Z Cleaning build artifacts... 2025-06-05T23:24:54.2213735Z Cleaning pip-out/... 2025-06-05T23:24:54.2213986Z Done cleaning build artifacts. 2025-06-05T23:24:54.2214294Z Updating tokenizers git submodule... 2025-06-05T23:24:54.2214708Z /pytorch/executorch/extension/llm/tokenizers /pytorch/executorch 2025-06-05T23:24:54.2215103Z /pytorch/executorch 2025-06-05T23:24:54.2215464Z -- The C compiler identification is GNU 13.3.1 2025-06-05T23:24:54.2215817Z -- The CXX compiler identification is GNU 13.3.1 2025-06-05T23:24:54.2216164Z -- Detecting C compiler ABI info 2025-06-05T23:24:54.2216453Z -- Detecting C compiler ABI info - done 2025-06-05T23:24:54.2217279Z -- Check for working C compiler: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/arm-none-eabi-gcc - skipped 2025-06-05T23:24:54.2218157Z -- Detecting C compile features 2025-06-05T23:24:54.2218443Z -- Detecting C compile features - done 2025-06-05T23:24:54.2218834Z -- Detecting CXX compiler ABI info 2025-06-05T23:24:54.2219134Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:24:54.2219963Z -- Check for working CXX compiler: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/arm-none-eabi-g++ - skipped 2025-06-05T23:24:54.2220791Z -- Detecting CXX compile features 2025-06-05T23:24:54.2221084Z -- Detecting CXX compile features - done 2025-06-05T23:24:54.2221401Z -- --- Configured Options --- 2025-06-05T23:24:54.2221577Z 2025-06-05T23:24:54.2221691Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:24:54.2222055Z -- CMAKE_SYSTEM_PROCESSOR : cortex-m55 2025-06-05T23:24:54.2222415Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:24:54.2222777Z -- PYTHON_EXECUTABLE : python3 2025-06-05T23:24:54.2223124Z -- CMAKE_CXX_COMPILER_ID : GNU 2025-06-05T23:24:54.2223690Z -- CMAKE_TOOLCHAIN_FILE : /pytorch/executorch/examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake 2025-06-05T23:24:54.2224243Z -- BUCK2 : 2025-06-05T23:24:54.2224563Z -- EXECUTORCH_ENABLE_LOGGING : OFF 2025-06-05T23:24:54.2224918Z -- EXECUTORCH_BUILD_COREML : OFF 2025-06-05T23:24:54.2225267Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:24:54.2225634Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-06-05T23:24:54.2226161Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-06-05T23:24:54.2226702Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:24:54.2227068Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:24:54.2227420Z -- EXECUTORCH_ENABLE_EVENT_TRACER : OFF 2025-06-05T23:24:54.2227776Z -- EXECUTORCH_OPTIMIZE_SIZE : ON 2025-06-05T23:24:54.2228115Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : ON 2025-06-05T23:24:54.2228464Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : OFF 2025-06-05T23:24:54.2228810Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : OFF 2025-06-05T23:24:54.2229166Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : OFF 2025-06-05T23:24:54.2229577Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : OFF 2025-06-05T23:24:54.2229939Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : OFF 2025-06-05T23:24:54.2230297Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:24:54.2230641Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : OFF 2025-06-05T23:24:54.2231004Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : OFF 2025-06-05T23:24:54.2231354Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : OFF 2025-06-05T23:24:54.2231716Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : OFF 2025-06-05T23:24:54.2232065Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:24:54.2232416Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:24:54.2232748Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:24:54.2233095Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:24:54.2233446Z -- EXECUTORCH_BUILD_PYBIND : OFF 2025-06-05T23:24:54.2233775Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:24:54.2234122Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : OFF 2025-06-05T23:24:54.2234475Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : OFF 2025-06-05T23:24:54.2234828Z -- EXECUTORCH_BUILD_DEVTOOLS : OFF 2025-06-05T23:24:54.2235164Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:24:54.2235509Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:24:54.2235842Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:24:54.2236190Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:24:54.2236536Z -- EXECUTORCH_BUILD_XNNPACK : OFF 2025-06-05T23:24:54.2236867Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:24:54.2237254Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:24:54.2237588Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:24:54.2237997Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:24:54.2238333Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:24:54.2238680Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:24:54.2239022Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:24:54.2239384Z -- EXECUTORCH_BUILD_PTHREADPOOL : OFF 2025-06-05T23:24:54.2239735Z -- EXECUTORCH_BUILD_CPUINFO : OFF 2025-06-05T23:24:54.2240071Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:24:54.2240428Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:24:54.2240772Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:24:54.2241130Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:24:54.2241444Z -- -------------------------- 2025-06-05T23:24:54.2241857Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:24:54.2242718Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:24:54.2243348Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:54.2243758Z CMake. 2025-06-05T23:24:54.2243870Z 2025-06-05T23:24:54.2244087Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:54.2244636Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:54.2245101Z to work with policies introduced by or earlier. 2025-06-05T23:24:54.2245363Z 2025-06-05T23:24:54.2245464Z  2025-06-05T23:24:54.2245740Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:24:54.2246175Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:24:58.2160907Z -- Setting GNU C compiler options with c11 and Posix 2025-06-05T23:24:58.2161633Z -- Disabling -pedantic for GCC >= 8.0 2025-06-05T23:24:58.2162451Z -- Disabling GNU C compiler warnings: -Wstringop-truncation -Wno-format-overflow 2025-06-05T23:24:58.2163276Z -- GCC_VERSION: 13.3.1 2025-06-05T23:24:58.2163549Z 2025-06-05T23:24:58.2165029Z -- 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-06-05T23:24:58.2168080Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:24:58.2169376Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:58.2170119Z CMake. 2025-06-05T23:24:58.2170321Z 2025-06-05T23:24:58.2170707Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:58.2171667Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:58.2172432Z to work with policies introduced by or earlier. 2025-06-05T23:24:58.2172902Z 2025-06-05T23:24:58.2173142Z  2025-06-05T23:24:58.2173471Z -- Resolved buck2 as buck2. 2025-06-05T23:24:58.2173915Z -- Killing buck2 daemon 2025-06-05T23:24:58.2174317Z 'buck2 killall' 2025-06-05T23:24:58.2174693Z -- executorch: Generating source lists 2025-06-05T23:24:58.2175738Z -- executorch: Generating source file list /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:24:58.2176960Z -- executorch: Using sources file /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:24:58.2177954Z -- Generating operator lib: 2025-06-05T23:24:58.2178412Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:24:58.2179093Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:24:58.2179817Z -- ROOT_OPS: 2025-06-05T23:24:58.2180173Z -- INCLUDE_ALL_OPS: 2025-06-05T23:24:58.2182414Z Command - python3;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out/kernels/portable/portable_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/portable/functions.yaml" 2025-06-05T23:24:58.2184820Z -- Generating kernel bindings: 2025-06-05T23:24:58.2185337Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:24:58.2186015Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:24:58.2186731Z -- CUSTOM_OPS_YAML: 2025-06-05T23:24:58.2187161Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:24:58.2190217Z Generated files /pytorch/executorch/cmake-out/kernels/portable/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out/kernels/portable/portable_ops_lib/Functions.h;/pytorch/executorch/cmake-out/kernels/portable/portable_ops_lib/NativeFunctions.h 2025-06-05T23:24:58.2192863Z -- Generating operator lib: 2025-06-05T23:24:58.2193348Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:24:58.2193798Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:24:58.2194266Z -- DEPS: executorch_core 2025-06-05T23:24:58.2195304Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:24:58.2196435Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:58.2197155Z CMake. 2025-06-05T23:24:58.2197356Z 2025-06-05T23:24:58.2197757Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:58.2198668Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:58.2199504Z to work with policies introduced by or earlier. 2025-06-05T23:24:58.2199946Z 2025-06-05T23:24:58.2200185Z  2025-06-05T23:24:58.2200524Z -- Looking for C++ include unistd.h 2025-06-05T23:24:58.2201069Z -- Looking for C++ include unistd.h - found 2025-06-05T23:24:58.2201610Z -- Looking for C++ include stdint.h 2025-06-05T23:24:58.2202121Z -- Looking for C++ include stdint.h - found 2025-06-05T23:24:58.2202673Z -- Looking for C++ include inttypes.h 2025-06-05T23:24:58.2203221Z -- Looking for C++ include inttypes.h - found 2025-06-05T23:24:58.2203738Z -- Looking for C++ include sys/types.h 2025-06-05T23:24:58.2204287Z -- Looking for C++ include sys/types.h - found 2025-06-05T23:24:58.2204820Z -- Looking for C++ include sys/stat.h 2025-06-05T23:24:58.2205256Z -- Looking for C++ include sys/stat.h - found 2025-06-05T23:24:58.2205966Z -- Looking for C++ include fnmatch.h 2025-06-05T23:24:58.2206475Z -- Looking for C++ include fnmatch.h - found 2025-06-05T23:24:58.2207061Z -- Looking for C++ include stddef.h 2025-06-05T23:24:58.2207558Z -- Looking for C++ include stddef.h - found 2025-06-05T23:24:58.2208095Z -- Check size of uint32_t 2025-06-05T23:24:58.2208544Z -- Check size of uint32_t - done 2025-06-05T23:24:58.2209039Z -- Looking for strtoll 2025-06-05T23:24:58.2209456Z -- Looking for strtoll - found 2025-06-05T23:24:58.2209910Z -- Configuring done (3.6s) 2025-06-05T23:24:58.2210333Z -- Generating done (0.1s) 2025-06-05T23:24:58.2210910Z -- Build files have been written to: /pytorch/executorch/cmake-out 2025-06-05T23:24:58.2211984Z [ 0%] Creating directories for 'flatbuffers_external_project' 2025-06-05T23:24:58.2213003Z [ 0%] Creating directories for 'flatcc_external_project' 2025-06-05T23:24:58.2214372Z [ 0%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_reporting.cc.obj 2025-06-05T23:24:58.2216275Z [ 0%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags.cc.obj 2025-06-05T23:24:58.2218085Z [ 0%] Building CXX object backends/arm/CMakeFiles/executorch_delegate_ethos_u.dir/runtime/EthosUBackend.cpp.obj 2025-06-05T23:24:58.2220032Z [ 1%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_completions.cc.obj 2025-06-05T23:24:58.2221891Z [ 1%] Building CXX object backends/arm/CMakeFiles/executorch_delegate_ethos_u.dir/runtime/VelaBinStream.cpp.obj 2025-06-05T23:24:58.2223314Z [ 1%] No download step for 'flatbuffers_external_project' 2025-06-05T23:24:58.2248144Z [ 1%] No download step for 'flatcc_external_project' 2025-06-05T23:24:58.2249418Z [ 2%] No update step for 'flatbuffers_external_project' 2025-06-05T23:24:58.2250358Z [ 3%] No update step for 'flatcc_external_project' 2025-06-05T23:24:58.2251247Z [ 3%] No patch step for 'flatbuffers_external_project' 2025-06-05T23:24:58.2252142Z [ 3%] No patch step for 'flatcc_external_project' 2025-06-05T23:24:58.2253164Z [ 3%] Performing configure step for 'flatbuffers_external_project' 2025-06-05T23:24:58.2254282Z [ 3%] Performing configure step for 'flatcc_external_project' 2025-06-05T23:24:58.2255094Z CMake Warning: 2025-06-05T23:24:58.2255730Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:24:58.2256199Z 2025-06-05T23:24:58.2256393Z  2025-06-05T23:24:58.2256760Z CMake Warning: 2025-06-05T23:24:58.2257280Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:24:58.2257763Z 2025-06-05T23:24:58.2257945Z  2025-06-05T23:24:58.2258714Z CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:24:58.2259743Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:58.2260486Z CMake. 2025-06-05T23:24:58.2260685Z 2025-06-05T23:24:58.2261095Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:58.2262061Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:58.2262900Z to work with policies introduced by or earlier. 2025-06-05T23:24:58.2263356Z 2025-06-05T23:24:58.2263544Z  2025-06-05T23:24:58.2263968Z fatal: No names found, cannot describe anything. 2025-06-05T23:24:58.2264777Z CMake Warning at CMake/Version.cmake:32 (message): 2025-06-05T23:24:58.2265409Z git describe failed with exit code: 128 2025-06-05T23:24:58.2265796Z 2025-06-05T23:24:58.2266090Z Make sure you cloned with tags or run 'git fetch --tags'. 2025-06-05T23:24:58.2266764Z Call Stack (most recent call first): 2025-06-05T23:24:58.2267312Z CMakeLists.txt:5 (include) 2025-06-05T23:24:58.2267625Z 2025-06-05T23:24:58.2267813Z  2025-06-05T23:24:58.2268176Z -- Proceeding with version: 24.3.25.0 2025-06-05T23:24:58.2268886Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:24:58.2269497Z -- Detecting C compiler ABI info 2025-06-05T23:24:58.2270034Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:24:58.2270595Z -- Detecting CXX compiler ABI info 2025-06-05T23:24:58.2271080Z -- Detecting C compiler ABI info - done 2025-06-05T23:24:58.2271704Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:24:58.2272330Z -- Detecting C compile features 2025-06-05T23:24:58.2272798Z -- Detecting C compile features - done 2025-06-05T23:24:58.2273413Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:24:58.2274145Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:24:58.2274804Z -- Setting Clang compiler options 2025-06-05T23:24:58.2275979Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:24:58.2277154Z -- Configuring done (0.4s) 2025-06-05T23:24:58.2277806Z -- Generating done (0.0s) 2025-06-05T23:24:58.2278933Z -- Build files have been written to: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/src/flatcc_external_project-build 2025-06-05T23:24:58.2280503Z [ 4%] Performing build step for 'flatcc_external_project' 2025-06-05T23:24:58.2281583Z [ 3%] Building C object src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:24:58.2282738Z [ 6%] Building C object src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:24:58.2284110Z [ 9%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/str_set.c.o 2025-06-05T23:24:58.2285583Z [ 12%] Building C object src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:24:58.2286572Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:24:58.2287243Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:24:58.2287903Z -- Detecting CXX compile features 2025-06-05T23:24:58.2288452Z -- Detecting CXX compile features - done 2025-06-05T23:24:58.2288996Z -- Looking for strtof_l 2025-06-05T23:24:58.2289872Z [ 15%] Building C object src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:24:58.2291406Z In file included from /pytorch/executorch/backends/arm/../../../executorch/runtime/backend/interface.h:14, 2025-06-05T23:24:58.2292970Z from /pytorch/executorch/backends/arm/runtime/EthosUBackend.cpp:53: 2025-06-05T23:24:58.2295890Z /pytorch/executorch/backends/arm/../../../executorch/runtime/backend/backend_init_context.h:26:51: warning: 'NamedDataMap' is deprecated: This API is experimental and may change without notice. [-Wdeprecated-declarations] 2025-06-05T23:24:58.2298378Z 26 | const NamedDataMap* named_data_map = nullptr) 2025-06-05T23:24:58.2299723Z | ^ 2025-06-05T23:24:58.2301119Z In file included from /pytorch/executorch/backends/arm/../../../executorch/runtime/backend/backend_init_context.h:12: 2025-06-05T23:24:58.2303304Z /pytorch/executorch/backends/arm/../../../executorch/runtime/core/named_data_map.h:30:23: note: declared here 2025-06-05T23:24:58.2304779Z 30 | class ET_EXPERIMENTAL NamedDataMap { 2025-06-05T23:24:58.2305552Z | ^~~~~~~~~~~~ 2025-06-05T23:24:59.0241384Z /pytorch/executorch/backends/arm/../../../executorch/runtime/backend/backend_init_context.h:68:44: warning: 'NamedDataMap' is deprecated: This API is experimental and may change without notice. [-Wdeprecated-declarations] 2025-06-05T23:24:59.0244210Z 68 | const NamedDataMap* get_named_data_map() const { 2025-06-05T23:24:59.0245153Z | ^~~~~ 2025-06-05T23:24:59.0246932Z /pytorch/executorch/backends/arm/../../../executorch/runtime/core/named_data_map.h:30:23: note: declared here 2025-06-05T23:24:59.0248479Z 30 | class ET_EXPERIMENTAL NamedDataMap { 2025-06-05T23:24:59.0249292Z | ^~~~~~~~~~~~ 2025-06-05T23:24:59.0251981Z /pytorch/executorch/backends/arm/../../../executorch/runtime/backend/backend_init_context.h:76:41: warning: 'NamedDataMap' is deprecated: This API is experimental and may change without notice. [-Wdeprecated-declarations] 2025-06-05T23:24:59.0254594Z 76 | const NamedDataMap* named_data_map_ = nullptr; 2025-06-05T23:24:59.0255613Z | ^~~~~~~ 2025-06-05T23:24:59.0257189Z /pytorch/executorch/backends/arm/../../../executorch/runtime/core/named_data_map.h:30:23: note: declared here 2025-06-05T23:24:59.0258769Z 30 | class ET_EXPERIMENTAL NamedDataMap { 2025-06-05T23:24:59.0259574Z | ^~~~~~~~~~~~ 2025-06-05T23:24:59.0260617Z [ 18%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:24:59.0261965Z [ 21%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:24:59.0263465Z [ 24%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/ptr_set.c.o 2025-06-05T23:24:59.0265055Z [ 27%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/symbol_table.c.o 2025-06-05T23:24:59.0266760Z [ 30%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/scope_table.c.o 2025-06-05T23:24:59.0268431Z [ 33%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/name_table.c.o 2025-06-05T23:24:59.0269974Z [ 36%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/schema_table.c.o 2025-06-05T23:24:59.0271515Z [ 39%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/value_set.c.o 2025-06-05T23:24:59.0273046Z [ 42%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:24:59.0274360Z [ 45%] Building C object src/compiler/CMakeFiles/flatcc.dir/fileio.c.o 2025-06-05T23:24:59.0275172Z [ 45%] Built target flatccrt 2025-06-05T23:24:59.0276052Z [ 48%] Building C object src/compiler/CMakeFiles/flatcc.dir/parser.c.o 2025-06-05T23:24:59.0276882Z -- Looking for strtof_l - found 2025-06-05T23:24:59.0277402Z -- Looking for strtoull_l 2025-06-05T23:24:59.0278449Z [ 51%] Building C object src/compiler/CMakeFiles/flatcc.dir/semantics.c.o 2025-06-05T23:24:59.0279722Z [ 54%] Building C object src/compiler/CMakeFiles/flatcc.dir/coerce.c.o 2025-06-05T23:24:59.0280910Z [ 57%] Building C object src/compiler/CMakeFiles/flatcc.dir/flatcc.c.o 2025-06-05T23:24:59.0282094Z [ 5%] Linking CXX static library libexecutorch_delegate_ethos_u.a 2025-06-05T23:24:59.0283278Z [ 60%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c.c.o 2025-06-05T23:24:59.0284172Z [ 5%] Built target executorch_delegate_ethos_u 2025-06-05T23:24:59.0285260Z [ 63%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_reader.c.o 2025-06-05T23:24:59.0286635Z [ 66%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sort.c.o 2025-06-05T23:24:59.0288040Z [ 69%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_builder.c.o 2025-06-05T23:24:59.0289438Z [ 72%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_verifier.c.o 2025-06-05T23:24:59.0290869Z [ 75%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sorter.c.o 2025-06-05T23:24:59.0292311Z [ 78%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_parser.c.o 2025-06-05T23:24:59.0293937Z [ 81%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_printer.c.o 2025-06-05T23:24:59.0295453Z [ 84%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/builder.c.o 2025-06-05T23:24:59.0296878Z [ 87%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/emitter.c.o 2025-06-05T23:24:59.0298285Z [ 90%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/refmap.c.o 2025-06-05T23:24:59.0299215Z -- Looking for strtoull_l - found 2025-06-05T23:24:59.0299743Z -- Looking for realpath 2025-06-05T23:24:59.0300781Z [ 93%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatcc.a 2025-06-05T23:24:59.0301725Z [ 93%] Built target flatcc 2025-06-05T23:24:59.0302633Z [ 96%] Building C object src/cli/CMakeFiles/flatcc_cli.dir/flatcc_cli.c.o 2025-06-05T23:24:59.0303973Z [100%] Linking C executable /pytorch/executorch/third-party/flatcc/bin/flatcc 2025-06-05T23:24:59.0304917Z -- Looking for realpath - found 2025-06-05T23:24:59.0305517Z -- CMAKE_CXX_FLAGS: "-DFLATBUFFERS_MAX_ALIGNMENT=1024" 2025-06-05T23:24:59.0306180Z -- Configuring done (1.2s) 2025-06-05T23:24:59.0306636Z -- Generating done (0.0s) 2025-06-05T23:24:59.0307934Z -- Build files have been written to: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/src/flatbuffers_external_project-build 2025-06-05T23:24:59.0309737Z [ 6%] Performing build step for 'flatbuffers_external_project' 2025-06-05T23:24:59.0310512Z [100%] Built target flatcc_cli 2025-06-05T23:24:59.0311398Z [ 2%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o 2025-06-05T23:24:59.0312746Z [ 5%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o 2025-06-05T23:24:59.0314009Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o 2025-06-05T23:24:59.0315176Z [ 10%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_binary.cpp.o 2025-06-05T23:24:59.0316388Z [ 13%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o 2025-06-05T23:24:59.0317577Z [ 15%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o 2025-06-05T23:24:59.0318800Z [ 18%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_csharp.cpp.o 2025-06-05T23:24:59.0319982Z [ 7%] Performing install step for 'flatcc_external_project' 2025-06-05T23:24:59.0320741Z [ 21%] Built target flatccrt 2025-06-05T23:24:59.0321222Z [ 93%] Built target flatcc 2025-06-05T23:24:59.0321682Z [100%] Built target flatcc_cli 2025-06-05T23:24:59.0322263Z Install the project... 2025-06-05T23:24:59.0322789Z -- Install configuration: "" 2025-06-05T23:24:59.0323714Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc 2025-06-05T23:24:59.0325261Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc.h 2025-06-05T23:24:59.0326985Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_accessors.h 2025-06-05T23:24:59.0328758Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_alloc.h 2025-06-05T23:24:59.0330383Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_assert.h 2025-06-05T23:24:59.0332152Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_builder.h 2025-06-05T23:24:59.0333828Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_emitter.h 2025-06-05T23:24:59.0335634Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_endian.h 2025-06-05T23:24:59.0337358Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_epilogue.h 2025-06-05T23:24:59.0339184Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_flatbuffers.h 2025-06-05T23:24:59.0341101Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_identifier.h 2025-06-05T23:24:59.0342876Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_iov.h 2025-06-05T23:24:59.0344632Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_json_parser.h 2025-06-05T23:24:59.0346470Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_json_printer.h 2025-06-05T23:24:59.0348283Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_portable.h 2025-06-05T23:24:59.0350087Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_prologue.h 2025-06-05T23:24:59.0351784Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_refmap.h 2025-06-05T23:24:59.0353563Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_rtconfig.h 2025-06-05T23:24:59.0355324Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_types.h 2025-06-05T23:24:59.0357065Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_unaligned.h 2025-06-05T23:24:59.0358807Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_verifier.h 2025-06-05T23:24:59.0360538Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_version.h 2025-06-05T23:24:59.0362345Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable 2025-06-05T23:24:59.0364026Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/LICENSE 2025-06-05T23:24:59.5692630Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/README.md 2025-06-05T23:24:59.5694576Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_math.h 2025-06-05T23:24:59.5696582Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_parse.h 2025-06-05T23:24:59.5698492Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_print.h 2025-06-05T23:24:59.5700326Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include 2025-06-05T23:24:59.5702201Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/README 2025-06-05T23:24:59.5704092Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/linux 2025-06-05T23:24:59.5706066Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/linux/endian.h 2025-06-05T23:24:59.5708002Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std 2025-06-05T23:24:59.5709953Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/inttypes.h 2025-06-05T23:24:59.5711991Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdalign.h 2025-06-05T23:24:59.5714047Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdbool.h 2025-06-05T23:24:59.5715942Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdint.h 2025-06-05T23:24:59.5717916Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/paligned_alloc.h 2025-06-05T23:24:59.5720045Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pattributes.h 2025-06-05T23:24:59.5721882Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pbase64.h 2025-06-05T23:24:59.5723686Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pcrt.h 2025-06-05T23:24:59.5725535Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic.h 2025-06-05T23:24:59.5727483Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_pop.h 2025-06-05T23:24:59.5729494Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_push.h 2025-06-05T23:24:59.5731418Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pendian.h 2025-06-05T23:24:59.5733295Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pendian_detect.h 2025-06-05T23:24:59.5735318Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pinline.h 2025-06-05T23:24:59.5737183Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pinttypes.h 2025-06-05T23:24:59.5739053Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pmemaccess.h 2025-06-05T23:24:59.5741074Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/portable.h 2025-06-05T23:24:59.5743072Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/portable_basic.h 2025-06-05T23:24:59.5744955Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pparsefp.h 2025-06-05T23:24:59.5746827Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pparseint.h 2025-06-05T23:24:59.5748665Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pprintfp.h 2025-06-05T23:24:59.5750526Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pprintint.h 2025-06-05T23:24:59.5752278Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/prestrict.h 2025-06-05T23:24:59.5754179Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert.h 2025-06-05T23:24:59.5756200Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert_scope.h 2025-06-05T23:24:59.5758147Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdalign.h 2025-06-05T23:24:59.5760004Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdbool.h 2025-06-05T23:24:59.5761825Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdint.h 2025-06-05T23:24:59.5764057Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/punaligned.h 2025-06-05T23:24:59.5765936Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pversion.h 2025-06-05T23:24:59.5767762Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pwarnings.h 2025-06-05T23:24:59.5769529Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection 2025-06-05T23:24:59.5771250Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/README 2025-06-05T23:24:59.5773195Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_builder.h 2025-06-05T23:24:59.5776550Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_reader.h 2025-06-05T23:24:59.5778719Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_builder.h 2025-06-05T23:24:59.5780747Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_reader.h 2025-06-05T23:24:59.5782834Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_verifier.h 2025-06-05T23:24:59.5784667Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support 2025-06-05T23:24:59.5786352Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/README 2025-06-05T23:24:59.5788105Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/cdump.h 2025-06-05T23:24:59.5789901Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/elapsed.h 2025-06-05T23:24:59.5791713Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/hexdump.h 2025-06-05T23:24:59.5793526Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/readfile.h 2025-06-05T23:24:59.5795372Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/lib/libflatccrt.a 2025-06-05T23:24:59.5796998Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/lib/libflatcc.a 2025-06-05T23:24:59.5798334Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/bin/flatcc 2025-06-05T23:24:59.5799693Z [ 7%] Completed 'flatcc_external_project' 2025-06-05T23:24:59.5800359Z [ 7%] Built target flatcc_external_project 2025-06-05T23:24:59.5801349Z [ 21%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o 2025-06-05T23:24:59.5802562Z [ 23%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin.cpp.o 2025-06-05T23:24:59.5803855Z [ 26%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin_kmp.cpp.o 2025-06-05T23:24:59.5805086Z [ 28%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o 2025-06-05T23:24:59.5806288Z [ 31%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_java.cpp.o 2025-06-05T23:24:59.5807475Z [ 34%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_ts.cpp.o 2025-06-05T23:24:59.5808642Z [ 36%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o 2025-06-05T23:24:59.5809871Z [ 39%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o 2025-06-05T23:24:59.5811117Z [ 42%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o 2025-06-05T23:24:59.5812351Z [ 44%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o 2025-06-05T23:24:59.5813557Z [ 47%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o 2025-06-05T23:24:59.5814754Z [ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o 2025-06-05T23:24:59.5816155Z [ 52%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o 2025-06-05T23:24:59.5817436Z [ 55%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_swift.cpp.o 2025-06-05T23:24:59.5818836Z [ 57%] Building CXX object CMakeFiles/flatc.dir/src/file_name_saving_file_manager.cpp.o 2025-06-05T23:24:59.5820068Z [ 7%] Linking CXX static library libgflags_nothreads.a 2025-06-05T23:24:59.5820827Z [ 7%] Built target gflags_nothreads_static 2025-06-05T23:24:59.5822024Z [ 60%] Building CXX object CMakeFiles/flatc.dir/src/file_binary_writer.cpp.o 2025-06-05T23:25:01.4397783Z [ 7%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.obj 2025-06-05T23:25:01.4399282Z [ 63%] Building CXX object CMakeFiles/flatc.dir/src/file_writer.cpp.o 2025-06-05T23:25:01.4400402Z [ 65%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o 2025-06-05T23:25:01.4401766Z [ 8%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.obj 2025-06-05T23:25:01.4403238Z [ 68%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o 2025-06-05T23:25:01.4404439Z [ 71%] Building CXX object CMakeFiles/flatc.dir/src/binary_annotator.cpp.o 2025-06-05T23:25:01.4405792Z [ 73%] Building CXX object CMakeFiles/flatc.dir/src/annotated_binary_text_gen.cpp.o 2025-06-05T23:25:01.4407084Z [ 76%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_lua.cpp.o 2025-06-05T23:25:01.4408551Z [ 8%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.obj 2025-06-05T23:25:01.4410176Z [ 8%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.obj 2025-06-05T23:25:01.4411621Z [ 78%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_nim.cpp.o 2025-06-05T23:25:01.4413133Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.obj 2025-06-05T23:25:01.4414570Z [ 81%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o 2025-06-05T23:25:01.4416042Z [ 84%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o 2025-06-05T23:25:01.4417921Z [ 86%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o 2025-06-05T23:25:01.4419390Z [ 89%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o 2025-06-05T23:25:01.4420869Z [ 92%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/python_generator.cc.o 2025-06-05T23:25:01.4422312Z [ 94%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/swift_generator.cc.o 2025-06-05T23:25:01.4423747Z [ 97%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/ts_generator.cc.o 2025-06-05T23:25:01.4425326Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.obj 2025-06-05T23:25:01.4426558Z [100%] Linking CXX executable flatc 2025-06-05T23:25:01.4427142Z [100%] Built target flatc 2025-06-05T23:25:01.4427961Z [ 10%] Performing install step for 'flatbuffers_external_project' 2025-06-05T23:25:01.4428716Z [100%] Built target flatc 2025-06-05T23:25:01.4429294Z Install the project... 2025-06-05T23:25:01.4429815Z -- Install configuration: "" 2025-06-05T23:25:01.4430827Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers 2025-06-05T23:25:01.4432557Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/allocator.h 2025-06-05T23:25:01.4434364Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/array.h 2025-06-05T23:25:01.4436076Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/base.h 2025-06-05T23:25:01.4437811Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/buffer.h 2025-06-05T23:25:01.4439602Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/buffer_ref.h 2025-06-05T23:25:01.4441470Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/code_generator.h 2025-06-05T23:25:01.4443418Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/code_generators.h 2025-06-05T23:25:01.4445586Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/default_allocator.h 2025-06-05T23:25:01.4447542Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/detached_buffer.h 2025-06-05T23:25:01.4449474Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/file_manager.h 2025-06-05T23:25:01.4451430Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffer_builder.h 2025-06-05T23:25:01.4453361Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffers.h 2025-06-05T23:25:01.4455285Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatc.h 2025-06-05T23:25:01.4457124Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flex_flat_util.h 2025-06-05T23:25:01.4458969Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flexbuffers.h 2025-06-05T23:25:01.4460801Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/grpc.h 2025-06-05T23:25:01.4462564Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/hash.h 2025-06-05T23:25:01.4464268Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/idl.h 2025-06-05T23:25:01.4466046Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/minireflect.h 2025-06-05T23:25:01.4468012Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch 2025-06-05T23:25:01.4469807Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch/flatc_pch.h 2025-06-05T23:25:01.4471631Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch/pch.h 2025-06-05T23:25:01.4473385Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/reflection.h 2025-06-05T23:25:01.4475293Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/reflection_generated.h 2025-06-05T23:25:01.4477158Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/registry.h 2025-06-05T23:25:01.4479320Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/stl_emulation.h 2025-06-05T23:25:01.4481098Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/string.h 2025-06-05T23:25:01.4482816Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/struct.h 2025-06-05T23:25:01.4484566Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/table.h 2025-06-05T23:25:01.4486314Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/util.h 2025-06-05T23:25:01.4487995Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/vector.h 2025-06-05T23:25:01.4489796Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/vector_downward.h 2025-06-05T23:25:01.4491589Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/verifier.h 2025-06-05T23:25:01.4493554Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config.cmake 2025-06-05T23:25:01.4495714Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/BuildFlatBuffers.cmake 2025-06-05T23:25:01.4498063Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config-version.cmake 2025-06-05T23:25:01.4499888Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/bin/flatc 2025-06-05T23:25:01.4501535Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets.cmake 2025-06-05T23:25:01.4503598Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets-noconfig.cmake 2025-06-05T23:25:01.4505306Z [ 10%] Completed 'flatbuffers_external_project' 2025-06-05T23:25:01.4506012Z [ 10%] Built target flatbuffers_external_project 2025-06-05T23:25:01.4506769Z [ 10%] Generating common_schema headers 2025-06-05T23:25:01.4507358Z [ 10%] Built target common_schema 2025-06-05T23:25:01.4508033Z [ 11%] Generating program_schema headers 2025-06-05T23:25:01.4508630Z [ 11%] Built target program_schema 2025-06-05T23:25:01.4509749Z [ 12%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.obj 2025-06-05T23:25:01.4511239Z [ 12%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.obj 2025-06-05T23:25:01.4512935Z [ 13%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.obj 2025-06-05T23:25:01.4514828Z [ 13%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.obj 2025-06-05T23:25:01.4516935Z [ 13%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.obj 2025-06-05T23:25:01.4518537Z [ 14%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.obj 2025-06-05T23:25:01.4520000Z [ 14%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.obj 2025-06-05T23:25:01.4521555Z [ 14%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.obj 2025-06-05T23:25:01.4523189Z [ 15%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.obj 2025-06-05T23:25:12.5027025Z [ 15%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.obj 2025-06-05T23:25:12.5028687Z [ 16%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.obj 2025-06-05T23:25:12.5030370Z [ 16%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.obj 2025-06-05T23:25:12.5032160Z [ 16%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.obj 2025-06-05T23:25:12.5033837Z [ 17%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.obj 2025-06-05T23:25:12.5035354Z [ 17%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.obj 2025-06-05T23:25:12.5036795Z [ 17%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.obj 2025-06-05T23:25:12.5038258Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.obj 2025-06-05T23:25:12.5039766Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.obj 2025-06-05T23:25:12.5041236Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.obj 2025-06-05T23:25:12.5042683Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.obj 2025-06-05T23:25:12.5044260Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.obj 2025-06-05T23:25:12.5045738Z [ 20%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:25:12.5046904Z [ 20%] Built target flatccrt 2025-06-05T23:25:12.5052535Z /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-06-05T23:25:12.5056416Z /pytorch/executorch/runtime/executor/tensor_parser_exec_aten.cpp:66:62: warning: left shift count >= width of type [-Wshift-count-overflow] 2025-06-05T23:25:12.5058311Z 66 | memory_offset |= static_cast(memory_offset_high) << 32; 2025-06-05T23:25:12.5059309Z | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~ 2025-06-05T23:25:12.5060194Z [ 21%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:25:12.5060850Z [ 21%] Built target executorch_core 2025-06-05T23:25:12.5061880Z [ 21%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.obj 2025-06-05T23:25:12.5063351Z [ 22%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.obj 2025-06-05T23:25:12.5064822Z [ 22%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.obj 2025-06-05T23:25:12.5066572Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.obj 2025-06-05T23:25:12.5068601Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.obj 2025-06-05T23:25:12.5070953Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.obj 2025-06-05T23:25:12.5072851Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.obj 2025-06-05T23:25:12.5074734Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.obj 2025-06-05T23:25:12.5076572Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.obj 2025-06-05T23:25:12.5078696Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.obj 2025-06-05T23:25:12.5080482Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.obj 2025-06-05T23:25:12.5082352Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.obj 2025-06-05T23:25:12.5084304Z [ 26%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.obj 2025-06-05T23:25:12.5086259Z [ 26%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.obj 2025-06-05T23:25:12.5088230Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.obj 2025-06-05T23:25:12.5090132Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.obj 2025-06-05T23:25:12.5091995Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.obj 2025-06-05T23:25:12.5093339Z [ 27%] Linking CXX static library libexecutorch.a 2025-06-05T23:25:12.5093964Z [ 27%] Built target executorch 2025-06-05T23:25:12.5095338Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.obj 2025-06-05T23:25:12.5097170Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.obj 2025-06-05T23:25:12.5098991Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.obj 2025-06-05T23:25:12.5100568Z [ 29%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:25:12.5101265Z [ 29%] Built target kernels_util_all_deps 2025-06-05T23:25:12.5102510Z [ 29%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__empty_dim_order.cpp.obj 2025-06-05T23:25:12.5104126Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_abs.cpp.obj 2025-06-05T23:25:12.5105827Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.obj 2025-06-05T23:25:12.5107522Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acos.cpp.obj 2025-06-05T23:25:12.5109092Z [ 31%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_add.cpp.obj 2025-06-05T23:25:12.5110649Z [ 31%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acosh.cpp.obj 2025-06-05T23:25:12.5112207Z [ 31%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_addmm.cpp.obj 2025-06-05T23:25:12.5113864Z [ 31%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_allclose.cpp.obj 2025-06-05T23:25:12.5115540Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_alias_copy.cpp.obj 2025-06-05T23:25:12.5117182Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amax.cpp.obj 2025-06-05T23:25:12.5118767Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amin.cpp.obj 2025-06-05T23:25:12.5120669Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_any.cpp.obj 2025-06-05T23:25:12.5122319Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_arange.cpp.obj 2025-06-05T23:25:12.5123940Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmax.cpp.obj 2025-06-05T23:25:12.5125547Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmin.cpp.obj 2025-06-05T23:25:12.5127277Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_as_strided_copy.cpp.obj 2025-06-05T23:25:12.5128951Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asin.cpp.obj 2025-06-05T23:25:12.5130556Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asinh.cpp.obj 2025-06-05T23:25:12.5132142Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan.cpp.obj 2025-06-05T23:25:12.5133768Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan2.cpp.obj 2025-06-05T23:25:12.5135533Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atanh.cpp.obj 2025-06-05T23:25:12.5137181Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_avg_pool2d.cpp.obj 2025-06-05T23:25:12.5138837Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_and.cpp.obj 2025-06-05T23:25:12.5140550Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_not.cpp.obj 2025-06-05T23:25:12.5142205Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_or.cpp.obj 2025-06-05T23:25:12.5143915Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_xor.cpp.obj 2025-06-05T23:25:12.5145548Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bmm.cpp.obj 2025-06-05T23:25:12.5147143Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cat.cpp.obj 2025-06-05T23:25:12.5148962Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cdist_forward.cpp.obj 2025-06-05T23:25:12.5150598Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ceil.cpp.obj 2025-06-05T23:25:12.5152181Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clamp.cpp.obj 2025-06-05T23:25:28.8692142Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clone.cpp.obj 2025-06-05T23:25:28.8693975Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_constant_pad_nd.cpp.obj 2025-06-05T23:25:28.8696036Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution.cpp.obj 2025-06-05T23:25:28.8697933Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution_backward.cpp.obj 2025-06-05T23:25:28.8699703Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_copy.cpp.obj 2025-06-05T23:25:28.8701342Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cos.cpp.obj 2025-06-05T23:25:28.8703052Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cosh.cpp.obj 2025-06-05T23:25:28.8704750Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cumsum.cpp.obj 2025-06-05T23:25:28.8706456Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_detach_copy.cpp.obj 2025-06-05T23:25:28.8708170Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_diagonal_copy.cpp.obj 2025-06-05T23:25:28.8710236Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_div.cpp.obj 2025-06-05T23:25:28.8711816Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_elu.cpp.obj 2025-06-05T23:25:28.8713494Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_embedding.cpp.obj 2025-06-05T23:25:28.8715189Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_empty.cpp.obj 2025-06-05T23:25:28.8716809Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_eq.cpp.obj 2025-06-05T23:25:28.8718497Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_erf.cpp.obj 2025-06-05T23:25:28.8720180Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_exp.cpp.obj 2025-06-05T23:25:28.8722003Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expand_copy.cpp.obj 2025-06-05T23:25:28.8723608Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expm1.cpp.obj 2025-06-05T23:25:28.8725072Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fill.cpp.obj 2025-06-05T23:25:28.8726869Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_flip.cpp.obj 2025-06-05T23:25:28.8728596Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor.cpp.obj 2025-06-05T23:25:28.8730370Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor_divide.cpp.obj 2025-06-05T23:25:28.8732104Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fmod.cpp.obj 2025-06-05T23:25:28.8733670Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full.cpp.obj 2025-06-05T23:25:28.8735248Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full_like.cpp.obj 2025-06-05T23:25:28.8737066Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gather.cpp.obj 2025-06-05T23:25:28.8738843Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ge.cpp.obj 2025-06-05T23:25:28.8740392Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gelu.cpp.obj 2025-06-05T23:25:28.8741944Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_glu.cpp.obj 2025-06-05T23:25:28.8743495Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gt.cpp.obj 2025-06-05T23:25:28.8745082Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_hardtanh.cpp.obj 2025-06-05T23:25:28.8746698Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index.cpp.obj 2025-06-05T23:25:28.8748231Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_put.cpp.obj 2025-06-05T23:25:28.8749966Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_select.cpp.obj 2025-06-05T23:25:28.8751705Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isinf.cpp.obj 2025-06-05T23:25:28.8753313Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isnan.cpp.obj 2025-06-05T23:25:28.8754834Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_le.cpp.obj 2025-06-05T23:25:28.8756505Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_leaky_relu.cpp.obj 2025-06-05T23:25:28.8758071Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.obj 2025-06-05T23:25:28.8760156Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_linear_scratch_example.cpp.obj 2025-06-05T23:25:28.8761907Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log.cpp.obj 2025-06-05T23:25:28.8763476Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log10.cpp.obj 2025-06-05T23:25:28.8765085Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log1p.cpp.obj 2025-06-05T23:25:28.8766735Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log2.cpp.obj 2025-06-05T23:25:28.8768330Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log_softmax.cpp.obj 2025-06-05T23:25:28.8770017Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_and.cpp.obj 2025-06-05T23:25:28.8771755Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_not.cpp.obj 2025-06-05T23:25:28.8773424Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_or.cpp.obj 2025-06-05T23:25:28.8775140Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_xor.cpp.obj 2025-06-05T23:25:28.8776862Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logit.cpp.obj 2025-06-05T23:25:28.8778553Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lt.cpp.obj 2025-06-05T23:25:28.8780132Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_fill.cpp.obj 2025-06-05T23:25:28.8782047Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_scatter.cpp.obj 2025-06-05T23:25:28.8783952Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_select.cpp.obj 2025-06-05T23:25:28.8785788Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max.cpp.obj 2025-06-05T23:25:28.8787687Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.obj 2025-06-05T23:25:28.8789829Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.obj 2025-06-05T23:25:28.8791737Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_maximum.cpp.obj 2025-06-05T23:25:28.8793398Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mean.cpp.obj 2025-06-05T23:25:28.8795017Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_min.cpp.obj 2025-06-05T23:25:28.8796709Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_minimum.cpp.obj 2025-06-05T23:25:28.8798392Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mm.cpp.obj 2025-06-05T23:25:28.8799991Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mul.cpp.obj 2025-06-05T23:25:28.8801676Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_narrow_copy.cpp.obj 2025-06-05T23:25:28.8803494Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_batch_norm.cpp.obj 2025-06-05T23:25:28.8805334Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_dropout.cpp.obj 2025-06-05T23:25:28.8807196Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_group_norm.cpp.obj 2025-06-05T23:25:28.8809052Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_layer_norm.cpp.obj 2025-06-05T23:25:28.8810929Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ne.cpp.obj 2025-06-05T23:25:28.8812687Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_neg.cpp.obj 2025-06-05T23:25:28.8814395Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_nonzero.cpp.obj 2025-06-05T23:25:28.8816213Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ones.cpp.obj 2025-06-05T23:25:28.8817953Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pdist_forward.cpp.obj 2025-06-05T23:25:28.8819752Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_permute_copy.cpp.obj 2025-06-05T23:25:44.0022536Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_shuffle.cpp.obj 2025-06-05T23:25:44.0024533Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.obj 2025-06-05T23:25:44.0026285Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pow.cpp.obj 2025-06-05T23:25:44.0027911Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_prod.cpp.obj 2025-06-05T23:25:44.0029583Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rand.cpp.obj 2025-06-05T23:25:44.0031194Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_randn.cpp.obj 2025-06-05T23:25:44.0032912Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reciprocal.cpp.obj 2025-06-05T23:25:44.0034718Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad1d.cpp.obj 2025-06-05T23:25:44.0036546Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad3d.cpp.obj 2025-06-05T23:25:44.0038403Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad2d.cpp.obj 2025-06-05T23:25:44.0040112Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_relu.cpp.obj 2025-06-05T23:25:44.0042006Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_remainder.cpp.obj 2025-06-05T23:25:44.0043714Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat.cpp.obj 2025-06-05T23:25:44.0045476Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat_interleave.cpp.obj 2025-06-05T23:25:44.0047332Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad1d.cpp.obj 2025-06-05T23:25:44.0049224Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad2d.cpp.obj 2025-06-05T23:25:44.0051077Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad3d.cpp.obj 2025-06-05T23:25:44.0052808Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_roll.cpp.obj 2025-06-05T23:25:44.0054436Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_round.cpp.obj 2025-06-05T23:25:44.0056130Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsqrt.cpp.obj 2025-06-05T23:25:44.0057777Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsub.cpp.obj 2025-06-05T23:25:44.0059468Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scalar_tensor.cpp.obj 2025-06-05T23:25:44.0061223Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter.cpp.obj 2025-06-05T23:25:44.0063114Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter_add.cpp.obj 2025-06-05T23:25:44.0065094Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_copy.cpp.obj 2025-06-05T23:25:44.0066865Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_scatter.cpp.obj 2025-06-05T23:25:44.0068614Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sigmoid.cpp.obj 2025-06-05T23:25:44.0070254Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sign.cpp.obj 2025-06-05T23:25:44.0071850Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sin.cpp.obj 2025-06-05T23:25:44.0073367Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sinh.cpp.obj 2025-06-05T23:25:44.0075044Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_copy.cpp.obj 2025-06-05T23:25:44.0076801Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_scatter.cpp.obj 2025-06-05T23:25:44.0079775Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_softmax.cpp.obj 2025-06-05T23:25:44.0081484Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_copy.cpp.obj 2025-06-05T23:25:44.0083268Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.obj 2025-06-05T23:25:44.0084909Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sqrt.cpp.obj 2025-06-05T23:25:44.0086523Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_squeeze_copy.cpp.obj 2025-06-05T23:25:44.0088189Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_stack.cpp.obj 2025-06-05T23:25:44.0089849Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sub.cpp.obj 2025-06-05T23:25:44.0091464Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sum.cpp.obj 2025-06-05T23:25:44.0093125Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_t_copy.cpp.obj 2025-06-05T23:25:44.0094918Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tan.cpp.obj 2025-06-05T23:25:44.0096503Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tanh.cpp.obj 2025-06-05T23:25:44.0098195Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_to_copy.cpp.obj 2025-06-05T23:25:44.0099861Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_topk.cpp.obj 2025-06-05T23:25:44.0101622Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_transpose_copy.cpp.obj 2025-06-05T23:25:44.0103311Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tril.cpp.obj 2025-06-05T23:25:44.0104867Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_trunc.cpp.obj 2025-06-05T23:25:44.0106576Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unbind_copy.cpp.obj 2025-06-05T23:25:44.0108297Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unfold_copy.cpp.obj 2025-06-05T23:25:44.0110020Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.obj 2025-06-05T23:25:44.0111762Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.obj 2025-06-05T23:25:44.0113615Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.obj 2025-06-05T23:25:44.0115757Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_var.cpp.obj 2025-06-05T23:25:44.0117473Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_as_real_copy.cpp.obj 2025-06-05T23:25:44.0119309Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_copy.cpp.obj 2025-06-05T23:25:44.0120995Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_where.cpp.obj 2025-06-05T23:25:44.0122613Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_zeros.cpp.obj 2025-06-05T23:25:44.0124488Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.obj 2025-06-05T23:25:44.0126737Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.obj 2025-06-05T23:25:44.0128974Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.obj 2025-06-05T23:25:44.0130954Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/activation_ops_util.cpp.obj 2025-06-05T23:25:44.0132928Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/advanced_index_util.cpp.obj 2025-06-05T23:25:44.0134823Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/broadcast_util.cpp.obj 2025-06-05T23:25:44.0136779Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/copy_ops_util.cpp.obj 2025-06-05T23:25:44.0138669Z [ 94%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/delinearize_index.cpp.obj 2025-06-05T23:25:44.0140564Z [ 94%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/distance_util.cpp.obj 2025-06-05T23:25:44.0142415Z [ 94%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/dtype_util.cpp.obj 2025-06-05T23:25:44.0144145Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/index_util.cpp.obj 2025-06-05T23:25:44.0146121Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/kernel_ops_util.cpp.obj 2025-06-05T23:25:44.0148046Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/normalization_ops_util.cpp.obj 2025-06-05T23:25:44.0150003Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/matmul_ops_util.cpp.obj 2025-06-05T23:25:49.7833876Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/padding_util.cpp.obj 2025-06-05T23:25:49.7835497Z [ 97%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/reduce_util.cpp.obj 2025-06-05T23:25:49.7836914Z [ 97%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/repeat_util.cpp.obj 2025-06-05T23:25:49.7838135Z [ 97%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/select_copy_util.cpp.obj 2025-06-05T23:25:49.7839412Z [ 98%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/slice_util.cpp.obj 2025-06-05T23:25:49.7840515Z [ 98%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/upsample_util.cpp.obj 2025-06-05T23:25:49.7841584Z [ 99%] Linking CXX static library libportable_kernels.a 2025-06-05T23:25:49.7842030Z [ 99%] Built target portable_kernels 2025-06-05T23:25:49.7842734Z [ 99%] Generating selected_operators.yaml for portable_ops_lib 2025-06-05T23:25:49.7843472Z [ 99%] Generating code for kernel registration 2025-06-05T23:25:49.7844632Z [100%] Building CXX object kernels/portable/CMakeFiles/portable_ops_lib.dir/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.obj 2025-06-05T23:25:49.7846160Z [100%] Linking CXX static library libportable_ops_lib.a 2025-06-05T23:25:49.7846686Z [100%] Built target portable_ops_lib 2025-06-05T23:25:49.7847058Z Install the project... 2025-06-05T23:25:49.7847434Z -- Install configuration: "Release" 2025-06-05T23:25:49.7848022Z -- Installing: /pytorch/executorch/cmake-out/lib/libflatccrt.a 2025-06-05T23:25:49.7848603Z -- Installing: /pytorch/executorch/cmake-out/include/fxdiv.h 2025-06-05T23:25:49.7849158Z -- Installing: /pytorch/executorch/cmake-out/lib/libportable_kernels.a 2025-06-05T23:25:49.7849915Z -- Installing: /pytorch/executorch/cmake-out/lib/libportable_ops_lib.a 2025-06-05T23:25:49.7850829Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/portable/Functions.h 2025-06-05T23:25:49.7852030Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/portable/NativeFunctions.h 2025-06-05T23:25:49.7852999Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core 2025-06-05T23:25:49.7853795Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/array_ref.h 2025-06-05T23:25:49.7854735Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/data_loader.h 2025-06-05T23:25:49.7855736Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/defines.h 2025-06-05T23:25:49.7856677Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/error.h 2025-06-05T23:25:49.7857654Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/evalue.h 2025-06-05T23:25:49.7858610Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer.h 2025-06-05T23:25:49.7859574Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer_hooks.h 2025-06-05T23:25:49.7860592Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer_hooks_delegate.h 2025-06-05T23:25:49.7861602Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten 2025-06-05T23:25:49.7862504Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/exec_aten.h 2025-06-05T23:25:49.7863450Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:25:49.7864586Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h 2025-06-05T23:25:49.7865930Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h 2025-06-05T23:25:49.7866936Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/test 2025-06-05T23:25:49.7867920Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:25:49.7869146Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/dim_order_util.h 2025-06-05T23:25:49.7870527Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h 2025-06-05T23:25:49.7871859Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h 2025-06-05T23:25:49.7873281Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h 2025-06-05T23:25:49.7874482Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_util.h 2025-06-05T23:25:49.7875743Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/test 2025-06-05T23:25:49.7876858Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/freeable_buffer.h 2025-06-05T23:25:49.7878070Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/function_ref.h 2025-06-05T23:25:49.7879268Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/hierarchical_allocator.h 2025-06-05T23:25:49.7880510Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/memory_allocator.h 2025-06-05T23:25:49.7881568Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/named_data_map.h 2025-06-05T23:25:49.7882554Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type 2025-06-05T23:25:49.7883581Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bfloat16.h 2025-06-05T23:25:49.7884432Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bfloat16_math.h 2025-06-05T23:25:49.7885285Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bits_types.h 2025-06-05T23:25:49.7886198Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10 2025-06-05T23:25:49.7886980Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10 2025-06-05T23:25:49.7887805Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:25:49.7888710Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h 2025-06-05T23:25:49.7889658Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h 2025-06-05T23:25:49.7890531Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:25:49.7891443Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h 2025-06-05T23:25:49.7892415Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h 2025-06-05T23:25:49.7893382Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h 2025-06-05T23:25:49.7894330Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h 2025-06-05T23:25:49.7895302Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h 2025-06-05T23:25:49.7896360Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h 2025-06-05T23:25:49.7897336Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h 2025-06-05T23:25:49.7898276Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h 2025-06-05T23:25:49.7899238Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h 2025-06-05T23:25:49.7900213Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h 2025-06-05T23:25:49.7901242Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h 2025-06-05T23:25:49.7902235Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h 2025-06-05T23:25:49.7903098Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/complex.h 2025-06-05T23:25:49.7903907Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/device.h 2025-06-05T23:25:49.7904692Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/half.h 2025-06-05T23:25:49.7905504Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/optional.h 2025-06-05T23:25:49.7906331Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/qint_types.h 2025-06-05T23:25:49.7907240Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/scalar.h 2025-06-05T23:25:49.7908073Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/scalar_type.h 2025-06-05T23:25:49.7908911Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/string_view.h 2025-06-05T23:25:49.7909741Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor.h 2025-06-05T23:25:49.7910559Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor_impl.h 2025-06-05T23:25:49.7911419Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor_options.h 2025-06-05T23:25:49.7912239Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/test 2025-06-05T23:25:49.7912940Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/result.h 2025-06-05T23:25:50.1187714Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/span.h 2025-06-05T23:25:50.1188640Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tag.h 2025-06-05T23:25:50.1189407Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tensor_layout.h 2025-06-05T23:25:50.1190274Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tensor_shape_dynamism.h 2025-06-05T23:25:50.1191048Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/test 2025-06-05T23:25:50.1191661Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel 2025-06-05T23:25:50.1192476Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/kernel_includes.h 2025-06-05T23:25:50.1193329Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/kernel_runtime_context.h 2025-06-05T23:25:50.1194248Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/operator_registry.h 2025-06-05T23:25:50.1195057Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/test 2025-06-05T23:25:50.1195802Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/test/test_util.h 2025-06-05T23:25:50.1197256Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/thread_parallel_interface.h 2025-06-05T23:25:50.1198001Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform 2025-06-05T23:25:50.1198704Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/abort.h 2025-06-05T23:25:50.1199442Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/assert.h 2025-06-05T23:25:50.1200136Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/clock.h 2025-06-05T23:25:50.1200910Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/compat_unistd.h 2025-06-05T23:25:50.1201721Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/compiler.h 2025-06-05T23:25:50.1202428Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/default 2025-06-05T23:25:50.1203149Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/log.h 2025-06-05T23:25:50.1203905Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/platform.h 2025-06-05T23:25:50.1204673Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/profiler.h 2025-06-05T23:25:50.1205430Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/runtime.h 2025-06-05T23:25:50.1206144Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/system.h 2025-06-05T23:25:50.1206862Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test 2025-06-05T23:25:50.1207758Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test/pal_spy.h 2025-06-05T23:25:50.1208702Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test/stub_platform.h 2025-06-05T23:25:50.1209455Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/types.h 2025-06-05T23:25:50.1210140Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util 2025-06-05T23:25:50.1210958Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h 2025-06-05T23:25:50.1211890Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/meta_programming.h 2025-06-05T23:25:50.1212673Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/test 2025-06-05T23:25:50.1213414Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/type_list.h 2025-06-05T23:25:50.1214128Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor 2025-06-05T23:25:50.1214819Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor.h 2025-06-05T23:25:50.1215763Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_accessor.h 2025-06-05T23:25:50.1216529Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_ptr.h 2025-06-05T23:25:50.1217313Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_ptr_maker.h 2025-06-05T23:25:50.1218051Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/test 2025-06-05T23:25:50.1218698Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool 2025-06-05T23:25:50.1219439Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/cpuinfo_utils.h 2025-06-05T23:25:50.1220192Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/test 2025-06-05T23:25:50.1220951Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/threadpool.h 2025-06-05T23:25:50.1221773Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/threadpool_guard.h 2025-06-05T23:25:50.1222473Z -- Installing: /pytorch/executorch/cmake-out/lib/libexecutorch.a 2025-06-05T23:25:50.1222987Z -- Installing: /pytorch/executorch/cmake-out/lib/libexecutorch_core.a 2025-06-05T23:25:50.1223595Z -- Installing: /pytorch/executorch/cmake-out/lib/cmake/ExecuTorch/executorch-config.cmake 2025-06-05T23:25:50.1224136Z -- The C compiler identification is GNU 13.3.1 2025-06-05T23:25:50.1224489Z -- The CXX compiler identification is GNU 13.3.1 2025-06-05T23:25:50.1224833Z -- Detecting C compiler ABI info 2025-06-05T23:25:50.1225135Z -- Detecting C compiler ABI info - done 2025-06-05T23:25:50.1225946Z -- Check for working C compiler: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/arm-none-eabi-gcc - skipped 2025-06-05T23:25:50.1226773Z -- Detecting C compile features 2025-06-05T23:25:50.1227063Z -- Detecting C compile features - done 2025-06-05T23:25:50.1227380Z -- Detecting CXX compiler ABI info 2025-06-05T23:25:50.1227676Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:25:50.1228579Z -- Check for working CXX compiler: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/arm-none-eabi-g++ - skipped 2025-06-05T23:25:50.1229405Z -- Detecting CXX compile features 2025-06-05T23:25:50.1229698Z -- Detecting CXX compile features - done 2025-06-05T23:25:50.1230333Z CMake Warning (dev) at CMakeLists.txt:29 (find_package): 2025-06-05T23:25:50.1230836Z Policy CMP0144 is not set: find_package uses upper-case _ROOT 2025-06-05T23:25:50.1231393Z variables. Run "cmake --help-policy CMP0144" for policy details. Use the 2025-06-05T23:25:50.1231906Z cmake_policy command to set the policy and suppress this warning. 2025-06-05T23:25:50.1232273Z 2025-06-05T23:25:50.1232389Z CMake variable EXECUTORCH_ROOT is set to: 2025-06-05T23:25:50.1232670Z 2025-06-05T23:25:50.1232784Z /pytorch/executorch/test/.. 2025-06-05T23:25:50.1232959Z 2025-06-05T23:25:50.1233180Z For compatibility, find_package is ignoring the variable, but code in a 2025-06-05T23:25:50.1233621Z .cmake module might still use it. 2025-06-05T23:25:50.1234015Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-06-05T23:25:50.1234449Z  2025-06-05T23:25:50.1234693Z etdump library is not found. 2025-06-05T23:25:50.1235149Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1235618Z bundled_program library is not found. 2025-06-05T23:25:50.1236085Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1236569Z extension_data_loader library is not found. 2025-06-05T23:25:50.1237057Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1237533Z extension_flat_tensor library is not found. 2025-06-05T23:25:50.1238016Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1238467Z coreml_util library is not found. 2025-06-05T23:25:50.1238928Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1239377Z coreml_inmemoryfs library is not found. 2025-06-05T23:25:50.1239851Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1240294Z coremldelegate library is not found. 2025-06-05T23:25:50.1240764Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1241203Z mpsdelegate library is not found. 2025-06-05T23:25:50.1241665Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1242107Z neuron_backend library is not found. 2025-06-05T23:25:50.1242579Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1243062Z qnn_executorch_backend library is not found. 2025-06-05T23:25:50.1243543Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1243989Z custom_ops library is not found. 2025-06-05T23:25:50.1244468Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1244928Z extension_module library is not found. 2025-06-05T23:25:50.1245389Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1245872Z extension_module_static library is not found. 2025-06-05T23:25:50.1246374Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1246838Z extension_runner_util library is not found. 2025-06-05T23:25:50.1247329Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1247781Z extension_tensor library is not found. 2025-06-05T23:25:50.1248254Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1248724Z extension_threadpool library is not found. 2025-06-05T23:25:50.1249215Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1249684Z extension_training library is not found. 2025-06-05T23:25:50.1250150Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1250608Z xnnpack_backend library is not found. 2025-06-05T23:25:50.1251070Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1251520Z XNNPACK library is not found. 2025-06-05T23:25:50.1251961Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1252430Z microkernels-prod library is not found. 2025-06-05T23:25:50.1252901Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1253377Z kleidiai library is not found. 2025-06-05T23:25:50.1253887Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.1254315Z cpuinfo library is not found. 2025-06-05T23:25:50.1254765Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.9247409Z pthreadpool library is not found. 2025-06-05T23:25:50.9248398Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.9249143Z vulkan_backend library is not found. 2025-06-05T23:25:50.9249888Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.9250357Z optimized_kernels library is not found. 2025-06-05T23:25:50.9250898Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.9251416Z optimized_portable_kernels library is not found. 2025-06-05T23:25:50.9251920Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.9252394Z cpublas library is not found. 2025-06-05T23:25:50.9252843Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.9253293Z eigen_blas library is not found. 2025-06-05T23:25:50.9253742Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.9254218Z optimized_ops_lib library is not found. 2025-06-05T23:25:50.9254684Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.9255255Z optimized_native_cpu_ops_lib library is not found. 2025-06-05T23:25:50.9255790Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.9256241Z quantized_kernels library is not found. 2025-06-05T23:25:50.9256718Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.9257170Z quantized_ops_lib library is not found. 2025-06-05T23:25:50.9257649Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.9258118Z quantized_ops_aot_lib library is not found. 2025-06-05T23:25:50.9258618Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:50.9259245Z -- executorch: Using source file list /pytorch/executorch/cmake-out/test/../executorch_srcs.cmake 2025-06-05T23:25:50.9259938Z -- Configuring done (0.3s) 2025-06-05T23:25:50.9260213Z -- Generating done (0.0s) 2025-06-05T23:25:50.9260491Z CMake Warning: 2025-06-05T23:25:50.9260817Z Manually-specified variables were not used by the project: 2025-06-05T23:25:50.9261110Z 2025-06-05T23:25:50.9261218Z EXECUTORCH_BUILD_ARM_BAREMETAL 2025-06-05T23:25:50.9261421Z 2025-06-05T23:25:50.9261518Z  2025-06-05T23:25:50.9261832Z -- Build files have been written to: /pytorch/executorch/cmake-out/test 2025-06-05T23:25:50.9262225Z Build size test 2025-06-05T23:25:50.9262905Z [ 16%] Building CXX object CMakeFiles/size_test.dir/pytorch/executorch/extension/data_loader/file_data_loader.cpp.obj 2025-06-05T23:25:50.9263837Z [ 33%] Building CXX object CMakeFiles/size_test.dir/size_test.cpp.obj 2025-06-05T23:25:50.9264757Z [ 50%] Building CXX object CMakeFiles/size_test_all_ops.dir/pytorch/executorch/extension/data_loader/file_data_loader.cpp.obj 2025-06-05T23:25:50.9265648Z [ 66%] Building CXX object CMakeFiles/size_test_all_ops.dir/size_test.cpp.obj 2025-06-05T23:25:50.9266199Z [ 83%] Linking CXX executable size_test 2025-06-05T23:25:50.9266651Z [100%] Linking CXX executable size_test_all_ops 2025-06-05T23:25:50.9268441Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-closer.o): in function `_close_r': 2025-06-05T23:25:50.9270399Z closer.c:(.text._close_r+0xc): warning: _close is not implemented and will always fail 2025-06-05T23:25:50.9272560Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-closer.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:50.9275868Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-fstatr.o): in function `_fstat_r': 2025-06-05T23:25:50.9277915Z fstatr.c:(.text._fstat_r+0x12): warning: _fstat is not implemented and will always fail 2025-06-05T23:25:50.9280004Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-fstatr.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:50.9283327Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-signalr.o): in function `_getpid_r': 2025-06-05T23:25:50.9285228Z signalr.c:(.text._getpid_r+0x0): warning: _getpid is not implemented and will always fail 2025-06-05T23:25:50.9287309Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-signalr.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:50.9290739Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-gettimeofdayr.o): in function `_gettimeofday_r': 2025-06-05T23:25:50.9292765Z gettimeofdayr.c:(.text._gettimeofday_r+0x12): warning: _gettimeofday is not implemented and will always fail 2025-06-05T23:25:50.9294962Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-gettimeofdayr.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:50.9298379Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-isattyr.o): in function `_isatty_r': 2025-06-05T23:25:50.9300474Z isattyr.c:(.text._isatty_r+0xc): warning: _isatty is not implemented and will always fail 2025-06-05T23:25:50.9302736Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-isattyr.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:50.9306050Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-signalr.o): in function `_kill_r': 2025-06-05T23:25:50.9307892Z signalr.c:(.text._kill_r+0x12): warning: _kill is not implemented and will always fail 2025-06-05T23:25:50.9309974Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-signalr.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:51.0099457Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-lseekr.o): in function `_lseek_r': 2025-06-05T23:25:51.0102062Z lseekr.c:(.text._lseek_r+0x14): warning: _lseek is not implemented and will always fail 2025-06-05T23:25:51.0104206Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-lseekr.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:51.0107737Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-openr.o): in function `_open_r': 2025-06-05T23:25:51.0109582Z openr.c:(.text._open_r+0x14): warning: _open is not implemented and will always fail 2025-06-05T23:25:51.0111681Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-openr.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:51.0115079Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-readr.o): in function `_read_r': 2025-06-05T23:25:51.0116976Z readr.c:(.text._read_r+0x14): warning: _read is not implemented and will always fail 2025-06-05T23:25:51.0119006Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-readr.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:51.0122329Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-writer.o): in function `_write_r': 2025-06-05T23:25:51.0124198Z writer.c:(.text._write_r+0x14): warning: _write is not implemented and will always fail 2025-06-05T23:25:51.0126264Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-writer.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:51.0128877Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: warning: size_test has a LOAD segment with RWX permissions 2025-06-05T23:25:51.0129894Z [100%] Built target size_test 2025-06-05T23:25:51.0131590Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-closer.o): in function `_close_r': 2025-06-05T23:25:51.0133477Z closer.c:(.text._close_r+0xc): warning: _close is not implemented and will always fail 2025-06-05T23:25:51.0135619Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-closer.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:51.0138953Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-fstatr.o): in function `_fstat_r': 2025-06-05T23:25:51.0140821Z fstatr.c:(.text._fstat_r+0x12): warning: _fstat is not implemented and will always fail 2025-06-05T23:25:51.0142887Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-fstatr.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:51.0146263Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-signalr.o): in function `_getpid_r': 2025-06-05T23:25:51.0148141Z signalr.c:(.text._getpid_r+0x0): warning: _getpid is not implemented and will always fail 2025-06-05T23:25:51.0150225Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-signalr.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:51.0153581Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-gettimeofdayr.o): in function `_gettimeofday_r': 2025-06-05T23:25:51.0155581Z gettimeofdayr.c:(.text._gettimeofday_r+0x12): warning: _gettimeofday is not implemented and will always fail 2025-06-05T23:25:51.0157790Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-gettimeofdayr.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:51.1209979Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-isattyr.o): in function `_isatty_r': 2025-06-05T23:25:51.1223588Z isattyr.c:(.text._isatty_r+0xc): warning: _isatty is not implemented and will always fail 2025-06-05T23:25:51.1227561Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-isattyr.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:51.1233283Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-signalr.o): in function `_kill_r': 2025-06-05T23:25:51.1236382Z signalr.c:(.text._kill_r+0x12): warning: _kill is not implemented and will always fail 2025-06-05T23:25:51.1240183Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-signalr.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:51.1243604Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-lseekr.o): in function `_lseek_r': 2025-06-05T23:25:51.1245479Z lseekr.c:(.text._lseek_r+0x14): warning: _lseek is not implemented and will always fail 2025-06-05T23:25:51.1247566Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-lseekr.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:51.1250855Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-openr.o): in function `_open_r': 2025-06-05T23:25:51.1252687Z openr.c:(.text._open_r+0x14): warning: _open is not implemented and will always fail 2025-06-05T23:25:51.1254738Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-openr.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:51.1258136Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-readr.o): in function `_read_r': 2025-06-05T23:25:51.1260028Z readr.c:(.text._read_r+0x14): warning: _read is not implemented and will always fail 2025-06-05T23:25:51.1262075Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-readr.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:51.1265375Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-writer.o): in function `_write_r': 2025-06-05T23:25:51.1267249Z writer.c:(.text._write_r+0x14): warning: _write is not implemented and will always fail 2025-06-05T23:25:51.1269371Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v8-m.main+dp/hard/libc.a(libc_a-writer.o): note: the message above does not take linker garbage collection into account 2025-06-05T23:25:51.1272038Z /pytorch/executorch/examples/arm/ethos-u-scratch/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld: warning: size_test_all_ops has a LOAD segment with RWX permissions 2025-06-05T23:25:51.1273102Z [100%] Built target size_test_all_ops 2025-06-05T23:25:51.1273431Z ExecuTorch with no ops binary size, unstripped: 2025-06-05T23:25:51.1273880Z -rwxr-xr-x. 1 ci-user ci-user 165716 Jun 5 23:25 cmake-out/test/size_test 2025-06-05T23:25:51.1274355Z ExecuTorch with portable ops binary size, unstripped: 2025-06-05T23:25:51.1274833Z -rwxr-xr-x. 1 ci-user ci-user 1608260 Jun 5 23:25 cmake-out/test/size_test_all_ops 2025-06-05T23:25:51.1275288Z + elf=cmake-out/test/size_test 2025-06-05T23:25:51.1275564Z + ls -al cmake-out/test/size_test 2025-06-05T23:25:51.1275950Z -rwxr-xr-x. 1 ci-user ci-user 165716 Jun 5 23:25 cmake-out/test/size_test 2025-06-05T23:25:51.1276373Z + arm-none-eabi-size cmake-out/test/size_test 2025-06-05T23:25:51.1276726Z text data bss dec hex filename 2025-06-05T23:25:51.1277108Z 95868 1908 34572 132348 204fc cmake-out/test/size_test 2025-06-05T23:25:51.1277544Z + python .github/scripts/run_nm.py -e cmake-out/test/size_test 2025-06-05T23:25:51.1278602Z Elf: cmake-out/test/size_test 2025-06-05T23:25:51.1278783Z 2025-06-05T23:25:51.1278877Z Address Size Type Name 2025-06-05T23:25:51.1279327Z 0x21430 32000 b executorch::runtime::(anonymous namespace)::registered_kernels_data 2025-06-05T23:25:51.1279785Z 0xef01 9608 t d_print_comp_inner 2025-06-05T23:25:51.1280068Z 0x14f61 7072 T _vfprintf_r 2025-06-05T23:25:51.1280314Z 0x19731 6988 T _svfprintf_r 2025-06-05T23:25:51.1280578Z 0x1bde1 3692 T _vfiprintf_r 2025-06-05T23:25:51.1280835Z 0x17c41 3260 T _dtoa_r 2025-06-05T23:25:51.1281052Z 0xcf19 1952 t d_type 2025-06-05T23:25:51.1281284Z 0x114e5 1584 t d_print_mod 2025-06-05T23:25:51.1281528Z 0x16d09 1362 T _malloc_r 2025-06-05T23:25:51.1281778Z 0xdd79 1272 t d_expression_1 2025-06-05T23:25:51.1282018Z 0x8115 1204 T main 2025-06-05T23:25:51.1282331Z 0xe7ed 1176 t d_special_name 2025-06-05T23:25:51.1282602Z 0x1ea1c 1168 r cplus_demangle_operators 2025-06-05T23:25:51.1282917Z 0xbc61 1068 T __gxx_personality_v0 2025-06-05T23:25:51.1283188Z 0x20880 1032 D __malloc_av_ 2025-06-05T23:25:51.1283455Z 0x21020 1024 b method_allocator_pool 2025-06-05T23:25:51.1283748Z 0x142dd 972 T _strerror_r 2025-06-05T23:25:51.1283999Z 0xd9dd 924 t d_unqualified_name 2025-06-05T23:25:51.1284487Z 0x991f 908 T executorch::runtime::Method::parse_values(executorch::runtime::NamedDataMap const*) 2025-06-05T23:25:51.1284974Z 0x18e51 880 T _realloc_r 2025-06-05T23:25:51.1285258Z 0x1213d 868 t d_demangle_callback.constprop.0 2025-06-05T23:25:51.1285909Z 0x9cab 814 T executorch::runtime::Method::init(executorch_flatbuffer::ExecutionPlan*, executorch::runtime::NamedDataMap const*) 2025-06-05T23:25:51.1286544Z 0x173d1 768 T __sfvwrite_r 2025-06-05T23:25:51.1286790Z 0x13d79 768 T __gnu_unwind_execute 2025-06-05T23:25:51.1287064Z 0x12e25 766 T __udivmoddi4 2025-06-05T23:25:51.1287634Z 0xaaf1 736 T executorch::runtime::Program::load(executorch::runtime::DataLoader*, executorch::runtime::Program::Verification) 2025-06-05T23:25:51.1288261Z 0x1eeac 720 r cplus_demangle_builtin_types 2025-06-05T23:25:51.1288572Z 0x138a5 720 T _Unwind_VRS_Pop 2025-06-05T23:25:51.1288815Z 0xe431 700 t d_name 2025-06-05T23:25:51.1289054Z 0x135dd 688 t __gnu_unwind_pr_common 2025-06-05T23:25:51.1289356Z 0x12599 620 t d_maybe_print_fold_expression 2025-06-05T23:25:51.1289667Z 0x11cd5 576 t d_print_mod_list 2025-06-05T23:25:51.1289925Z 0x20e20 512 b activation_pool 2025-06-05T23:25:51.1290179Z 0x19291 504 T _free_r 2025-06-05T23:25:51.1290439Z 0x12805 492 t d_maybe_print_designated_init 2025-06-05T23:25:51.1290802Z 0x11b15 448 t d_print_function_type 2025-06-05T23:25:51.1291083Z 0x18ac5 442 T strcmp 2025-06-05T23:25:51.1291407Z 0x11f15 432 t d_print_array_type 2025-06-05T23:25:51.1291694Z 0xcd11 424 t d_substitution 2025-06-05T23:25:51.1293047Z 0xb269 424 T executorch::runtime::deserialization::parseTensor(executorch::runtime::Program const*, executorch::runtime::MemoryManager*, executorch_flatbuffer::Tensor const*, executorch::runtime::NamedDataMap const*, executorch::runtime::Span) 2025-06-05T23:25:51.1294553Z 0xa1d9 408 T executorch::runtime::Method::set_input(executorch::runtime::EValue const&, unsigned int) 2025-06-05T23:25:51.1295337Z 0x8b11 404 T executorch::extension::FileDataLoader::from(char const*, unsigned int) 2025-06-05T23:25:51.1295782Z 0x29378 400 B __atexit0 2025-06-05T23:25:51.1296116Z 0x9521 398 T executorch::runtime::Method::execute_instruction() 2025-06-05T23:25:51.1297590Z 0xb0e7 386 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-06-05T23:25:51.1298982Z 0x1b991 384 T __mdiff 2025-06-05T23:25:51.1299223Z 0x20c8c 364 D __global_locale 2025-06-05T23:25:51.1299473Z 0x1b64d 356 T __multiply 2025-06-05T23:25:51.1300158Z 0x8861 356 T executorch::extension::FileDataLoader::load_into(unsigned int, unsigned int, executorch::runtime::DataLoader::SegmentInfo const&, void*) const 2025-06-05T23:25:51.1300879Z 0xe2e5 332 t d_cv_qualifiers 2025-06-05T23:25:51.1301865Z 0x93d9 328 T executorch::runtime::Method::resolve_operator(long, void (**)(executorch::runtime::KernelRuntimeContext&, executorch::runtime::EValue**), unsigned int, executorch::runtime::Span, unsigned int) 2025-06-05T23:25:51.1302999Z 0x20728 320 D _impure_data 2025-06-05T23:25:51.1303972Z 0x97ab 316 W executorch::runtime::BackendDelegate::Init(executorch_flatbuffer::BackendDelegate const&, executorch::runtime::Program const*, executorch::runtime::BackendInitContext&, executorch::runtime::BackendDelegate*) 2025-06-05T23:25:51.1305154Z 0x17b09 312 t quorem 2025-06-05T23:25:51.1305473Z 0x14725 312 T __sflush_r 2025-06-05T23:25:51.1305716Z 0x291ec 312 B __sf 2025-06-05T23:25:51.1306001Z 0xc7f5 300 t d_count_templates_scopes 2025-06-05T23:25:51.1306305Z 0x140c9 296 t _strtoul_l.isra.0 2025-06-05T23:25:51.1306836Z 0x92bd 282 T executorch::runtime::Method::parse_external_constants(executorch::runtime::NamedDataMap const*) 2025-06-05T23:25:51.1307384Z 0xd8d1 268 t d_operator_name 2025-06-05T23:25:51.1307701Z 0xc361 268 T __gnu_cxx::__verbose_terminate_handler() 2025-06-05T23:25:51.1308776Z 0x9fd9 268 T executorch::runtime::Method::load(executorch_flatbuffer::ExecutionPlan*, executorch::runtime::Program const*, executorch::runtime::MemoryManager*, executorch::runtime::EventTracer*, executorch::runtime::NamedDataMap const*) 2025-06-05T23:25:51.1309820Z 0x1f19c 257 R _ctype_ 2025-06-05T23:25:51.1310101Z 0x85c9 256 t _GLOBAL__sub_I__ZN9__gnu_cxx9__freeresEv 2025-06-05T23:25:51.1310437Z 0x1793d 254 T memmove 2025-06-05T23:25:51.1310682Z 0xe6ed 254 t d_encoding.part.0 2025-06-05T23:25:51.1310949Z 0xec85 252 t d_expr_primary 2025-06-05T23:25:51.1311212Z 0x14afd 252 T _memalign_r 2025-06-05T23:25:51.1311455Z 0x1bc41 250 T _wcsnrtombs_l 2025-06-05T23:25:51.1311721Z 0x124a1 248 t d_print_subexpr 2025-06-05T23:25:51.1311969Z 0xc56d 248 t d_make_comp 2025-06-05T23:25:51.1312617Z 0x89c5 248 T executorch::extension::FileDataLoader::load(unsigned int, unsigned int, executorch::runtime::DataLoader::SegmentInfo const&) const 2025-06-05T23:25:51.1313314Z 0x14ca9 240 t global_stdio_init.part.0 2025-06-05T23:25:51.1313615Z 0x14925 236 T memcpy 2025-06-05T23:25:51.1313846Z 0x1b865 232 T __lshift 2025-06-05T23:25:51.1314082Z 0x132fd 228 t unwind_phase2_forced 2025-06-05T23:25:51.1314409Z 0x18c81 220 T __smakebuf_r 2025-06-05T23:25:51.1314659Z 0x8019 212 T __cxa_call_unexpected 2025-06-05T23:25:51.1315164Z 0xa519 210 T executorch::runtime::MethodMeta::input_tensor_meta(unsigned int) const 2025-06-05T23:25:51.1315607Z 0x188fd 206 T strchr 2025-06-05T23:25:51.1315850Z 0x1f2f8 200 R __mprec_tens 2025-06-05T23:25:51.1316425Z 0xa9bf 198 T executorch::runtime::Program::load_mutable_subsegment_into(unsigned int, unsigned int, unsigned int, void*) const 2025-06-05T23:25:51.1317046Z 0x1e958 196 r standard_subs 2025-06-05T23:25:51.1317339Z 0xee3d 196 t d_prefix 2025-06-05T23:25:51.1317589Z 0x177f5 196 T __swsetup_r 2025-06-05T23:25:51.1317851Z 0x194ad 192 T _fclose_r 2025-06-05T23:25:51.1318100Z 0x1cccd 192 T __ssputs_r 2025-06-05T23:25:51.1318330Z 0x1bb11 192 T __d2b 2025-06-05T23:25:51.1318561Z 0x129f1 192 T __cxa_demangle 2025-06-05T23:25:51.1319231Z 0xb471 192 T executorch::runtime::internal::make_kernel_key_string(executorch::runtime::Span, char*, unsigned int) 2025-06-05T23:25:51.1320195Z 0xbacd 192 t read_encoded_value_with_base(unsigned char, unsigned int, unsigned char const*, unsigned int*) 2025-06-05T23:25:51.1320716Z 0x17715 190 T _fwrite_r 2025-06-05T23:25:51.1320963Z 0x1725d 188 T __call_exitprocs 2025-06-05T23:25:51.1321394Z 0xae3f 186 T executorch::runtime::internal::PteDataMap::get_data(char const*) const 2025-06-05T23:25:51.1321838Z 0xcae1 184 t d_find_pack 2025-06-05T23:25:51.1322087Z 0x191d9 184 T _malloc_trim_r 2025-06-05T23:25:51.1322333Z 0x1b7b1 180 T __pow5mult 2025-06-05T23:25:51.1322579Z 0x12abd 176 T __cxa_type_match 2025-06-05T23:25:51.1322827Z 0x1b399 172 T __swbuf_r 2025-06-05T23:25:51.1323069Z 0xcc69 168 t d_source_name 2025-06-05T23:25:51.1323921Z 0xaf8d 166 T executorch::runtime::deserialization::parseTensorList(flatbuffers::Vector const*, executorch::runtime::EValue*, unsigned int, executorch::runtime::MemoryManager*) 2025-06-05T23:25:51.1324810Z 0x1b4a5 164 T __multadd 2025-06-05T23:25:51.1325049Z 0x17a65 162 T memset 2025-06-05T23:25:51.1325276Z 0xd7f5 160 t d_template_parm 2025-06-05T23:25:51.1332194Z 0xb531 160 T executorch::runtime::get_op_function_from_registry(char const*, executorch::runtime::Span) 2025-06-05T23:25:51.1333699Z 0x9711 154 W executorch::runtime::BackendDelegate::GetProcessedData(executorch_flatbuffer::BackendDelegate const&, executorch::runtime::Program const*) 2025-06-05T23:25:51.1334535Z 0x131bd 152 t get_eit_entry 2025-06-05T23:25:51.1334782Z 0x195c5 150 T memchr 2025-06-05T23:25:51.1335320Z 0xa85d 148 T executorch::runtime::Program::get_constant_buffer_data(unsigned int, unsigned int) const 2025-06-05T23:25:51.1335827Z 0x16b81 144 T snprintf 2025-06-05T23:25:51.1336280Z 0xa117 144 T executorch::runtime::Method::get_outputs(executorch::runtime::EValue*, unsigned int) 2025-06-05T23:25:51.1336953Z 0x8cc9 144 W executorch::runtime::MemoryAllocator::allocate(unsigned int, unsigned int) 2025-06-05T23:25:51.1338180Z 0xa41d 144 T executorch::runtime::TensorInfo::TensorInfo(executorch::runtime::Span, executorch::runtime::Span, executorch::runtime::etensor::ScalarType, bool, std::basic_string_view >) 2025-06-05T23:25:51.1339448Z 0xbbd1 144 t parse_lsda_header(_Unwind_Context*, unsigned char const*, lsda_header_info*) 2025-06-05T23:25:51.1339953Z 0xc93d 140 t d_growable_string_callback_adapter 2025-06-05T23:25:51.1340404Z 0xa775 140 T executorch::runtime::Program::method_meta(char const*) const 2025-06-05T23:25:51.1340812Z 0x14ec5 138 T _fputs_r 2025-06-05T23:25:51.1341055Z 0x12d19 136 T __cxa_end_catch 2025-06-05T23:25:51.1341307Z 0xd6b9 134 t d_parmlist 2025-06-05T23:25:51.1341566Z 0x1b27d 132 T __register_exitproc 2025-06-05T23:25:51.1342555Z 0xc27d 132 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-06-05T23:25:51.1343580Z 0x14a6d 128 T strncmp 2025-06-05T23:25:51.1343864Z 0xb6f5 128 W et_pal_emit_log_message 2025-06-05T23:25:51.1344139Z 0xc6a9 128 t d_number 2025-06-05T23:25:51.1344373Z 0x1425d 128 T _findenv_r 2025-06-05T23:25:51.1344610Z 0x1cc4d 128 t __sbprintf 2025-06-05T23:25:51.1344984Z 0xb985 128 t (anonymous namespace)::pool::free(void*) [clone .constprop.0] 2025-06-05T23:25:51.1345864Z 0xb033 128 T executorch::runtime::deserialization::validateTensorLayout(executorch_flatbuffer::Tensor const*, executorch::runtime::TensorLayout const&) 2025-06-05T23:25:51.1346738Z 0x29144 128 b executorch::runtime::(anonymous namespace)::registered_backends 2025-06-05T23:25:51.1347210Z 0xb8c9 126 T std::chrono::_V2::steady_clock::now() 2025-06-05T23:25:51.1347831Z 0x8ecf 126 T executorch::runtime::etensor::TensorImpl::internal_resize_contiguous(executorch::runtime::ArrayRef) 2025-06-05T23:25:51.1348440Z 0x13561 124 T __gnu_Unwind_Backtrace 2025-06-05T23:25:51.1348723Z 0x12c9d 124 T __cxa_begin_catch 2025-06-05T23:25:51.1348987Z 0x18dd9 120 T frexp 2025-06-05T23:25:51.1349228Z 0x120c5 120 t d_print_expr_op 2025-06-05T23:25:51.1349597Z 0x916d 120 T executorch::runtime::Method::get_num_external_constants() 2025-06-05T23:25:51.1350002Z 0x18d5d 118 T _putc_r 2025-06-05T23:25:51.1350220Z 0x148b1 116 T fflush 2025-06-05T23:25:51.1350454Z 0xcbf5 116 t d_append_num 2025-06-05T23:25:51.1350689Z 0xe271 114 t d_exprlist 2025-06-05T23:25:51.1350940Z 0x12bd1 112 T __gnu_end_cleanup 2025-06-05T23:25:51.1351192Z 0x1bbd1 110 T _calloc_r 2025-06-05T23:25:51.1351431Z 0xc195 110 T __cxa_rethrow 2025-06-05T23:25:51.1351718Z 0x9215 108 T executorch::runtime::Method::~Method() 2025-06-05T23:25:51.1352210Z 0xb621 108 T executorch::runtime::ExtendedHeader::Parse(void const*, unsigned int) 2025-06-05T23:25:51.1352669Z 0xd789 106 t d_function_type 2025-06-05T23:25:51.1352942Z 0x133e1 102 T __gnu_Unwind_RaiseException 2025-06-05T23:25:51.1353242Z 0x19679 100 T strncpy 2025-06-05T23:25:51.1353488Z 0xedd9 100 t d_template_args_1 2025-06-05T23:25:51.1353749Z 0xca7d 100 t d_append_string 2025-06-05T23:25:51.1354026Z 0x12b6d 100 T __cxa_begin_cleanup 2025-06-05T23:25:51.1354650Z 0xa95b 100 T executorch::runtime::Program::LoadSegment(executorch::runtime::DataLoader::SegmentInfo const&) const 2025-06-05T23:25:51.1355297Z 0x96af 98 T executorch::runtime::Method::execute() 2025-06-05T23:25:51.1356289Z 0xaf2d 96 t executorch::runtime::deserialization::(anonymous namespace)::getMemPlannedPtr(executorch_flatbuffer::AllocationDetails const*, unsigned int, executorch::runtime::HierarchicalAllocator*) 2025-06-05T23:25:51.1357227Z 0xceb9 94 t d_maybe_module_name 2025-06-05T23:25:51.1357503Z 0x1b591 94 T __lo0bits 2025-06-05T23:25:51.1358181Z 0x8e71 94 W executorch::runtime::Error executorch::runtime::dim_order_to_stride(long const*, unsigned char const*, unsigned int, long*) 2025-06-05T23:25:51.1358891Z 0x14a11 92 T strlen 2025-06-05T23:25:51.1359125Z 0x178e1 92 T memcmp 2025-06-05T23:25:51.1359351Z 0xcb99 92 t d_template_param 2025-06-05T23:25:51.1359615Z 0x1b5f1 92 T __i2b 2025-06-05T23:25:51.1360375Z 0xa801 92 T executorch::runtime::Program::load_method(char const*, executorch::runtime::MemoryManager*, executorch::runtime::EventTracer*, executorch::runtime::NamedDataMap const*) const 2025-06-05T23:25:51.1361229Z 0x13139 90 t search_EIT_table 2025-06-05T23:25:51.1361497Z 0x11489 90 t d_print_comp 2025-06-05T23:25:51.1361743Z 0x13255 88 t restore_non_core_regs 2025-06-05T23:25:51.1362019Z 0x1956d 88 T raise 2025-06-05T23:25:51.1362220Z 0x14e6d 88 T fputc 2025-06-05T23:25:51.1362444Z 0xed81 88 t d_template_arg 2025-06-05T23:25:51.1362686Z 0x1bd61 88 T __ssprint_r 2025-06-05T23:25:51.1363095Z 0xba05 88 t (anonymous namespace)::pool::allocate(unsigned int) [clone .constprop.0] 2025-06-05T23:25:51.1363664Z 0xa4c3 86 T executorch::runtime::MethodMeta::input_tag(unsigned int) const 2025-06-05T23:25:51.1364112Z 0x1485d 84 T _fflush_r 2025-06-05T23:25:51.1364428Z 0x8abd 84 T executorch::extension::FileDataLoader::size() const 2025-06-05T23:25:51.1365115Z 0xa907 84 T executorch::runtime::Program::get_backend_delegate_data(unsigned int, void const**, unsigned int*) const 2025-06-05T23:25:51.1365974Z 0x8d95 82 T executorch::runtime::BoxedEvalueList >::get() const 2025-06-05T23:25:51.1366547Z 0x189cd 80 T __libc_init_array 2025-06-05T23:25:51.1366812Z 0xc729 78 t d_call_offset 2025-06-05T23:25:51.1367043Z 0x17329 76 T _wcrtomb_r 2025-06-05T23:25:51.1367352Z 0xb87d 76 T operator new(unsigned int, std::align_val_t) 2025-06-05T23:25:51.1367686Z 0x1b445 76 T _Balloc 2025-06-05T23:25:51.1368249Z 0xa69b 74 t executorch::runtime::(anonymous namespace)::get_execution_plan(executorch_flatbuffer::Program const*, char const*) 2025-06-05T23:25:51.1368876Z 0xc7ad 72 t d_discriminator 2025-06-05T23:25:51.1369134Z 0xd741 72 t d_bare_function_type 2025-06-05T23:25:51.1369411Z 0x1b549 70 T __hi0bits 2025-06-05T23:25:51.1369775Z 0xa72f 70 T executorch::runtime::Program::get_method_name(unsigned int) const 2025-06-05T23:25:51.1370254Z 0x8fd1 70 W executorch::runtime::EValue::destroy() 2025-06-05T23:25:51.1370572Z 0x16c11 68 T sprintf 2025-06-05T23:25:51.1370805Z 0xc665 68 t d_make_name 2025-06-05T23:25:51.1371046Z 0x1345d 68 T __gnu_Unwind_Resume 2025-06-05T23:25:51.1371341Z 0xc119 68 T __cxa_init_primary_exception 2025-06-05T23:25:51.1371899Z 0xadfb 68 T executorch::runtime::internal::PteDataMap::get_key(unsigned int) const 2025-06-05T23:25:51.1372346Z 0xca05 66 t d_append_char 2025-06-05T23:25:51.1372602Z 0x176d1 66 T _fwalk_sglue 2025-06-05T23:25:51.1372835Z 0x1b94d 66 T __mcmp 2025-06-05T23:25:51.1373776Z 0xc4e1 66 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-06-05T23:25:51.1375163Z 0xb803 66 T executorch::runtime::internal::copy_tensor_data(executorch::runtime::etensor::Tensor const&, executorch::runtime::etensor::Tensor const&) 2025-06-05T23:25:51.1376067Z 0xbb8d 66 t base_of_encoded_value(unsigned char, _Unwind_Context*) 2025-06-05T23:25:51.1376535Z 0x14c69 64 t cleanup_stdio 2025-06-05T23:25:51.1376904Z 0xb77d 64 T executorch::runtime::get_backend_class(char const*) 2025-06-05T23:25:51.1377803Z 0xa3b9 64 t executorch::runtime::(anonymous namespace)::get_tag(executorch_flatbuffer::EValue const*, unsigned int) [clone .isra.0] 2025-06-05T23:25:51.1378439Z 0x132bd 62 t unwind_phase2 2025-06-05T23:25:51.1378696Z 0x16c79 62 T __swrite 2025-06-05T23:25:51.1379499Z 0x8e15 62 T executorch::runtime::etensor::TensorImpl::TensorImpl(executorch::runtime::etensor::ScalarType, int, long*, void*, unsigned char*, long*, executorch::runtime::TensorShapeDynamism) 2025-06-05T23:25:51.1380340Z 0x13d21 60 t next_unwind_byte 2025-06-05T23:25:51.1380621Z 0xc9c9 60 t next_is_type_qual.isra.0 2025-06-05T23:25:51.1380897Z 0x14d99 60 T __sinit 2025-06-05T23:25:51.1381130Z 0x1b32d 60 T __assert_func 2025-06-05T23:25:51.1381606Z 0x904f 60 t executorch::runtime::EValue::operator=(executorch::runtime::EValue const&) & [clone .isra.0] 2025-06-05T23:25:51.1382365Z 0x8d59 60 t executorch::runtime::Result::CheckOk() const [clone .part.0] 2025-06-05T23:25:51.1383112Z 0x8d59 60 t executorch::runtime::Result::CheckOk() const [clone .part.0] 2025-06-05T23:25:51.1383865Z 0xb411 60 t executorch::runtime::(anonymous namespace)::copy_char_as_number_to_buf(int, char*, unsigned int) 2025-06-05T23:25:51.1384546Z 0xc0dd 60 t __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Control_Block*) 2025-06-05T23:25:51.1384973Z 0xd895 58 t d_template_head 2025-06-05T23:25:51.1385555Z 0xc241 58 T __cxxabiv1::__si_class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const 2025-06-05T23:25:51.1386483Z 0x8f4d 58 W executorch::runtime::internal::PlatformMemoryAllocator::allocate(unsigned int, unsigned int) 2025-06-05T23:25:51.1387140Z 0x12c41 58 t __cxxabiv1::__is_gxx_exception_class(char*) 2025-06-05T23:25:51.1387706Z 0x9017 56 t executorch::runtime::EValue::operator=(executorch::runtime::EValue&&) & [clone .isra.0] 2025-06-05T23:25:51.1388416Z 0xc46d 56 T __cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const 2025-06-05T23:25:51.1389178Z 0xaab9 56 W executorch::runtime::Result::Result(executorch::runtime::Program&&) 2025-06-05T23:25:51.1389721Z 0xc15d 54 T __cxa_throw 2025-06-05T23:25:51.1389975Z 0xc779 52 t d_ref_qualifier 2025-06-05T23:25:51.1390767Z 0xaa85 52 W std::_Optional_base::_Optional_base(std::_Optional_base&&) 2025-06-05T23:25:51.1392614Z 0xaef9 52 T executorch::runtime::internal::PteDataMap::create(executorch::runtime::DataLoader*, unsigned int, flatbuffers::Vector, unsigned long> const*, flatbuffers::Vector, unsigned long> const*) 2025-06-05T23:25:51.1394473Z 0xb0b3 52 T executorch::runtime::deserialization::get_data_by_key(char const*, executorch::runtime::Span) 2025-06-05T23:25:51.1395192Z 0x13515 52 T _Unwind_VRS_Set 2025-06-05T23:25:51.1395445Z 0x134c9 52 T _Unwind_VRS_Get 2025-06-05T23:25:51.1395726Z 0xca49 50 t d_lookup_template_argument 2025-06-05T23:25:51.1396024Z 0xba5d 46 T __cxa_allocate_exception 2025-06-05T23:25:51.1396434Z 0x8de7 46 T executorch::runtime::etensor::compute_numel(long const*, int) 2025-06-05T23:25:51.1396841Z 0xb68d 44 W et_pal_init 2025-06-05T23:25:51.1397083Z 0x17399 44 T _write_r 2025-06-05T23:25:51.1397298Z 0x14e19 44 T _read_r 2025-06-05T23:25:51.1397528Z 0x14ded 44 T _open_r 2025-06-05T23:25:51.1397746Z 0x14c25 44 T _lseek_r 2025-06-05T23:25:51.1397972Z 0x1b369 44 T _kill_r 2025-06-05T23:25:51.1398213Z 0x14bf9 44 T _gettimeofday_r 2025-06-05T23:25:51.1398459Z 0x196dd 44 T _fstat_r 2025-06-05T23:25:51.1398697Z 0x14079 44 T __gnu_unwind_frame 2025-06-05T23:25:51.1399082Z 0x1e8ac 44 R vtable for __cxxabiv1::__si_class_type_info 2025-06-05T23:25:51.1399527Z 0x1e920 44 R vtable for __cxxabiv1::__class_type_info 2025-06-05T23:25:51.1399946Z 0xc335 44 T std::type_info::operator==(std::type_info const&) const 2025-06-05T23:25:51.1400407Z 0xc335 44 T std::type_info::__equal(std::type_info const&) const 2025-06-05T23:25:51.1400768Z 0x1b301 42 T __ascii_mbtowc 2025-06-05T23:25:51.1401422Z 0xc301 42 T __cxxabiv1::__si_class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const 2025-06-05T23:25:51.1402311Z 0xc541 42 T __cxxabiv1::__class_type_info::__do_catch(std::type_info const*, void**, unsigned int) const 2025-06-05T23:25:51.1403215Z 0xb7d9 42 T executorch::runtime::internal::share_tensor_data(executorch::runtime::etensor::Tensor const&, executorch::runtime::etensor::Tensor const&) 2025-06-05T23:25:51.1403904Z 0x146e5 40 T open 2025-06-05T23:25:51.1404113Z 0x14e45 40 T fprintf 2025-06-05T23:25:51.1404444Z 0x1bdb9 40 T fiprintf 2025-06-05T23:25:51.1404782Z 0x14235 40 T _strdup_r 2025-06-05T23:25:51.1405087Z 0x12dfd 40 T __popcountsi2 2025-06-05T23:25:51.1405352Z 0x1f2d0 40 R __mprec_bigtens 2025-06-05T23:25:51.1405616Z 0x29328 40 B __malloc_current_mallinfo 2025-06-05T23:25:51.1405918Z 0x18a1d 40 T __libc_fini_array 2025-06-05T23:25:51.1406182Z 0x13195 40 t __gnu_unwind_get_pr_addr 2025-06-05T23:25:51.1406469Z 0x16cb9 38 T __sseek 2025-06-05T23:25:51.1406773Z 0x98e7 38 T executorch::runtime::Method::method_meta() const 2025-06-05T23:25:51.1407533Z 0xb84d 38 T executorch::runtime::internal::resize_tensor_impl(executorch::runtime::etensor::TensorImpl*, executorch::runtime::ArrayRef) 2025-06-05T23:25:51.1408344Z 0x1e878 37 R typeinfo name for __cxxabiv1::__si_class_type_info 2025-06-05T23:25:51.1408734Z 0xb6b9 36 W et_pal_current_ticks 2025-06-05T23:25:51.1409050Z 0x1bd3d 36 T _wcsnrtombs_r 2025-06-05T23:25:51.1409291Z 0x17375 36 T _sbrk_r 2025-06-05T23:25:51.1409524Z 0x19709 36 T _isatty_r 2025-06-05T23:25:51.1409742Z 0x19489 36 T _close_r 2025-06-05T23:25:51.1410073Z 0x206b4 36 D vtable for executorch::runtime::internal::PteDataMap 2025-06-05T23:25:51.1410532Z 0x1e838 36 R typeinfo name for __cxxabiv1::__foreign_exception 2025-06-05T23:25:51.1410901Z 0x16c55 34 T __sread 2025-06-05T23:25:51.1411141Z 0x13cb5 34 T ___Unwind_Resume_or_Rethrow 2025-06-05T23:25:51.1411444Z 0x13c91 34 T ___Unwind_Resume 2025-06-05T23:25:51.1411718Z 0x13c6d 34 T ___Unwind_RaiseException 2025-06-05T23:25:51.1412007Z 0x13cd9 34 T ___Unwind_ForcedUnwind 2025-06-05T23:25:51.1412297Z 0x13cfd 34 T ___Unwind_Backtrace 2025-06-05T23:25:51.1412635Z 0x1e8f0 34 R typeinfo name for __cxxabiv1::__class_type_info 2025-06-05T23:25:51.1413091Z 0xa3f9 34 W executorch_flatbuffer::EValue::val_as_Tensor() const 2025-06-05T23:25:51.1413664Z 0xb44d 34 W executorch::runtime::KernelKey::equals(executorch::runtime::KernelKey const&) const 2025-06-05T23:25:51.1414299Z 0xa0f5 34 T executorch::runtime::Method::get_output_index(unsigned int) const 2025-06-05T23:25:51.1414856Z 0xa1b7 34 T executorch::runtime::Method::get_input_index(unsigned int) const 2025-06-05T23:25:51.1415761Z 0x883d 34 W executorch::runtime::internal::logf(executorch::runtime::LogLevel, unsigned long long, char const*, char const*, unsigned int, char const*, ...) 2025-06-05T23:25:51.1416492Z 0x13cb5 34 T _Unwind_Resume_or_Rethrow 2025-06-05T23:25:51.1416775Z 0x13c91 34 T _Unwind_Resume 2025-06-05T23:25:51.1417049Z 0x13c6d 34 T _Unwind_RaiseException 2025-06-05T23:25:51.1417335Z 0x13cd9 34 T _Unwind_ForcedUnwind 2025-06-05T23:25:51.1417620Z 0x13cfd 34 T _Unwind_Backtrace 2025-06-05T23:25:51.1417987Z 0x87e9 32 T executorch::extension::FileDataLoader::~FileDataLoader() 2025-06-05T23:25:51.1418392Z 0x177d5 32 T fwrite 2025-06-05T23:25:51.1418624Z 0x1ce1d 32 T _sbrk 2025-06-05T23:25:51.1418846Z 0xba8d 32 T __cxa_free_exception 2025-06-05T23:25:51.1419269Z 0x20694 32 V vtable for executorch::runtime::internal::PlatformMemoryAllocator 2025-06-05T23:25:51.1419815Z 0x1e6ac 32 V vtable for executorch::runtime::MemoryAllocator 2025-06-05T23:25:51.1420288Z 0x1e810 32 R typeinfo name for __cxxabiv1::__forced_unwind 2025-06-05T23:25:51.1420730Z 0x206f8 32 d executorch::runtime::(anonymous namespace)::pal_impl 2025-06-05T23:25:51.1421115Z 0x18a79 30 T __sprint_r 2025-06-05T23:25:51.1421354Z 0x12c7d 30 T __cxa_call_terminate 2025-06-05T23:25:51.1421625Z 0x1e775 30 r CSWTCH.53 2025-06-05T23:25:51.1421859Z 0x1e6e4 30 r CSWTCH.23 2025-06-05T23:25:51.1422076Z 0x18aa9 28 T sysconf 2025-06-05T23:25:51.1422300Z 0x14219 28 T getenv 2025-06-05T23:25:51.1422509Z 0x80f9 28 T exit 2025-06-05T23:25:51.1422766Z 0xc921 28 t d_index_template_argument.part.0 2025-06-05T23:25:51.1423077Z 0x1965d 28 T __ascii_wctomb 2025-06-05T23:25:51.1423418Z 0x1e690 28 R vtable for executorch::extension::FileDataLoader 2025-06-05T23:25:51.1423886Z 0x8e55 28 T executorch::runtime::etensor::TensorImpl::nbytes() const 2025-06-05T23:25:51.1424533Z 0xa5ff 28 W executorch::runtime::FreeableBuffer::FreeableBuffer(executorch::runtime::FreeableBuffer&&) 2025-06-05T23:25:51.1425367Z 0xb7bd 28 T executorch::runtime::get_dim_order(executorch::runtime::etensor::Tensor const&, unsigned char*, unsigned int) 2025-06-05T23:25:51.1425964Z 0x12db1 26 T __cxa_current_exception_type 2025-06-05T23:25:51.1426355Z 0xa62f 26 W executorch_flatbuffer::DataSegment::offset() const 2025-06-05T23:25:51.1426797Z 0xa649 26 W executorch_flatbuffer::DataSegment::size() const 2025-06-05T23:25:51.1427561Z 0xc525 26 T __cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const 2025-06-05T23:25:51.1428302Z 0x908b 26 W executorch::runtime::FreeableBuffer::Free() 2025-06-05T23:25:51.1428670Z 0x141f1 24 T strtoul 2025-06-05T23:25:51.1428909Z 0x14c51 24 t stdio_exit_handler 2025-06-05T23:25:51.1429201Z 0x13b75 24 T restore_core_regs 2025-06-05T23:25:51.1429460Z 0x1470d 24 T read 2025-06-05T23:25:51.1429662Z 0x146cd 24 T lseek 2025-06-05T23:25:51.1429910Z 0xb6dd 24 W et_pal_ticks_to_ns_multiplier 2025-06-05T23:25:51.1430211Z 0x13b75 24 T __restore_core_regs 2025-06-05T23:25:51.1430484Z 0x13549 24 t _Unwind_SetGR 2025-06-05T23:25:51.1430743Z 0x13d5d 24 t _Unwind_GetGR.constprop.0 2025-06-05T23:25:51.1431042Z 0x134fd 24 t _Unwind_GetGR 2025-06-05T23:25:51.1431285Z 0x17a4d 22 T _wcsrtombs_r 2025-06-05T23:25:51.1431560Z 0x134a1 22 T __gnu_Unwind_Resume_or_Rethrow 2025-06-05T23:25:51.1431971Z 0xa8f1 22 T executorch::runtime::Program::get_named_data_map() const 2025-06-05T23:25:51.1432533Z 0x91fb 22 t executorch::runtime::Method::get_value(unsigned int) const [clone .localalias] 2025-06-05T23:25:51.1433114Z 0x91fb 22 T executorch::runtime::Method::get_value(unsigned int) const 2025-06-05T23:25:51.1433643Z 0x8f87 22 W executorch::runtime::internal::PlatformMemoryAllocator::reset() 2025-06-05T23:25:51.1434290Z 0x8fbd 20 W executorch::runtime::internal::PlatformMemoryAllocator::~PlatformMemoryAllocator() 2025-06-05T23:25:51.1434824Z 0xb951 20 T std::bad_alloc::~bad_alloc() 2025-06-05T23:25:51.1435211Z 0xc211 20 T __cxxabiv1::__si_class_type_info::~__si_class_type_info() 2025-06-05T23:25:51.1435673Z 0xc4b1 20 T __cxxabiv1::__class_type_info::~__class_type_info() 2025-06-05T23:25:51.1436024Z 0x146a9 20 T strerror 2025-06-05T23:25:51.1436261Z 0x86c9 20 t register_fini 2025-06-05T23:25:51.1436514Z 0x13449 20 T __gnu_Unwind_ForcedUnwind 2025-06-05T23:25:51.1436820Z 0x1e7c4 20 R vtable for std::bad_alloc 2025-06-05T23:25:51.1437124Z 0x1e864 20 R vtable for std::bad_exception 2025-06-05T23:25:51.1437511Z 0xa6f9 20 W executorch_flatbuffer::Program::segments() const 2025-06-05T23:25:51.1437993Z 0xa70d 20 W executorch_flatbuffer::Program::constant_segment() const 2025-06-05T23:25:51.1438488Z 0xa6e5 20 W executorch_flatbuffer::Program::constant_buffer() const 2025-06-05T23:25:51.1438980Z 0xa687 20 W executorch_flatbuffer::Program::execution_plan() const 2025-06-05T23:25:51.1439437Z 0xa381 20 W executorch_flatbuffer::Tensor::dim_order() const 2025-06-05T23:25:51.1439937Z 0x90c5 20 W executorch_flatbuffer::Tensor::extra_tensor_info() const 2025-06-05T23:25:51.1440444Z 0xa3a5 20 W executorch_flatbuffer::Tensor::allocation_info() const 2025-06-05T23:25:51.1440888Z 0x90e9 20 W executorch_flatbuffer::EValue::val() const 2025-06-05T23:25:51.1441318Z 0x9145 20 W executorch_flatbuffer::Chain::instructions() const 2025-06-05T23:25:51.1441795Z 0xa673 20 W executorch_flatbuffer::SubsegmentOffsets::offsets() const 2025-06-05T23:25:51.1442327Z 0x9131 20 W executorch_flatbuffer::BackendDelegate::compile_specs() const 2025-06-05T23:25:51.1442831Z 0x9159 20 W executorch_flatbuffer::ExecutionPlan::values() const 2025-06-05T23:25:51.1443307Z 0xa61b 20 W executorch_flatbuffer::ExecutionPlan::name() const 2025-06-05T23:25:51.1443783Z 0x910d 20 W executorch_flatbuffer::Instruction::instr_args() const 2025-06-05T23:25:51.1444213Z 0xb5dd 20 T executorch::runtime::pal_abort() 2025-06-05T23:25:51.1444610Z 0x91e5 20 T executorch::runtime::Method::reset_execution() 2025-06-05T23:25:51.1444969Z 0x13125 18 t selfrel_offset31 2025-06-05T23:25:51.1445282Z 0x1e7f0 18 R typeinfo name for std::bad_exception 2025-06-05T23:25:51.1445744Z 0x9281 18 W long flatbuffers::Table::GetField(unsigned short, long) const 2025-06-05T23:25:51.1446667Z 0x990d 18 W flatbuffers::Vector const* flatbuffers::Table::GetPointer const*, unsigned long>(unsigned short) 2025-06-05T23:25:51.1447782Z 0x92ab 18 W flatbuffers::String const* flatbuffers::Table::GetPointer(unsigned short) 2025-06-05T23:25:51.1448456Z 0x140b1 18 T _Unwind_GetLanguageSpecificData 2025-06-05T23:25:51.1448783Z 0x1b491 18 T _Bfree 2025-06-05T23:25:51.1449032Z 0x1f3c0 16 r zeroes.0 2025-06-05T23:25:51.1449265Z 0x14209 16 T strdup 2025-06-05T23:25:51.1449479Z 0x17a3d 16 T realloc 2025-06-05T23:25:51.1449760Z 0x14aed 16 T memalign 2025-06-05T23:25:51.1449982Z 0x16ce9 16 T malloc 2025-06-05T23:25:51.1450221Z 0x146bd 16 T gettimeofday 2025-06-05T23:25:51.1450454Z 0x18a99 16 T fstat 2025-06-05T23:25:51.1450672Z 0x16cf9 16 T free 2025-06-05T23:25:51.1450875Z 0x14f51 16 T fputs 2025-06-05T23:25:51.1451093Z 0x18a61 16 T close 2025-06-05T23:25:51.1451297Z 0x1f3d0 16 r blanks.1 2025-06-05T23:25:51.1451528Z 0x1ce3d 16 T _write 2025-06-05T23:25:51.1451750Z 0x1ce0d 16 T _read 2025-06-05T23:25:51.1451953Z 0x1cdfd 16 T _open 2025-06-05T23:25:51.1452170Z 0x1cded 16 T _lseek 2025-06-05T23:25:51.1452377Z 0x1cddd 16 T _kill 2025-06-05T23:25:51.1452589Z 0x1cdcd 16 T _isatty 2025-06-05T23:25:51.1452811Z 0x1cdbd 16 T _gettimeofday 2025-06-05T23:25:51.1453064Z 0x1cdad 16 T _getpid 2025-06-05T23:25:51.1453276Z 0x1cd9d 16 T _fstat 2025-06-05T23:25:51.1453499Z 0x1cd8d 16 T _close 2025-06-05T23:25:51.1453721Z 0xc09d 16 T std::terminate() 2025-06-05T23:25:51.1453991Z 0xc0b5 16 T std::unexpected() 2025-06-05T23:25:51.1454343Z 0xa395 16 W executorch_flatbuffer::Tensor::data_buffer_idx() const 2025-06-05T23:25:51.1454817Z 0xa371 16 W executorch_flatbuffer::Tensor::scalar_type() const 2025-06-05T23:25:51.1455359Z 0x90d9 16 W executorch_flatbuffer::EValue::val_type() const 2025-06-05T23:25:51.1455866Z 0x9121 16 W executorch_flatbuffer::BackendDelegateDataReference::index() const 2025-06-05T23:25:51.1456450Z 0xa663 16 W executorch_flatbuffer::SubsegmentOffsets::segment_index() const 2025-06-05T23:25:51.1456978Z 0x90b5 16 W executorch_flatbuffer::ExtraTensorInfo::location() const 2025-06-05T23:25:51.1457503Z 0x90fd 16 W executorch_flatbuffer::Instruction::instr_args_type() const 2025-06-05T23:25:51.1458057Z 0x90a5 16 W flatbuffers::Table::GetOptionalFieldOffset(unsigned short) const 2025-06-05T23:25:51.1458561Z 0xa0e5 16 T executorch::runtime::Method::outputs_size() const 2025-06-05T23:25:51.1459009Z 0xa1a7 16 T executorch::runtime::Method::inputs_size() const 2025-06-05T23:25:51.1459413Z 0x291c8 16 b (anonymous namespace)::emergency_pool 2025-06-05T23:25:51.1459963Z 0x9293 16 W executorch::runtime::Result::~Result() 2025-06-05T23:25:51.1460488Z 0xc08d 16 T __cxxabiv1::__terminate(void (*)()) 2025-06-05T23:25:51.1460813Z 0x17319 14 T abort 2025-06-05T23:25:51.1461106Z 0xa721 14 T executorch::runtime::Program::num_methods() const 2025-06-05T23:25:51.1461569Z 0xa4b5 14 T executorch::runtime::MethodMeta::num_inputs() const 2025-06-05T23:25:51.1461991Z 0x1e8d8 13 R typeinfo name for std::type_info 2025-06-05T23:25:51.1462332Z 0x1e7d8 13 R typeinfo name for std::exception 2025-06-05T23:25:51.1462685Z 0x1e7a8 13 R typeinfo name for std::bad_alloc 2025-06-05T23:25:51.1462988Z 0x1f2c0 12 r p05.0 2025-06-05T23:25:51.1463208Z 0x178d1 12 T atexit 2025-06-05T23:25:51.1463419Z 0x20868 12 D __sglue 2025-06-05T23:25:51.1463662Z 0x14de1 12 T __sfp_lock_release 2025-06-05T23:25:51.1463922Z 0x14dd5 12 T __sfp_lock_acquire 2025-06-05T23:25:51.1464193Z 0x178c5 12 T __malloc_unlock 2025-06-05T23:25:51.1464452Z 0x178b9 12 T __malloc_lock 2025-06-05T23:25:51.1464697Z 0x18a55 12 T __locale_mb_cur_max 2025-06-05T23:25:51.1464963Z 0x173c5 12 T __errno 2025-06-05T23:25:51.1465183Z 0x191cd 12 T __env_unlock 2025-06-05T23:25:51.1465428Z 0x191c1 12 T __env_lock 2025-06-05T23:25:51.1465678Z 0x1e7b8 12 R typeinfo for std::bad_alloc 2025-06-05T23:25:51.1466009Z 0x1e804 12 R typeinfo for std::bad_exception 2025-06-05T23:25:51.1466380Z 0x1e8a0 12 R typeinfo for __cxxabiv1::__si_class_type_info 2025-06-05T23:25:51.1466798Z 0x1e914 12 R typeinfo for __cxxabiv1::__class_type_info 2025-06-05T23:25:51.1467140Z 0xc205 12 T std::get_new_handler() 2025-06-05T23:25:51.1467434Z 0xc0d1 12 T std::get_unexpected() 2025-06-05T23:25:51.1467721Z 0xc0c5 12 T std::get_terminate() 2025-06-05T23:25:51.1468114Z 0xade1 12 T executorch::runtime::internal::PteDataMap::get_num_keys() const 2025-06-05T23:25:51.1468918Z 0xc4a5 12 T __cxxabiv1::__class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const 2025-06-05T23:25:51.1469554Z 0x291e0 12 b (anonymous namespace)::eh_globals 2025-06-05T23:25:51.1469921Z 0xb609 12 T executorch::runtime::pal_free(void*) 2025-06-05T23:25:51.1470295Z 0xb5f1 12 T executorch::runtime::pal_current_ticks() 2025-06-05T23:25:51.1470713Z 0xb5fd 12 T executorch::runtime::pal_allocate(unsigned int) 2025-06-05T23:25:51.1471101Z 0x134bd 12 T _Unwind_DeleteException 2025-06-05T23:25:51.1471381Z 0x1e94c 12 r CSWTCH.176 2025-06-05T23:25:51.1471796Z 0xadd1 10 W executorch::runtime::internal::PteDataMap::get_metadata(char const*) const 2025-06-05T23:25:51.1472523Z 0xa5eb 10 t executorch::runtime::Result::CheckOk() const [clone .isra.0] 2025-06-05T23:25:51.1473346Z 0xa5f5 10 t executorch::runtime::Result::CheckOk() const [clone .isra.0] 2025-06-05T23:25:51.1474101Z 0x8809 10 t executorch::extension::(anonymous namespace)::FreeSegment(void*, void*, unsigned int) 2025-06-05T23:25:51.1474663Z 0x132ad 10 t _Unwind_decode_typeinfo_ptr.constprop.0 2025-06-05T23:25:51.1475023Z 0x140a5 10 T _Unwind_GetRegionStart 2025-06-05T23:25:51.1475300Z 0x18a71 8 T _localeconv_r 2025-06-05T23:25:51.1475552Z 0x16ce1 8 T __sclose 2025-06-05T23:25:51.1475783Z 0x12da1 8 T __cxa_get_globals_fast 2025-06-05T23:25:51.1476068Z 0x12da9 8 T __cxa_get_globals 2025-06-05T23:25:51.1476339Z 0x1e8e8 8 R typeinfo for std::type_info 2025-06-05T23:25:51.1476660Z 0x1e7e8 8 R typeinfo for std::exception 2025-06-05T23:25:51.1477017Z 0x1e85c 8 R typeinfo for __cxxabiv1::__foreign_exception 2025-06-05T23:25:51.1477424Z 0x1e830 8 R typeinfo for __cxxabiv1::__forced_unwind 2025-06-05T23:25:51.1477983Z 0xb949 8 T std::bad_alloc::what() const 2025-06-05T23:25:51.1478296Z 0xbab5 8 T std::bad_exception::what() const 2025-06-05T23:25:51.1478834Z 0xb845 8 T executorch::runtime::internal::reset_data_ptr(executorch::runtime::etensor::Tensor const&) 2025-06-05T23:25:51.1479770Z 0x92a3 8 W executorch::runtime::EValue** executorch::runtime::MemoryAllocator::allocateList(unsigned int, unsigned int) 2025-06-05T23:25:51.1480736Z 0xb619 8 t executorch::runtime::(anonymous namespace)::GetUInt64LE(unsigned char const*) 2025-06-05T23:25:51.1481279Z 0xc0ad 8 T __cxxabiv1::__unexpected(void (*)()) 2025-06-05T23:25:51.1481618Z 0x29138 8 b systemStartTime 2025-06-05T23:25:51.1481985Z 0xbab5 8 T transaction clone for std::bad_exception::what() const 2025-06-05T23:25:51.1482365Z 0x8011 6 W et_pal_abort 2025-06-05T23:25:51.1482628Z 0x1389d 6 W __aeabi_unwind_cpp_pr2 2025-06-05T23:25:51.1482908Z 0x13895 6 W __aeabi_unwind_cpp_pr1 2025-06-05T23:25:51.1483195Z 0x1388d 6 T __aeabi_unwind_cpp_pr0 2025-06-05T23:25:51.1483536Z 0x8cad 6 W executorch::runtime::MemoryAllocator::reset() 2025-06-05T23:25:51.1483940Z 0xb5d1 6 T executorch::runtime::runtime_abort() 2025-06-05T23:25:51.1484274Z 0x80f3 6 T _Unwind_GetTextRelBase 2025-06-05T23:25:51.1484572Z 0x80ed 6 T _Unwind_GetDataRelBase 2025-06-05T23:25:51.1484865Z 0x13d75 4 t unwind_UCB_from_context 2025-06-05T23:25:51.1485139Z 0x29370 4 b initial_env 2025-06-05T23:25:51.1485388Z 0x29508 4 b heap_end.0 2025-06-05T23:25:51.1485619Z 0xb779 4 W et_pal_free 2025-06-05T23:25:51.1485863Z 0xb775 4 W et_pal_allocate 2025-06-05T23:25:51.1486102Z 0x29374 4 B errno 2025-06-05T23:25:51.1486320Z 0x20df8 4 D environ 2025-06-05T23:25:51.1486544Z 0x178dd 4 T _user_strerror 2025-06-05T23:25:51.1486799Z 0x20720 4 D _impure_ptr 2025-06-05T23:25:51.1487029Z 0x1b395 4 T _getpid_r 2025-06-05T23:25:51.1487274Z 0x29324 4 B __stdio_exit_handler 2025-06-05T23:25:51.1487543Z 0x20878 4 D __malloc_trim_threshold 2025-06-05T23:25:51.1487829Z 0x29358 4 B __malloc_top_pad 2025-06-05T23:25:51.1488092Z 0x20874 4 D __malloc_sbrk_base 2025-06-05T23:25:51.1488351Z 0x29350 4 B __malloc_max_total_mem 2025-06-05T23:25:51.1488679Z 0x29354 4 B __malloc_max_sbrked_mem 2025-06-05T23:25:51.1488959Z 0x20c88 4 D __atexit_recursive_mutex 2025-06-05T23:25:51.1489280Z 0x2935c 4 B __atexit 2025-06-05T23:25:51.1489540Z 0xb879 4 T operator delete(void*, unsigned int) 2025-06-05T23:25:51.1489915Z 0xb875 4 T operator delete(void*, std::align_val_t) 2025-06-05T23:25:51.1490248Z 0xb981 4 T operator delete(void*) 2025-06-05T23:25:51.1490570Z 0xc331 4 T std::type_info::__is_function_p() const 2025-06-05T23:25:51.1490937Z 0xc331 4 T std::type_info::__is_pointer_p() const 2025-06-05T23:25:51.1728261Z 0xaddb 4 W executorch::runtime::internal::PteDataMap::load_data_into(char const*, void*, unsigned int) const 2025-06-05T23:25:51.1729442Z 0x8ca9 4 W executorch::runtime::MemoryAllocator::size() const 2025-06-05T23:25:51.1730288Z 0x8ca5 4 W executorch::runtime::MemoryAllocator::base_address() const 2025-06-05T23:25:51.1731163Z 0xa4ad 4 T executorch::runtime::TensorInfo::is_memory_planned() const 2025-06-05T23:25:51.1731935Z 0x291d8 4 b (anonymous namespace)::__new_handler 2025-06-05T23:25:51.1732615Z 0xb5d7 4 T executorch::runtime::internal::get_log_timestamp() 2025-06-05T23:25:51.1733453Z 0x9211 4 T executorch::runtime::Method::mutable_value(unsigned int) 2025-06-05T23:25:51.1734355Z 0x1e793 4 V executorch::runtime::ExtendedHeader::kMagic 2025-06-05T23:25:51.1735124Z 0xb615 4 T executorch::runtime::runtime_init() 2025-06-05T23:25:51.1736036Z 0x29140 4 b executorch::runtime::(anonymous namespace)::num_registered_backends 2025-06-05T23:25:51.1736965Z 0x21420 4 b executorch::runtime::(anonymous namespace)::num_registered_kernels 2025-06-05T23:25:51.1738095Z 0xa4b1 4 T executorch::runtime::MethodMeta::MethodMeta(executorch_flatbuffer::ExecutionPlan const*) 2025-06-05T23:25:51.1739069Z 0x20718 4 D __cxxabiv1::__unexpected_handler 2025-06-05T23:25:51.1739653Z 0x2071c 4 D __cxxabiv1::__terminate_handler 2025-06-05T23:25:51.1740248Z 0xbab1 2 T std::bad_exception::~bad_exception() 2025-06-05T23:25:51.1741036Z 0xaddf 2 W executorch::runtime::internal::PteDataMap::~PteDataMap() 2025-06-05T23:25:51.1741979Z 0x8cb5 2 W executorch::runtime::MemoryAllocator::~MemoryAllocator() 2025-06-05T23:25:51.1742658Z 0x1ce4d 2 T _exit 2025-06-05T23:25:51.1743094Z 0x18a51 2 T __retarget_lock_release_recursive 2025-06-05T23:25:51.1743887Z 0x18a45 2 T __retarget_lock_init_recursive 2025-06-05T23:25:51.1744560Z 0x18a49 2 T __retarget_lock_close_recursive 2025-06-05T23:25:51.1745141Z 0x18a4d 2 T __retarget_lock_acquire_recursive 2025-06-05T23:25:51.1745712Z 0x140c5 2 W __aeabi_ldiv0 2025-06-05T23:25:51.1746133Z 0x140c5 2 W __aeabi_idiv0 2025-06-05T23:25:51.1746619Z 0xc32d 2 T std::type_info::~type_info() 2025-06-05T23:25:51.1747200Z 0xbaad 2 T std::exception::~exception() 2025-06-05T23:25:51.1748765Z 0xb5db 2 T executorch::runtime::internal::vlogf(executorch::runtime::LogLevel, unsigned long long, char const*, char const*, unsigned int, char const*, std::__va_list) 2025-06-05T23:25:51.1750423Z 0x91f9 2 T executorch::runtime::Method::log_outputs() 2025-06-05T23:25:51.1751131Z 0x132b9 2 t _Unwind_DebugHook 2025-06-05T23:25:51.1751681Z 0x134b9 2 T _Unwind_Complete 2025-06-05T23:25:51.1752209Z 0x2936c 1 B __lock___sfp_recursive_mutex 2025-06-05T23:25:51.1752795Z 0x29364 1 B __lock___malloc_recursive_mutex 2025-06-05T23:25:51.1753432Z 0x29360 1 B __lock___env_recursive_mutex 2025-06-05T23:25:51.1754039Z 0x29368 1 B __lock___atexit_recursive_mutex 2025-06-05T23:25:51.1754755Z 0x291dc 1 b __gnu_cxx::__verbose_terminate_handler()::terminating 2025-06-05T23:25:51.1755416Z 0x29130 1 b initialized 2025-06-05T23:25:51.1755827Z ----- 2025-06-05T23:25:51.1756174Z > Total bytes: 124367 2025-06-05T23:25:51.1756618Z Counted: 514/514, 100.00% (filter: 'All') 2025-06-05T23:25:51.1757118Z ===== 2025-06-05T23:25:51.1757315Z 2025-06-05T23:25:51.1757870Z + python .github/scripts/run_nm.py -e cmake-out/test/size_test -f executorch -p arm-none-eabi- 2025-06-05T23:25:51.1758821Z Elf: cmake-out/test/size_test 2025-06-05T23:25:51.1759154Z 2025-06-05T23:25:51.1759472Z Address Size Type Name 2025-06-05T23:25:51.1760203Z 0x21430 32000 b executorch::runtime::(anonymous namespace)::registered_kernels_data 2025-06-05T23:25:51.1761511Z 0x991e 908 T executorch::runtime::Method::parse_values(executorch::runtime::NamedDataMap const*) 2025-06-05T23:25:51.1763124Z 0x9caa 814 T executorch::runtime::Method::init(executorch_flatbuffer::ExecutionPlan*, executorch::runtime::NamedDataMap const*) 2025-06-05T23:25:51.1765055Z 0xaaf0 736 T executorch::runtime::Program::load(executorch::runtime::DataLoader*, executorch::runtime::Program::Verification) 2025-06-05T23:25:51.1768219Z 0xb268 424 T executorch::runtime::deserialization::parseTensor(executorch::runtime::Program const*, executorch::runtime::MemoryManager*, executorch_flatbuffer::Tensor const*, executorch::runtime::NamedDataMap const*, executorch::runtime::Span) 2025-06-05T23:25:51.1771120Z 0xa1d8 408 T executorch::runtime::Method::set_input(executorch::runtime::EValue const&, unsigned int) 2025-06-05T23:25:51.1772386Z 0x8b10 404 T executorch::extension::FileDataLoader::from(char const*, unsigned int) 2025-06-05T23:25:51.1773395Z 0x9520 398 T executorch::runtime::Method::execute_instruction() 2025-06-05T23:25:51.1776362Z 0xb0e6 386 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-06-05T23:25:51.1780036Z 0x8860 356 T executorch::extension::FileDataLoader::load_into(unsigned int, unsigned int, executorch::runtime::DataLoader::SegmentInfo const&, void*) const 2025-06-05T23:25:51.1782788Z 0x93d8 328 T executorch::runtime::Method::resolve_operator(long, void (**)(executorch::runtime::KernelRuntimeContext&, executorch::runtime::EValue**), unsigned int, executorch::runtime::Span, unsigned int) 2025-06-05T23:25:51.1786195Z 0x97aa 316 W executorch::runtime::BackendDelegate::Init(executorch_flatbuffer::BackendDelegate const&, executorch::runtime::Program const*, executorch::runtime::BackendInitContext&, executorch::runtime::BackendDelegate*) 2025-06-05T23:25:51.1788824Z 0x92bc 282 T executorch::runtime::Method::parse_external_constants(executorch::runtime::NamedDataMap const*) 2025-06-05T23:25:51.1791452Z 0x9fd8 268 T executorch::runtime::Method::load(executorch_flatbuffer::ExecutionPlan*, executorch::runtime::Program const*, executorch::runtime::MemoryManager*, executorch::runtime::EventTracer*, executorch::runtime::NamedDataMap const*) 2025-06-05T23:25:51.1794197Z 0x89c4 248 T executorch::extension::FileDataLoader::load(unsigned int, unsigned int, executorch::runtime::DataLoader::SegmentInfo const&) const 2025-06-05T23:25:51.1795778Z 0xa518 210 T executorch::runtime::MethodMeta::input_tensor_meta(unsigned int) const 2025-06-05T23:25:51.1797227Z 0xa9be 198 T executorch::runtime::Program::load_mutable_subsegment_into(unsigned int, unsigned int, unsigned int, void*) const 2025-06-05T23:25:51.1799105Z 0xb470 192 T executorch::runtime::internal::make_kernel_key_string(executorch::runtime::Span, char*, unsigned int) 2025-06-05T23:25:51.1800805Z 0xae3e 186 T executorch::runtime::internal::PteDataMap::get_data(char const*) const 2025-06-05T23:25:51.1802878Z 0xaf8c 166 T executorch::runtime::deserialization::parseTensorList(flatbuffers::Vector const*, executorch::runtime::EValue*, unsigned int, executorch::runtime::MemoryManager*) 2025-06-05T23:25:51.1805293Z 0xb530 160 T executorch::runtime::get_op_function_from_registry(char const*, executorch::runtime::Span) 2025-06-05T23:25:51.1807430Z 0x9710 154 W executorch::runtime::BackendDelegate::GetProcessedData(executorch_flatbuffer::BackendDelegate const&, executorch::runtime::Program const*) 2025-06-05T23:25:51.1809228Z 0xa85c 148 T executorch::runtime::Program::get_constant_buffer_data(unsigned int, unsigned int) const 2025-06-05T23:25:51.1810679Z 0xa116 144 T executorch::runtime::Method::get_outputs(executorch::runtime::EValue*, unsigned int) 2025-06-05T23:25:51.1811769Z 0x8cc8 144 W executorch::runtime::MemoryAllocator::allocate(unsigned int, unsigned int) 2025-06-05T23:25:51.1813770Z 0xa41c 144 T executorch::runtime::TensorInfo::TensorInfo(executorch::runtime::Span, executorch::runtime::Span, executorch::runtime::etensor::ScalarType, bool, std::basic_string_view >) 2025-06-05T23:25:51.1816173Z 0xa774 140 T executorch::runtime::Program::method_meta(char const*) const 2025-06-05T23:25:51.1816881Z 0xb6f4 128 W et_pal_emit_log_message 2025-06-05T23:25:51.1817637Z 0xb032 128 T executorch::runtime::deserialization::validateTensorLayout(executorch_flatbuffer::Tensor const*, executorch::runtime::TensorLayout const&) 2025-06-05T23:25:51.1818606Z 0x29144 128 b executorch::runtime::(anonymous namespace)::registered_backends 2025-06-05T23:25:51.1819336Z 0x8ece 126 T executorch::runtime::etensor::TensorImpl::internal_resize_contiguous(executorch::runtime::ArrayRef) 2025-06-05T23:25:51.1820056Z 0x916c 120 T executorch::runtime::Method::get_num_external_constants() 2025-06-05T23:25:51.1820522Z 0x9214 108 T executorch::runtime::Method::~Method() 2025-06-05T23:25:51.1821015Z 0xb620 108 T executorch::runtime::ExtendedHeader::Parse(void const*, unsigned int) 2025-06-05T23:25:51.1821753Z 0xa95a 100 T executorch::runtime::Program::LoadSegment(executorch::runtime::DataLoader::SegmentInfo const&) const 2025-06-05T23:25:51.1822366Z 0x96ae 98 T executorch::runtime::Method::execute() 2025-06-05T23:25:51.1823355Z 0xaf2c 96 t executorch::runtime::deserialization::(anonymous namespace)::getMemPlannedPtr(executorch_flatbuffer::AllocationDetails const*, unsigned int, executorch::runtime::HierarchicalAllocator*) 2025-06-05T23:25:51.1824727Z 0x8e70 94 W executorch::runtime::Error executorch::runtime::dim_order_to_stride(long const*, unsigned char const*, unsigned int, long*) 2025-06-05T23:25:51.1826062Z 0xa800 92 T executorch::runtime::Program::load_method(char const*, executorch::runtime::MemoryManager*, executorch::runtime::EventTracer*, executorch::runtime::NamedDataMap const*) const 2025-06-05T23:25:51.1827172Z 0xa4c2 86 T executorch::runtime::MethodMeta::input_tag(unsigned int) const 2025-06-05T23:25:51.1827677Z 0x8abc 84 T executorch::extension::FileDataLoader::size() const 2025-06-05T23:25:51.1828344Z 0xa906 84 T executorch::runtime::Program::get_backend_delegate_data(unsigned int, void const**, unsigned int*) const 2025-06-05T23:25:51.1829204Z 0x8d94 82 T executorch::runtime::BoxedEvalueList >::get() const 2025-06-05T23:25:51.1830104Z 0xa69a 74 t executorch::runtime::(anonymous namespace)::get_execution_plan(executorch_flatbuffer::Program const*, char const*) 2025-06-05T23:25:51.1830861Z 0xa72e 70 T executorch::runtime::Program::get_method_name(unsigned int) const 2025-06-05T23:25:51.1831334Z 0x8fd0 70 W executorch::runtime::EValue::destroy() 2025-06-05T23:25:51.1831862Z 0xadfa 68 T executorch::runtime::internal::PteDataMap::get_key(unsigned int) const 2025-06-05T23:25:51.1832715Z 0xb802 66 T executorch::runtime::internal::copy_tensor_data(executorch::runtime::etensor::Tensor const&, executorch::runtime::etensor::Tensor const&) 2025-06-05T23:25:51.1833486Z 0xb77c 64 T executorch::runtime::get_backend_class(char const*) 2025-06-05T23:25:51.1834207Z 0xa3b8 64 t executorch::runtime::(anonymous namespace)::get_tag(executorch_flatbuffer::EValue const*, unsigned int) [clone .isra.0] 2025-06-05T23:25:51.1835388Z 0x8e14 62 T executorch::runtime::etensor::TensorImpl::TensorImpl(executorch::runtime::etensor::ScalarType, int, long*, void*, unsigned char*, long*, executorch::runtime::TensorShapeDynamism) 2025-06-05T23:25:51.1836443Z 0x904e 60 t executorch::runtime::EValue::operator=(executorch::runtime::EValue const&) & [clone .isra.0] 2025-06-05T23:25:51.1837231Z 0x8d58 60 t executorch::runtime::Result::CheckOk() const [clone .part.0] 2025-06-05T23:25:51.1838005Z 0x8d58 60 t executorch::runtime::Result::CheckOk() const [clone .part.0] 2025-06-05T23:25:51.1838760Z 0xb410 60 t executorch::runtime::(anonymous namespace)::copy_char_as_number_to_buf(int, char*, unsigned int) 2025-06-05T23:25:51.1839559Z 0x8f4c 58 W executorch::runtime::internal::PlatformMemoryAllocator::allocate(unsigned int, unsigned int) 2025-06-05T23:25:51.1840304Z 0x9016 56 t executorch::runtime::EValue::operator=(executorch::runtime::EValue&&) & [clone .isra.0] 2025-06-05T23:25:51.1841068Z 0xaab8 56 W executorch::runtime::Result::Result(executorch::runtime::Program&&) 2025-06-05T23:25:51.1842150Z 0xaa84 52 W std::_Optional_base::_Optional_base(std::_Optional_base&&) 2025-06-05T23:25:51.1844001Z 0xaef8 52 T executorch::runtime::internal::PteDataMap::create(executorch::runtime::DataLoader*, unsigned int, flatbuffers::Vector, unsigned long> const*, flatbuffers::Vector, unsigned long> const*) 2025-06-05T23:25:51.1845757Z 0xb0b2 52 T executorch::runtime::deserialization::get_data_by_key(char const*, executorch::runtime::Span) 2025-06-05T23:25:51.1846589Z 0x8de6 46 T executorch::runtime::etensor::compute_numel(long const*, int) 2025-06-05T23:25:51.1846998Z 0xb68c 44 W et_pal_init 2025-06-05T23:25:51.1847654Z 0xb7d8 42 T executorch::runtime::internal::share_tensor_data(executorch::runtime::etensor::Tensor const&, executorch::runtime::etensor::Tensor const&) 2025-06-05T23:25:51.1848416Z 0x98e6 38 T executorch::runtime::Method::method_meta() const 2025-06-05T23:25:51.1849163Z 0xb84c 38 T executorch::runtime::internal::resize_tensor_impl(executorch::runtime::etensor::TensorImpl*, executorch::runtime::ArrayRef) 2025-06-05T23:25:51.1849855Z 0xb6b8 36 W et_pal_current_ticks 2025-06-05T23:25:51.1850218Z 0x206b4 36 D vtable for executorch::runtime::internal::PteDataMap 2025-06-05T23:25:51.1850724Z 0xa3f8 34 W executorch_flatbuffer::EValue::val_as_Tensor() const 2025-06-05T23:25:51.1851347Z 0xb44c 34 W executorch::runtime::KernelKey::equals(executorch::runtime::KernelKey const&) const 2025-06-05T23:25:51.1851987Z 0xa0f4 34 T executorch::runtime::Method::get_output_index(unsigned int) const 2025-06-05T23:25:51.1852538Z 0xa1b6 34 T executorch::runtime::Method::get_input_index(unsigned int) const 2025-06-05T23:25:51.1853386Z 0x883c 34 W executorch::runtime::internal::logf(executorch::runtime::LogLevel, unsigned long long, char const*, char const*, unsigned int, char const*, ...) 2025-06-05T23:25:51.1854215Z 0x87e8 32 T executorch::extension::FileDataLoader::~FileDataLoader() 2025-06-05T23:25:51.1854755Z 0x20694 32 V vtable for executorch::runtime::internal::PlatformMemoryAllocator 2025-06-05T23:25:51.1855356Z 0x1e6ac 32 V vtable for executorch::runtime::MemoryAllocator 2025-06-05T23:25:51.1855821Z 0x206f8 32 d executorch::runtime::(anonymous namespace)::pal_impl 2025-06-05T23:25:51.1856297Z 0x1e690 28 R vtable for executorch::extension::FileDataLoader 2025-06-05T23:25:51.1856767Z 0x8e54 28 T executorch::runtime::etensor::TensorImpl::nbytes() const 2025-06-05T23:25:51.1857410Z 0xa5fe 28 W executorch::runtime::FreeableBuffer::FreeableBuffer(executorch::runtime::FreeableBuffer&&) 2025-06-05T23:25:51.1858249Z 0xb7bc 28 T executorch::runtime::get_dim_order(executorch::runtime::etensor::Tensor const&, unsigned char*, unsigned int) 2025-06-05T23:25:51.1858910Z 0xa62e 26 W executorch_flatbuffer::DataSegment::offset() const 2025-06-05T23:25:51.1859361Z 0xa648 26 W executorch_flatbuffer::DataSegment::size() const 2025-06-05T23:25:51.1859780Z 0x908a 26 W executorch::runtime::FreeableBuffer::Free() 2025-06-05T23:25:51.1860187Z 0xb6dc 24 W et_pal_ticks_to_ns_multiplier 2025-06-05T23:25:51.1860597Z 0xa8f0 22 T executorch::runtime::Program::get_named_data_map() const 2025-06-05T23:25:51.1861185Z 0x91fa 22 t executorch::runtime::Method::get_value(unsigned int) const [clone .localalias] 2025-06-05T23:25:51.1861773Z 0x91fa 22 T executorch::runtime::Method::get_value(unsigned int) const 2025-06-05T23:25:51.1862304Z 0x8f86 22 W executorch::runtime::internal::PlatformMemoryAllocator::reset() 2025-06-05T23:25:51.1862954Z 0x8fbc 20 W executorch::runtime::internal::PlatformMemoryAllocator::~PlatformMemoryAllocator() 2025-06-05T23:25:51.1863537Z 0xa6f8 20 W executorch_flatbuffer::Program::segments() const 2025-06-05T23:25:51.1864012Z 0xa70c 20 W executorch_flatbuffer::Program::constant_segment() const 2025-06-05T23:25:51.1864514Z 0xa6e4 20 W executorch_flatbuffer::Program::constant_buffer() const 2025-06-05T23:25:51.1864989Z 0xa686 20 W executorch_flatbuffer::Program::execution_plan() const 2025-06-05T23:25:51.1865455Z 0xa380 20 W executorch_flatbuffer::Tensor::dim_order() const 2025-06-05T23:25:51.1865914Z 0x90c4 20 W executorch_flatbuffer::Tensor::extra_tensor_info() const 2025-06-05T23:25:51.1866406Z 0xa3a4 20 W executorch_flatbuffer::Tensor::allocation_info() const 2025-06-05T23:25:51.1866840Z 0x90e8 20 W executorch_flatbuffer::EValue::val() const 2025-06-05T23:25:51.1867270Z 0x9144 20 W executorch_flatbuffer::Chain::instructions() const 2025-06-05T23:25:51.1867757Z 0xa672 20 W executorch_flatbuffer::SubsegmentOffsets::offsets() const 2025-06-05T23:25:51.1868273Z 0x9130 20 W executorch_flatbuffer::BackendDelegate::compile_specs() const 2025-06-05T23:25:51.1868788Z 0x9158 20 W executorch_flatbuffer::ExecutionPlan::values() const 2025-06-05T23:25:51.1869243Z 0xa61a 20 W executorch_flatbuffer::ExecutionPlan::name() const 2025-06-05T23:25:51.1869713Z 0x910c 20 W executorch_flatbuffer::Instruction::instr_args() const 2025-06-05T23:25:51.1870124Z 0xb5dc 20 T executorch::runtime::pal_abort() 2025-06-05T23:25:51.1870517Z 0x91e4 20 T executorch::runtime::Method::reset_execution() 2025-06-05T23:25:51.1870973Z 0xa394 16 W executorch_flatbuffer::Tensor::data_buffer_idx() const 2025-06-05T23:25:51.1871433Z 0xa370 16 W executorch_flatbuffer::Tensor::scalar_type() const 2025-06-05T23:25:51.1871922Z 0x90d8 16 W executorch_flatbuffer::EValue::val_type() const 2025-06-05T23:25:51.1872453Z 0x9120 16 W executorch_flatbuffer::BackendDelegateDataReference::index() const 2025-06-05T23:25:51.1873036Z 0xa662 16 W executorch_flatbuffer::SubsegmentOffsets::segment_index() const 2025-06-05T23:25:51.1873559Z 0x90b4 16 W executorch_flatbuffer::ExtraTensorInfo::location() const 2025-06-05T23:25:51.1874076Z 0x90fc 16 W executorch_flatbuffer::Instruction::instr_args_type() const 2025-06-05T23:25:51.1874570Z 0xa0e4 16 T executorch::runtime::Method::outputs_size() const 2025-06-05T23:25:51.1875005Z 0xa1a6 16 T executorch::runtime::Method::inputs_size() const 2025-06-05T23:25:51.1875544Z 0x9292 16 W executorch::runtime::Result::~Result() 2025-06-05T23:25:51.1876080Z 0xa720 14 T executorch::runtime::Program::num_methods() const 2025-06-05T23:25:51.1876537Z 0xa4b4 14 T executorch::runtime::MethodMeta::num_inputs() const 2025-06-05T23:25:51.1877030Z 0xade0 12 T executorch::runtime::internal::PteDataMap::get_num_keys() const 2025-06-05T23:25:51.1877499Z 0xb608 12 T executorch::runtime::pal_free(void*) 2025-06-05T23:25:51.1878073Z 0xb5f0 12 T executorch::runtime::pal_current_ticks() 2025-06-05T23:25:51.1878484Z 0xb5fc 12 T executorch::runtime::pal_allocate(unsigned int) 2025-06-05T23:25:51.1879027Z 0xadd0 10 W executorch::runtime::internal::PteDataMap::get_metadata(char const*) const 2025-06-05T23:25:51.1879757Z 0xa5ea 10 t executorch::runtime::Result::CheckOk() const [clone .isra.0] 2025-06-05T23:25:51.1880586Z 0xa5f4 10 t executorch::runtime::Result::CheckOk() const [clone .isra.0] 2025-06-05T23:25:51.1881343Z 0x8808 10 t executorch::extension::(anonymous namespace)::FreeSegment(void*, void*, unsigned int) 2025-06-05T23:25:51.1882181Z 0xb844 8 T executorch::runtime::internal::reset_data_ptr(executorch::runtime::etensor::Tensor const&) 2025-06-05T23:25:51.1883130Z 0x92a2 8 W executorch::runtime::EValue** executorch::runtime::MemoryAllocator::allocateList(unsigned int, unsigned int) 2025-06-05T23:25:51.1884013Z 0xb618 8 t executorch::runtime::(anonymous namespace)::GetUInt64LE(unsigned char const*) 2025-06-05T23:25:51.1884494Z 0x8010 6 W et_pal_abort 2025-06-05T23:25:51.1884804Z 0x8cac 6 W executorch::runtime::MemoryAllocator::reset() 2025-06-05T23:25:51.1885209Z 0xb5d0 6 T executorch::runtime::runtime_abort() 2025-06-05T23:25:51.1885540Z 0xb778 4 W et_pal_free 2025-06-05T23:25:51.1885772Z 0xb774 4 W et_pal_allocate 2025-06-05T23:25:51.1886284Z 0xadda 4 W executorch::runtime::internal::PteDataMap::load_data_into(char const*, void*, unsigned int) const 2025-06-05T23:25:51.1886910Z 0x8ca8 4 W executorch::runtime::MemoryAllocator::size() const 2025-06-05T23:25:51.1887404Z 0x8ca4 4 W executorch::runtime::MemoryAllocator::base_address() const 2025-06-05T23:25:51.1887906Z 0xa4ac 4 T executorch::runtime::TensorInfo::is_memory_planned() const 2025-06-05T23:25:51.1888398Z 0xb5d6 4 T executorch::runtime::internal::get_log_timestamp() 2025-06-05T23:25:51.1888877Z 0x9210 4 T executorch::runtime::Method::mutable_value(unsigned int) 2025-06-05T23:25:51.1889321Z 0x1e793 4 V executorch::runtime::ExtendedHeader::kMagic 2025-06-05T23:25:51.1889709Z 0xb614 4 T executorch::runtime::runtime_init() 2025-06-05T23:25:51.1890160Z 0x29140 4 b executorch::runtime::(anonymous namespace)::num_registered_backends 2025-06-05T23:25:51.1890729Z 0x21420 4 b executorch::runtime::(anonymous namespace)::num_registered_kernels 2025-06-05T23:25:51.2239537Z 0xa4b0 4 T executorch::runtime::MethodMeta::MethodMeta(executorch_flatbuffer::ExecutionPlan const*) 2025-06-05T23:25:51.2240602Z 0xadde 2 W executorch::runtime::internal::PteDataMap::~PteDataMap() 2025-06-05T23:25:51.2241134Z 0x8cb4 2 W executorch::runtime::MemoryAllocator::~MemoryAllocator() 2025-06-05T23:25:51.2242117Z 0xb5da 2 T executorch::runtime::internal::vlogf(executorch::runtime::LogLevel, unsigned long long, char const*, char const*, unsigned int, char const*, std::__va_list) 2025-06-05T23:25:51.2242980Z 0x91f8 2 T executorch::runtime::Method::log_outputs() 2025-06-05T23:25:51.2243315Z ----- 2025-06-05T23:25:51.2243508Z > Total bytes: 44626 2025-06-05T23:25:51.2243777Z Counted: 149/514, 28.99% (filter: 'ExecuTorch') 2025-06-05T23:25:51.2244069Z ===== 2025-06-05T23:25:51.2244187Z 2025-06-05T23:25:51.2244514Z + python .github/scripts/run_nm.py -e cmake-out/test/size_test -f executorch_text -p arm-none-eabi- 2025-06-05T23:25:51.2245050Z Elf: cmake-out/test/size_test 2025-06-05T23:25:51.2245241Z 2025-06-05T23:25:51.2245331Z Address Size Type Name 2025-06-05T23:25:51.2245793Z 0x991e 908 T executorch::runtime::Method::parse_values(executorch::runtime::NamedDataMap const*) 2025-06-05T23:25:51.2246626Z 0x9caa 814 T executorch::runtime::Method::init(executorch_flatbuffer::ExecutionPlan*, executorch::runtime::NamedDataMap const*) 2025-06-05T23:25:51.2247569Z 0xaaf0 736 T executorch::runtime::Program::load(executorch::runtime::DataLoader*, executorch::runtime::Program::Verification) 2025-06-05T23:25:51.2249156Z 0xb268 424 T executorch::runtime::deserialization::parseTensor(executorch::runtime::Program const*, executorch::runtime::MemoryManager*, executorch_flatbuffer::Tensor const*, executorch::runtime::NamedDataMap const*, executorch::runtime::Span) 2025-06-05T23:25:51.2250656Z 0xa1d8 408 T executorch::runtime::Method::set_input(executorch::runtime::EValue const&, unsigned int) 2025-06-05T23:25:51.2251332Z 0x8b10 404 T executorch::extension::FileDataLoader::from(char const*, unsigned int) 2025-06-05T23:25:51.2251867Z 0x9520 398 T executorch::runtime::Method::execute_instruction() 2025-06-05T23:25:51.2253448Z 0xb0e6 386 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-06-05T23:25:51.2255359Z 0x8860 356 T executorch::extension::FileDataLoader::load_into(unsigned int, unsigned int, executorch::runtime::DataLoader::SegmentInfo const&, void*) const 2025-06-05T23:25:51.2256802Z 0x93d8 328 T executorch::runtime::Method::resolve_operator(long, void (**)(executorch::runtime::KernelRuntimeContext&, executorch::runtime::EValue**), unsigned int, executorch::runtime::Span, unsigned int) 2025-06-05T23:25:51.2258072Z 0x92bc 282 T executorch::runtime::Method::parse_external_constants(executorch::runtime::NamedDataMap const*) 2025-06-05T23:25:51.2259378Z 0x9fd8 268 T executorch::runtime::Method::load(executorch_flatbuffer::ExecutionPlan*, executorch::runtime::Program const*, executorch::runtime::MemoryManager*, executorch::runtime::EventTracer*, executorch::runtime::NamedDataMap const*) 2025-06-05T23:25:51.2260806Z 0x89c4 248 T executorch::extension::FileDataLoader::load(unsigned int, unsigned int, executorch::runtime::DataLoader::SegmentInfo const&) const 2025-06-05T23:25:51.2261662Z 0xa518 210 T executorch::runtime::MethodMeta::input_tensor_meta(unsigned int) const 2025-06-05T23:25:51.2262432Z 0xa9be 198 T executorch::runtime::Program::load_mutable_subsegment_into(unsigned int, unsigned int, unsigned int, void*) const 2025-06-05T23:25:51.2263474Z 0xb470 192 T executorch::runtime::internal::make_kernel_key_string(executorch::runtime::Span, char*, unsigned int) 2025-06-05T23:25:51.2264343Z 0xae3e 186 T executorch::runtime::internal::PteDataMap::get_data(char const*) const 2025-06-05T23:25:51.2265392Z 0xaf8c 166 T executorch::runtime::deserialization::parseTensorList(flatbuffers::Vector const*, executorch::runtime::EValue*, unsigned int, executorch::runtime::MemoryManager*) 2025-06-05T23:25:51.2266663Z 0xb530 160 T executorch::runtime::get_op_function_from_registry(char const*, executorch::runtime::Span) 2025-06-05T23:25:51.2267584Z 0xa85c 148 T executorch::runtime::Program::get_constant_buffer_data(unsigned int, unsigned int) const 2025-06-05T23:25:51.2268316Z 0xa116 144 T executorch::runtime::Method::get_outputs(executorch::runtime::EValue*, unsigned int) 2025-06-05T23:25:51.2269564Z 0xa41c 144 T executorch::runtime::TensorInfo::TensorInfo(executorch::runtime::Span, executorch::runtime::Span, executorch::runtime::etensor::ScalarType, bool, std::basic_string_view >) 2025-06-05T23:25:51.2270723Z 0xa774 140 T executorch::runtime::Program::method_meta(char const*) const 2025-06-05T23:25:51.2271597Z 0xb032 128 T executorch::runtime::deserialization::validateTensorLayout(executorch_flatbuffer::Tensor const*, executorch::runtime::TensorLayout const&) 2025-06-05T23:25:51.2272651Z 0x8ece 126 T executorch::runtime::etensor::TensorImpl::internal_resize_contiguous(executorch::runtime::ArrayRef) 2025-06-05T23:25:51.2273347Z 0x916c 120 T executorch::runtime::Method::get_num_external_constants() 2025-06-05T23:25:51.2273806Z 0x9214 108 T executorch::runtime::Method::~Method() 2025-06-05T23:25:51.2274286Z 0xb620 108 T executorch::runtime::ExtendedHeader::Parse(void const*, unsigned int) 2025-06-05T23:25:51.2275020Z 0xa95a 100 T executorch::runtime::Program::LoadSegment(executorch::runtime::DataLoader::SegmentInfo const&) const 2025-06-05T23:25:51.2275639Z 0x96ae 98 T executorch::runtime::Method::execute() 2025-06-05T23:25:51.2276611Z 0xaf2c 96 t executorch::runtime::deserialization::(anonymous namespace)::getMemPlannedPtr(executorch_flatbuffer::AllocationDetails const*, unsigned int, executorch::runtime::HierarchicalAllocator*) 2025-06-05T23:25:51.2278281Z 0xa800 92 T executorch::runtime::Program::load_method(char const*, executorch::runtime::MemoryManager*, executorch::runtime::EventTracer*, executorch::runtime::NamedDataMap const*) const 2025-06-05T23:25:51.2279348Z 0xa4c2 86 T executorch::runtime::MethodMeta::input_tag(unsigned int) const 2025-06-05T23:25:51.2279853Z 0x8abc 84 T executorch::extension::FileDataLoader::size() const 2025-06-05T23:25:51.2280515Z 0xa906 84 T executorch::runtime::Program::get_backend_delegate_data(unsigned int, void const**, unsigned int*) const 2025-06-05T23:25:51.2281365Z 0x8d94 82 T executorch::runtime::BoxedEvalueList >::get() const 2025-06-05T23:25:51.2282271Z 0xa69a 74 t executorch::runtime::(anonymous namespace)::get_execution_plan(executorch_flatbuffer::Program const*, char const*) 2025-06-05T23:25:51.2283019Z 0xa72e 70 T executorch::runtime::Program::get_method_name(unsigned int) const 2025-06-05T23:25:51.2283592Z 0xadfa 68 T executorch::runtime::internal::PteDataMap::get_key(unsigned int) const 2025-06-05T23:25:51.2284447Z 0xb802 66 T executorch::runtime::internal::copy_tensor_data(executorch::runtime::etensor::Tensor const&, executorch::runtime::etensor::Tensor const&) 2025-06-05T23:25:51.2285214Z 0xb77c 64 T executorch::runtime::get_backend_class(char const*) 2025-06-05T23:25:51.2285936Z 0xa3b8 64 t executorch::runtime::(anonymous namespace)::get_tag(executorch_flatbuffer::EValue const*, unsigned int) [clone .isra.0] 2025-06-05T23:25:51.2287119Z 0x8e14 62 T executorch::runtime::etensor::TensorImpl::TensorImpl(executorch::runtime::etensor::ScalarType, int, long*, void*, unsigned char*, long*, executorch::runtime::TensorShapeDynamism) 2025-06-05T23:25:51.2288181Z 0x904e 60 t executorch::runtime::EValue::operator=(executorch::runtime::EValue const&) & [clone .isra.0] 2025-06-05T23:25:51.2288932Z 0x8d58 60 t executorch::runtime::Result::CheckOk() const [clone .part.0] 2025-06-05T23:25:51.2289661Z 0x8d58 60 t executorch::runtime::Result::CheckOk() const [clone .part.0] 2025-06-05T23:25:51.2290429Z 0xb410 60 t executorch::runtime::(anonymous namespace)::copy_char_as_number_to_buf(int, char*, unsigned int) 2025-06-05T23:25:51.2291245Z 0x9016 56 t executorch::runtime::EValue::operator=(executorch::runtime::EValue&&) & [clone .isra.0] 2025-06-05T23:25:51.2292823Z 0xaef8 52 T executorch::runtime::internal::PteDataMap::create(executorch::runtime::DataLoader*, unsigned int, flatbuffers::Vector, unsigned long> const*, flatbuffers::Vector, unsigned long> const*) 2025-06-05T23:25:51.2294574Z 0xb0b2 52 T executorch::runtime::deserialization::get_data_by_key(char const*, executorch::runtime::Span) 2025-06-05T23:25:51.2295486Z 0x8de6 46 T executorch::runtime::etensor::compute_numel(long const*, int) 2025-06-05T23:25:51.2296305Z 0xb7d8 42 T executorch::runtime::internal::share_tensor_data(executorch::runtime::etensor::Tensor const&, executorch::runtime::etensor::Tensor const&) 2025-06-05T23:25:51.2297095Z 0x98e6 38 T executorch::runtime::Method::method_meta() const 2025-06-05T23:25:51.2297840Z 0xb84c 38 T executorch::runtime::internal::resize_tensor_impl(executorch::runtime::etensor::TensorImpl*, executorch::runtime::ArrayRef) 2025-06-05T23:25:51.2298653Z 0xa0f4 34 T executorch::runtime::Method::get_output_index(unsigned int) const 2025-06-05T23:25:51.2299212Z 0xa1b6 34 T executorch::runtime::Method::get_input_index(unsigned int) const 2025-06-05T23:25:51.2299735Z 0x87e8 32 T executorch::extension::FileDataLoader::~FileDataLoader() 2025-06-05T23:25:51.2300240Z 0x8e54 28 T executorch::runtime::etensor::TensorImpl::nbytes() const 2025-06-05T23:25:51.2375691Z Traceback (most recent call last): 2025-06-05T23:25:51.2376737Z 0xb7bc 28 T executorch::runtime::get_dim_order(executorch::runtime::etensor::Tensor const&, unsigned char*, unsigned int) 2025-06-05T23:25:51.2377786Z 0xa8f0 22 T executorch::runtime::Program::get_named_data_map() const 2025-06-05T23:25:51.2378734Z 0x91fa 22 t executorch::runtime::Method::get_value(unsigned int) const [clone .localalias] 2025-06-05T23:25:51.2379333Z 0x91fa 22 T executorch::runtime::Method::get_value(unsigned int) const 2025-06-05T23:25:51.2379776Z 0xb5dc 20 T executorch::runtime::pal_abort() 2025-06-05T23:25:51.2380182Z 0x91e4 20 T executorch::runtime::Method::reset_execution() 2025-06-05T23:25:51.2380618Z 0xa0e4 16 T executorch::runtime::Method::outputs_size() const 2025-06-05T23:25:51.2381075Z 0xa1a6 16 T executorch::runtime::Method::inputs_size() const 2025-06-05T23:25:51.2381514Z 0xa720 14 T executorch::runtime::Program::num_methods() const 2025-06-05T23:25:51.2381978Z 0xa4b4 14 T executorch::runtime::MethodMeta::num_inputs() const 2025-06-05T23:25:51.2382490Z 0xade0 12 T executorch::runtime::internal::PteDataMap::get_num_keys() const 2025-06-05T23:25:51.2382950Z 0xb608 12 T executorch::runtime::pal_free(void*) 2025-06-05T23:25:51.2383342Z 0xb5f0 12 T executorch::runtime::pal_current_ticks() 2025-06-05T23:25:51.2383756Z 0xb5fc 12 T executorch::runtime::pal_allocate(unsigned int) 2025-06-05T23:25:51.2384405Z 0xa5ea 10 t executorch::runtime::Result::CheckOk() const [clone .isra.0] 2025-06-05T23:25:51.2385234Z 0xa5f4 10 t executorch::runtime::Result::CheckOk() const [clone .isra.0] 2025-06-05T23:25:51.2386226Z File "/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py", line 102, in 2025-06-05T23:25:51.2386925Z main() 2025-06-05T23:25:51.2387515Z File "/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py", line 98, in main 2025-06-05T23:25:51.2388275Z run_cmd_or_die(f"docker exec -t {container_name} /exec") 2025-06-05T23:25:51.2389071Z 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-06-05T23:25:51.2389911Z raise RuntimeError(f"Command {cmd} failed with exit code {exit_code}") 2025-06-05T23:25:51.2390788Z RuntimeError: Command docker exec -t 9b2ce8ec7919194c14f6f2c2780fe54ced00b6ab54ef2a638f69e7ecd76c1780 /exec failed with exit code 1 2025-06-05T23:25:51.2391724Z 0x8808 10 t executorch::extension::(anonymous namespace)::FreeSegment(void*, void*, unsigned int) 2025-06-05T23:25:51.2392450Z 0xb844 8 T executorch::runtime::internal::reset_data_ptr(executorch::runtime::etensor::Tensor const&) 2025-06-05T23:25:51.2393150Z 0xb618 8 t executorch::runtime::(anonymous namespace)::GetUInt64LE(unsigned char const*) 2025-06-05T23:25:51.2393653Z 0xb5d0 6 T executorch::runtime::runtime_abort() 2025-06-05T23:25:51.2394091Z 0xa4ac 4 T executorch::runtime::TensorInfo::is_memory_planned() const 2025-06-05T23:25:51.2394569Z 0xb5d6 4 T executorch::runtime::internal::get_log_timestamp() 2025-06-05T23:25:51.2395043Z 0x9210 4 T executorch::runtime::Method::mutable_value(unsigned int) 2025-06-05T23:25:51.2395467Z 0xb614 4 T executorch::runtime::runtime_init() 2025-06-05T23:25:51.2396018Z 0xa4b0 4 T executorch::runtime::MethodMeta::MethodMeta(executorch_flatbuffer::ExecutionPlan const*) 2025-06-05T23:25:51.2397006Z 0xb5da 2 T executorch::runtime::internal::vlogf(executorch::runtime::LogLevel, unsigned long long, char const*, char const*, unsigned int, char const*, std::__va_list) 2025-06-05T23:25:51.2397800Z 0x91f8 2 T executorch::runtime::Method::log_outputs() 2025-06-05T23:25:51.2398131Z ----- 2025-06-05T23:25:51.2398319Z > Total bytes: 10438 2025-06-05T23:25:51.2398604Z Counted: 85/514, 16.54% (filter: 'ExecuTorch .text') 2025-06-05T23:25:51.2398916Z ===== 2025-06-05T23:25:51.2399036Z 2025-06-05T23:25:51.2399169Z + arm-none-eabi-strip cmake-out/test/size_test 2025-06-05T23:25:51.2399514Z ++ ls -la cmake-out/test/size_test 2025-06-05T23:25:51.2399928Z + output='-rwxr-xr-x. 1 ci-user ci-user 103068 Jun 5 23:25 cmake-out/test/size_test' 2025-06-05T23:25:51.2400396Z + arr=($output) 2025-06-05T23:25:51.2400598Z + size=103068 2025-06-05T23:25:51.2400812Z + threshold=102400 2025-06-05T23:25:51.2401067Z + echo 'size: 103068, threshold: 102400' 2025-06-05T23:25:51.2401376Z size: 103068, threshold: 102400 2025-06-05T23:25:51.2401630Z + [[ 103068 -le 102400 ]] 2025-06-05T23:25:51.2401881Z + echo 'Fail 103068 > 102400' 2025-06-05T23:25:51.2402120Z Fail 103068 > 102400 2025-06-05T23:25:51.2402340Z + exit 1 2025-06-05T23:25:51.2443694Z ##[error]Process completed with exit code 1. 2025-06-05T23:25:51.2509333Z ##[group]Run pmeier/pytest-results-action@a2c1430e2bddadbad9f49a6f9b879f062c6b19b1 2025-06-05T23:25:51.2509809Z with: 2025-06-05T23:25:51.2510108Z path: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:25:51.2510475Z fail-on-empty: false 2025-06-05T23:25:51.2510709Z env: 2025-06-05T23:25:51.2510941Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:25:51.2511293Z REPOSITORY: pytorch/executorch 2025-06-05T23:25:51.2511571Z PR_NUMBER: 2025-06-05T23:25:51.2516080Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:25:51.2520945Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:25:51.2521590Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:25:51.2522129Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:25:51.2522492Z ##[endgroup] 2025-06-05T23:25:51.3115584Z ##[group]Run # Only do these steps if we actually want to upload an artifact 2025-06-05T23:25:51.3116165Z # Only do these steps if we actually want to upload an artifact 2025-06-05T23:25:51.3116599Z if [[ -n "${UPLOAD_ARTIFACT_NAME}" ]]; then 2025-06-05T23:25:51.3117130Z  # If the default execution path is followed then we should get a wheel in the dist/ folder 2025-06-05T23:25:51.3117732Z  # attempt to just grab whatever is in there and scoop it all up 2025-06-05T23:25:51.3118219Z  if find "dist/" -name "*.whl" >/dev/null 2>/dev/null; then 2025-06-05T23:25:51.3118638Z  mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/" 2025-06-05T23:25:51.3118964Z  fi 2025-06-05T23:25:51.3119230Z  if [[ -d "artifacts-to-be-uploaded" ]]; then 2025-06-05T23:25:51.3119658Z  mv -v artifacts-to-be-uploaded/* "${RUNNER_ARTIFACT_DIR}/" 2025-06-05T23:25:51.3120040Z  fi 2025-06-05T23:25:51.3120278Z fi 2025-06-05T23:25:51.3120466Z  2025-06-05T23:25:51.3120670Z upload_docs=0 2025-06-05T23:25:51.3121043Z # Check if there are files in the documentation folder to upload, note that 2025-06-05T23:25:51.3121492Z # empty folders do not count 2025-06-05T23:25:51.3121926Z if find "${RUNNER_DOCS_DIR}" -mindepth 1 -maxdepth 1 -type f | read -r; then 2025-06-05T23:25:51.3122577Z  # TODO: Add a check here to test if on ec2 because if we're not on ec2 then this 2025-06-05T23:25:51.3123058Z  # upload will probably not work correctly 2025-06-05T23:25:51.3123380Z  upload_docs=1 2025-06-05T23:25:51.3123629Z fi 2025-06-05T23:25:51.3123919Z echo "upload-docs=${upload_docs}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:25:51.3132871Z shell: /usr/bin/bash -e {0} 2025-06-05T23:25:51.3133145Z env: 2025-06-05T23:25:51.3133390Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:25:51.3133751Z REPOSITORY: pytorch/executorch 2025-06-05T23:25:51.3134020Z PR_NUMBER: 2025-06-05T23:25:51.3138614Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:25:51.3143485Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:25:51.3144055Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:25:51.3144578Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:25:51.3144961Z UPLOAD_ARTIFACT_NAME: 2025-06-05T23:25:51.3145282Z ##[endgroup] 2025-06-05T23:25:51.3268436Z Prepare all required actions 2025-06-05T23:25:51.3304321Z ##[group]Run ./test-infra/.github/actions/teardown-linux 2025-06-05T23:25:51.3304681Z with: 2025-06-05T23:25:51.3304862Z env: 2025-06-05T23:25:51.3305112Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:25:51.3305448Z REPOSITORY: pytorch/executorch 2025-06-05T23:25:51.3305723Z PR_NUMBER: 2025-06-05T23:25:51.3310226Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:25:51.3315151Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:25:51.3315726Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:25:51.3316251Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:25:51.3316637Z ##[endgroup] 2025-06-05T23:25:51.3340586Z ##[group]Run set -eou pipefail 2025-06-05T23:25:51.3340895Z set -eou pipefail 2025-06-05T23:25:51.3341152Z  2025-06-05T23:25:51.3341490Z echo "Holding runner for 2 hours until all ssh sessions have logged out" 2025-06-05T23:25:51.3341940Z for _ in $(seq 1440); do 2025-06-05T23:25:51.3342245Z  # Break if no ssh session exists anymore 2025-06-05T23:25:51.3342579Z  if [ "$(who)" = "" ]; then 2025-06-05T23:25:51.3342850Z  break 2025-06-05T23:25:51.3343071Z  fi 2025-06-05T23:25:51.3343273Z  echo "." 2025-06-05T23:25:51.3343512Z  sleep 5 2025-06-05T23:25:51.3343736Z done 2025-06-05T23:25:51.3349722Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:25:51.3350087Z env: 2025-06-05T23:25:51.3350328Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:25:51.3350687Z REPOSITORY: pytorch/executorch 2025-06-05T23:25:51.3350953Z PR_NUMBER: 2025-06-05T23:25:51.3355568Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:25:51.3360484Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:25:51.3361049Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:25:51.3361584Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:25:51.3361948Z ##[endgroup] 2025-06-05T23:25:51.3383312Z Holding runner for 2 hours until all ssh sessions have logged out 2025-06-05T23:25:51.3458585Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:25:51.3459130Z # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:25:51.3459549Z # shellcheck disable=SC2046 2025-06-05T23:25:51.3459880Z docker stop $(docker ps -q) || true 2025-06-05T23:25:51.3460217Z # Prune all of the docker images 2025-06-05T23:25:51.3460528Z docker system prune -af 2025-06-05T23:25:51.3465457Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:25:51.3465832Z env: 2025-06-05T23:25:51.3466088Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:25:51.3466429Z REPOSITORY: pytorch/executorch 2025-06-05T23:25:51.3466709Z PR_NUMBER: 2025-06-05T23:25:51.3471175Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:25:51.3476143Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:25:51.3476712Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:25:51.3477258Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:25:51.3477952Z ##[endgroup] 2025-06-05T23:26:02.1436596Z 9b2ce8ec7919 2025-06-05T23:26:02.5324813Z Deleted Containers: 2025-06-05T23:26:02.5325254Z 9b2ce8ec7919194c14f6f2c2780fe54ced00b6ab54ef2a638f69e7ecd76c1780 2025-06-05T23:26:02.5325601Z 2025-06-05T23:26:05.2309541Z Deleted Images: 2025-06-05T23:26:05.2310617Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-arm-sdk:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:26:05.2312236Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-arm-sdk@sha256:0d5c21d463984bfbc970f6581a94145d33d344740c70e25bc23e6befdbb949c9 2025-06-05T23:26:05.2313295Z deleted: sha256:1a94608f22c41f81740bef06f7422764772eeea94a9eada7dd0f5cce39df18ad 2025-06-05T23:26:05.2313948Z deleted: sha256:5ec601ff95a05daba3cfa975165fec54009d3f235b3bffe3840ed920708e19e6 2025-06-05T23:26:05.2315040Z deleted: sha256:d4ff3fbb3ee1e372db334df0deb64ad5811a8fb59eb2f3b55166bb51e0a6a00a 2025-06-05T23:26:05.2315701Z deleted: sha256:13b9dc560352117be7cdbf8c9eb2d388c305715dec91fd8f2dd24e6330985d57 2025-06-05T23:26:05.2316324Z deleted: sha256:28199aade928a08022ff3bcc905892a68604917e4304bfc5045bac458173316f 2025-06-05T23:26:05.2316952Z deleted: sha256:d22c0c0c983837fa91aa33719705b4f83c04a336de23e3deb417758a159a9331 2025-06-05T23:26:05.2317566Z deleted: sha256:995f58b357536e57fd2a23d75b4035fc28c7f691ee117ecba82b81252776a914 2025-06-05T23:26:05.2318194Z deleted: sha256:5823e3d6e6649efc863a8b5312c2141ec7cc6067bfcd7f97ca43d7e309f74388 2025-06-05T23:26:05.2318828Z deleted: sha256:5402b2d94db9e51a4fe381173b9b4c0c7942e79d2c958970454ac282f69d12ef 2025-06-05T23:26:05.2319441Z deleted: sha256:e33f45752794bc0ded008164409bdf30abaa2c2d8099dabed02ec98006eca5c0 2025-06-05T23:26:05.2320132Z deleted: sha256:99b891705016c4b6a61b86360344948bf1ff94dd44e6f6c549073050549e85db 2025-06-05T23:26:05.2320848Z deleted: sha256:11eb87bc8c2f60ba3f5d31a02d355d21074d72f036dac5212ac9acb717769f13 2025-06-05T23:26:05.2321479Z deleted: sha256:a44ed3578f03e2160fa67337d098e4813cca068486c93617c1b151e0e45551ed 2025-06-05T23:26:05.2322099Z deleted: sha256:75f6c567b2876963fd837392b9a7ac2f0b134403afa83a29f19f4aa8d070818e 2025-06-05T23:26:05.2322719Z deleted: sha256:c194a5c3b0249f7c4b6d945ce2b2160b4f22cbc3e820351f7f6d3e206e2edbc3 2025-06-05T23:26:05.2323356Z deleted: sha256:db7ef66a1b940af1ebcd108d5465c32d41afe7e70615db0c545525fea7464d1e 2025-06-05T23:26:05.2323974Z deleted: sha256:c6f0c6c0007356db7e4308d352c535c71641cd1bf2e09690007881b4404b7c8b 2025-06-05T23:26:05.2324601Z deleted: sha256:b7a4234cbb69c9b1b6ef28a2291fb8d3f6be32f6c3374554dbd73d6c27ed7a8e 2025-06-05T23:26:05.2325299Z deleted: sha256:7179506bce74a48fac649b2439485eb565fe406667d78bb064426185245c9203 2025-06-05T23:26:05.2325925Z deleted: sha256:4128da566c1e767391cd1076cdace155fb183515f4e245c0e4963214e6637db5 2025-06-05T23:26:05.2326555Z deleted: sha256:7c75042edf3132b2949d54c6b6eaecb95426b5c939024d58903c60871b01eca4 2025-06-05T23:26:05.2327181Z deleted: sha256:d24f5c3fdfc6dac6e1d30d9cd675296fa1e0ae425708668d3c4476dde53f487c 2025-06-05T23:26:05.2327818Z deleted: sha256:632585fa2e3a4f1f3052f12cf256c77e9704e70498b3aa3ed801d161ebf4db2f 2025-06-05T23:26:05.2328446Z deleted: sha256:80b4fecf8cbf57d22bc034bd9e96ade01236ea5792e3ad0fbca7c8a1bef14d07 2025-06-05T23:26:05.2329085Z deleted: sha256:42f2808ef3fa764d4dd359409f8b0d904c86892f21543fa566639e95d16e7f34 2025-06-05T23:26:05.2329708Z deleted: sha256:f56165fb92e8468f382269b4f4b5a68ccee7b9ad9a47e975519dfcc1e9d227ea 2025-06-05T23:26:05.2330335Z deleted: sha256:6baef9a92114b1fe0cc5db5c6c84771005b1acf37eac03ce633afac431709b8e 2025-06-05T23:26:05.2330986Z deleted: sha256:b6e526fd3e38f0a22b44a36e6f0150bd7c59e9cf21eae74d4fec050c7c73de19 2025-06-05T23:26:05.2331605Z deleted: sha256:525c340bf46ccb79454e4e0f765a3c0b39a374f2301e347f88744d1589d7185e 2025-06-05T23:26:05.2332237Z deleted: sha256:0293f81f5c939bdd5e81947acbcacf4ec1b4b58bb9d029712fc7ffc4192edace 2025-06-05T23:26:05.2332883Z deleted: sha256:9f85e5da08a04976d2cfad6ab7dbcf7531fce0c7f3aa1352c4f3a89f276ec6e7 2025-06-05T23:26:05.2333542Z deleted: sha256:dffaca05acc53ad0f09dd2ee3a8dbdf2c99ae48a24e7b60e9025e55d3d0bc741 2025-06-05T23:26:05.2334196Z deleted: sha256:f60a46c766fa98bfc19ad2143c8230b4591cfe3ed0c6ce95fdc23268adfd4494 2025-06-05T23:26:05.2334815Z deleted: sha256:39c60a951c2b18262a626041ff1137e647cfcb65977b7352b0356ed098a60b26 2025-06-05T23:26:05.2335526Z deleted: sha256:ff02322f624aa4da0c0229f90e430b3960ce174fa4c88ea83447640dda32ce80 2025-06-05T23:26:05.2336142Z deleted: sha256:bb80166d4410f46deb56858f88f277bfc87b8c6f912d802aa80ac611299bc1d9 2025-06-05T23:26:05.2336777Z deleted: sha256:f862e1968e4b4c3c3af141e37d2ec22b19ec0fd50d6a8aaf683de6729e296226 2025-06-05T23:26:05.2337151Z 2025-06-05T23:26:05.2348460Z Total reclaimed space: 14.29GB 2025-06-05T23:26:05.2392161Z ##[group]Run set +e 2025-06-05T23:26:05.2392462Z set +e 2025-06-05T23:26:05.2392700Z if [[ "${NO_SUDO}" == "false" ]]; then 2025-06-05T23:26:05.2393180Z  sudo rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2025-06-05T23:26:05.2393521Z else 2025-06-05T23:26:05.2393789Z  rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2025-06-05T23:26:05.2394109Z fi 2025-06-05T23:26:05.2394314Z set -e 2025-06-05T23:26:05.2401239Z shell: /usr/bin/bash -e {0} 2025-06-05T23:26:05.2401512Z env: 2025-06-05T23:26:05.2401758Z DOCKER_IMAGE: executorch-ubuntu-22.04-arm-sdk 2025-06-05T23:26:05.2402118Z REPOSITORY: pytorch/executorch 2025-06-05T23:26:05.2402388Z PR_NUMBER: 2025-06-05T23:26:05.2406928Z 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}" source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh source examples/arm/ethos-u-scratch/setup_path.sh # User baremetal toolchain arm-none-eabi-c++ --version toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and test size test bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} arm-none-eabi-size ${elf} # Dump symbols python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "arm-none-eabi-" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "arm-none-eabi-" # Add basic guard - TODO: refine this! arm-none-eabi-strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} threshold="102400" # 100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-06-05T23:26:05.2411899Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:26:05.2412484Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:26:05.2413019Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:26:05.2413386Z NO_SUDO: false 2025-06-05T23:26:05.2413612Z ##[endgroup] 2025-06-05T23:26:06.8321102Z Post job cleanup. 2025-06-05T23:26:06.9329666Z Post job cleanup. 2025-06-05T23:26:07.0279139Z [command]/usr/bin/git version 2025-06-05T23:26:07.0333285Z git version 2.47.1 2025-06-05T23:26:07.0372404Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/22025f6c-7843-4f29-9467-3879196a4cbb' before making global git config changes 2025-06-05T23:26:07.0373327Z Adding repository directory to the temporary git global config as a safe directory 2025-06-05T23:26:07.0377494Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-05T23:26:07.0406602Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-05T23:26:07.0439869Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2025-06-05T23:26:07.0703735Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-05T23:26:07.0720853Z http.https://github.com/.extraheader 2025-06-05T23:26:07.0729988Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2025-06-05T23:26:07.0754817Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2025-06-05T23:26:07.1057583Z A job completed hook has been configured by the self-hosted runner administrator 2025-06-05T23:26:07.1083185Z ##[group]Run '/home/ec2-user/runner-scripts/after_job.sh' 2025-06-05T23:26:07.1089043Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:26:07.1089531Z ##[endgroup] 2025-06-05T23:26:13.7586004Z Cleaning up orphan processes