2025-06-05T23:11:56.5488263Z Current runner version: '2.325.0' 2025-06-05T23:11:56.5495436Z Runner name: 'i-0fa8c2548c32ddf3d' 2025-06-05T23:11:56.5496399Z Machine name: 'ip-10-0-38-141' 2025-06-05T23:11:56.5499124Z ##[group]GITHUB_TOKEN Permissions 2025-06-05T23:11:56.5501290Z Contents: read 2025-06-05T23:11:56.5501863Z Metadata: read 2025-06-05T23:11:56.5502449Z ##[endgroup] 2025-06-05T23:11:56.5504669Z Secret source: Actions 2025-06-05T23:11:56.5505448Z Prepare workflow directory 2025-06-05T23:11:56.6053880Z Prepare all required actions 2025-06-05T23:11:56.6095519Z Getting action download info 2025-06-05T23:11:56.8536058Z Download action repository 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-06-05T23:11:57.1178309Z Download action repository 'pytorch/pytorch@9c1bc9ce4684de96db025292610c0664d3d55345' (SHA:9c1bc9ce4684de96db025292610c0664d3d55345) 2025-06-05T23:12:09.7833936Z Download action repository 'actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) 2025-06-05T23:12:09.9629400Z Download action repository 'pmeier/pytest-results-action@a2c1430e2bddadbad9f49a6f9b879f062c6b19b1' (SHA:a2c1430e2bddadbad9f49a6f9b879f062c6b19b1) 2025-06-05T23:12:10.1376554Z Download action repository 'actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-06-05T23:12:10.5458378Z Download action repository 'seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-06-05T23:12:10.7912563Z Getting action download info 2025-06-05T23:12:10.8754242Z Download action repository 'pytorch/pytorch@main' (SHA:fa705f791249c5eee912096f1d7ac7b2d5b60e8c) 2025-06-05T23:12:23.7766962Z Complete job name: lintrunner / linux-job 2025-06-05T23:12:23.8288786Z A job started hook has been configured by the self-hosted runner administrator 2025-06-05T23:12:23.8393992Z ##[group]Run '/home/ec2-user/runner-scripts/before_job.sh' 2025-06-05T23:12:23.8402903Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:23.8403574Z ##[endgroup] 2025-06-05T23:12:25.0692354Z Runner Type: linux.2xlarge 2025-06-05T23:12:25.0692800Z Instance Type: c5.2xlarge 2025-06-05T23:12:25.0693099Z AMI Name: unknown 2025-06-05T23:12:25.0723211Z AMI ID: ami-071226ecf16aa7d96 2025-06-05T23:12:30.3163726Z ##[group]Run set -euxo pipefail 2025-06-05T23:12:30.3164148Z set -euxo pipefail 2025-06-05T23:12:30.3164456Z if [[ "${NO_SUDO}" == "false" ]]; then 2025-06-05T23:12:30.3164843Z  echo "::group::Cleanup with-sudo debug output" 2025-06-05T23:12:30.3165216Z  sudo rm -rfv "${GITHUB_WORKSPACE}" 2025-06-05T23:12:30.3165524Z else 2025-06-05T23:12:30.3165778Z  echo "::group::Cleanup no-sudo debug output" 2025-06-05T23:12:30.3166136Z  rm -rfv "${GITHUB_WORKSPACE}" 2025-06-05T23:12:30.3166415Z fi 2025-06-05T23:12:30.3166617Z  2025-06-05T23:12:30.3166851Z mkdir -p "${GITHUB_WORKSPACE}" 2025-06-05T23:12:30.3167179Z echo "::endgroup::" 2025-06-05T23:12:30.3176293Z shell: /usr/bin/bash -e {0} 2025-06-05T23:12:30.3176582Z env: 2025-06-05T23:12:30.3176849Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:12:30.3177249Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:30.3177583Z PR_NUMBER: 2025-06-05T23:12:30.3182720Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:12:30.3188271Z NO_SUDO: false 2025-06-05T23:12:30.3188483Z ##[endgroup] 2025-06-05T23:12:30.3214906Z + [[ false == \f\a\l\s\e ]] 2025-06-05T23:12:30.3225618Z + echo '::group::Cleanup with-sudo debug output' 2025-06-05T23:12:30.3226139Z + sudo rm -rfv /home/ec2-user/actions-runner/_work/executorch/executorch 2025-06-05T23:12:30.3232826Z ##[group]Cleanup with-sudo debug output 2025-06-05T23:12:30.4539590Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch' 2025-06-05T23:12:30.4554498Z + mkdir -p /home/ec2-user/actions-runner/_work/executorch/executorch 2025-06-05T23:12:30.4565741Z + echo ::endgroup:: 2025-06-05T23:12:30.4566526Z ##[endgroup] 2025-06-05T23:12:30.4674964Z ##[group]Run actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 2025-06-05T23:12:30.4675421Z with: 2025-06-05T23:12:30.4675661Z repository: pytorch/test-infra 2025-06-05T23:12:30.4675963Z path: test-infra 2025-06-05T23:12:30.4676192Z submodules: recursive 2025-06-05T23:12:30.4676748Z token: *** 2025-06-05T23:12:30.4676975Z ssh-strict: true 2025-06-05T23:12:30.4677192Z ssh-user: git 2025-06-05T23:12:30.4677432Z persist-credentials: true 2025-06-05T23:12:30.4677706Z clean: true 2025-06-05T23:12:30.4677950Z sparse-checkout-cone-mode: true 2025-06-05T23:12:30.4678230Z fetch-depth: 1 2025-06-05T23:12:30.4678458Z fetch-tags: false 2025-06-05T23:12:30.4678698Z show-progress: true 2025-06-05T23:12:30.4678920Z lfs: false 2025-06-05T23:12:30.4679143Z set-safe-directory: true 2025-06-05T23:12:30.4679390Z env: 2025-06-05T23:12:30.4679635Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:12:30.4679971Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:30.4680299Z PR_NUMBER: 2025-06-05T23:12:30.4685538Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:12:30.4691299Z ##[endgroup] 2025-06-05T23:12:30.5783907Z Syncing repository: pytorch/test-infra 2025-06-05T23:12:30.5784668Z ##[group]Getting Git version info 2025-06-05T23:12:30.5785178Z Working directory is '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra' 2025-06-05T23:12:30.5785877Z [command]/usr/bin/git version 2025-06-05T23:12:30.5786158Z git version 2.47.1 2025-06-05T23:12:30.5795637Z ##[endgroup] 2025-06-05T23:12:30.5807668Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/e196db5a-0589-4fea-aefa-dd993392efd1' before making global git config changes 2025-06-05T23:12:30.5808674Z Adding repository directory to the temporary git global config as a safe directory 2025-06-05T23:12:30.5812736Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-05T23:12:30.5838351Z ##[group]Initializing the repository 2025-06-05T23:12:30.5842933Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-05T23:12:30.5870052Z hint: Using 'master' as the name for the initial branch. This default branch name 2025-06-05T23:12:30.5870694Z hint: is subject to change. To configure the initial branch name to use in all 2025-06-05T23:12:30.5871253Z hint: of your new repositories, which will suppress this warning, call: 2025-06-05T23:12:30.5871681Z hint: 2025-06-05T23:12:30.5872192Z hint: git config --global init.defaultBranch 2025-06-05T23:12:30.5872542Z hint: 2025-06-05T23:12:30.5872859Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2025-06-05T23:12:30.5873414Z hint: 'development'. The just-created branch can be renamed via this command: 2025-06-05T23:12:30.5873829Z hint: 2025-06-05T23:12:30.5874056Z hint: git branch -m 2025-06-05T23:12:30.5874616Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/ 2025-06-05T23:12:30.5880048Z [command]/usr/bin/git remote add origin https://github.com/pytorch/test-infra 2025-06-05T23:12:30.5903443Z ##[endgroup] 2025-06-05T23:12:30.5903862Z ##[group]Disabling automatic garbage collection 2025-06-05T23:12:30.5907783Z [command]/usr/bin/git config --local gc.auto 0 2025-06-05T23:12:30.5930958Z ##[endgroup] 2025-06-05T23:12:30.5936550Z ##[group]Setting up auth 2025-06-05T23:12:30.5937110Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-05T23:12:30.5959421Z [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:30.6225700Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-05T23:12:30.6248483Z [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:30.6486459Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:12:30.6525419Z ##[endgroup] 2025-06-05T23:12:30.6526003Z ##[group]Determining the default branch 2025-06-05T23:12:30.6528274Z Retrieving the default branch name 2025-06-05T23:12:30.8429348Z Default branch 'main' 2025-06-05T23:12:30.8430013Z ##[endgroup] 2025-06-05T23:12:30.8430443Z ##[group]Fetching the repository 2025-06-05T23:12:30.8435051Z [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:31.2530575Z From https://github.com/pytorch/test-infra 2025-06-05T23:12:31.2531238Z * [new branch] main -> origin/main 2025-06-05T23:12:31.2551981Z ##[endgroup] 2025-06-05T23:12:31.2552637Z ##[group]Determining the checkout info 2025-06-05T23:12:31.2554088Z ##[endgroup] 2025-06-05T23:12:31.2559352Z [command]/usr/bin/git sparse-checkout disable 2025-06-05T23:12:31.2589292Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-06-05T23:12:31.2611598Z ##[group]Checking out the ref 2025-06-05T23:12:31.2615558Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main 2025-06-05T23:12:31.3436736Z Switched to a new branch 'main' 2025-06-05T23:12:31.3437530Z branch 'main' set up to track 'origin/main'. 2025-06-05T23:12:31.3444566Z ##[endgroup] 2025-06-05T23:12:31.3445250Z ##[group]Setting up auth for fetching submodules 2025-06-05T23:12:31.3450710Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:12:31.3485678Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-06-05T23:12:31.3511667Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-06-05T23:12:31.3536933Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-06-05T23:12:31.3557917Z ##[endgroup] 2025-06-05T23:12:31.3558625Z ##[group]Fetching submodules 2025-06-05T23:12:31.3562482Z [command]/usr/bin/git submodule sync --recursive 2025-06-05T23:12:31.3806844Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2025-06-05T23:12:31.4051117Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-06-05T23:12:31.4286616Z ##[endgroup] 2025-06-05T23:12:31.4287314Z ##[group]Persisting credentials for submodules 2025-06-05T23:12:31.4290819Z [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:31.4530765Z [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:31.4769378Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-06-05T23:12:31.5009741Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-06-05T23:12:31.5245638Z ##[endgroup] 2025-06-05T23:12:31.5275522Z [command]/usr/bin/git log -1 --format=%H 2025-06-05T23:12:31.5294548Z 714db9db22f90727b389d5ecb5a2dc16cd27d00c 2025-06-05T23:12:31.5459480Z Prepare all required actions 2025-06-05T23:12:31.5459979Z Getting action download info 2025-06-05T23:12:31.6357456Z Download action repository 'pytorch/test-infra@main' (SHA:714db9db22f90727b389d5ecb5a2dc16cd27d00c) 2025-06-05T23:12:33.0350235Z Getting action download info 2025-06-05T23:12:33.1473082Z Download action repository 'nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482' (SHA:3e91a01664abd3c5cd539100d10d33b9c5b68482) 2025-06-05T23:12:33.3070442Z ##[group]Run ./test-infra/.github/actions/setup-linux 2025-06-05T23:12:33.3070795Z env: 2025-06-05T23:12:33.3071034Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:12:33.3071378Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:33.3071671Z PR_NUMBER: 2025-06-05T23:12:33.3076701Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:12:33.3082123Z ##[endgroup] 2025-06-05T23:12:33.3164170Z ##[group]Run set -euo pipefail 2025-06-05T23:12:33.3164494Z set -euo pipefail 2025-06-05T23:12:33.3164802Z function get_ec2_metadata() { 2025-06-05T23:12:33.3165155Z  # Pulled from instance metadata endpoint for EC2 2025-06-05T23:12:33.3165779Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-06-05T23:12:33.3166315Z  category=$1 2025-06-05T23:12:33.3167174Z  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:33.3168071Z } 2025-06-05T23:12:33.3168316Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-06-05T23:12:33.3168733Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-06-05T23:12:33.3169183Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-06-05T23:12:33.3169587Z echo "system info $(uname -a)" 2025-06-05T23:12:33.3175182Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:33.3175552Z env: 2025-06-05T23:12:33.3175788Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:12:33.3176132Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:33.3176396Z PR_NUMBER: 2025-06-05T23:12:33.3181514Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:12:33.3186749Z ##[endgroup] 2025-06-05T23:12:33.3311015Z ami-id: ami-071226ecf16aa7d96 2025-06-05T23:12:33.3398972Z instance-id: i-0fa8c2548c32ddf3d 2025-06-05T23:12:33.3507559Z instance-type: c5.2xlarge 2025-06-05T23:12:33.3516736Z system info Linux ip-10-0-38-141.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:33.3550506Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:12:33.3551411Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:12:33.3557081Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:33.3557446Z env: 2025-06-05T23:12:33.3557698Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:12:33.3558044Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:33.3558310Z PR_NUMBER: 2025-06-05T23:12:33.3563308Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:12:33.3568636Z ##[endgroup] 2025-06-05T23:12:33.3638634Z ##[group]Run if systemctl is-active --quiet docker; then 2025-06-05T23:12:33.3639056Z if systemctl is-active --quiet docker; then 2025-06-05T23:12:33.3639432Z  echo "Docker daemon is running..."; 2025-06-05T23:12:33.3639735Z else 2025-06-05T23:12:33.3640217Z  echo "Starting docker deamon..." && sudo systemctl start docker; 2025-06-05T23:12:33.3640634Z fi 2025-06-05T23:12:33.3645944Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:33.3646314Z env: 2025-06-05T23:12:33.3646555Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:12:33.3646903Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:33.3647163Z PR_NUMBER: 2025-06-05T23:12:33.3652150Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:12:33.3657505Z ##[endgroup] 2025-06-05T23:12:33.3728562Z Docker daemon is running... 2025-06-05T23:12:33.3755809Z ##[group]Run AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2025-06-05T23:12:33.3756427Z AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2025-06-05T23:12:33.3756928Z retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2025-06-05T23:12:33.3757516Z retry aws ecr get-login-password --region "$AWS_DEFAULT_REGION" | docker login --username AWS \ 2025-06-05T23:12:33.3758235Z  --password-stdin "$AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com" 2025-06-05T23:12:33.3763462Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:33.3763938Z env: 2025-06-05T23:12:33.3764176Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:12:33.3764521Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:33.3764782Z PR_NUMBER: 2025-06-05T23:12:33.3769908Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:12:33.3775166Z AWS_RETRY_MODE: standard 2025-06-05T23:12:33.3775449Z AWS_MAX_ATTEMPTS: 5 2025-06-05T23:12:33.3775757Z AWS_DEFAULT_REGION: us-east-1 2025-06-05T23:12:33.3776022Z ##[endgroup] 2025-06-05T23:12:34.3661241Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:12:34.3661837Z Configure a credential helper to remove this warning. See 2025-06-05T23:12:34.3662408Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:12:34.3662999Z 2025-06-05T23:12:34.3663160Z Login Succeeded 2025-06-05T23:12:34.3712206Z ##[group]Run env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:12:34.3713198Z env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:12:34.3714066Z env | grep '^CI' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:12:34.3724381Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:34.3725003Z env: 2025-06-05T23:12:34.3725429Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:12:34.3726335Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:34.3726810Z PR_NUMBER: 2025-06-05T23:12:34.3732631Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:12:34.3738024Z ##[endgroup] 2025-06-05T23:12:34.3893715Z ##[group]Run RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2025-06-05T23:12:34.3894173Z RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2025-06-05T23:12:34.3894568Z sudo rm -rf "${RUNNER_ARTIFACT_DIR}" 2025-06-05T23:12:34.3894918Z mkdir -p "${RUNNER_ARTIFACT_DIR}" 2025-06-05T23:12:34.3895357Z echo "RUNNER_ARTIFACT_DIR=${RUNNER_ARTIFACT_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:12:34.3895779Z  2025-06-05T23:12:34.3896060Z RUNNER_TEST_RESULTS_DIR="${RUNNER_TEMP}/test-results" 2025-06-05T23:12:34.3896478Z sudo rm -rf "${RUNNER_TEST_RESULTS_DIR}" 2025-06-05T23:12:34.3896825Z mkdir -p "${RUNNER_TEST_RESULTS_DIR}" 2025-06-05T23:12:34.3897293Z echo "RUNNER_TEST_RESULTS_DIR=${RUNNER_TEST_RESULTS_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:12:34.3897736Z  2025-06-05T23:12:34.3898068Z RUNNER_DOCS_DIR="${RUNNER_TEMP}/docs" 2025-06-05T23:12:34.3898408Z sudo rm -rf "${RUNNER_DOCS_DIR}" 2025-06-05T23:12:34.3898712Z mkdir -p "${RUNNER_DOCS_DIR}" 2025-06-05T23:12:34.3899108Z echo "RUNNER_DOCS_DIR=${RUNNER_DOCS_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:12:34.3904296Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:34.3904657Z env: 2025-06-05T23:12:34.3904904Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:12:34.3905246Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:34.3905506Z PR_NUMBER: 2025-06-05T23:12:34.3910481Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:12:34.3915791Z ##[endgroup] 2025-06-05T23:12:34.9092318Z ##[group]Run needs=0 2025-06-05T23:12:34.9092590Z needs=0 2025-06-05T23:12:34.9092944Z if lspci -v | grep -e 'controller.*NVIDIA' >/dev/null 2>/dev/null; then 2025-06-05T23:12:34.9093368Z  needs=1 2025-06-05T23:12:34.9093575Z fi 2025-06-05T23:12:34.9093840Z echo "does=${needs}" >> $GITHUB_OUTPUT 2025-06-05T23:12:34.9099493Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:34.9099862Z env: 2025-06-05T23:12:34.9100101Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:12:34.9100451Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:34.9100724Z PR_NUMBER: 2025-06-05T23:12:34.9105852Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:12:34.9111230Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:12:34.9111793Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:12:34.9112332Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:12:34.9112714Z ##[endgroup] 2025-06-05T23:12:34.9354059Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:12:34.9354626Z # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:12:34.9355032Z # shellcheck disable=SC2046 2025-06-05T23:12:34.9355363Z docker stop $(docker ps -q) || true 2025-06-05T23:12:34.9355716Z # Prune all of the docker images 2025-06-05T23:12:34.9356022Z docker system prune -af 2025-06-05T23:12:34.9361470Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:12:34.9361839Z env: 2025-06-05T23:12:34.9362096Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:12:34.9362431Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:34.9362711Z PR_NUMBER: 2025-06-05T23:12:34.9367802Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:12:34.9373340Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:12:34.9373922Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:12:34.9374448Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:12:34.9374828Z ##[endgroup] 2025-06-05T23:12:34.9583345Z "docker stop" requires at least 1 argument. 2025-06-05T23:12:34.9583719Z See 'docker stop --help'. 2025-06-05T23:12:34.9583889Z 2025-06-05T23:12:34.9584053Z Usage: docker stop [OPTIONS] CONTAINER [CONTAINER...] 2025-06-05T23:12:34.9584334Z 2025-06-05T23:12:34.9584439Z Stop one or more running containers 2025-06-05T23:12:34.9742163Z Total reclaimed space: 0B 2025-06-05T23:12:34.9815060Z ##[group]Run ./test-infra/.github/actions/setup-ssh 2025-06-05T23:12:34.9815504Z with: 2025-06-05T23:12:34.9816255Z github-secret: *** 2025-06-05T23:12:34.9816992Z 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:34.9817834Z activate-with-label: false 2025-06-05T23:12:34.9818196Z label: with-ssh 2025-06-05T23:12:34.9818474Z remove-existing-keys: true 2025-06-05T23:12:34.9818827Z fail-silently: true 2025-06-05T23:12:34.9819106Z env: 2025-06-05T23:12:34.9819426Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:12:34.9897710Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:34.9898066Z PR_NUMBER: 2025-06-05T23:12:34.9903167Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:12:34.9908671Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:12:34.9909217Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:12:34.9909731Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:12:34.9910085Z ##[endgroup] 2025-06-05T23:12:35.0929767Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-06-05T23:12:35.0931474Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-06-05T23:12:35.1047437Z ##[group]Run actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 2025-06-05T23:12:35.1047861Z with: 2025-06-05T23:12:35.1048074Z repository: pytorch/executorch 2025-06-05T23:12:35.1048389Z ref: bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:12:35.1048701Z path: pytorch/executorch 2025-06-05T23:12:35.1048957Z fetch-depth: 0 2025-06-05T23:12:35.1049168Z submodules: recursive 2025-06-05T23:12:35.1049551Z token: *** 2025-06-05T23:12:35.1049766Z ssh-strict: true 2025-06-05T23:12:35.1049971Z ssh-user: git 2025-06-05T23:12:35.1050200Z persist-credentials: true 2025-06-05T23:12:35.1050445Z clean: true 2025-06-05T23:12:35.1050680Z sparse-checkout-cone-mode: true 2025-06-05T23:12:35.1051104Z fetch-tags: false 2025-06-05T23:12:35.1051336Z show-progress: true 2025-06-05T23:12:35.1051556Z lfs: false 2025-06-05T23:12:35.1051774Z set-safe-directory: true 2025-06-05T23:12:35.1052016Z env: 2025-06-05T23:12:35.1052304Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:12:35.1052643Z REPOSITORY: pytorch/executorch 2025-06-05T23:12:35.1052915Z PR_NUMBER: 2025-06-05T23:12:35.1057894Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:12:35.1063234Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:12:35.1063806Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:12:35.1064486Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:12:35.1064863Z ##[endgroup] 2025-06-05T23:12:35.1979908Z Syncing repository: pytorch/executorch 2025-06-05T23:12:35.1987693Z ##[group]Getting Git version info 2025-06-05T23:12:35.1988587Z Working directory is '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch' 2025-06-05T23:12:35.2013833Z [command]/usr/bin/git version 2025-06-05T23:12:35.2048489Z git version 2.47.1 2025-06-05T23:12:35.2071343Z ##[endgroup] 2025-06-05T23:12:35.2082251Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/12e8357a-947d-41c6-a366-ec060a5c467b' before making global git config changes 2025-06-05T23:12:35.2083166Z Adding repository directory to the temporary git global config as a safe directory 2025-06-05T23:12:35.2087191Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch 2025-06-05T23:12:35.2111231Z ##[group]Initializing the repository 2025-06-05T23:12:35.2115652Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch 2025-06-05T23:12:35.2142558Z hint: Using 'master' as the name for the initial branch. This default branch name 2025-06-05T23:12:35.2143156Z hint: is subject to change. To configure the initial branch name to use in all 2025-06-05T23:12:35.2143695Z hint: of your new repositories, which will suppress this warning, call: 2025-06-05T23:12:35.2144094Z hint: 2025-06-05T23:12:35.2144351Z hint: git config --global init.defaultBranch 2025-06-05T23:12:35.2144687Z hint: 2025-06-05T23:12:35.2144995Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2025-06-05T23:12:35.2145547Z hint: 'development'. The just-created branch can be renamed via this command: 2025-06-05T23:12:35.2145958Z hint: 2025-06-05T23:12:35.2146166Z hint: git branch -m 2025-06-05T23:12:35.2146762Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/ 2025-06-05T23:12:35.2151340Z [command]/usr/bin/git remote add origin https://github.com/pytorch/executorch 2025-06-05T23:12:35.2174382Z ##[endgroup] 2025-06-05T23:12:35.2174796Z ##[group]Disabling automatic garbage collection 2025-06-05T23:12:35.2178421Z [command]/usr/bin/git config --local gc.auto 0 2025-06-05T23:12:35.2201103Z ##[endgroup] 2025-06-05T23:12:35.2201480Z ##[group]Setting up auth 2025-06-05T23:12:35.2205830Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-05T23:12:35.2228108Z [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:35.2468389Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-05T23:12:35.2490356Z [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:35.2728854Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:12:35.2764899Z ##[endgroup] 2025-06-05T23:12:35.2765288Z ##[group]Fetching the repository 2025-06-05T23:12:35.2772462Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2025-06-05T23:12:46.9131278Z From https://github.com/pytorch/executorch 2025-06-05T23:12:46.9132080Z * [new branch] 0.1.0 -> origin/0.1.0 2025-06-05T23:12:46.9132838Z * [new branch] 0.2.0 -> origin/0.2.0 2025-06-05T23:12:46.9133579Z * [new branch] 0.2.1 -> origin/0.2.1 2025-06-05T23:12:46.9134320Z * [new branch] 0.3.0 -> origin/0.3.0 2025-06-05T23:12:46.9135042Z * [new branch] 0.4.0 -> origin/0.4.0 2025-06-05T23:12:46.9135870Z * [new branch] 0.4/qcom -> origin/0.4/qcom 2025-06-05T23:12:46.9136897Z * [new branch] 0.60 -> origin/0.60 2025-06-05T23:12:46.9137710Z * [new branch] HEAD -> origin/HEAD 2025-06-05T23:12:46.9139216Z * [new branch] Migrate-Label-for-M1-Runners -> origin/Migrate-Label-for-M1-Runners 2025-06-05T23:12:46.9141453Z * [new branch] Olivia-liu-patch-1 -> origin/Olivia-liu-patch-1 2025-06-05T23:12:46.9143473Z * [new branch] Olivia-liu-patch-2 -> origin/Olivia-liu-patch-2 2025-06-05T23:12:46.9145021Z * [new branch] Olivia-liu-patch-2-1 -> origin/Olivia-liu-patch-2-1 2025-06-05T23:12:46.9146636Z * [new branch] WuhanMonkey-patch-1 -> origin/WuhanMonkey-patch-1 2025-06-05T23:12:46.9148260Z * [new branch] add-memory-metric-ios -> origin/add-memory-metric-ios 2025-06-05T23:12:46.9149962Z * [new branch] add-nightly-build-workflow -> origin/add-nightly-build-workflow 2025-06-05T23:12:46.9151702Z * [new branch] add-release-workflow-trigger -> origin/add-release-workflow-trigger 2025-06-05T23:12:46.9154305Z * [new branch] add-toc -> origin/add-toc 2025-06-05T23:12:46.9155768Z * [new branch] add-workflow-build-android-app -> origin/add-workflow-build-android-app 2025-06-05T23:12:46.9157131Z * [new branch] add_benchinfra_data_points -> origin/add_benchinfra_data_points 2025-06-05T23:12:46.9158540Z * [new branch] add_best_practice -> origin/add_best_practice 2025-06-05T23:12:46.9160019Z * [new branch] add_clean -> origin/add_clean 2025-06-05T23:12:46.9161951Z * [new branch] add_cmake_instruction -> origin/add_cmake_instruction 2025-06-05T23:12:46.9163438Z * [new branch] add_custom -> origin/add_custom 2025-06-05T23:12:46.9165135Z * [new branch] add_device_pool_for_s24 -> origin/add_device_pool_for_s24 2025-06-05T23:12:46.9166650Z * [new branch] add_dtype_arg_to_hf_export -> origin/add_dtype_arg_to_hf_export 2025-06-05T23:12:46.9168080Z * [new branch] add_legacy_flow_tests -> origin/add_legacy_flow_tests 2025-06-05T23:12:46.9169628Z * [new branch] add_legacy_flow_tests_rebase -> origin/add_legacy_flow_tests_rebase 2025-06-05T23:12:46.9171020Z * [new branch] add_neg -> origin/add_neg 2025-06-05T23:12:46.9172974Z * [new branch] add_nongenai_to_apple_perf -> origin/add_nongenai_to_apple_perf 2025-06-05T23:12:46.9174211Z * [new branch] add_phi_3_mini_runner -> origin/add_phi_3_mini_runner 2025-06-05T23:12:46.9175770Z * [new branch] add_quantized_ops -> origin/add_quantized_ops 2025-06-05T23:12:46.9177524Z * [new branch] add_sentencepiece -> origin/add_sentencepiece 2025-06-05T23:12:46.9179195Z * [new branch] allow-custom-runners-for-model -> origin/allow-custom-runners-for-model 2025-06-05T23:12:46.9180417Z * [new branch] android-app-readme -> origin/android-app-readme 2025-06-05T23:12:46.9182031Z * [new branch] android-benchmark-json-output -> origin/android-benchmark-json-output 2025-06-05T23:12:46.9183240Z * [new branch] android-benchmark-rss -> origin/android-benchmark-rss 2025-06-05T23:12:46.9184762Z * [new branch] android-build-within-gradle -> origin/android-build-within-gradle 2025-06-05T23:12:46.9186254Z * [new branch] android-llama2-device-farm -> origin/android-llama2-device-farm 2025-06-05T23:12:46.9187787Z * [new branch] android-llm-benchmark -> origin/android-llm-benchmark 2025-06-05T23:12:46.9189146Z * [new branch] android-metadata-2 -> origin/android-metadata-2 2025-06-05T23:12:46.9190579Z * [new branch] android-preset -> origin/android-preset 2025-06-05T23:12:46.9192246Z * [new branch] android-sh-update -> origin/android-sh-update 2025-06-05T23:12:46.9193852Z * [new branch] android-test-cool-2 -> origin/android-test-cool-2 2025-06-05T23:12:46.9195404Z * [new branch] android-test-trigger -> origin/android-test-trigger 2025-06-05T23:12:46.9196791Z * [new branch] android_ci -> origin/android_ci 2025-06-05T23:12:46.9199160Z * [new branch] angelayi/cp_3809 -> origin/angelayi/cp_3809 2025-06-05T23:12:46.9200559Z * [new branch] angelayi/pin_1129 -> origin/angelayi/pin_1129 2025-06-05T23:12:46.9202040Z * [new branch] angelayi/pin_12162024 -> origin/angelayi/pin_12162024 2025-06-05T23:12:46.9203615Z * [new branch] angelayi/update_0108 -> origin/angelayi/update_0108 2025-06-05T23:12:46.9205157Z * [new branch] angelayi/update_0108_2 -> origin/angelayi/update_0108_2 2025-06-05T23:12:46.9206550Z * [new branch] angelayi/update_02_09 -> origin/angelayi/update_02_09 2025-06-05T23:12:46.9208083Z * [new branch] angelayi/update_10_02 -> origin/angelayi/update_10_02 2025-06-05T23:12:46.9209344Z * [new branch] angelayi/update_9_29 -> origin/angelayi/update_9_29 2025-06-05T23:12:46.9211766Z * [new branch] angelayi/update_thirdparty_pytorch -> origin/angelayi/update_thirdparty_pytorch 2025-06-05T23:12:46.9212871Z * [new branch] aosp-test -> origin/aosp-test 2025-06-05T23:12:46.9214355Z * [new branch] arm-add-no-delegate-hacky -> origin/arm-add-no-delegate-hacky 2025-06-05T23:12:46.9215815Z * [new branch] arm-delegate-tutorial -> origin/arm-delegate-tutorial 2025-06-05T23:12:46.9217904Z * [new branch] auto-populate-issues-in-new-contributor-project -> origin/auto-populate-issues-in-new-contributor-project 2025-06-05T23:12:46.9219544Z * [new branch] auto-pt-pinned-commit-update -> origin/auto-pt-pinned-commit-update 2025-06-05T23:12:46.9220621Z * [new branch] bench-debug -> origin/bench-debug 2025-06-05T23:12:46.9221565Z * [new branch] bench-mps-8da4w -> origin/bench-mps-8da4w 2025-06-05T23:12:46.9223093Z * [new branch] benchmark_llama_htp -> origin/benchmark_llama_htp 2025-06-05T23:12:46.9224456Z * [new branch] build -> origin/build 2025-06-05T23:12:46.9225970Z * [new branch] build_changes -> origin/build_changes 2025-06-05T23:12:46.9227646Z * [new branch] bump-android-sdk -> origin/bump-android-sdk 2025-06-05T23:12:46.9228977Z * [new branch] bump-ao-311 -> origin/bump-ao-311 2025-06-05T23:12:46.9231902Z * [new branch] cadence/add-reference-quantized_fully_connected_out -> origin/cadence/add-reference-quantized_fully_connected_out 2025-06-05T23:12:46.9233470Z * [new branch] cadence/create-sdk-ci-cpu-dsp -> origin/cadence/create-sdk-ci-cpu-dsp 2025-06-05T23:12:46.9234947Z * [new branch] camyllh/benchmark_workflow_cli -> origin/camyllh/benchmark_workflow_cli 2025-06-05T23:12:46.9236220Z * [new branch] ccache -> origin/ccache 2025-06-05T23:12:46.9237804Z * [new branch] check_ignore_custom_op -> origin/check_ignore_custom_op 2025-06-05T23:12:46.9239705Z * [new branch] cherry-pick-2570-by-pytorch_bot_bot_ -> origin/cherry-pick-2570-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9241378Z * [new branch] cherry-pick-2611-by-pytorch_bot_bot_ -> origin/cherry-pick-2611-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9243022Z * [new branch] cherry-pick-2687-by-pytorch_bot_bot_ -> origin/cherry-pick-2687-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9244744Z * [new branch] cherry-pick-2696-by-pytorch_bot_bot_ -> origin/cherry-pick-2696-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9246183Z * [new branch] cherry-pick-2699-by-pytorch_bot_bot_ -> origin/cherry-pick-2699-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9247733Z * [new branch] cherry-pick-2723-by-pytorch_bot_bot_ -> origin/cherry-pick-2723-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9249279Z * [new branch] cherry-pick-2876-by-pytorch_bot_bot_ -> origin/cherry-pick-2876-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9250726Z * [new branch] cherry-pick-2899-by-pytorch_bot_bot_ -> origin/cherry-pick-2899-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9251887Z * [new branch] cherry-pick-2911-by-pytorch_bot_bot_ -> origin/cherry-pick-2911-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9253353Z * [new branch] cherry-pick-2919-by-pytorch_bot_bot_ -> origin/cherry-pick-2919-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9254686Z * [new branch] cherry-pick-2921-by-pytorch_bot_bot_ -> origin/cherry-pick-2921-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9256026Z * [new branch] cherry-pick-2926-by-pytorch_bot_bot_ -> origin/cherry-pick-2926-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9257535Z * [new branch] cherry-pick-2927-by-pytorch_bot_bot_ -> origin/cherry-pick-2927-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9258602Z * [new branch] cherry-pick-2932-by-pytorch_bot_bot_ -> origin/cherry-pick-2932-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9260550Z * [new branch] cherry-pick-2934-by-pytorch_bot_bot_ -> origin/cherry-pick-2934-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9261966Z * [new branch] cherry-pick-2940-by-pytorch_bot_bot_ -> origin/cherry-pick-2940-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9263382Z * [new branch] cherry-pick-2952-by-pytorch_bot_bot_ -> origin/cherry-pick-2952-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9264782Z * [new branch] cherry-pick-2957-by-pytorch_bot_bot_ -> origin/cherry-pick-2957-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9266236Z * [new branch] cherry-pick-2973-by-pytorch_bot_bot_ -> origin/cherry-pick-2973-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9267852Z * [new branch] cherry-pick-2975-by-pytorch_bot_bot_ -> origin/cherry-pick-2975-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9269076Z * [new branch] cherry-pick-2977-by-pytorch_bot_bot_ -> origin/cherry-pick-2977-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9270395Z * [new branch] cherry-pick-2980-by-pytorch_bot_bot_ -> origin/cherry-pick-2980-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9272057Z * [new branch] cherry-pick-2984-by-pytorch_bot_bot_ -> origin/cherry-pick-2984-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9273567Z * [new branch] cherry-pick-2992-by-pytorch_bot_bot_ -> origin/cherry-pick-2992-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9274870Z * [new branch] cherry-pick-2996-by-pytorch_bot_bot_ -> origin/cherry-pick-2996-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9276181Z * [new branch] cherry-pick-2998-by-pytorch_bot_bot_ -> origin/cherry-pick-2998-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9278192Z * [new branch] cherry-pick-3006-by-pytorch_bot_bot_ -> origin/cherry-pick-3006-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9279832Z * [new branch] cherry-pick-3039-by-pytorch_bot_bot_ -> origin/cherry-pick-3039-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9281313Z * [new branch] cherry-pick-3045-by-pytorch_bot_bot_ -> origin/cherry-pick-3045-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9282476Z * [new branch] cherry-pick-3071-by-pytorch_bot_bot_ -> origin/cherry-pick-3071-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9283850Z * [new branch] cherry-pick-3100-by-pytorch_bot_bot_ -> origin/cherry-pick-3100-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9285338Z * [new branch] cherry-pick-3113-by-pytorch_bot_bot_ -> origin/cherry-pick-3113-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9286616Z * [new branch] cherry-pick-3137-by-pytorch_bot_bot_ -> origin/cherry-pick-3137-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9288283Z * [new branch] cherry-pick-3153-by-pytorch_bot_bot_ -> origin/cherry-pick-3153-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9289732Z * [new branch] cherry-pick-3170-by-pytorch_bot_bot_ -> origin/cherry-pick-3170-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9291217Z * [new branch] cherry-pick-3176-by-pytorch_bot_bot_ -> origin/cherry-pick-3176-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9292555Z * [new branch] cherry-pick-3188-by-pytorch_bot_bot_ -> origin/cherry-pick-3188-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9293892Z * [new branch] cherry-pick-3194-by-pytorch_bot_bot_ -> origin/cherry-pick-3194-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9295387Z * [new branch] cherry-pick-3202-by-pytorch_bot_bot_ -> origin/cherry-pick-3202-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9296668Z * [new branch] cherry-pick-3212-by-pytorch_bot_bot_ -> origin/cherry-pick-3212-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9298188Z * [new branch] cherry-pick-3216-by-pytorch_bot_bot_ -> origin/cherry-pick-3216-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9299465Z * [new branch] cherry-pick-3221-by-pytorch_bot_bot_ -> origin/cherry-pick-3221-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9301234Z * [new branch] cherry-pick-3222-by-pytorch_bot_bot_ -> origin/cherry-pick-3222-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9302373Z * [new branch] cherry-pick-3224-by-pytorch_bot_bot_ -> origin/cherry-pick-3224-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9303944Z * [new branch] cherry-pick-3234-by-pytorch_bot_bot_ -> origin/cherry-pick-3234-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9305230Z * [new branch] cherry-pick-3237-by-pytorch_bot_bot_ -> origin/cherry-pick-3237-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9306522Z * [new branch] cherry-pick-3238-by-pytorch_bot_bot_ -> origin/cherry-pick-3238-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9307999Z * [new branch] cherry-pick-3240-by-pytorch_bot_bot_ -> origin/cherry-pick-3240-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9309341Z * [new branch] cherry-pick-3244-by-pytorch_bot_bot_ -> origin/cherry-pick-3244-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9310629Z * [new branch] cherry-pick-3246-by-pytorch_bot_bot_ -> origin/cherry-pick-3246-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9311944Z * [new branch] cherry-pick-3247-by-pytorch_bot_bot_ -> origin/cherry-pick-3247-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9313434Z * [new branch] cherry-pick-3250-by-pytorch_bot_bot_ -> origin/cherry-pick-3250-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9314641Z * [new branch] cherry-pick-3251-by-pytorch_bot_bot_ -> origin/cherry-pick-3251-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9316091Z * [new branch] cherry-pick-3254-by-pytorch_bot_bot_ -> origin/cherry-pick-3254-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9317363Z * [new branch] cherry-pick-3270-by-pytorch_bot_bot_ -> origin/cherry-pick-3270-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9318642Z * [new branch] cherry-pick-3298-by-pytorch_bot_bot_ -> origin/cherry-pick-3298-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9320179Z * [new branch] cherry-pick-3300-by-pytorch_bot_bot_ -> origin/cherry-pick-3300-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9321440Z * [new branch] cherry-pick-3301-by-pytorch_bot_bot_ -> origin/cherry-pick-3301-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9322769Z * [new branch] cherry-pick-3315-by-pytorch_bot_bot_ -> origin/cherry-pick-3315-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9324172Z * [new branch] cherry-pick-3358-by-pytorch_bot_bot_ -> origin/cherry-pick-3358-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9325539Z * [new branch] cherry-pick-3391-by-pytorch_bot_bot_ -> origin/cherry-pick-3391-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9326924Z * [new branch] cherry-pick-3438-by-pytorch_bot_bot_ -> origin/cherry-pick-3438-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9328367Z * [new branch] cherry-pick-3736-by-pytorch_bot_bot_ -> origin/cherry-pick-3736-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9329623Z * [new branch] cherry-pick-3739-by-pytorch_bot_bot_ -> origin/cherry-pick-3739-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9330957Z * [new branch] cherry-pick-3759-by-pytorch_bot_bot_ -> origin/cherry-pick-3759-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9332351Z * [new branch] cherry-pick-3782-by-pytorch_bot_bot_ -> origin/cherry-pick-3782-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9333618Z * [new branch] cherry-pick-3798-by-pytorch_bot_bot_ -> origin/cherry-pick-3798-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9334859Z * [new branch] cherry-pick-3809-by-pytorch_bot_bot_ -> origin/cherry-pick-3809-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9336869Z * [new branch] cherry-pick-3810-by-pytorch_bot_bot_ -> origin/cherry-pick-3810-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9338416Z * [new branch] cherry-pick-3845-by-pytorch_bot_bot_ -> origin/cherry-pick-3845-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9339841Z * [new branch] cherry-pick-3847-by-pytorch_bot_bot_ -> origin/cherry-pick-3847-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9341231Z * [new branch] cherry-pick-3855-by-pytorch_bot_bot_ -> origin/cherry-pick-3855-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9342836Z * [new branch] cherry-pick-3861-by-pytorch_bot_bot_ -> origin/cherry-pick-3861-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9344263Z * [new branch] cherry-pick-3885-by-pytorch_bot_bot_ -> origin/cherry-pick-3885-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9345716Z * [new branch] cherry-pick-3896-by-pytorch_bot_bot_ -> origin/cherry-pick-3896-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9347171Z * [new branch] cherry-pick-3982-by-pytorch_bot_bot_ -> origin/cherry-pick-3982-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9348595Z * [new branch] cherry-pick-4003-by-pytorch_bot_bot_ -> origin/cherry-pick-4003-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9350291Z * [new branch] cherry-pick-4213-by-pytorch_bot_bot_ -> origin/cherry-pick-4213-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9351716Z * [new branch] cherry-pick-4214-by-pytorch_bot_bot_ -> origin/cherry-pick-4214-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9353170Z * [new branch] cherry-pick-4219-by-pytorch_bot_bot_ -> origin/cherry-pick-4219-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9354396Z * [new branch] cherry-pick-4220-by-pytorch_bot_bot_ -> origin/cherry-pick-4220-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9355717Z * [new branch] cherry-pick-4224-by-pytorch_bot_bot_ -> origin/cherry-pick-4224-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9357177Z * [new branch] cherry-pick-4225-by-pytorch_bot_bot_ -> origin/cherry-pick-4225-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9358490Z * [new branch] cherry-pick-4226-by-pytorch_bot_bot_ -> origin/cherry-pick-4226-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9359835Z * [new branch] cherry-pick-4231-by-pytorch_bot_bot_ -> origin/cherry-pick-4231-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9361147Z * [new branch] cherry-pick-4232-by-pytorch_bot_bot_ -> origin/cherry-pick-4232-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9362587Z * [new branch] cherry-pick-4233-by-pytorch_bot_bot_ -> origin/cherry-pick-4233-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9363999Z * [new branch] cherry-pick-4265-by-pytorch_bot_bot_ -> origin/cherry-pick-4265-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9365409Z * [new branch] cherry-pick-4266-by-pytorch_bot_bot_ -> origin/cherry-pick-4266-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9366705Z * [new branch] cherry-pick-4274-by-pytorch_bot_bot_ -> origin/cherry-pick-4274-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9368512Z * [new branch] cherry-pick-4299-by-pytorch_bot_bot_ -> origin/cherry-pick-4299-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9369815Z * [new branch] cherry-pick-4349-by-pytorch_bot_bot_ -> origin/cherry-pick-4349-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9371322Z * [new branch] cherry-pick-4356-by-pytorch_bot_bot_ -> origin/cherry-pick-4356-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9372618Z * [new branch] cherry-pick-4362-by-pytorch_bot_bot_ -> origin/cherry-pick-4362-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9374581Z * [new branch] cherry-pick-4378-by-pytorch_bot_bot_ -> origin/cherry-pick-4378-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9376190Z * [new branch] cherry-pick-5540-by-pytorch_bot_bot_ -> origin/cherry-pick-5540-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9377594Z * [new branch] cherry-pick-5725-by-pytorch_bot_bot_ -> origin/cherry-pick-5725-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9379021Z * [new branch] cherry-pick-5915-by-pytorch_bot_bot_ -> origin/cherry-pick-5915-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9380240Z * [new branch] cherry-pick-5951-by-pytorch_bot_bot_ -> origin/cherry-pick-5951-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9381695Z * [new branch] cherry-pick-5961-by-pytorch_bot_bot_ -> origin/cherry-pick-5961-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9383003Z * [new branch] cherry-pick-5965-by-pytorch_bot_bot_ -> origin/cherry-pick-5965-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9384584Z * [new branch] cherry-pick-6036-by-pytorch_bot_bot_ -> origin/cherry-pick-6036-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9385851Z * [new branch] cherry-pick-6217-by-pytorch_bot_bot_ -> origin/cherry-pick-6217-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9387310Z * [new branch] cherry-pick-7470-by-pytorch_bot_bot_ -> origin/cherry-pick-7470-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9388601Z * [new branch] cherry-pick-7599-by-pytorch_bot_bot_ -> origin/cherry-pick-7599-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9390572Z * [new branch] cherry-pick-7670-by-pytorch_bot_bot_ -> origin/cherry-pick-7670-by-pytorch_bot_bot_ 2025-06-05T23:12:46.9391983Z * [new branch] ci_build_ios_benchmark_app -> origin/ci_build_ios_benchmark_app 2025-06-05T23:12:46.9393842Z * [new branch] ci_test_xnnpack-extended-ops -> origin/ci_test_xnnpack-extended-ops 2025-06-05T23:12:46.9395481Z * [new branch] cleanup-android-app-pre-minibench -> origin/cleanup-android-app-pre-minibench 2025-06-05T23:12:46.9396907Z * [new branch] cleanup_test_model -> origin/cleanup_test_model 2025-06-05T23:12:46.9398401Z * [new branch] cmake-buck-parameter -> origin/cmake-buck-parameter 2025-06-05T23:12:46.9399648Z * [new branch] cmake-custom-ops -> origin/cmake-custom-ops 2025-06-05T23:12:46.9401174Z * [new branch] cmake-fix -> origin/cmake-fix 2025-06-05T23:12:46.9402825Z * [new branch] cmake-refactor -> origin/cmake-refactor 2025-06-05T23:12:46.9405115Z * [new branch] cmake_variable -> origin/cmake_variable 2025-06-05T23:12:46.9406653Z * [new branch] cmodi-meta-patch-1 -> origin/cmodi-meta-patch-1 2025-06-05T23:12:46.9408378Z * [new branch] cmodi-meta-patch-2 -> origin/cmodi-meta-patch-2 2025-06-05T23:12:46.9409887Z * [new branch] cmodi-meta-patch-3 -> origin/cmodi-meta-patch-3 2025-06-05T23:12:46.9411230Z * [new branch] cmodi-meta-patch-4 -> origin/cmodi-meta-patch-4 2025-06-05T23:12:46.9412641Z * [new branch] cmodi-meta-patch-5 -> origin/cmodi-meta-patch-5 2025-06-05T23:12:46.9413976Z * [new branch] cmodi-mtk-test -> origin/cmodi-mtk-test 2025-06-05T23:12:46.9415360Z * [new branch] cmodi-readme-change -> origin/cmodi-readme-change 2025-06-05T23:12:46.9416789Z * [new branch] config_exception -> origin/config_exception 2025-06-05T23:12:46.9418115Z * [new branch] configs -> origin/configs 2025-06-05T23:12:46.9419508Z * [new branch] coreml-changes -> origin/coreml-changes 2025-06-05T23:12:46.9420790Z * [new branch] coreml-test -> origin/coreml-test 2025-06-05T23:12:46.9422133Z * [new branch] correct_quantized -> origin/correct_quantized 2025-06-05T23:12:46.9423470Z * [new branch] cpp_python_interop -> origin/cpp_python_interop 2025-06-05T23:12:46.9424803Z * [new branch] cpuinfo-update -> origin/cpuinfo-update 2025-06-05T23:12:46.9426208Z * [new branch] create-stable-branch -> origin/create-stable-branch 2025-06-05T23:12:46.9427370Z * [new branch] cria -> origin/cria 2025-06-05T23:12:46.9429102Z * [new branch] csl/ch_viablestrict -> origin/csl/ch_viablestrict 2025-06-05T23:12:46.9430375Z * [new branch] csl/test -> origin/csl/test 2025-06-05T23:12:46.9431834Z * [new branch] custom_dep -> origin/custom_dep 2025-06-05T23:12:46.9433320Z * [new branch] davidlin54-patch-1 -> origin/davidlin54-patch-1 2025-06-05T23:12:46.9434768Z * [new branch] dbort-bug-template -> origin/dbort-bug-template 2025-06-05T23:12:46.9436180Z * [new branch] dbort-pip-prebuilt -> origin/dbort-pip-prebuilt 2025-06-05T23:12:46.9438363Z * [new branch] dbort/rfc/2023-11-backend-arguments -> origin/dbort/rfc/2023-11-backend-arguments 2025-06-05T23:12:46.9439359Z * [new branch] dbort/rfc/empty -> origin/dbort/rfc/empty 2025-06-05T23:12:46.9440839Z * [new branch] debug-llava-timeout -> origin/debug-llava-timeout 2025-06-05T23:12:46.9442272Z * [new branch] deconv_pyre -> origin/deconv_pyre 2025-06-05T23:12:46.9443775Z * [new branch] decouple_qnn_model_export -> origin/decouple_qnn_model_export 2025-06-05T23:12:46.9445968Z * [new branch] dependabot/pip/torchfix-0.6.0 -> origin/dependabot/pip/torchfix-0.6.0 2025-06-05T23:12:46.9447395Z * [new branch] dependabot/pip/torchfix-0.7.0 -> origin/dependabot/pip/torchfix-0.7.0 2025-06-05T23:12:46.9448805Z * [new branch] dequantize-schema-compatibility -> origin/dequantize-schema-compatibility 2025-06-05T23:12:46.9450139Z * [new branch] device_telemetry -> origin/device_telemetry 2025-06-05T23:12:46.9451520Z * [new branch] dictconfig -> origin/dictconfig 2025-06-05T23:12:46.9453036Z * [new branch] digantdesai-abd-example-fix -> origin/digantdesai-abd-example-fix 2025-06-05T23:12:46.9454473Z * [new branch] digantdesai-patch-1 -> origin/digantdesai-patch-1 2025-06-05T23:12:46.9455906Z * [new branch] digantdesai-patch-2 -> origin/digantdesai-patch-2 2025-06-05T23:12:46.9457229Z * [new branch] dim_order_revert -> origin/dim_order_revert 2025-06-05T23:12:46.9458798Z * [new branch] disable-android-aws-job-for-forked-pr -> origin/disable-android-aws-job-for-forked-pr 2025-06-05T23:12:46.9459962Z * [new branch] do_amb_exmaple -> origin/do_amb_exmaple 2025-06-05T23:12:46.9461432Z * [new branch] doc-polish -> origin/doc-polish 2025-06-05T23:12:46.9462892Z * [new branch] doc-revamp -> origin/doc-revamp 2025-06-05T23:12:46.9464353Z * [new branch] doc_link_to_benchmark_dashboard -> origin/doc_link_to_benchmark_dashboard 2025-06-05T23:12:46.9465568Z * [new branch] docker-build-force-push -> origin/docker-build-force-push 2025-06-05T23:12:46.9466885Z * [new branch] dtype -> origin/dtype 2025-06-05T23:12:46.9468378Z * [new branch] dvorjackz-patch-1 -> origin/dvorjackz-patch-1 2025-06-05T23:12:46.9469765Z * [new branch] dynamic_kv_cache_example -> origin/dynamic_kv_cache_example 2025-06-05T23:12:46.9471399Z * [new branch] eager -> origin/eager 2025-06-05T23:12:46.9472955Z * [new branch] enable-third-level-in-nav -> origin/enable-third-level-in-nav 2025-06-05T23:12:46.9474256Z * [new branch] enable_mps_pip -> origin/enable_mps_pip 2025-06-05T23:12:46.9475571Z * [new branch] enumerated-shape -> origin/enumerated-shape 2025-06-05T23:12:46.9476917Z * [new branch] error_msg_for_secrets -> origin/error_msg_for_secrets 2025-06-05T23:12:46.9478315Z * [new branch] ethos-u-runtime-digant -> origin/ethos-u-runtime-digant 2025-06-05T23:12:46.9479604Z * [new branch] eval -> origin/eval 2025-06-05T23:12:46.9481132Z * [new branch] executorch-241002 -> origin/executorch-241002 2025-06-05T23:12:46.9482432Z * [new branch] experiment-so -> origin/experiment-so 2025-06-05T23:12:46.9483926Z * [new branch] export-D49742389 -> origin/export-D49742389 2025-06-05T23:12:46.9485301Z * [new branch] export-D50076192 -> origin/export-D50076192 2025-06-05T23:12:46.9486670Z * [new branch] export-D51966963 -> origin/export-D51966963 2025-06-05T23:12:46.9488066Z * [new branch] export-D52221914 -> origin/export-D52221914 2025-06-05T23:12:46.9489444Z * [new branch] export-D52341722 -> origin/export-D52341722 2025-06-05T23:12:46.9491072Z * [new branch] export-D53095510 -> origin/export-D53095510 2025-06-05T23:12:46.9492454Z * [new branch] export-D53239380 -> origin/export-D53239380 2025-06-05T23:12:46.9493840Z * [new branch] export-D53252678 -> origin/export-D53252678 2025-06-05T23:12:46.9495742Z * [new branch] export-D53256808 -> origin/export-D53256808 2025-06-05T23:12:46.9497151Z * [new branch] export-D53290986 -> origin/export-D53290986 2025-06-05T23:12:46.9498535Z * [new branch] export-D53335087 -> origin/export-D53335087 2025-06-05T23:12:46.9499915Z * [new branch] export-D53338235 -> origin/export-D53338235 2025-06-05T23:12:46.9501264Z * [new branch] export-D53339795 -> origin/export-D53339795 2025-06-05T23:12:46.9502819Z * [new branch] export-D53340041 -> origin/export-D53340041 2025-06-05T23:12:46.9504204Z * [new branch] export-D53365959 -> origin/export-D53365959 2025-06-05T23:12:46.9505681Z * [new branch] export-D53436364 -> origin/export-D53436364 2025-06-05T23:12:46.9507085Z * [new branch] export-D53540645 -> origin/export-D53540645 2025-06-05T23:12:46.9508542Z * [new branch] export-D53584903 -> origin/export-D53584903 2025-06-05T23:12:46.9509961Z * [new branch] export-D53590328 -> origin/export-D53590328 2025-06-05T23:12:46.9511365Z * [new branch] export-D53677277 -> origin/export-D53677277 2025-06-05T23:12:46.9512748Z * [new branch] export-D53681935 -> origin/export-D53681935 2025-06-05T23:12:46.9514123Z * [new branch] export-D53687784 -> origin/export-D53687784 2025-06-05T23:12:46.9515518Z * [new branch] export-D53713471 -> origin/export-D53713471 2025-06-05T23:12:46.9516894Z * [new branch] export-D53725154 -> origin/export-D53725154 2025-06-05T23:12:46.9518397Z * [new branch] export-D53838962 -> origin/export-D53838962 2025-06-05T23:12:46.9519637Z * [new branch] export-D53839467 -> origin/export-D53839467 2025-06-05T23:12:46.9521019Z * [new branch] export-D53960228 -> origin/export-D53960228 2025-06-05T23:12:46.9522411Z * [new branch] export-D53985792 -> origin/export-D53985792 2025-06-05T23:12:46.9524167Z * [new branch] export-D53990647 -> origin/export-D53990647 2025-06-05T23:12:46.9525621Z * [new branch] export-D53995591 -> origin/export-D53995591 2025-06-05T23:12:46.9527008Z * [new branch] export-D54034581 -> origin/export-D54034581 2025-06-05T23:12:46.9528386Z * [new branch] export-D54047417 -> origin/export-D54047417 2025-06-05T23:12:46.9529896Z * [new branch] export-D54074479 -> origin/export-D54074479 2025-06-05T23:12:46.9531247Z * [new branch] export-D54074895 -> origin/export-D54074895 2025-06-05T23:12:46.9532638Z * [new branch] export-D54142779 -> origin/export-D54142779 2025-06-05T23:12:46.9534040Z * [new branch] export-D54159472 -> origin/export-D54159472 2025-06-05T23:12:46.9535484Z * [new branch] export-D54167581 -> origin/export-D54167581 2025-06-05T23:12:46.9536893Z * [new branch] export-D54180116 -> origin/export-D54180116 2025-06-05T23:12:46.9538352Z * [new branch] export-D54209318 -> origin/export-D54209318 2025-06-05T23:12:46.9539808Z * [new branch] export-D54300827 -> origin/export-D54300827 2025-06-05T23:12:46.9541263Z * [new branch] export-D54318979 -> origin/export-D54318979 2025-06-05T23:12:46.9542641Z * [new branch] export-D54349640 -> origin/export-D54349640 2025-06-05T23:12:46.9544021Z * [new branch] export-D54349853 -> origin/export-D54349853 2025-06-05T23:12:46.9545473Z * [new branch] export-D54350128 -> origin/export-D54350128 2025-06-05T23:12:46.9546694Z * [new branch] export-D54350318 -> origin/export-D54350318 2025-06-05T23:12:46.9548107Z * [new branch] export-D54377916 -> origin/export-D54377916 2025-06-05T23:12:46.9549444Z * [new branch] export-D54401567 -> origin/export-D54401567 2025-06-05T23:12:46.9550721Z * [new branch] export-D54447524 -> origin/export-D54447524 2025-06-05T23:12:46.9552128Z * [new branch] export-D54448184 -> origin/export-D54448184 2025-06-05T23:12:46.9553444Z * [new branch] export-D54454162 -> origin/export-D54454162 2025-06-05T23:12:46.9554828Z * [new branch] export-D54473147 -> origin/export-D54473147 2025-06-05T23:12:46.9556264Z * [new branch] export-D54525365 -> origin/export-D54525365 2025-06-05T23:12:46.9557674Z * [new branch] export-D54538932 -> origin/export-D54538932 2025-06-05T23:12:46.9559090Z * [new branch] export-D54543323 -> origin/export-D54543323 2025-06-05T23:12:46.9560515Z * [new branch] export-D54549436 -> origin/export-D54549436 2025-06-05T23:12:46.9562266Z * [new branch] export-D54549727 -> origin/export-D54549727 2025-06-05T23:12:46.9563695Z * [new branch] export-D54550265 -> origin/export-D54550265 2025-06-05T23:12:46.9565169Z * [new branch] export-D54553809 -> origin/export-D54553809 2025-06-05T23:12:46.9566583Z * [new branch] export-D54555495 -> origin/export-D54555495 2025-06-05T23:12:46.9567925Z * [new branch] export-D54588001 -> origin/export-D54588001 2025-06-05T23:12:46.9569311Z * [new branch] export-D54687725 -> origin/export-D54687725 2025-06-05T23:12:46.9570734Z * [new branch] export-D54806721 -> origin/export-D54806721 2025-06-05T23:12:46.9572202Z * [new branch] export-D54831762 -> origin/export-D54831762 2025-06-05T23:12:46.9573695Z * [new branch] export-D54836802 -> origin/export-D54836802 2025-06-05T23:12:46.9575016Z * [new branch] export-D54989240 -> origin/export-D54989240 2025-06-05T23:12:46.9576456Z * [new branch] export-D55024249 -> origin/export-D55024249 2025-06-05T23:12:46.9577858Z * [new branch] export-D55039873 -> origin/export-D55039873 2025-06-05T23:12:46.9579322Z * [new branch] export-D55042867 -> origin/export-D55042867 2025-06-05T23:12:46.9580714Z * [new branch] export-D55056265 -> origin/export-D55056265 2025-06-05T23:12:46.9582108Z * [new branch] export-D55162409 -> origin/export-D55162409 2025-06-05T23:12:46.9583534Z * [new branch] export-D55175415 -> origin/export-D55175415 2025-06-05T23:12:46.9585014Z * [new branch] export-D55258223 -> origin/export-D55258223 2025-06-05T23:12:46.9586768Z * [new branch] export-D55259028 -> origin/export-D55259028 2025-06-05T23:12:46.9588171Z * [new branch] export-D55263008 -> origin/export-D55263008 2025-06-05T23:12:46.9589611Z * [new branch] export-D55298701 -> origin/export-D55298701 2025-06-05T23:12:46.9591191Z * [new branch] export-D55300249 -> origin/export-D55300249 2025-06-05T23:12:46.9592427Z * [new branch] export-D55320548 -> origin/export-D55320548 2025-06-05T23:12:46.9593475Z * [new branch] export-D55344873 -> origin/export-D55344873 2025-06-05T23:12:46.9594716Z * [new branch] export-D55373341 -> origin/export-D55373341 2025-06-05T23:12:46.9595769Z * [new branch] export-D55374748 -> origin/export-D55374748 2025-06-05T23:12:46.9596960Z * [new branch] export-D55395844 -> origin/export-D55395844 2025-06-05T23:12:46.9597959Z * [new branch] export-D55409487 -> origin/export-D55409487 2025-06-05T23:12:46.9599204Z * [new branch] export-D55521379 -> origin/export-D55521379 2025-06-05T23:12:46.9600201Z * [new branch] export-D55548573 -> origin/export-D55548573 2025-06-05T23:12:46.9601238Z * [new branch] export-D55565485 -> origin/export-D55565485 2025-06-05T23:12:46.9602408Z * [new branch] export-D55577025 -> origin/export-D55577025 2025-06-05T23:12:46.9603457Z * [new branch] export-D55577026 -> origin/export-D55577026 2025-06-05T23:12:46.9604721Z * [new branch] export-D55597428 -> origin/export-D55597428 2025-06-05T23:12:46.9605752Z * [new branch] export-D55669235 -> origin/export-D55669235 2025-06-05T23:12:46.9606834Z * [new branch] export-D55714642 -> origin/export-D55714642 2025-06-05T23:12:46.9607909Z * [new branch] export-D55856491 -> origin/export-D55856491 2025-06-05T23:12:46.9609147Z * [new branch] export-D55907749 -> origin/export-D55907749 2025-06-05T23:12:46.9610176Z * [new branch] export-D55907750 -> origin/export-D55907750 2025-06-05T23:12:46.9611438Z * [new branch] export-D55907751 -> origin/export-D55907751 2025-06-05T23:12:46.9612375Z * [new branch] export-D55907752 -> origin/export-D55907752 2025-06-05T23:12:46.9613537Z * [new branch] export-D55944780 -> origin/export-D55944780 2025-06-05T23:12:46.9614590Z * [new branch] export-D55950023 -> origin/export-D55950023 2025-06-05T23:12:46.9615771Z * [new branch] export-D55974439 -> origin/export-D55974439 2025-06-05T23:12:46.9616841Z * [new branch] export-D55996735 -> origin/export-D55996735 2025-06-05T23:12:46.9617882Z * [new branch] export-D55997048 -> origin/export-D55997048 2025-06-05T23:12:46.9619085Z * [new branch] export-D55998135 -> origin/export-D55998135 2025-06-05T23:12:46.9620097Z * [new branch] export-D56001227 -> origin/export-D56001227 2025-06-05T23:12:46.9621173Z * [new branch] export-D56037593 -> origin/export-D56037593 2025-06-05T23:12:46.9622399Z * [new branch] export-D56052583 -> origin/export-D56052583 2025-06-05T23:12:46.9623437Z * [new branch] export-D56053255 -> origin/export-D56053255 2025-06-05T23:12:46.9624529Z * [new branch] export-D56212419 -> origin/export-D56212419 2025-06-05T23:12:46.9625630Z * [new branch] export-D56220174 -> origin/export-D56220174 2025-06-05T23:12:46.9626628Z * [new branch] export-D56224054 -> origin/export-D56224054 2025-06-05T23:12:46.9627709Z * [new branch] export-D56229021 -> origin/export-D56229021 2025-06-05T23:12:46.9628759Z * [new branch] export-D56230678 -> origin/export-D56230678 2025-06-05T23:12:46.9629951Z * [new branch] export-D56251563 -> origin/export-D56251563 2025-06-05T23:12:46.9630937Z * [new branch] export-D56251975 -> origin/export-D56251975 2025-06-05T23:12:46.9631991Z * [new branch] export-D56305088 -> origin/export-D56305088 2025-06-05T23:12:46.9633225Z * [new branch] export-D56310569 -> origin/export-D56310569 2025-06-05T23:12:46.9634242Z * [new branch] export-D56357762 -> origin/export-D56357762 2025-06-05T23:12:46.9635421Z * [new branch] export-D56372411 -> origin/export-D56372411 2025-06-05T23:12:46.9636421Z * [new branch] export-D56377662 -> origin/export-D56377662 2025-06-05T23:12:46.9637510Z * [new branch] export-D56401086 -> origin/export-D56401086 2025-06-05T23:12:46.9638833Z * [new branch] export-D56401457 -> origin/export-D56401457 2025-06-05T23:12:46.9640317Z * [new branch] export-D56424633 -> origin/export-D56424633 2025-06-05T23:12:46.9641287Z * [new branch] export-D56426044 -> origin/export-D56426044 2025-06-05T23:12:46.9642497Z * [new branch] export-D56499598 -> origin/export-D56499598 2025-06-05T23:12:46.9643727Z * [new branch] export-D56524303 -> origin/export-D56524303 2025-06-05T23:12:46.9644932Z * [new branch] export-D56532035 -> origin/export-D56532035 2025-06-05T23:12:46.9645981Z * [new branch] export-D56560549 -> origin/export-D56560549 2025-06-05T23:12:46.9647557Z * [new branch] export-D56577399 -> origin/export-D56577399 2025-06-05T23:12:46.9648574Z * [new branch] export-D56594373 -> origin/export-D56594373 2025-06-05T23:12:46.9650010Z * [new branch] export-D56740679 -> origin/export-D56740679 2025-06-05T23:12:46.9650705Z * [new branch] export-D56765969 -> origin/export-D56765969 2025-06-05T23:12:46.9651758Z * [new branch] export-D56766826 -> origin/export-D56766826 2025-06-05T23:12:46.9652930Z * [new branch] export-D56954147 -> origin/export-D56954147 2025-06-05T23:12:46.9653932Z * [new branch] export-D57071033 -> origin/export-D57071033 2025-06-05T23:12:46.9655127Z * [new branch] export-D57082021 -> origin/export-D57082021 2025-06-05T23:12:46.9656098Z * [new branch] export-D57084231 -> origin/export-D57084231 2025-06-05T23:12:46.9657329Z * [new branch] export-D57132664 -> origin/export-D57132664 2025-06-05T23:12:46.9658706Z * [new branch] export-D57225749 -> origin/export-D57225749 2025-06-05T23:12:46.9660206Z * [new branch] export-D57383968 -> origin/export-D57383968 2025-06-05T23:12:46.9661378Z * [new branch] export-D57491621 -> origin/export-D57491621 2025-06-05T23:12:46.9662542Z * [new branch] export-D57517927 -> origin/export-D57517927 2025-06-05T23:12:46.9663523Z * [new branch] export-D57554527 -> origin/export-D57554527 2025-06-05T23:12:46.9664686Z * [new branch] export-D57579738 -> origin/export-D57579738 2025-06-05T23:12:46.9665713Z * [new branch] export-D57617809 -> origin/export-D57617809 2025-06-05T23:12:46.9666913Z * [new branch] export-D57925542 -> origin/export-D57925542 2025-06-05T23:12:46.9668058Z * [new branch] export-D57936031 -> origin/export-D57936031 2025-06-05T23:12:46.9669092Z * [new branch] export-D57970255 -> origin/export-D57970255 2025-06-05T23:12:46.9670414Z * [new branch] export-D58101124 -> origin/export-D58101124 2025-06-05T23:12:46.9671464Z * [new branch] export-D58112226 -> origin/export-D58112226 2025-06-05T23:12:46.9672608Z * [new branch] export-D58149278 -> origin/export-D58149278 2025-06-05T23:12:46.9673783Z * [new branch] export-D58207691 -> origin/export-D58207691 2025-06-05T23:12:46.9674818Z * [new branch] export-D58221156 -> origin/export-D58221156 2025-06-05T23:12:46.9676031Z * [new branch] export-D58271588 -> origin/export-D58271588 2025-06-05T23:12:46.9677276Z * [new branch] export-D58394154 -> origin/export-D58394154 2025-06-05T23:12:46.9678315Z * [new branch] export-D58399313 -> origin/export-D58399313 2025-06-05T23:12:46.9679505Z * [new branch] export-D58465158 -> origin/export-D58465158 2025-06-05T23:12:46.9680483Z * [new branch] export-D58469500 -> origin/export-D58469500 2025-06-05T23:12:46.9681730Z * [new branch] export-D58560545 -> origin/export-D58560545 2025-06-05T23:12:46.9682629Z * [new branch] export-D58680953 -> origin/export-D58680953 2025-06-05T23:12:46.9683856Z * [new branch] export-D58710825 -> origin/export-D58710825 2025-06-05T23:12:46.9685139Z * [new branch] export-D58712012 -> origin/export-D58712012 2025-06-05T23:12:46.9686284Z * [new branch] export-D58833609 -> origin/export-D58833609 2025-06-05T23:12:46.9687447Z * [new branch] export-D58959269 -> origin/export-D58959269 2025-06-05T23:12:46.9688602Z * [new branch] export-D58973824 -> origin/export-D58973824 2025-06-05T23:12:46.9689733Z * [new branch] export-D58974035 -> origin/export-D58974035 2025-06-05T23:12:46.9691141Z * [new branch] export-D59097944 -> origin/export-D59097944 2025-06-05T23:12:46.9692323Z * [new branch] export-D59140916 -> origin/export-D59140916 2025-06-05T23:12:46.9693437Z * [new branch] export-D59238748 -> origin/export-D59238748 2025-06-05T23:12:46.9694488Z * [new branch] export-D59294438 -> origin/export-D59294438 2025-06-05T23:12:46.9695515Z * [new branch] export-D59294462 -> origin/export-D59294462 2025-06-05T23:12:46.9696714Z * [new branch] export-D59345251 -> origin/export-D59345251 2025-06-05T23:12:46.9697692Z * [new branch] export-D59438228 -> origin/export-D59438228 2025-06-05T23:12:46.9698933Z * [new branch] export-D59500061 -> origin/export-D59500061 2025-06-05T23:12:46.9699828Z * [new branch] export-D59503355 -> origin/export-D59503355 2025-06-05T23:12:46.9701132Z * [new branch] export-D59552606 -> origin/export-D59552606 2025-06-05T23:12:46.9702205Z * [new branch] export-D59600486 -> origin/export-D59600486 2025-06-05T23:12:46.9703437Z * [new branch] export-D59641404 -> origin/export-D59641404 2025-06-05T23:12:46.9704478Z * [new branch] export-D59647685 -> origin/export-D59647685 2025-06-05T23:12:46.9705762Z * [new branch] export-D60050087 -> origin/export-D60050087 2025-06-05T23:12:46.9706890Z * [new branch] export-D60070844 -> origin/export-D60070844 2025-06-05T23:12:46.9708030Z * [new branch] export-D60071019 -> origin/export-D60071019 2025-06-05T23:12:46.9709167Z * [new branch] export-D60073137 -> origin/export-D60073137 2025-06-05T23:12:46.9710197Z * [new branch] export-D60083871 -> origin/export-D60083871 2025-06-05T23:12:46.9711373Z * [new branch] export-D60125952 -> origin/export-D60125952 2025-06-05T23:12:46.9712481Z * [new branch] export-D60314979 -> origin/export-D60314979 2025-06-05T23:12:46.9713874Z * [new branch] export-D60319977 -> origin/export-D60319977 2025-06-05T23:12:46.9714998Z * [new branch] export-D60485375 -> origin/export-D60485375 2025-06-05T23:12:46.9716174Z * [new branch] export-D60544102 -> origin/export-D60544102 2025-06-05T23:12:46.9717152Z * [new branch] export-D60619295 -> origin/export-D60619295 2025-06-05T23:12:46.9718338Z * [new branch] export-D60696710 -> origin/export-D60696710 2025-06-05T23:12:46.9719492Z * [new branch] export-D61048254 -> origin/export-D61048254 2025-06-05T23:12:46.9720639Z * [new branch] export-D61080956 -> origin/export-D61080956 2025-06-05T23:12:46.9721580Z * [new branch] export-D61141396 -> origin/export-D61141396 2025-06-05T23:12:46.9723064Z * [new branch] export-D61146432 -> origin/export-D61146432 2025-06-05T23:12:46.9724372Z * [new branch] export-D61251233 -> origin/export-D61251233 2025-06-05T23:12:46.9725539Z * [new branch] export-D61343892 -> origin/export-D61343892 2025-06-05T23:12:46.9726455Z * [new branch] export-D61407442 -> origin/export-D61407442 2025-06-05T23:12:46.9727488Z * [new branch] export-D61509079 -> origin/export-D61509079 2025-06-05T23:12:46.9728566Z * [new branch] export-D61511514 -> origin/export-D61511514 2025-06-05T23:12:46.9729598Z * [new branch] export-D61568605 -> origin/export-D61568605 2025-06-05T23:12:46.9730821Z * [new branch] export-D61605316 -> origin/export-D61605316 2025-06-05T23:12:46.9731800Z * [new branch] export-D61612538 -> origin/export-D61612538 2025-06-05T23:12:46.9733368Z * [new branch] export-D61639074 -> origin/export-D61639074 2025-06-05T23:12:46.9734423Z * [new branch] export-D61686559 -> origin/export-D61686559 2025-06-05T23:12:46.9735655Z * [new branch] export-D61883224 -> origin/export-D61883224 2025-06-05T23:12:46.9736608Z * [new branch] export-D62148466 -> origin/export-D62148466 2025-06-05T23:12:46.9737846Z * [new branch] export-D62409715 -> origin/export-D62409715 2025-06-05T23:12:46.9738844Z * [new branch] export-D62427911 -> origin/export-D62427911 2025-06-05T23:12:46.9740056Z * [new branch] export-D62479584 -> origin/export-D62479584 2025-06-05T23:12:46.9741126Z * [new branch] export-D62512275 -> origin/export-D62512275 2025-06-05T23:12:46.9742226Z * [new branch] export-D62539799 -> origin/export-D62539799 2025-06-05T23:12:46.9743429Z * [new branch] export-D62546152 -> origin/export-D62546152 2025-06-05T23:12:46.9744411Z * [new branch] export-D62634206 -> origin/export-D62634206 2025-06-05T23:12:46.9745620Z * [new branch] export-D62648101 -> origin/export-D62648101 2025-06-05T23:12:46.9746627Z * [new branch] export-D62652832 -> origin/export-D62652832 2025-06-05T23:12:46.9747796Z * [new branch] export-D62761977 -> origin/export-D62761977 2025-06-05T23:12:46.9748835Z * [new branch] export-D62786631 -> origin/export-D62786631 2025-06-05T23:12:46.9750070Z * [new branch] export-D62898666 -> origin/export-D62898666 2025-06-05T23:12:46.9750988Z * [new branch] export-D62906375 -> origin/export-D62906375 2025-06-05T23:12:46.9752043Z * [new branch] export-D62910149 -> origin/export-D62910149 2025-06-05T23:12:46.9753240Z * [new branch] export-D63204927 -> origin/export-D63204927 2025-06-05T23:12:46.9754389Z * [new branch] export-D63264488 -> origin/export-D63264488 2025-06-05T23:12:46.9755413Z * [new branch] export-D63281705 -> origin/export-D63281705 2025-06-05T23:12:46.9756601Z * [new branch] export-D63344194 -> origin/export-D63344194 2025-06-05T23:12:46.9757597Z * [new branch] export-D63400245 -> origin/export-D63400245 2025-06-05T23:12:46.9758824Z * [new branch] export-D63430960 -> origin/export-D63430960 2025-06-05T23:12:46.9759801Z * [new branch] export-D63477936 -> origin/export-D63477936 2025-06-05T23:12:46.9760992Z * [new branch] export-D63518182 -> origin/export-D63518182 2025-06-05T23:12:46.9762321Z * [new branch] export-D63541800 -> origin/export-D63541800 2025-06-05T23:12:46.9763683Z * [new branch] export-D63646220 -> origin/export-D63646220 2025-06-05T23:12:46.9764713Z * [new branch] export-D63651681 -> origin/export-D63651681 2025-06-05T23:12:46.9765680Z * [new branch] export-D63656566 -> origin/export-D63656566 2025-06-05T23:12:46.9766879Z * [new branch] export-D63659947 -> origin/export-D63659947 2025-06-05T23:12:46.9768010Z * [new branch] export-D63659948 -> origin/export-D63659948 2025-06-05T23:12:46.9768903Z * [new branch] export-D63659950 -> origin/export-D63659950 2025-06-05T23:12:46.9769973Z * [new branch] export-D63738950 -> origin/export-D63738950 2025-06-05T23:12:46.9771065Z * [new branch] export-D63738952 -> origin/export-D63738952 2025-06-05T23:12:46.9772140Z * [new branch] export-D63741034 -> origin/export-D63741034 2025-06-05T23:12:46.9773206Z * [new branch] export-D63771297 -> origin/export-D63771297 2025-06-05T23:12:46.9774430Z * [new branch] export-D63779522 -> origin/export-D63779522 2025-06-05T23:12:46.9775687Z * [new branch] export-D63795843 -> origin/export-D63795843 2025-06-05T23:12:46.9776632Z * [new branch] export-D63842548 -> origin/export-D63842548 2025-06-05T23:12:46.9777718Z * [new branch] export-D63846832 -> origin/export-D63846832 2025-06-05T23:12:46.9778961Z * [new branch] export-D63913905 -> origin/export-D63913905 2025-06-05T23:12:46.9780155Z * [new branch] export-D63925008 -> origin/export-D63925008 2025-06-05T23:12:46.9781207Z * [new branch] export-D63926055 -> origin/export-D63926055 2025-06-05T23:12:46.9782264Z * [new branch] export-D63926845 -> origin/export-D63926845 2025-06-05T23:12:46.9783430Z * [new branch] export-D63926846 -> origin/export-D63926846 2025-06-05T23:12:46.9786631Z * [new branch] export-D63926847 -> origin/export-D63926847 2025-06-05T23:12:46.9787178Z * [new branch] export-D63926849 -> origin/export-D63926849 2025-06-05T23:12:46.9787675Z * [new branch] export-D63950962 -> origin/export-D63950962 2025-06-05T23:12:46.9788260Z * [new branch] export-D63951201 -> origin/export-D63951201 2025-06-05T23:12:46.9789143Z * [new branch] export-D63994058 -> origin/export-D63994058 2025-06-05T23:12:46.9790234Z * [new branch] export-D64004508 -> origin/export-D64004508 2025-06-05T23:12:46.9791552Z * [new branch] export-D64023523 -> origin/export-D64023523 2025-06-05T23:12:46.9792614Z * [new branch] export-D64063682 -> origin/export-D64063682 2025-06-05T23:12:46.9793689Z * [new branch] export-D64072692 -> origin/export-D64072692 2025-06-05T23:12:46.9794960Z * [new branch] export-D64074891 -> origin/export-D64074891 2025-06-05T23:12:46.9795993Z * [new branch] export-D64151426 -> origin/export-D64151426 2025-06-05T23:12:46.9797224Z * [new branch] export-D64209639 -> origin/export-D64209639 2025-06-05T23:12:46.9798300Z * [new branch] export-D64210644 -> origin/export-D64210644 2025-06-05T23:12:46.9799393Z * [new branch] export-D64309046 -> origin/export-D64309046 2025-06-05T23:12:46.9800603Z * [new branch] export-D64404190 -> origin/export-D64404190 2025-06-05T23:12:46.9801544Z * [new branch] export-D64407042 -> origin/export-D64407042 2025-06-05T23:12:46.9802634Z * [new branch] export-D64413153 -> origin/export-D64413153 2025-06-05T23:12:46.9803906Z * [new branch] export-D64436241 -> origin/export-D64436241 2025-06-05T23:12:46.9805406Z * [new branch] export-D64481537 -> origin/export-D64481537 2025-06-05T23:12:46.9806413Z * [new branch] export-D64485281 -> origin/export-D64485281 2025-06-05T23:12:46.9807502Z * [new branch] export-D64507094 -> origin/export-D64507094 2025-06-05T23:12:46.9808572Z * [new branch] export-D64541740 -> origin/export-D64541740 2025-06-05T23:12:46.9809844Z * [new branch] export-D64696334 -> origin/export-D64696334 2025-06-05T23:12:46.9810752Z * [new branch] export-D65393407 -> origin/export-D65393407 2025-06-05T23:12:46.9811961Z * [new branch] export-D65560950 -> origin/export-D65560950 2025-06-05T23:12:46.9812956Z * [new branch] export-D65766012 -> origin/export-D65766012 2025-06-05T23:12:46.9814157Z * [new branch] export-D66392647 -> origin/export-D66392647 2025-06-05T23:12:46.9815123Z * [new branch] export-D67436429 -> origin/export-D67436429 2025-06-05T23:12:46.9816174Z * [new branch] export-D67646596 -> origin/export-D67646596 2025-06-05T23:12:46.9817480Z * [new branch] export-D67810710 -> origin/export-D67810710 2025-06-05T23:12:46.9818311Z * [new branch] export-D69058862 -> origin/export-D69058862 2025-06-05T23:12:46.9819495Z * [new branch] export-D69541729 -> origin/export-D69541729 2025-06-05T23:12:46.9820738Z * [new branch] export-D70204407 -> origin/export-D70204407 2025-06-05T23:12:46.9821745Z * [new branch] export-D70593177 -> origin/export-D70593177 2025-06-05T23:12:46.9822941Z * [new branch] export-D71557301 -> origin/export-D71557301 2025-06-05T23:12:46.9824401Z * [new branch] export-D71769231 -> origin/export-D71769231 2025-06-05T23:12:46.9825427Z * [new branch] export-D71975615 -> origin/export-D71975615 2025-06-05T23:12:46.9826566Z * [new branch] export-D72617001 -> origin/export-D72617001 2025-06-05T23:12:46.9827585Z * [new branch] export-D73398040 -> origin/export-D73398040 2025-06-05T23:12:46.9828800Z * [new branch] export-D73619452 -> origin/export-D73619452 2025-06-05T23:12:46.9829829Z * [new branch] export-D73859317 -> origin/export-D73859317 2025-06-05T23:12:46.9830862Z * [new branch] export-D74344187 -> origin/export-D74344187 2025-06-05T23:12:46.9832044Z * [new branch] export-D75007026 -> origin/export-D75007026 2025-06-05T23:12:46.9833054Z * [new branch] export-D75179679 -> origin/export-D75179679 2025-06-05T23:12:46.9834099Z * [new branch] export-D75694961 -> origin/export-D75694961 2025-06-05T23:12:46.9835691Z * [new branch] export-benchmark-metrics-ios -> origin/export-benchmark-metrics-ios 2025-06-05T23:12:46.9836644Z * [new branch] export-phi-3-with-kv-cache -> origin/export-phi-3-with-kv-cache 2025-06-05T23:12:46.9837673Z * [new branch] export_changes -> origin/export_changes 2025-06-05T23:12:46.9838723Z * [new branch] export_llama_3_2_mm -> origin/export_llama_3_2_mm 2025-06-05T23:12:46.9839780Z * [new branch] export_phi-3-mini_wrapper -> origin/export_phi-3-mini_wrapper 2025-06-05T23:12:46.9840802Z * [new branch] export_phi_3_mini -> origin/export_phi_3_mini 2025-06-05T23:12:46.9841862Z * [new branch] extension-module-static -> origin/extension-module-static 2025-06-05T23:12:46.9843053Z * [new branch] find_pybind -> origin/find_pybind 2025-06-05T23:12:46.9844343Z * [new branch] fix-android-perf-periodic-default-spec -> origin/fix-android-perf-periodic-default-spec 2025-06-05T23:12:46.9845287Z * [new branch] fix-broken-android-app -> origin/fix-broken-android-app 2025-06-05T23:12:46.9846330Z * [new branch] fix-broken-trunk-jobs -> origin/fix-broken-trunk-jobs 2025-06-05T23:12:46.9847470Z * [new branch] fix-build-apple -> origin/fix-build-apple 2025-06-05T23:12:46.9848656Z * [new branch] fix-cherry-pick-script -> origin/fix-cherry-pick-script 2025-06-05T23:12:46.9849707Z * [new branch] fix-ci-workflow-syntax-error -> origin/fix-ci-workflow-syntax-error 2025-06-05T23:12:46.9850776Z * [new branch] fix-cmake -> origin/fix-cmake 2025-06-05T23:12:46.9851747Z * [new branch] fix-doc-build -> origin/fix-doc-build 2025-06-05T23:12:46.9852879Z * [new branch] fix-edge-menu -> origin/fix-edge-menu 2025-06-05T23:12:46.9854107Z * [new branch] fix-extract-android-benchmark-results-error -> origin/fix-extract-android-benchmark-results-error 2025-06-05T23:12:46.9854999Z * [new branch] fix-flake8-lint -> origin/fix-flake8-lint 2025-06-05T23:12:46.9856164Z * [new branch] fix-flaky-ci-issue-doc-buck2-macos -> origin/fix-flaky-ci-issue-doc-buck2-macos 2025-06-05T23:12:46.9857606Z * [new branch] fix-flaky-missing-libzstd-macos -> origin/fix-flaky-missing-libzstd-macos 2025-06-05T23:12:46.9858525Z * [new branch] fix-gptq -> origin/fix-gptq 2025-06-05T23:12:46.9859528Z * [new branch] fix-images -> origin/fix-images 2025-06-05T23:12:46.9860556Z * [new branch] fix-llava-export-oom -> origin/fix-llava-export-oom 2025-06-05T23:12:46.9861769Z * [new branch] fix-missing-extra-data-package-device-farm -> origin/fix-missing-extra-data-package-device-farm 2025-06-05T23:12:46.9862682Z * [new branch] fix-missing-flatc-doc-build -> origin/fix-missing-flatc-doc-build 2025-06-05T23:12:46.9863738Z * [new branch] fix-mobilebert-llama2-ci-failure -> origin/fix-mobilebert-llama2-ci-failure 2025-06-05T23:12:46.9864697Z * [new branch] fix-nightly-build-after-6538 -> origin/fix-nightly-build-after-6538 2025-06-05T23:12:46.9865846Z * [new branch] fix-update-commit-hash-env-condition -> origin/fix-update-commit-hash-env-condition 2025-06-05T23:12:46.9867131Z * [new branch] fix-wrong-test-infra-branch-release-0.2 -> origin/fix-wrong-test-infra-branch-release-0.2 2025-06-05T23:12:46.9868074Z * [new branch] fixSKIPbug -> origin/fixSKIPbug 2025-06-05T23:12:46.9869286Z * [new branch] fix_ManagedTensor -> origin/fix_ManagedTensor 2025-06-05T23:12:46.9870186Z * [new branch] fix_data_loader -> origin/fix_data_loader 2025-06-05T23:12:46.9871277Z * [new branch] fix_eval -> origin/fix_eval 2025-06-05T23:12:46.9872226Z * [new branch] fix_export_hf_script -> origin/fix_export_hf_script 2025-06-05T23:12:46.9873460Z * [new branch] fix_flatc -> origin/fix_flatc 2025-06-05T23:12:46.9874439Z * [new branch] fix_framework -> origin/fix_framework 2025-06-05T23:12:46.9875956Z * [new branch] fix_framework2 -> origin/fix_framework2 2025-06-05T23:12:46.9876913Z * [new branch] fix_hard_coded_mps_model_names -> origin/fix_hard_coded_mps_model_names 2025-06-05T23:12:46.9877955Z * [new branch] fix_licenses_mediatek_dual -> origin/fix_licenses_mediatek_dual 2025-06-05T23:12:46.9878944Z * [new branch] fix_lint -> origin/fix_lint 2025-06-05T23:12:46.9879910Z * [new branch] fix_llama -> origin/fix_llama 2025-06-05T23:12:46.9880903Z * [new branch] fix_llava_eager -> origin/fix_llava_eager 2025-06-05T23:12:46.9881886Z * [new branch] fix_llava_test -> origin/fix_llava_test 2025-06-05T23:12:46.9882880Z * [new branch] fix_mac_ci -> origin/fix_mac_ci 2025-06-05T23:12:46.9884200Z * [new branch] fix_memory_opt_comment -> origin/fix_memory_opt_comment 2025-06-05T23:12:46.9885169Z * [new branch] fix_quantized_ops -> origin/fix_quantized_ops 2025-06-05T23:12:46.9886422Z * [new branch] fix_runner -> origin/fix_runner 2025-06-05T23:12:46.9887409Z * [new branch] fix_sdk_cmake -> origin/fix_sdk_cmake 2025-06-05T23:12:46.9888443Z * [new branch] fixup-T160292471-main -> origin/fixup-T160292471-main 2025-06-05T23:12:46.9889481Z * [new branch] fixup-T160518348-main -> origin/fixup-T160518348-main 2025-06-05T23:12:46.9890429Z * [new branch] fixup-T162252006-main -> origin/fixup-T162252006-main 2025-06-05T23:12:46.9893264Z * [new branch] fixup-T162438489-main -> origin/fixup-T162438489-main 2025-06-05T23:12:46.9894570Z * [new branch] fixup-T166549363-main -> origin/fixup-T166549363-main 2025-06-05T23:12:46.9895526Z * [new branch] fixup-T168811555-main -> origin/fixup-T168811555-main 2025-06-05T23:12:46.9896565Z * [new branch] fixup-T183138819-main -> origin/fixup-T183138819-main 2025-06-05T23:12:46.9897588Z * [new branch] fixup-T192279899-main -> origin/fixup-T192279899-main 2025-06-05T23:12:46.9898611Z * [new branch] flamingo_e2e -> origin/flamingo_e2e 2025-06-05T23:12:46.9899599Z * [new branch] flamingo_export -> origin/flamingo_export 2025-06-05T23:12:46.9917983Z * [new branch] flatbuffers_fix -> origin/flatbuffers_fix 2025-06-05T23:12:46.9918592Z * [new branch] fp16 -> origin/fp16 2025-06-05T23:12:46.9919061Z * [new branch] fp16_bf16_xnnpack -> origin/fp16_bf16_xnnpack 2025-06-05T23:12:46.9919627Z * [new branch] gc_sections_Apple -> origin/gc_sections_Apple 2025-06-05T23:12:46.9920120Z * [new branch] gemma_executorch -> origin/gemma_executorch 2025-06-05T23:12:46.9920616Z * [new branch] get_python_lib -> origin/get_python_lib 2025-06-05T23:12:46.9921137Z * [new branch] gh-pages -> origin/gh-pages 2025-06-05T23:12:46.9921651Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-06-05T23:12:46.9922284Z * [new branch] gh/Gasoonjia/2/base -> origin/gh/Gasoonjia/2/base 2025-06-05T23:12:46.9922811Z * [new branch] gh/Gasoonjia/3/base -> origin/gh/Gasoonjia/3/base 2025-06-05T23:12:46.9923346Z * [new branch] gh/Gasoonjia/4/base -> origin/gh/Gasoonjia/4/base 2025-06-05T23:12:46.9923985Z * [new branch] gh/Gasoonjia/5/base -> origin/gh/Gasoonjia/5/base 2025-06-05T23:12:46.9924512Z * [new branch] gh/Gasoonjia/6/base -> origin/gh/Gasoonjia/6/base 2025-06-05T23:12:46.9925012Z * [new branch] gh/PaliC/7/base -> origin/gh/PaliC/7/base 2025-06-05T23:12:46.9925566Z * [new branch] gh/PaliC/7/orig -> origin/gh/PaliC/7/orig 2025-06-05T23:12:46.9926061Z * [new branch] gh/PaliC/8/base -> origin/gh/PaliC/8/base 2025-06-05T23:12:46.9926549Z * [new branch] gh/PaliC/8/head -> origin/gh/PaliC/8/head 2025-06-05T23:12:46.9927125Z * [new branch] gh/PaliC/8/orig -> origin/gh/PaliC/8/orig 2025-06-05T23:12:46.9927602Z * [new branch] gh/PaliC/9/base -> origin/gh/PaliC/9/base 2025-06-05T23:12:46.9928349Z * [new branch] gh/PaliC/9/head -> origin/gh/PaliC/9/head 2025-06-05T23:12:46.9928842Z * [new branch] gh/PaliC/9/orig -> origin/gh/PaliC/9/orig 2025-06-05T23:12:46.9930617Z * [new branch] gh/SS-JIA/214/base -> origin/gh/SS-JIA/214/base 2025-06-05T23:12:46.9932344Z * [new branch] gh/SS-JIA/215/base -> origin/gh/SS-JIA/215/base 2025-06-05T23:12:46.9934082Z * [new branch] gh/SS-JIA/216/base -> origin/gh/SS-JIA/216/base 2025-06-05T23:12:46.9935957Z * [new branch] gh/SS-JIA/217/base -> origin/gh/SS-JIA/217/base 2025-06-05T23:12:46.9937720Z * [new branch] gh/SS-JIA/218/base -> origin/gh/SS-JIA/218/base 2025-06-05T23:12:46.9939519Z * [new branch] gh/SS-JIA/219/base -> origin/gh/SS-JIA/219/base 2025-06-05T23:12:46.9941296Z * [new branch] gh/SS-JIA/220/base -> origin/gh/SS-JIA/220/base 2025-06-05T23:12:46.9943171Z * [new branch] gh/SS-JIA/221/base -> origin/gh/SS-JIA/221/base 2025-06-05T23:12:46.9944848Z * [new branch] gh/SS-JIA/222/base -> origin/gh/SS-JIA/222/base 2025-06-05T23:12:46.9946615Z * [new branch] gh/SS-JIA/223/base -> origin/gh/SS-JIA/223/base 2025-06-05T23:12:46.9948531Z * [new branch] gh/SS-JIA/224/base -> origin/gh/SS-JIA/224/base 2025-06-05T23:12:46.9950284Z * [new branch] gh/SS-JIA/225/base -> origin/gh/SS-JIA/225/base 2025-06-05T23:12:46.9951635Z * [new branch] gh/SS-JIA/225/head -> origin/gh/SS-JIA/225/head 2025-06-05T23:12:46.9953038Z * [new branch] gh/SS-JIA/225/orig -> origin/gh/SS-JIA/225/orig 2025-06-05T23:12:46.9954776Z * [new branch] gh/SS-JIA/226/base -> origin/gh/SS-JIA/226/base 2025-06-05T23:12:46.9956537Z * [new branch] gh/SS-JIA/227/base -> origin/gh/SS-JIA/227/base 2025-06-05T23:12:46.9958281Z * [new branch] gh/SS-JIA/228/base -> origin/gh/SS-JIA/228/base 2025-06-05T23:12:46.9960121Z * [new branch] gh/SS-JIA/229/base -> origin/gh/SS-JIA/229/base 2025-06-05T23:12:46.9962253Z * [new branch] gh/SS-JIA/230/base -> origin/gh/SS-JIA/230/base 2025-06-05T23:12:46.9964134Z * [new branch] gh/SS-JIA/231/base -> origin/gh/SS-JIA/231/base 2025-06-05T23:12:46.9966037Z * [new branch] gh/SS-JIA/232/base -> origin/gh/SS-JIA/232/base 2025-06-05T23:12:46.9967872Z * [new branch] gh/SS-JIA/233/base -> origin/gh/SS-JIA/233/base 2025-06-05T23:12:46.9969680Z * [new branch] gh/SS-JIA/234/base -> origin/gh/SS-JIA/234/base 2025-06-05T23:12:46.9971527Z * [new branch] gh/SS-JIA/235/base -> origin/gh/SS-JIA/235/base 2025-06-05T23:12:46.9973265Z * [new branch] gh/SS-JIA/236/base -> origin/gh/SS-JIA/236/base 2025-06-05T23:12:46.9975506Z * [new branch] gh/SS-JIA/236/head -> origin/gh/SS-JIA/236/head 2025-06-05T23:12:46.9977734Z * [new branch] gh/SS-JIA/236/orig -> origin/gh/SS-JIA/236/orig 2025-06-05T23:12:46.9979282Z * [new branch] gh/SS-JIA/237/base -> origin/gh/SS-JIA/237/base 2025-06-05T23:12:46.9980891Z * [new branch] gh/SS-JIA/237/head -> origin/gh/SS-JIA/237/head 2025-06-05T23:12:46.9982456Z * [new branch] gh/SS-JIA/237/orig -> origin/gh/SS-JIA/237/orig 2025-06-05T23:12:46.9984436Z * [new branch] gh/ahmtox/1/base -> origin/gh/ahmtox/1/base 2025-06-05T23:12:46.9986267Z * [new branch] gh/ahmtox/10/base -> origin/gh/ahmtox/10/base 2025-06-05T23:12:46.9987662Z * [new branch] gh/ahmtox/10/head -> origin/gh/ahmtox/10/head 2025-06-05T23:12:46.9988851Z * [new branch] gh/ahmtox/10/orig -> origin/gh/ahmtox/10/orig 2025-06-05T23:12:46.9990319Z * [new branch] gh/ahmtox/11/base -> origin/gh/ahmtox/11/base 2025-06-05T23:12:46.9991937Z * [new branch] gh/ahmtox/11/head -> origin/gh/ahmtox/11/head 2025-06-05T23:12:46.9993374Z * [new branch] gh/ahmtox/11/orig -> origin/gh/ahmtox/11/orig 2025-06-05T23:12:46.9995127Z * [new branch] gh/ahmtox/2/base -> origin/gh/ahmtox/2/base 2025-06-05T23:12:46.9996857Z * [new branch] gh/ahmtox/3/base -> origin/gh/ahmtox/3/base 2025-06-05T23:12:46.9998228Z * [new branch] gh/ahmtox/3/orig -> origin/gh/ahmtox/3/orig 2025-06-05T23:12:47.0000038Z * [new branch] gh/ahmtox/4/base -> origin/gh/ahmtox/4/base 2025-06-05T23:12:47.0001912Z * [new branch] gh/ahmtox/5/base -> origin/gh/ahmtox/5/base 2025-06-05T23:12:47.0003117Z * [new branch] gh/ahmtox/5/head -> origin/gh/ahmtox/5/head 2025-06-05T23:12:47.0004759Z * [new branch] gh/ahmtox/5/orig -> origin/gh/ahmtox/5/orig 2025-06-05T23:12:47.0006583Z * [new branch] gh/ahmtox/6/base -> origin/gh/ahmtox/6/base 2025-06-05T23:12:47.0008199Z * [new branch] gh/ahmtox/7/base -> origin/gh/ahmtox/7/base 2025-06-05T23:12:47.0009571Z * [new branch] gh/ahmtox/7/head -> origin/gh/ahmtox/7/head 2025-06-05T23:12:47.0010923Z * [new branch] gh/ahmtox/7/orig -> origin/gh/ahmtox/7/orig 2025-06-05T23:12:47.0012432Z * [new branch] gh/ahmtox/8/base -> origin/gh/ahmtox/8/base 2025-06-05T23:12:47.0013738Z * [new branch] gh/ahmtox/8/head -> origin/gh/ahmtox/8/head 2025-06-05T23:12:47.0015105Z * [new branch] gh/ahmtox/8/orig -> origin/gh/ahmtox/8/orig 2025-06-05T23:12:47.0016564Z * [new branch] gh/ahmtox/9/base -> origin/gh/ahmtox/9/base 2025-06-05T23:12:47.0017900Z * [new branch] gh/ahmtox/9/head -> origin/gh/ahmtox/9/head 2025-06-05T23:12:47.0018790Z * [new branch] gh/ahmtox/9/orig -> origin/gh/ahmtox/9/orig 2025-06-05T23:12:47.0020434Z * [new branch] gh/cccclai/1/base -> origin/gh/cccclai/1/base 2025-06-05T23:12:47.0021397Z * [new branch] gh/cccclai/1/head -> origin/gh/cccclai/1/head 2025-06-05T23:12:47.0022379Z * [new branch] gh/cccclai/1/orig -> origin/gh/cccclai/1/orig 2025-06-05T23:12:47.0023803Z * [new branch] gh/cccclai/10/base -> origin/gh/cccclai/10/base 2025-06-05T23:12:47.0024711Z * [new branch] gh/cccclai/10/head -> origin/gh/cccclai/10/head 2025-06-05T23:12:47.0025758Z * [new branch] gh/cccclai/10/orig -> origin/gh/cccclai/10/orig 2025-06-05T23:12:47.0027179Z * [new branch] gh/cccclai/11/base -> origin/gh/cccclai/11/base 2025-06-05T23:12:47.0028125Z * [new branch] gh/cccclai/11/head -> origin/gh/cccclai/11/head 2025-06-05T23:12:47.0029319Z * [new branch] gh/cccclai/11/orig -> origin/gh/cccclai/11/orig 2025-06-05T23:12:47.0030624Z * [new branch] gh/cccclai/12/base -> origin/gh/cccclai/12/base 2025-06-05T23:12:47.0031561Z * [new branch] gh/cccclai/12/head -> origin/gh/cccclai/12/head 2025-06-05T23:12:47.0032554Z * [new branch] gh/cccclai/12/orig -> origin/gh/cccclai/12/orig 2025-06-05T23:12:47.0034205Z * [new branch] gh/cccclai/13/base -> origin/gh/cccclai/13/base 2025-06-05T23:12:47.0035519Z * [new branch] gh/cccclai/13/head -> origin/gh/cccclai/13/head 2025-06-05T23:12:47.0036753Z * [new branch] gh/cccclai/13/orig -> origin/gh/cccclai/13/orig 2025-06-05T23:12:47.0038051Z * [new branch] gh/cccclai/14/base -> origin/gh/cccclai/14/base 2025-06-05T23:12:47.0038951Z * [new branch] gh/cccclai/14/head -> origin/gh/cccclai/14/head 2025-06-05T23:12:47.0039896Z * [new branch] gh/cccclai/14/orig -> origin/gh/cccclai/14/orig 2025-06-05T23:12:47.0041396Z * [new branch] gh/cccclai/15/base -> origin/gh/cccclai/15/base 2025-06-05T23:12:47.0042270Z * [new branch] gh/cccclai/15/head -> origin/gh/cccclai/15/head 2025-06-05T23:12:47.0043252Z * [new branch] gh/cccclai/15/orig -> origin/gh/cccclai/15/orig 2025-06-05T23:12:47.0044793Z * [new branch] gh/cccclai/16/base -> origin/gh/cccclai/16/base 2025-06-05T23:12:47.0045645Z * [new branch] gh/cccclai/16/head -> origin/gh/cccclai/16/head 2025-06-05T23:12:47.0046679Z * [new branch] gh/cccclai/16/orig -> origin/gh/cccclai/16/orig 2025-06-05T23:12:47.0048089Z * [new branch] gh/cccclai/17/base -> origin/gh/cccclai/17/base 2025-06-05T23:12:47.0049155Z * [new branch] gh/cccclai/17/head -> origin/gh/cccclai/17/head 2025-06-05T23:12:47.0050053Z * [new branch] gh/cccclai/17/orig -> origin/gh/cccclai/17/orig 2025-06-05T23:12:47.0051575Z * [new branch] gh/cccclai/18/base -> origin/gh/cccclai/18/base 2025-06-05T23:12:47.0053091Z * [new branch] gh/cccclai/18/head -> origin/gh/cccclai/18/head 2025-06-05T23:12:47.0054668Z * [new branch] gh/cccclai/18/orig -> origin/gh/cccclai/18/orig 2025-06-05T23:12:47.0056185Z * [new branch] gh/cccclai/19/base -> origin/gh/cccclai/19/base 2025-06-05T23:12:47.0056954Z * [new branch] gh/cccclai/19/head -> origin/gh/cccclai/19/head 2025-06-05T23:12:47.0057863Z * [new branch] gh/cccclai/19/orig -> origin/gh/cccclai/19/orig 2025-06-05T23:12:47.0059268Z * [new branch] gh/cccclai/2/base -> origin/gh/cccclai/2/base 2025-06-05T23:12:47.0060210Z * [new branch] gh/cccclai/2/head -> origin/gh/cccclai/2/head 2025-06-05T23:12:47.0061132Z * [new branch] gh/cccclai/2/orig -> origin/gh/cccclai/2/orig 2025-06-05T23:12:47.0062583Z * [new branch] gh/cccclai/20/base -> origin/gh/cccclai/20/base 2025-06-05T23:12:47.0063424Z * [new branch] gh/cccclai/20/head -> origin/gh/cccclai/20/head 2025-06-05T23:12:47.0064422Z * [new branch] gh/cccclai/20/orig -> origin/gh/cccclai/20/orig 2025-06-05T23:12:47.0066003Z * [new branch] gh/cccclai/21/base -> origin/gh/cccclai/21/base 2025-06-05T23:12:47.0066912Z * [new branch] gh/cccclai/21/head -> origin/gh/cccclai/21/head 2025-06-05T23:12:47.0067965Z * [new branch] gh/cccclai/21/orig -> origin/gh/cccclai/21/orig 2025-06-05T23:12:47.0069192Z * [new branch] gh/cccclai/22/base -> origin/gh/cccclai/22/base 2025-06-05T23:12:47.0070081Z * [new branch] gh/cccclai/22/head -> origin/gh/cccclai/22/head 2025-06-05T23:12:47.0071073Z * [new branch] gh/cccclai/22/orig -> origin/gh/cccclai/22/orig 2025-06-05T23:12:47.0072333Z * [new branch] gh/cccclai/23/base -> origin/gh/cccclai/23/base 2025-06-05T23:12:47.0073232Z * [new branch] gh/cccclai/23/head -> origin/gh/cccclai/23/head 2025-06-05T23:12:47.0074231Z * [new branch] gh/cccclai/23/orig -> origin/gh/cccclai/23/orig 2025-06-05T23:12:47.0075605Z * [new branch] gh/cccclai/3/base -> origin/gh/cccclai/3/base 2025-06-05T23:12:47.0076616Z * [new branch] gh/cccclai/3/head -> origin/gh/cccclai/3/head 2025-06-05T23:12:47.0077616Z * [new branch] gh/cccclai/3/orig -> origin/gh/cccclai/3/orig 2025-06-05T23:12:47.0079318Z * [new branch] gh/cccclai/4/base -> origin/gh/cccclai/4/base 2025-06-05T23:12:47.0080368Z * [new branch] gh/cccclai/4/head -> origin/gh/cccclai/4/head 2025-06-05T23:12:47.0081947Z * [new branch] gh/cccclai/4/orig -> origin/gh/cccclai/4/orig 2025-06-05T23:12:47.0083362Z * [new branch] gh/cccclai/5/base -> origin/gh/cccclai/5/base 2025-06-05T23:12:47.0084514Z * [new branch] gh/cccclai/5/head -> origin/gh/cccclai/5/head 2025-06-05T23:12:47.0085856Z * [new branch] gh/cccclai/5/orig -> origin/gh/cccclai/5/orig 2025-06-05T23:12:47.0087683Z * [new branch] gh/cccclai/6/base -> origin/gh/cccclai/6/base 2025-06-05T23:12:47.0088650Z * [new branch] gh/cccclai/6/head -> origin/gh/cccclai/6/head 2025-06-05T23:12:47.0089622Z * [new branch] gh/cccclai/6/orig -> origin/gh/cccclai/6/orig 2025-06-05T23:12:47.0091288Z * [new branch] gh/cccclai/7/base -> origin/gh/cccclai/7/base 2025-06-05T23:12:47.0092334Z * [new branch] gh/cccclai/7/head -> origin/gh/cccclai/7/head 2025-06-05T23:12:47.0093305Z * [new branch] gh/cccclai/7/orig -> origin/gh/cccclai/7/orig 2025-06-05T23:12:47.0094618Z * [new branch] gh/cccclai/8/base -> origin/gh/cccclai/8/base 2025-06-05T23:12:47.0095643Z * [new branch] gh/cccclai/8/head -> origin/gh/cccclai/8/head 2025-06-05T23:12:47.0096533Z * [new branch] gh/cccclai/8/orig -> origin/gh/cccclai/8/orig 2025-06-05T23:12:47.0098063Z * [new branch] gh/cccclai/9/base -> origin/gh/cccclai/9/base 2025-06-05T23:12:47.0099008Z * [new branch] gh/cccclai/9/head -> origin/gh/cccclai/9/head 2025-06-05T23:12:47.0100020Z * [new branch] gh/cccclai/9/orig -> origin/gh/cccclai/9/orig 2025-06-05T23:12:47.0101581Z * [new branch] gh/davidlin54/1/next -> origin/gh/davidlin54/1/next 2025-06-05T23:12:47.0102477Z * [new branch] gh/davidlin54/1/orig -> origin/gh/davidlin54/1/orig 2025-06-05T23:12:47.0103834Z * [new branch] gh/davidlin54/2/next -> origin/gh/davidlin54/2/next 2025-06-05T23:12:47.0104790Z * [new branch] gh/davidlin54/2/orig -> origin/gh/davidlin54/2/orig 2025-06-05T23:12:47.0106069Z * [new branch] gh/davidlin54/3/next -> origin/gh/davidlin54/3/next 2025-06-05T23:12:47.0107066Z * [new branch] gh/davidlin54/3/orig -> origin/gh/davidlin54/3/orig 2025-06-05T23:12:47.0108530Z * [new branch] gh/davidlin54/4/next -> origin/gh/davidlin54/4/next 2025-06-05T23:12:47.0109430Z * [new branch] gh/davidlin54/4/orig -> origin/gh/davidlin54/4/orig 2025-06-05T23:12:47.0110809Z * [new branch] gh/davidlin54/5/next -> origin/gh/davidlin54/5/next 2025-06-05T23:12:47.0111703Z * [new branch] gh/davidlin54/5/orig -> origin/gh/davidlin54/5/orig 2025-06-05T23:12:47.0113412Z * [new branch] gh/digantdesai/1/base -> origin/gh/digantdesai/1/base 2025-06-05T23:12:47.0114340Z * [new branch] gh/digantdesai/1/head -> origin/gh/digantdesai/1/head 2025-06-05T23:12:47.0115775Z * [new branch] gh/digantdesai/10/base -> origin/gh/digantdesai/10/base 2025-06-05T23:12:47.0117247Z * [new branch] gh/digantdesai/11/base -> origin/gh/digantdesai/11/base 2025-06-05T23:12:47.0118271Z * [new branch] gh/digantdesai/11/head -> origin/gh/digantdesai/11/head 2025-06-05T23:12:47.0119685Z * [new branch] gh/digantdesai/11/orig -> origin/gh/digantdesai/11/orig 2025-06-05T23:12:47.0121128Z * [new branch] gh/digantdesai/12/base -> origin/gh/digantdesai/12/base 2025-06-05T23:12:47.0122134Z * [new branch] gh/digantdesai/12/head -> origin/gh/digantdesai/12/head 2025-06-05T23:12:47.0123444Z * [new branch] gh/digantdesai/13/base -> origin/gh/digantdesai/13/base 2025-06-05T23:12:47.0124521Z * [new branch] gh/digantdesai/13/head -> origin/gh/digantdesai/13/head 2025-06-05T23:12:47.0125572Z * [new branch] gh/digantdesai/13/orig -> origin/gh/digantdesai/13/orig 2025-06-05T23:12:47.0127065Z * [new branch] gh/digantdesai/14/base -> origin/gh/digantdesai/14/base 2025-06-05T23:12:47.0128025Z * [new branch] gh/digantdesai/14/head -> origin/gh/digantdesai/14/head 2025-06-05T23:12:47.0129020Z * [new branch] gh/digantdesai/14/orig -> origin/gh/digantdesai/14/orig 2025-06-05T23:12:47.0130414Z * [new branch] gh/digantdesai/15/base -> origin/gh/digantdesai/15/base 2025-06-05T23:12:47.0131319Z * [new branch] gh/digantdesai/15/head -> origin/gh/digantdesai/15/head 2025-06-05T23:12:47.0132996Z * [new branch] gh/digantdesai/15/orig -> origin/gh/digantdesai/15/orig 2025-06-05T23:12:47.0134266Z * [new branch] gh/digantdesai/16/base -> origin/gh/digantdesai/16/base 2025-06-05T23:12:47.0135111Z * [new branch] gh/digantdesai/16/head -> origin/gh/digantdesai/16/head 2025-06-05T23:12:47.0136040Z * [new branch] gh/digantdesai/16/orig -> origin/gh/digantdesai/16/orig 2025-06-05T23:12:47.0137491Z * [new branch] gh/digantdesai/17/base -> origin/gh/digantdesai/17/base 2025-06-05T23:12:47.0138482Z * [new branch] gh/digantdesai/17/head -> origin/gh/digantdesai/17/head 2025-06-05T23:12:47.0139399Z * [new branch] gh/digantdesai/17/orig -> origin/gh/digantdesai/17/orig 2025-06-05T23:12:47.0140761Z * [new branch] gh/digantdesai/18/base -> origin/gh/digantdesai/18/base 2025-06-05T23:12:47.0141699Z * [new branch] gh/digantdesai/18/head -> origin/gh/digantdesai/18/head 2025-06-05T23:12:47.0142906Z * [new branch] gh/digantdesai/18/orig -> origin/gh/digantdesai/18/orig 2025-06-05T23:12:47.0144304Z * [new branch] gh/digantdesai/19/base -> origin/gh/digantdesai/19/base 2025-06-05T23:12:47.0145664Z * [new branch] gh/digantdesai/2/base -> origin/gh/digantdesai/2/base 2025-06-05T23:12:47.0147048Z * [new branch] gh/digantdesai/20/base -> origin/gh/digantdesai/20/base 2025-06-05T23:12:47.0148668Z * [new branch] gh/digantdesai/21/base -> origin/gh/digantdesai/21/base 2025-06-05T23:12:47.0149528Z * [new branch] gh/digantdesai/21/head -> origin/gh/digantdesai/21/head 2025-06-05T23:12:47.0150452Z * [new branch] gh/digantdesai/21/orig -> origin/gh/digantdesai/21/orig 2025-06-05T23:12:47.0151724Z * [new branch] gh/digantdesai/22/base -> origin/gh/digantdesai/22/base 2025-06-05T23:12:47.0152663Z * [new branch] gh/digantdesai/22/head -> origin/gh/digantdesai/22/head 2025-06-05T23:12:47.0153711Z * [new branch] gh/digantdesai/22/orig -> origin/gh/digantdesai/22/orig 2025-06-05T23:12:47.0154945Z * [new branch] gh/digantdesai/23/base -> origin/gh/digantdesai/23/base 2025-06-05T23:12:47.0155897Z * [new branch] gh/digantdesai/23/head -> origin/gh/digantdesai/23/head 2025-06-05T23:12:47.0156826Z * [new branch] gh/digantdesai/23/orig -> origin/gh/digantdesai/23/orig 2025-06-05T23:12:47.0158317Z * [new branch] gh/digantdesai/24/base -> origin/gh/digantdesai/24/base 2025-06-05T23:12:47.0159642Z * [new branch] gh/digantdesai/25/base -> origin/gh/digantdesai/25/base 2025-06-05T23:12:47.0160627Z * [new branch] gh/digantdesai/25/orig -> origin/gh/digantdesai/25/orig 2025-06-05T23:12:47.0162468Z * [new branch] gh/digantdesai/26/base -> origin/gh/digantdesai/26/base 2025-06-05T23:12:47.0163255Z * [new branch] gh/digantdesai/26/orig -> origin/gh/digantdesai/26/orig 2025-06-05T23:12:47.0164894Z * [new branch] gh/digantdesai/27/base -> origin/gh/digantdesai/27/base 2025-06-05T23:12:47.0165840Z * [new branch] gh/digantdesai/27/head -> origin/gh/digantdesai/27/head 2025-06-05T23:12:47.0166754Z * [new branch] gh/digantdesai/27/orig -> origin/gh/digantdesai/27/orig 2025-06-05T23:12:47.0168236Z * [new branch] gh/digantdesai/28/base -> origin/gh/digantdesai/28/base 2025-06-05T23:12:47.0169651Z * [new branch] gh/digantdesai/29/base -> origin/gh/digantdesai/29/base 2025-06-05T23:12:47.0171068Z * [new branch] gh/digantdesai/3/base -> origin/gh/digantdesai/3/base 2025-06-05T23:12:47.0172460Z * [new branch] gh/digantdesai/30/base -> origin/gh/digantdesai/30/base 2025-06-05T23:12:47.0173843Z * [new branch] gh/digantdesai/31/base -> origin/gh/digantdesai/31/base 2025-06-05T23:12:47.0175241Z * [new branch] gh/digantdesai/32/base -> origin/gh/digantdesai/32/base 2025-06-05T23:12:47.0176673Z * [new branch] gh/digantdesai/33/base -> origin/gh/digantdesai/33/base 2025-06-05T23:12:47.0178044Z * [new branch] gh/digantdesai/34/base -> origin/gh/digantdesai/34/base 2025-06-05T23:12:47.0179437Z * [new branch] gh/digantdesai/35/base -> origin/gh/digantdesai/35/base 2025-06-05T23:12:47.0180449Z * [new branch] gh/digantdesai/35/head -> origin/gh/digantdesai/35/head 2025-06-05T23:12:47.0181422Z * [new branch] gh/digantdesai/35/orig -> origin/gh/digantdesai/35/orig 2025-06-05T23:12:47.0182958Z * [new branch] gh/digantdesai/36/base -> origin/gh/digantdesai/36/base 2025-06-05T23:12:47.0184233Z * [new branch] gh/digantdesai/37/base -> origin/gh/digantdesai/37/base 2025-06-05T23:12:47.0185198Z * [new branch] gh/digantdesai/37/head -> origin/gh/digantdesai/37/head 2025-06-05T23:12:47.0186451Z * [new branch] gh/digantdesai/38/base -> origin/gh/digantdesai/38/base 2025-06-05T23:12:47.0187398Z * [new branch] gh/digantdesai/38/head -> origin/gh/digantdesai/38/head 2025-06-05T23:12:47.0188658Z * [new branch] gh/digantdesai/39/base -> origin/gh/digantdesai/39/base 2025-06-05T23:12:47.0189533Z * [new branch] gh/digantdesai/39/head -> origin/gh/digantdesai/39/head 2025-06-05T23:12:47.0191192Z * [new branch] gh/digantdesai/4/base -> origin/gh/digantdesai/4/base 2025-06-05T23:12:47.0194362Z * [new branch] gh/digantdesai/40/base -> origin/gh/digantdesai/40/base 2025-06-05T23:12:47.0195198Z * [new branch] gh/digantdesai/40/head -> origin/gh/digantdesai/40/head 2025-06-05T23:12:47.0196691Z * [new branch] gh/digantdesai/41/base -> origin/gh/digantdesai/41/base 2025-06-05T23:12:47.0198122Z * [new branch] gh/digantdesai/42/base -> origin/gh/digantdesai/42/base 2025-06-05T23:12:47.0199512Z * [new branch] gh/digantdesai/43/base -> origin/gh/digantdesai/43/base 2025-06-05T23:12:47.0200899Z * [new branch] gh/digantdesai/44/base -> origin/gh/digantdesai/44/base 2025-06-05T23:12:47.0202326Z * [new branch] gh/digantdesai/5/base -> origin/gh/digantdesai/5/base 2025-06-05T23:12:47.0203699Z * [new branch] gh/digantdesai/6/base -> origin/gh/digantdesai/6/base 2025-06-05T23:12:47.0205180Z * [new branch] gh/digantdesai/7/base -> origin/gh/digantdesai/7/base 2025-06-05T23:12:47.0206532Z * [new branch] gh/digantdesai/8/base -> origin/gh/digantdesai/8/base 2025-06-05T23:12:47.0207852Z * [new branch] gh/digantdesai/9/base -> origin/gh/digantdesai/9/base 2025-06-05T23:12:47.0208813Z * [new branch] gh/digantdesai/9/head -> origin/gh/digantdesai/9/head 2025-06-05T23:12:47.0209712Z * [new branch] gh/digantdesai/9/orig -> origin/gh/digantdesai/9/orig 2025-06-05T23:12:47.0211396Z * [new branch] gh/dvorjackz/1/head -> origin/gh/dvorjackz/1/head 2025-06-05T23:12:47.0212160Z * [new branch] gh/dvorjackz/1/next -> origin/gh/dvorjackz/1/next 2025-06-05T23:12:47.0213505Z * [new branch] gh/fredrikk/test -> origin/gh/fredrikk/test 2025-06-05T23:12:47.0215083Z * [new branch] gh/gasoonjia/1/base -> origin/gh/gasoonjia/1/base 2025-06-05T23:12:47.0216402Z * [new branch] gh/gasoonjia/10/base -> origin/gh/gasoonjia/10/base 2025-06-05T23:12:47.0217280Z * [new branch] gh/gasoonjia/10/head -> origin/gh/gasoonjia/10/head 2025-06-05T23:12:47.0218260Z * [new branch] gh/gasoonjia/10/orig -> origin/gh/gasoonjia/10/orig 2025-06-05T23:12:47.0219733Z * [new branch] gh/gasoonjia/11/base -> origin/gh/gasoonjia/11/base 2025-06-05T23:12:47.0221285Z * [new branch] gh/gasoonjia/11/head -> origin/gh/gasoonjia/11/head 2025-06-05T23:12:47.0222557Z * [new branch] gh/gasoonjia/11/orig -> origin/gh/gasoonjia/11/orig 2025-06-05T23:12:47.0224340Z * [new branch] gh/gasoonjia/12/base -> origin/gh/gasoonjia/12/base 2025-06-05T23:12:47.0226201Z * [new branch] gh/gasoonjia/12/head -> origin/gh/gasoonjia/12/head 2025-06-05T23:12:47.0227043Z * [new branch] gh/gasoonjia/12/orig -> origin/gh/gasoonjia/12/orig 2025-06-05T23:12:47.0228885Z * [new branch] gh/gasoonjia/2/base -> origin/gh/gasoonjia/2/base 2025-06-05T23:12:47.0230470Z * [new branch] gh/gasoonjia/2/orig -> origin/gh/gasoonjia/2/orig 2025-06-05T23:12:47.0232547Z * [new branch] gh/gasoonjia/3/base -> origin/gh/gasoonjia/3/base 2025-06-05T23:12:47.0233624Z * [new branch] gh/gasoonjia/3/head -> origin/gh/gasoonjia/3/head 2025-06-05T23:12:47.0235094Z * [new branch] gh/gasoonjia/3/orig -> origin/gh/gasoonjia/3/orig 2025-06-05T23:12:47.0236969Z * [new branch] gh/gasoonjia/4/base -> origin/gh/gasoonjia/4/base 2025-06-05T23:12:47.0238076Z * [new branch] gh/gasoonjia/4/head -> origin/gh/gasoonjia/4/head 2025-06-05T23:12:47.0239491Z * [new branch] gh/gasoonjia/4/orig -> origin/gh/gasoonjia/4/orig 2025-06-05T23:12:47.0241311Z * [new branch] gh/gasoonjia/5/base -> origin/gh/gasoonjia/5/base 2025-06-05T23:12:47.0242635Z * [new branch] gh/gasoonjia/5/head -> origin/gh/gasoonjia/5/head 2025-06-05T23:12:47.0244109Z * [new branch] gh/gasoonjia/5/orig -> origin/gh/gasoonjia/5/orig 2025-06-05T23:12:47.0245903Z * [new branch] gh/gasoonjia/6/base -> origin/gh/gasoonjia/6/base 2025-06-05T23:12:47.0247284Z * [new branch] gh/gasoonjia/6/head -> origin/gh/gasoonjia/6/head 2025-06-05T23:12:47.0248767Z * [new branch] gh/gasoonjia/7/base -> origin/gh/gasoonjia/7/base 2025-06-05T23:12:47.0250100Z * [new branch] gh/gasoonjia/7/head -> origin/gh/gasoonjia/7/head 2025-06-05T23:12:47.0251494Z * [new branch] gh/gasoonjia/8/base -> origin/gh/gasoonjia/8/base 2025-06-05T23:12:47.0252731Z * [new branch] gh/gasoonjia/8/head -> origin/gh/gasoonjia/8/head 2025-06-05T23:12:47.0254469Z * [new branch] gh/gasoonjia/9/base -> origin/gh/gasoonjia/9/base 2025-06-05T23:12:47.0255713Z * [new branch] gh/gasoonjia/9/head -> origin/gh/gasoonjia/9/head 2025-06-05T23:12:47.0256943Z * [new branch] gh/gasoonjia/9/orig -> origin/gh/gasoonjia/9/orig 2025-06-05T23:12:47.0259551Z * [new branch] gh/guangy10/1/base -> origin/gh/guangy10/1/base 2025-06-05T23:12:47.0260814Z * [new branch] gh/guangy10/1/head -> origin/gh/guangy10/1/head 2025-06-05T23:12:47.0262124Z * [new branch] gh/guangy10/1/orig -> origin/gh/guangy10/1/orig 2025-06-05T23:12:47.0263816Z * [new branch] gh/guangy10/10/base -> origin/gh/guangy10/10/base 2025-06-05T23:12:47.0265382Z * [new branch] gh/guangy10/10/head -> origin/gh/guangy10/10/head 2025-06-05T23:12:47.0266427Z * [new branch] gh/guangy10/10/orig -> origin/gh/guangy10/10/orig 2025-06-05T23:12:47.0268190Z * [new branch] gh/guangy10/11/base -> origin/gh/guangy10/11/base 2025-06-05T23:12:47.0269445Z * [new branch] gh/guangy10/11/head -> origin/gh/guangy10/11/head 2025-06-05T23:12:47.0270777Z * [new branch] gh/guangy10/11/orig -> origin/gh/guangy10/11/orig 2025-06-05T23:12:47.0272271Z * [new branch] gh/guangy10/12/base -> origin/gh/guangy10/12/base 2025-06-05T23:12:47.0273605Z * [new branch] gh/guangy10/12/orig -> origin/gh/guangy10/12/orig 2025-06-05T23:12:47.0275245Z * [new branch] gh/guangy10/13/base -> origin/gh/guangy10/13/base 2025-06-05T23:12:47.0276576Z * [new branch] gh/guangy10/13/head -> origin/gh/guangy10/13/head 2025-06-05T23:12:47.0277815Z * [new branch] gh/guangy10/13/orig -> origin/gh/guangy10/13/orig 2025-06-05T23:12:47.0280162Z * [new branch] gh/guangy10/14/base -> origin/gh/guangy10/14/base 2025-06-05T23:12:47.0281198Z * [new branch] gh/guangy10/14/head -> origin/gh/guangy10/14/head 2025-06-05T23:12:47.0282520Z * [new branch] gh/guangy10/14/orig -> origin/gh/guangy10/14/orig 2025-06-05T23:12:47.0284279Z * [new branch] gh/guangy10/15/base -> origin/gh/guangy10/15/base 2025-06-05T23:12:47.0285722Z * [new branch] gh/guangy10/15/head -> origin/gh/guangy10/15/head 2025-06-05T23:12:47.0286907Z * [new branch] gh/guangy10/15/orig -> origin/gh/guangy10/15/orig 2025-06-05T23:12:47.0288526Z * [new branch] gh/guangy10/16/base -> origin/gh/guangy10/16/base 2025-06-05T23:12:47.0290040Z * [new branch] gh/guangy10/16/orig -> origin/gh/guangy10/16/orig 2025-06-05T23:12:47.0291654Z * [new branch] gh/guangy10/17/base -> origin/gh/guangy10/17/base 2025-06-05T23:12:47.0292934Z * [new branch] gh/guangy10/17/head -> origin/gh/guangy10/17/head 2025-06-05T23:12:47.0294239Z * [new branch] gh/guangy10/17/orig -> origin/gh/guangy10/17/orig 2025-06-05T23:12:47.0295946Z * [new branch] gh/guangy10/18/base -> origin/gh/guangy10/18/base 2025-06-05T23:12:47.0297279Z * [new branch] gh/guangy10/18/head -> origin/gh/guangy10/18/head 2025-06-05T23:12:47.0298519Z * [new branch] gh/guangy10/18/orig -> origin/gh/guangy10/18/orig 2025-06-05T23:12:47.0300197Z * [new branch] gh/guangy10/19/base -> origin/gh/guangy10/19/base 2025-06-05T23:12:47.0301493Z * [new branch] gh/guangy10/19/head -> origin/gh/guangy10/19/head 2025-06-05T23:12:47.0302827Z * [new branch] gh/guangy10/19/orig -> origin/gh/guangy10/19/orig 2025-06-05T23:12:47.0304546Z * [new branch] gh/guangy10/2/base -> origin/gh/guangy10/2/base 2025-06-05T23:12:47.0305889Z * [new branch] gh/guangy10/2/head -> origin/gh/guangy10/2/head 2025-06-05T23:12:47.0307409Z * [new branch] gh/guangy10/2/orig -> origin/gh/guangy10/2/orig 2025-06-05T23:12:47.0309175Z * [new branch] gh/guangy10/20/base -> origin/gh/guangy10/20/base 2025-06-05T23:12:47.0310519Z * [new branch] gh/guangy10/20/head -> origin/gh/guangy10/20/head 2025-06-05T23:12:47.0311951Z * [new branch] gh/guangy10/20/orig -> origin/gh/guangy10/20/orig 2025-06-05T23:12:47.0313749Z * [new branch] gh/guangy10/21/base -> origin/gh/guangy10/21/base 2025-06-05T23:12:47.0315060Z * [new branch] gh/guangy10/21/orig -> origin/gh/guangy10/21/orig 2025-06-05T23:12:47.0316719Z * [new branch] gh/guangy10/3/base -> origin/gh/guangy10/3/base 2025-06-05T23:12:47.0318026Z * [new branch] gh/guangy10/3/head -> origin/gh/guangy10/3/head 2025-06-05T23:12:47.0319373Z * [new branch] gh/guangy10/3/orig -> origin/gh/guangy10/3/orig 2025-06-05T23:12:47.0321096Z * [new branch] gh/guangy10/4/base -> origin/gh/guangy10/4/base 2025-06-05T23:12:47.0322766Z * [new branch] gh/guangy10/4/head -> origin/gh/guangy10/4/head 2025-06-05T23:12:47.0324093Z * [new branch] gh/guangy10/4/orig -> origin/gh/guangy10/4/orig 2025-06-05T23:12:47.0325871Z * [new branch] gh/guangy10/5/base -> origin/gh/guangy10/5/base 2025-06-05T23:12:47.0327120Z * [new branch] gh/guangy10/5/head -> origin/gh/guangy10/5/head 2025-06-05T23:12:47.0328353Z * [new branch] gh/guangy10/5/orig -> origin/gh/guangy10/5/orig 2025-06-05T23:12:47.0330252Z * [new branch] gh/guangy10/6/base -> origin/gh/guangy10/6/base 2025-06-05T23:12:47.0331568Z * [new branch] gh/guangy10/6/head -> origin/gh/guangy10/6/head 2025-06-05T23:12:47.0332942Z * [new branch] gh/guangy10/6/orig -> origin/gh/guangy10/6/orig 2025-06-05T23:12:47.0334680Z * [new branch] gh/guangy10/7/base -> origin/gh/guangy10/7/base 2025-06-05T23:12:47.0335954Z * [new branch] gh/guangy10/7/head -> origin/gh/guangy10/7/head 2025-06-05T23:12:47.0337206Z * [new branch] gh/guangy10/7/orig -> origin/gh/guangy10/7/orig 2025-06-05T23:12:47.0339442Z * [new branch] gh/guangy10/8/base -> origin/gh/guangy10/8/base 2025-06-05T23:12:47.0340823Z * [new branch] gh/guangy10/8/head -> origin/gh/guangy10/8/head 2025-06-05T23:12:47.0341995Z * [new branch] gh/guangy10/8/orig -> origin/gh/guangy10/8/orig 2025-06-05T23:12:47.0343901Z * [new branch] gh/guangy10/9/base -> origin/gh/guangy10/9/base 2025-06-05T23:12:47.0344964Z * [new branch] gh/guangy10/9/head -> origin/gh/guangy10/9/head 2025-06-05T23:12:47.0346284Z * [new branch] gh/guangy10/9/orig -> origin/gh/guangy10/9/orig 2025-06-05T23:12:47.0348717Z * [new branch] gh/helunwencser/1/base -> origin/gh/helunwencser/1/base 2025-06-05T23:12:47.0350045Z * [new branch] gh/helunwencser/1/head -> origin/gh/helunwencser/1/head 2025-06-05T23:12:47.0352047Z * [new branch] gh/helunwencser/1/orig -> origin/gh/helunwencser/1/orig 2025-06-05T23:12:47.0353426Z * [new branch] gh/helunwencser/10/base -> origin/gh/helunwencser/10/base 2025-06-05T23:12:47.0354749Z * [new branch] gh/helunwencser/10/head -> origin/gh/helunwencser/10/head 2025-06-05T23:12:47.0356195Z * [new branch] gh/helunwencser/10/orig -> origin/gh/helunwencser/10/orig 2025-06-05T23:12:47.0357999Z * [new branch] gh/helunwencser/11/base -> origin/gh/helunwencser/11/base 2025-06-05T23:12:47.0359262Z * [new branch] gh/helunwencser/11/head -> origin/gh/helunwencser/11/head 2025-06-05T23:12:47.0360608Z * [new branch] gh/helunwencser/11/orig -> origin/gh/helunwencser/11/orig 2025-06-05T23:12:47.0362368Z * [new branch] gh/helunwencser/12/base -> origin/gh/helunwencser/12/base 2025-06-05T23:12:47.0363733Z * [new branch] gh/helunwencser/12/head -> origin/gh/helunwencser/12/head 2025-06-05T23:12:47.0365141Z * [new branch] gh/helunwencser/12/orig -> origin/gh/helunwencser/12/orig 2025-06-05T23:12:47.0366874Z * [new branch] gh/helunwencser/13/base -> origin/gh/helunwencser/13/base 2025-06-05T23:12:47.0368179Z * [new branch] gh/helunwencser/13/head -> origin/gh/helunwencser/13/head 2025-06-05T23:12:47.0369430Z * [new branch] gh/helunwencser/13/orig -> origin/gh/helunwencser/13/orig 2025-06-05T23:12:47.0371236Z * [new branch] gh/helunwencser/14/base -> origin/gh/helunwencser/14/base 2025-06-05T23:12:47.0372464Z * [new branch] gh/helunwencser/14/head -> origin/gh/helunwencser/14/head 2025-06-05T23:12:47.0373925Z * [new branch] gh/helunwencser/14/orig -> origin/gh/helunwencser/14/orig 2025-06-05T23:12:47.0375594Z * [new branch] gh/helunwencser/15/base -> origin/gh/helunwencser/15/base 2025-06-05T23:12:47.0376727Z * [new branch] gh/helunwencser/15/head -> origin/gh/helunwencser/15/head 2025-06-05T23:12:47.0378029Z * [new branch] gh/helunwencser/15/orig -> origin/gh/helunwencser/15/orig 2025-06-05T23:12:47.0379610Z * [new branch] gh/helunwencser/16/base -> origin/gh/helunwencser/16/base 2025-06-05T23:12:47.0380754Z * [new branch] gh/helunwencser/16/head -> origin/gh/helunwencser/16/head 2025-06-05T23:12:47.0382038Z * [new branch] gh/helunwencser/16/orig -> origin/gh/helunwencser/16/orig 2025-06-05T23:12:47.0383764Z * [new branch] gh/helunwencser/17/base -> origin/gh/helunwencser/17/base 2025-06-05T23:12:47.0385028Z * [new branch] gh/helunwencser/17/head -> origin/gh/helunwencser/17/head 2025-06-05T23:12:47.0386444Z * [new branch] gh/helunwencser/17/orig -> origin/gh/helunwencser/17/orig 2025-06-05T23:12:47.0388185Z * [new branch] gh/helunwencser/18/base -> origin/gh/helunwencser/18/base 2025-06-05T23:12:47.0389380Z * [new branch] gh/helunwencser/18/head -> origin/gh/helunwencser/18/head 2025-06-05T23:12:47.0390594Z * [new branch] gh/helunwencser/18/orig -> origin/gh/helunwencser/18/orig 2025-06-05T23:12:47.0392508Z * [new branch] gh/helunwencser/19/base -> origin/gh/helunwencser/19/base 2025-06-05T23:12:47.0393789Z * [new branch] gh/helunwencser/19/head -> origin/gh/helunwencser/19/head 2025-06-05T23:12:47.0394814Z * [new branch] gh/helunwencser/19/orig -> origin/gh/helunwencser/19/orig 2025-06-05T23:12:47.0396640Z * [new branch] gh/helunwencser/2/base -> origin/gh/helunwencser/2/base 2025-06-05T23:12:47.0397860Z * [new branch] gh/helunwencser/2/head -> origin/gh/helunwencser/2/head 2025-06-05T23:12:47.0399124Z * [new branch] gh/helunwencser/2/orig -> origin/gh/helunwencser/2/orig 2025-06-05T23:12:47.0400866Z * [new branch] gh/helunwencser/20/base -> origin/gh/helunwencser/20/base 2025-06-05T23:12:47.0402047Z * [new branch] gh/helunwencser/20/head -> origin/gh/helunwencser/20/head 2025-06-05T23:12:47.0404271Z * [new branch] gh/helunwencser/21/base -> origin/gh/helunwencser/21/base 2025-06-05T23:12:47.0405534Z * [new branch] gh/helunwencser/21/head -> origin/gh/helunwencser/21/head 2025-06-05T23:12:47.0406841Z * [new branch] gh/helunwencser/21/orig -> origin/gh/helunwencser/21/orig 2025-06-05T23:12:47.0408444Z * [new branch] gh/helunwencser/22/base -> origin/gh/helunwencser/22/base 2025-06-05T23:12:47.0409574Z * [new branch] gh/helunwencser/22/head -> origin/gh/helunwencser/22/head 2025-06-05T23:12:47.0410722Z * [new branch] gh/helunwencser/22/orig -> origin/gh/helunwencser/22/orig 2025-06-05T23:12:47.0412330Z * [new branch] gh/helunwencser/23/base -> origin/gh/helunwencser/23/base 2025-06-05T23:12:47.0413486Z * [new branch] gh/helunwencser/23/head -> origin/gh/helunwencser/23/head 2025-06-05T23:12:47.0414735Z * [new branch] gh/helunwencser/23/orig -> origin/gh/helunwencser/23/orig 2025-06-05T23:12:47.0416275Z * [new branch] gh/helunwencser/24/base -> origin/gh/helunwencser/24/base 2025-06-05T23:12:47.0417484Z * [new branch] gh/helunwencser/24/head -> origin/gh/helunwencser/24/head 2025-06-05T23:12:47.0418541Z * [new branch] gh/helunwencser/24/orig -> origin/gh/helunwencser/24/orig 2025-06-05T23:12:47.0420216Z * [new branch] gh/helunwencser/25/base -> origin/gh/helunwencser/25/base 2025-06-05T23:12:47.0421477Z * [new branch] gh/helunwencser/25/head -> origin/gh/helunwencser/25/head 2025-06-05T23:12:47.0422871Z * [new branch] gh/helunwencser/25/orig -> origin/gh/helunwencser/25/orig 2025-06-05T23:12:47.0425070Z * [new branch] gh/helunwencser/26/base -> origin/gh/helunwencser/26/base 2025-06-05T23:12:47.0426258Z * [new branch] gh/helunwencser/26/head -> origin/gh/helunwencser/26/head 2025-06-05T23:12:47.0427563Z * [new branch] gh/helunwencser/26/orig -> origin/gh/helunwencser/26/orig 2025-06-05T23:12:47.0429246Z * [new branch] gh/helunwencser/27/base -> origin/gh/helunwencser/27/base 2025-06-05T23:12:47.0430537Z * [new branch] gh/helunwencser/27/head -> origin/gh/helunwencser/27/head 2025-06-05T23:12:47.0431743Z * [new branch] gh/helunwencser/27/orig -> origin/gh/helunwencser/27/orig 2025-06-05T23:12:47.0433430Z * [new branch] gh/helunwencser/28/base -> origin/gh/helunwencser/28/base 2025-06-05T23:12:47.0434691Z * [new branch] gh/helunwencser/28/head -> origin/gh/helunwencser/28/head 2025-06-05T23:12:47.0435980Z * [new branch] gh/helunwencser/28/orig -> origin/gh/helunwencser/28/orig 2025-06-05T23:12:47.0437787Z * [new branch] gh/helunwencser/29/base -> origin/gh/helunwencser/29/base 2025-06-05T23:12:47.0439052Z * [new branch] gh/helunwencser/29/head -> origin/gh/helunwencser/29/head 2025-06-05T23:12:47.0440316Z * [new branch] gh/helunwencser/29/orig -> origin/gh/helunwencser/29/orig 2025-06-05T23:12:47.0442012Z * [new branch] gh/helunwencser/3/base -> origin/gh/helunwencser/3/base 2025-06-05T23:12:47.0443371Z * [new branch] gh/helunwencser/3/head -> origin/gh/helunwencser/3/head 2025-06-05T23:12:47.0444685Z * [new branch] gh/helunwencser/3/orig -> origin/gh/helunwencser/3/orig 2025-06-05T23:12:47.0446410Z * [new branch] gh/helunwencser/30/head -> origin/gh/helunwencser/30/head 2025-06-05T23:12:47.0447708Z * [new branch] gh/helunwencser/30/next -> origin/gh/helunwencser/30/next 2025-06-05T23:12:47.0448947Z * [new branch] gh/helunwencser/30/orig -> origin/gh/helunwencser/30/orig 2025-06-05T23:12:47.0450593Z * [new branch] gh/helunwencser/31/base -> origin/gh/helunwencser/31/base 2025-06-05T23:12:47.0451877Z * [new branch] gh/helunwencser/31/head -> origin/gh/helunwencser/31/head 2025-06-05T23:12:47.0453184Z * [new branch] gh/helunwencser/31/orig -> origin/gh/helunwencser/31/orig 2025-06-05T23:12:47.0455233Z * [new branch] gh/helunwencser/32/head -> origin/gh/helunwencser/32/head 2025-06-05T23:12:47.0455982Z * [new branch] gh/helunwencser/32/next -> origin/gh/helunwencser/32/next 2025-06-05T23:12:47.0457276Z * [new branch] gh/helunwencser/32/orig -> origin/gh/helunwencser/32/orig 2025-06-05T23:12:47.0459018Z * [new branch] gh/helunwencser/33/head -> origin/gh/helunwencser/33/head 2025-06-05T23:12:47.0460529Z * [new branch] gh/helunwencser/33/next -> origin/gh/helunwencser/33/next 2025-06-05T23:12:47.0461580Z * [new branch] gh/helunwencser/33/orig -> origin/gh/helunwencser/33/orig 2025-06-05T23:12:47.0463326Z * [new branch] gh/helunwencser/34/next -> origin/gh/helunwencser/34/next 2025-06-05T23:12:47.0464605Z * [new branch] gh/helunwencser/34/orig -> origin/gh/helunwencser/34/orig 2025-06-05T23:12:47.0466215Z * [new branch] gh/helunwencser/35/head -> origin/gh/helunwencser/35/head 2025-06-05T23:12:47.0467256Z * [new branch] gh/helunwencser/35/next -> origin/gh/helunwencser/35/next 2025-06-05T23:12:47.0468639Z * [new branch] gh/helunwencser/35/orig -> origin/gh/helunwencser/35/orig 2025-06-05T23:12:47.0470378Z * [new branch] gh/helunwencser/36/head -> origin/gh/helunwencser/36/head 2025-06-05T23:12:47.0471345Z * [new branch] gh/helunwencser/36/next -> origin/gh/helunwencser/36/next 2025-06-05T23:12:47.0472666Z * [new branch] gh/helunwencser/36/orig -> origin/gh/helunwencser/36/orig 2025-06-05T23:12:47.0474336Z * [new branch] gh/helunwencser/37/head -> origin/gh/helunwencser/37/head 2025-06-05T23:12:47.0475386Z * [new branch] gh/helunwencser/37/next -> origin/gh/helunwencser/37/next 2025-06-05T23:12:47.0476742Z * [new branch] gh/helunwencser/37/orig -> origin/gh/helunwencser/37/orig 2025-06-05T23:12:47.0478451Z * [new branch] gh/helunwencser/38/base -> origin/gh/helunwencser/38/base 2025-06-05T23:12:47.0479783Z * [new branch] gh/helunwencser/38/head -> origin/gh/helunwencser/38/head 2025-06-05T23:12:47.0481201Z * [new branch] gh/helunwencser/38/orig -> origin/gh/helunwencser/38/orig 2025-06-05T23:12:47.0482849Z * [new branch] gh/helunwencser/39/base -> origin/gh/helunwencser/39/base 2025-06-05T23:12:47.0484262Z * [new branch] gh/helunwencser/39/head -> origin/gh/helunwencser/39/head 2025-06-05T23:12:47.0485615Z * [new branch] gh/helunwencser/39/orig -> origin/gh/helunwencser/39/orig 2025-06-05T23:12:47.0487260Z * [new branch] gh/helunwencser/4/base -> origin/gh/helunwencser/4/base 2025-06-05T23:12:47.0488655Z * [new branch] gh/helunwencser/4/head -> origin/gh/helunwencser/4/head 2025-06-05T23:12:47.0489955Z * [new branch] gh/helunwencser/4/orig -> origin/gh/helunwencser/4/orig 2025-06-05T23:12:47.0493227Z * [new branch] gh/helunwencser/40/base -> origin/gh/helunwencser/40/base 2025-06-05T23:12:47.0494760Z * [new branch] gh/helunwencser/40/head -> origin/gh/helunwencser/40/head 2025-06-05T23:12:47.0495926Z * [new branch] gh/helunwencser/40/orig -> origin/gh/helunwencser/40/orig 2025-06-05T23:12:47.0497667Z * [new branch] gh/helunwencser/41/base -> origin/gh/helunwencser/41/base 2025-06-05T23:12:47.0498978Z * [new branch] gh/helunwencser/41/head -> origin/gh/helunwencser/41/head 2025-06-05T23:12:47.0500121Z * [new branch] gh/helunwencser/41/orig -> origin/gh/helunwencser/41/orig 2025-06-05T23:12:47.0502213Z * [new branch] gh/helunwencser/42/base -> origin/gh/helunwencser/42/base 2025-06-05T23:12:47.0503486Z * [new branch] gh/helunwencser/42/head -> origin/gh/helunwencser/42/head 2025-06-05T23:12:47.0504784Z * [new branch] gh/helunwencser/42/orig -> origin/gh/helunwencser/42/orig 2025-06-05T23:12:47.0506424Z * [new branch] gh/helunwencser/43/base -> origin/gh/helunwencser/43/base 2025-06-05T23:12:47.0508092Z * [new branch] gh/helunwencser/43/head -> origin/gh/helunwencser/43/head 2025-06-05T23:12:47.0509738Z * [new branch] gh/helunwencser/43/orig -> origin/gh/helunwencser/43/orig 2025-06-05T23:12:47.0511502Z * [new branch] gh/helunwencser/44/base -> origin/gh/helunwencser/44/base 2025-06-05T23:12:47.0512656Z * [new branch] gh/helunwencser/44/head -> origin/gh/helunwencser/44/head 2025-06-05T23:12:47.0513986Z * [new branch] gh/helunwencser/44/orig -> origin/gh/helunwencser/44/orig 2025-06-05T23:12:47.0515694Z * [new branch] gh/helunwencser/45/base -> origin/gh/helunwencser/45/base 2025-06-05T23:12:47.0517015Z * [new branch] gh/helunwencser/45/head -> origin/gh/helunwencser/45/head 2025-06-05T23:12:47.0518314Z * [new branch] gh/helunwencser/45/orig -> origin/gh/helunwencser/45/orig 2025-06-05T23:12:47.0519962Z * [new branch] gh/helunwencser/46/head -> origin/gh/helunwencser/46/head 2025-06-05T23:12:47.0520991Z * [new branch] gh/helunwencser/46/next -> origin/gh/helunwencser/46/next 2025-06-05T23:12:47.0522323Z * [new branch] gh/helunwencser/46/orig -> origin/gh/helunwencser/46/orig 2025-06-05T23:12:47.0524182Z * [new branch] gh/helunwencser/47/head -> origin/gh/helunwencser/47/head 2025-06-05T23:12:47.0525189Z * [new branch] gh/helunwencser/47/next -> origin/gh/helunwencser/47/next 2025-06-05T23:12:47.0526555Z * [new branch] gh/helunwencser/47/orig -> origin/gh/helunwencser/47/orig 2025-06-05T23:12:47.0528142Z * [new branch] gh/helunwencser/48/base -> origin/gh/helunwencser/48/base 2025-06-05T23:12:47.0529657Z * [new branch] gh/helunwencser/48/head -> origin/gh/helunwencser/48/head 2025-06-05T23:12:47.0531003Z * [new branch] gh/helunwencser/49/base -> origin/gh/helunwencser/49/base 2025-06-05T23:12:47.0532084Z * [new branch] gh/helunwencser/49/head -> origin/gh/helunwencser/49/head 2025-06-05T23:12:47.0533885Z * [new branch] gh/helunwencser/5/base -> origin/gh/helunwencser/5/base 2025-06-05T23:12:47.0535129Z * [new branch] gh/helunwencser/5/head -> origin/gh/helunwencser/5/head 2025-06-05T23:12:47.0536414Z * [new branch] gh/helunwencser/5/orig -> origin/gh/helunwencser/5/orig 2025-06-05T23:12:47.0538012Z * [new branch] gh/helunwencser/50/base -> origin/gh/helunwencser/50/base 2025-06-05T23:12:47.0539205Z * [new branch] gh/helunwencser/50/head -> origin/gh/helunwencser/50/head 2025-06-05T23:12:47.0540922Z * [new branch] gh/helunwencser/51/base -> origin/gh/helunwencser/51/base 2025-06-05T23:12:47.0542219Z * [new branch] gh/helunwencser/51/head -> origin/gh/helunwencser/51/head 2025-06-05T23:12:47.0543816Z * [new branch] gh/helunwencser/52/base -> origin/gh/helunwencser/52/base 2025-06-05T23:12:47.0545058Z * [new branch] gh/helunwencser/52/head -> origin/gh/helunwencser/52/head 2025-06-05T23:12:47.0546735Z * [new branch] gh/helunwencser/53/base -> origin/gh/helunwencser/53/base 2025-06-05T23:12:47.0547753Z * [new branch] gh/helunwencser/53/head -> origin/gh/helunwencser/53/head 2025-06-05T23:12:47.0549446Z * [new branch] gh/helunwencser/54/base -> origin/gh/helunwencser/54/base 2025-06-05T23:12:47.0550552Z * [new branch] gh/helunwencser/54/head -> origin/gh/helunwencser/54/head 2025-06-05T23:12:47.0551978Z * [new branch] gh/helunwencser/54/orig -> origin/gh/helunwencser/54/orig 2025-06-05T23:12:47.0553510Z * [new branch] gh/helunwencser/55/base -> origin/gh/helunwencser/55/base 2025-06-05T23:12:47.0554707Z * [new branch] gh/helunwencser/55/head -> origin/gh/helunwencser/55/head 2025-06-05T23:12:47.0556038Z * [new branch] gh/helunwencser/55/orig -> origin/gh/helunwencser/55/orig 2025-06-05T23:12:47.0557741Z * [new branch] gh/helunwencser/56/base -> origin/gh/helunwencser/56/base 2025-06-05T23:12:47.0558854Z * [new branch] gh/helunwencser/56/head -> origin/gh/helunwencser/56/head 2025-06-05T23:12:47.0560238Z * [new branch] gh/helunwencser/56/orig -> origin/gh/helunwencser/56/orig 2025-06-05T23:12:47.0561786Z * [new branch] gh/helunwencser/57/base -> origin/gh/helunwencser/57/base 2025-06-05T23:12:47.0562894Z * [new branch] gh/helunwencser/57/head -> origin/gh/helunwencser/57/head 2025-06-05T23:12:47.0564409Z * [new branch] gh/helunwencser/57/orig -> origin/gh/helunwencser/57/orig 2025-06-05T23:12:47.0565942Z * [new branch] gh/helunwencser/58/base -> origin/gh/helunwencser/58/base 2025-06-05T23:12:47.0567188Z * [new branch] gh/helunwencser/58/head -> origin/gh/helunwencser/58/head 2025-06-05T23:12:47.0568445Z * [new branch] gh/helunwencser/58/orig -> origin/gh/helunwencser/58/orig 2025-06-05T23:12:47.0570162Z * [new branch] gh/helunwencser/59/base -> origin/gh/helunwencser/59/base 2025-06-05T23:12:47.0571929Z * [new branch] gh/helunwencser/6/base -> origin/gh/helunwencser/6/base 2025-06-05T23:12:47.0573261Z * [new branch] gh/helunwencser/6/head -> origin/gh/helunwencser/6/head 2025-06-05T23:12:47.0574577Z * [new branch] gh/helunwencser/6/orig -> origin/gh/helunwencser/6/orig 2025-06-05T23:12:47.0576420Z * [new branch] gh/helunwencser/60/base -> origin/gh/helunwencser/60/base 2025-06-05T23:12:47.0577665Z * [new branch] gh/helunwencser/60/head -> origin/gh/helunwencser/60/head 2025-06-05T23:12:47.0578935Z * [new branch] gh/helunwencser/60/orig -> origin/gh/helunwencser/60/orig 2025-06-05T23:12:47.0580588Z * [new branch] gh/helunwencser/61/next -> origin/gh/helunwencser/61/next 2025-06-05T23:12:47.0581854Z * [new branch] gh/helunwencser/61/orig -> origin/gh/helunwencser/61/orig 2025-06-05T23:12:47.0583520Z * [new branch] gh/helunwencser/62/head -> origin/gh/helunwencser/62/head 2025-06-05T23:12:47.0584548Z * [new branch] gh/helunwencser/62/next -> origin/gh/helunwencser/62/next 2025-06-05T23:12:47.0585934Z * [new branch] gh/helunwencser/62/orig -> origin/gh/helunwencser/62/orig 2025-06-05T23:12:47.0587650Z * [new branch] gh/helunwencser/63/base -> origin/gh/helunwencser/63/base 2025-06-05T23:12:47.0588966Z * [new branch] gh/helunwencser/63/head -> origin/gh/helunwencser/63/head 2025-06-05T23:12:47.0590282Z * [new branch] gh/helunwencser/63/orig -> origin/gh/helunwencser/63/orig 2025-06-05T23:12:47.0592283Z * [new branch] gh/helunwencser/64/base -> origin/gh/helunwencser/64/base 2025-06-05T23:12:47.0594048Z * [new branch] gh/helunwencser/65/head -> origin/gh/helunwencser/65/head 2025-06-05T23:12:47.0595072Z * [new branch] gh/helunwencser/65/next -> origin/gh/helunwencser/65/next 2025-06-05T23:12:47.0596592Z * [new branch] gh/helunwencser/65/orig -> origin/gh/helunwencser/65/orig 2025-06-05T23:12:47.0598160Z * [new branch] gh/helunwencser/66/head -> origin/gh/helunwencser/66/head 2025-06-05T23:12:47.0599193Z * [new branch] gh/helunwencser/66/next -> origin/gh/helunwencser/66/next 2025-06-05T23:12:47.0600531Z * [new branch] gh/helunwencser/66/orig -> origin/gh/helunwencser/66/orig 2025-06-05T23:12:47.0602264Z * [new branch] gh/helunwencser/67/base -> origin/gh/helunwencser/67/base 2025-06-05T23:12:47.0603649Z * [new branch] gh/helunwencser/67/head -> origin/gh/helunwencser/67/head 2025-06-05T23:12:47.0605074Z * [new branch] gh/helunwencser/67/orig -> origin/gh/helunwencser/67/orig 2025-06-05T23:12:47.0606806Z * [new branch] gh/helunwencser/68/base -> origin/gh/helunwencser/68/base 2025-06-05T23:12:47.0608399Z * [new branch] gh/helunwencser/69/base -> origin/gh/helunwencser/69/base 2025-06-05T23:12:47.0609710Z * [new branch] gh/helunwencser/69/head -> origin/gh/helunwencser/69/head 2025-06-05T23:12:47.0611029Z * [new branch] gh/helunwencser/69/orig -> origin/gh/helunwencser/69/orig 2025-06-05T23:12:47.0612755Z * [new branch] gh/helunwencser/7/base -> origin/gh/helunwencser/7/base 2025-06-05T23:12:47.0614056Z * [new branch] gh/helunwencser/7/head -> origin/gh/helunwencser/7/head 2025-06-05T23:12:47.0615329Z * [new branch] gh/helunwencser/7/orig -> origin/gh/helunwencser/7/orig 2025-06-05T23:12:47.0617050Z * [new branch] gh/helunwencser/70/base -> origin/gh/helunwencser/70/base 2025-06-05T23:12:47.0618799Z * [new branch] gh/helunwencser/71/base -> origin/gh/helunwencser/71/base 2025-06-05T23:12:47.0620467Z * [new branch] gh/helunwencser/72/base -> origin/gh/helunwencser/72/base 2025-06-05T23:12:47.0622209Z * [new branch] gh/helunwencser/73/base -> origin/gh/helunwencser/73/base 2025-06-05T23:12:47.0623906Z * [new branch] gh/helunwencser/74/base -> origin/gh/helunwencser/74/base 2025-06-05T23:12:47.0625626Z * [new branch] gh/helunwencser/75/base -> origin/gh/helunwencser/75/base 2025-06-05T23:12:47.0630107Z * [new branch] gh/helunwencser/76/base -> origin/gh/helunwencser/76/base 2025-06-05T23:12:47.0630664Z * [new branch] gh/helunwencser/77/base -> origin/gh/helunwencser/77/base 2025-06-05T23:12:47.0631568Z * [new branch] gh/helunwencser/78/base -> origin/gh/helunwencser/78/base 2025-06-05T23:12:47.0633826Z * [new branch] gh/helunwencser/79/base -> origin/gh/helunwencser/79/base 2025-06-05T23:12:47.0634735Z * [new branch] gh/helunwencser/79/head -> origin/gh/helunwencser/79/head 2025-06-05T23:12:47.0636135Z * [new branch] gh/helunwencser/79/orig -> origin/gh/helunwencser/79/orig 2025-06-05T23:12:47.0637881Z * [new branch] gh/helunwencser/8/base -> origin/gh/helunwencser/8/base 2025-06-05T23:12:47.0639208Z * [new branch] gh/helunwencser/8/head -> origin/gh/helunwencser/8/head 2025-06-05T23:12:47.0640536Z * [new branch] gh/helunwencser/8/orig -> origin/gh/helunwencser/8/orig 2025-06-05T23:12:47.0642248Z * [new branch] gh/helunwencser/80/base -> origin/gh/helunwencser/80/base 2025-06-05T23:12:47.0644235Z * [new branch] gh/helunwencser/81/base -> origin/gh/helunwencser/81/base 2025-06-05T23:12:47.0646359Z * [new branch] gh/helunwencser/9/base -> origin/gh/helunwencser/9/base 2025-06-05T23:12:47.0647633Z * [new branch] gh/helunwencser/9/head -> origin/gh/helunwencser/9/head 2025-06-05T23:12:47.0648727Z * [new branch] gh/helunwencser/9/orig -> origin/gh/helunwencser/9/orig 2025-06-05T23:12:47.0650707Z * [new branch] gh/iseeyuan/1/base -> origin/gh/iseeyuan/1/base 2025-06-05T23:12:47.0651965Z * [new branch] gh/iseeyuan/1/head -> origin/gh/iseeyuan/1/head 2025-06-05T23:12:47.0653311Z * [new branch] gh/iseeyuan/1/orig -> origin/gh/iseeyuan/1/orig 2025-06-05T23:12:47.0654883Z * [new branch] gh/iseeyuan/2/base -> origin/gh/iseeyuan/2/base 2025-06-05T23:12:47.0656159Z * [new branch] gh/iseeyuan/2/head -> origin/gh/iseeyuan/2/head 2025-06-05T23:12:47.0657412Z * [new branch] gh/iseeyuan/2/orig -> origin/gh/iseeyuan/2/orig 2025-06-05T23:12:47.0659005Z * [new branch] gh/iseeyuan/3/base -> origin/gh/iseeyuan/3/base 2025-06-05T23:12:47.0660260Z * [new branch] gh/iseeyuan/3/head -> origin/gh/iseeyuan/3/head 2025-06-05T23:12:47.0661546Z * [new branch] gh/iseeyuan/3/orig -> origin/gh/iseeyuan/3/orig 2025-06-05T23:12:47.0662977Z * [new branch] gh/iseeyuan/4/base -> origin/gh/iseeyuan/4/base 2025-06-05T23:12:47.0664252Z * [new branch] gh/iseeyuan/4/head -> origin/gh/iseeyuan/4/head 2025-06-05T23:12:47.0665621Z * [new branch] gh/iseeyuan/4/orig -> origin/gh/iseeyuan/4/orig 2025-06-05T23:12:47.0667099Z * [new branch] gh/iseeyuan/5/base -> origin/gh/iseeyuan/5/base 2025-06-05T23:12:47.0668347Z * [new branch] gh/iseeyuan/5/head -> origin/gh/iseeyuan/5/head 2025-06-05T23:12:47.0669616Z * [new branch] gh/iseeyuan/5/orig -> origin/gh/iseeyuan/5/orig 2025-06-05T23:12:47.0671178Z * [new branch] gh/iseeyuan/6/base -> origin/gh/iseeyuan/6/base 2025-06-05T23:12:47.0672429Z * [new branch] gh/iseeyuan/6/head -> origin/gh/iseeyuan/6/head 2025-06-05T23:12:47.0673721Z * [new branch] gh/iseeyuan/6/orig -> origin/gh/iseeyuan/6/orig 2025-06-05T23:12:47.0675384Z * [new branch] gh/iseeyuan/7/base -> origin/gh/iseeyuan/7/base 2025-06-05T23:12:47.0676692Z * [new branch] gh/iseeyuan/7/orig -> origin/gh/iseeyuan/7/orig 2025-06-05T23:12:47.0678304Z * [new branch] gh/iseeyuan/8/base -> origin/gh/iseeyuan/8/base 2025-06-05T23:12:47.0679572Z * [new branch] gh/iseeyuan/8/head -> origin/gh/iseeyuan/8/head 2025-06-05T23:12:47.0680794Z * [new branch] gh/iseeyuan/8/orig -> origin/gh/iseeyuan/8/orig 2025-06-05T23:12:47.0682745Z * [new branch] gh/jackzhxng/1/base -> origin/gh/jackzhxng/1/base 2025-06-05T23:12:47.0684177Z * [new branch] gh/jackzhxng/1/head -> origin/gh/jackzhxng/1/head 2025-06-05T23:12:47.0685953Z * [new branch] gh/jackzhxng/10/base -> origin/gh/jackzhxng/10/base 2025-06-05T23:12:47.0687333Z * [new branch] gh/jackzhxng/10/head -> origin/gh/jackzhxng/10/head 2025-06-05T23:12:47.0689086Z * [new branch] gh/jackzhxng/10/orig -> origin/gh/jackzhxng/10/orig 2025-06-05T23:12:47.0691017Z * [new branch] gh/jackzhxng/11/base -> origin/gh/jackzhxng/11/base 2025-06-05T23:12:47.0692306Z * [new branch] gh/jackzhxng/11/head -> origin/gh/jackzhxng/11/head 2025-06-05T23:12:47.0693593Z * [new branch] gh/jackzhxng/11/orig -> origin/gh/jackzhxng/11/orig 2025-06-05T23:12:47.0695316Z * [new branch] gh/jackzhxng/12/base -> origin/gh/jackzhxng/12/base 2025-06-05T23:12:47.0696548Z * [new branch] gh/jackzhxng/12/head -> origin/gh/jackzhxng/12/head 2025-06-05T23:12:47.0697847Z * [new branch] gh/jackzhxng/12/orig -> origin/gh/jackzhxng/12/orig 2025-06-05T23:12:47.0699584Z * [new branch] gh/jackzhxng/13/base -> origin/gh/jackzhxng/13/base 2025-06-05T23:12:47.0700742Z * [new branch] gh/jackzhxng/13/head -> origin/gh/jackzhxng/13/head 2025-06-05T23:12:47.0701947Z * [new branch] gh/jackzhxng/13/orig -> origin/gh/jackzhxng/13/orig 2025-06-05T23:12:47.0703616Z * [new branch] gh/jackzhxng/14/base -> origin/gh/jackzhxng/14/base 2025-06-05T23:12:47.0704940Z * [new branch] gh/jackzhxng/14/head -> origin/gh/jackzhxng/14/head 2025-06-05T23:12:47.0705946Z * [new branch] gh/jackzhxng/14/orig -> origin/gh/jackzhxng/14/orig 2025-06-05T23:12:47.0707727Z * [new branch] gh/jackzhxng/15/base -> origin/gh/jackzhxng/15/base 2025-06-05T23:12:47.0709019Z * [new branch] gh/jackzhxng/15/head -> origin/gh/jackzhxng/15/head 2025-06-05T23:12:47.0710349Z * [new branch] gh/jackzhxng/15/orig -> origin/gh/jackzhxng/15/orig 2025-06-05T23:12:47.0711778Z * [new branch] gh/jackzhxng/16/base -> origin/gh/jackzhxng/16/base 2025-06-05T23:12:47.0713039Z * [new branch] gh/jackzhxng/16/head -> origin/gh/jackzhxng/16/head 2025-06-05T23:12:47.0714362Z * [new branch] gh/jackzhxng/16/orig -> origin/gh/jackzhxng/16/orig 2025-06-05T23:12:47.0715752Z * [new branch] gh/jackzhxng/17/base -> origin/gh/jackzhxng/17/base 2025-06-05T23:12:47.0717000Z * [new branch] gh/jackzhxng/17/head -> origin/gh/jackzhxng/17/head 2025-06-05T23:12:47.0718300Z * [new branch] gh/jackzhxng/17/orig -> origin/gh/jackzhxng/17/orig 2025-06-05T23:12:47.0719739Z * [new branch] gh/jackzhxng/18/base -> origin/gh/jackzhxng/18/base 2025-06-05T23:12:47.0721021Z * [new branch] gh/jackzhxng/18/head -> origin/gh/jackzhxng/18/head 2025-06-05T23:12:47.0722304Z * [new branch] gh/jackzhxng/18/orig -> origin/gh/jackzhxng/18/orig 2025-06-05T23:12:47.0724393Z * [new branch] gh/jackzhxng/19/base -> origin/gh/jackzhxng/19/base 2025-06-05T23:12:47.0725674Z * [new branch] gh/jackzhxng/19/head -> origin/gh/jackzhxng/19/head 2025-06-05T23:12:47.0727069Z * [new branch] gh/jackzhxng/19/orig -> origin/gh/jackzhxng/19/orig 2025-06-05T23:12:47.0728514Z * [new branch] gh/jackzhxng/2/base -> origin/gh/jackzhxng/2/base 2025-06-05T23:12:47.0729774Z * [new branch] gh/jackzhxng/2/head -> origin/gh/jackzhxng/2/head 2025-06-05T23:12:47.0731623Z * [new branch] gh/jackzhxng/20/base -> origin/gh/jackzhxng/20/base 2025-06-05T23:12:47.0732580Z * [new branch] gh/jackzhxng/20/head -> origin/gh/jackzhxng/20/head 2025-06-05T23:12:47.0734040Z * [new branch] gh/jackzhxng/20/orig -> origin/gh/jackzhxng/20/orig 2025-06-05T23:12:47.0735418Z * [new branch] gh/jackzhxng/21/base -> origin/gh/jackzhxng/21/base 2025-06-05T23:12:47.0736717Z * [new branch] gh/jackzhxng/21/head -> origin/gh/jackzhxng/21/head 2025-06-05T23:12:47.0737958Z * [new branch] gh/jackzhxng/21/orig -> origin/gh/jackzhxng/21/orig 2025-06-05T23:12:47.0739859Z * [new branch] gh/jackzhxng/22/base -> origin/gh/jackzhxng/22/base 2025-06-05T23:12:47.0740932Z * [new branch] gh/jackzhxng/22/head -> origin/gh/jackzhxng/22/head 2025-06-05T23:12:47.0742265Z * [new branch] gh/jackzhxng/22/orig -> origin/gh/jackzhxng/22/orig 2025-06-05T23:12:47.0743851Z * [new branch] gh/jackzhxng/23/base -> origin/gh/jackzhxng/23/base 2025-06-05T23:12:47.0745231Z * [new branch] gh/jackzhxng/3/base -> origin/gh/jackzhxng/3/base 2025-06-05T23:12:47.0746481Z * [new branch] gh/jackzhxng/3/head -> origin/gh/jackzhxng/3/head 2025-06-05T23:12:47.0747925Z * [new branch] gh/jackzhxng/4/base -> origin/gh/jackzhxng/4/base 2025-06-05T23:12:47.0749125Z * [new branch] gh/jackzhxng/4/head -> origin/gh/jackzhxng/4/head 2025-06-05T23:12:47.0750459Z * [new branch] gh/jackzhxng/4/orig -> origin/gh/jackzhxng/4/orig 2025-06-05T23:12:47.0751913Z * [new branch] gh/jackzhxng/5/base -> origin/gh/jackzhxng/5/base 2025-06-05T23:12:47.0753113Z * [new branch] gh/jackzhxng/5/head -> origin/gh/jackzhxng/5/head 2025-06-05T23:12:47.0754335Z * [new branch] gh/jackzhxng/5/orig -> origin/gh/jackzhxng/5/orig 2025-06-05T23:12:47.0756598Z * [new branch] gh/jackzhxng/6/base -> origin/gh/jackzhxng/6/base 2025-06-05T23:12:47.0758095Z * [new branch] gh/jackzhxng/7/base -> origin/gh/jackzhxng/7/base 2025-06-05T23:12:47.0759338Z * [new branch] gh/jackzhxng/7/head -> origin/gh/jackzhxng/7/head 2025-06-05T23:12:47.0761047Z * [new branch] gh/jackzhxng/7/orig -> origin/gh/jackzhxng/7/orig 2025-06-05T23:12:47.0762136Z * [new branch] gh/jackzhxng/8/base -> origin/gh/jackzhxng/8/base 2025-06-05T23:12:47.0763614Z * [new branch] gh/jackzhxng/8/head -> origin/gh/jackzhxng/8/head 2025-06-05T23:12:47.0764891Z * [new branch] gh/jackzhxng/8/orig -> origin/gh/jackzhxng/8/orig 2025-06-05T23:12:47.0766296Z * [new branch] gh/jackzhxng/9/base -> origin/gh/jackzhxng/9/base 2025-06-05T23:12:47.0767555Z * [new branch] gh/jackzhxng/9/head -> origin/gh/jackzhxng/9/head 2025-06-05T23:12:47.0768872Z * [new branch] gh/jackzhxng/9/orig -> origin/gh/jackzhxng/9/orig 2025-06-05T23:12:47.0770788Z * [new branch] gh/jerryzh168/1/base -> origin/gh/jerryzh168/1/base 2025-06-05T23:12:47.0771758Z * [new branch] gh/jerryzh168/1/head -> origin/gh/jerryzh168/1/head 2025-06-05T23:12:47.0773139Z * [new branch] gh/jerryzh168/1/orig -> origin/gh/jerryzh168/1/orig 2025-06-05T23:12:47.0774817Z * [new branch] gh/jerryzh168/2/base -> origin/gh/jerryzh168/2/base 2025-06-05T23:12:47.0776159Z * [new branch] gh/jerryzh168/2/head -> origin/gh/jerryzh168/2/head 2025-06-05T23:12:47.0777560Z * [new branch] gh/jerryzh168/2/orig -> origin/gh/jerryzh168/2/orig 2025-06-05T23:12:47.0779173Z * [new branch] gh/jerryzh168/3/base -> origin/gh/jerryzh168/3/base 2025-06-05T23:12:47.0780414Z * [new branch] gh/jerryzh168/3/head -> origin/gh/jerryzh168/3/head 2025-06-05T23:12:47.0781698Z * [new branch] gh/jerryzh168/3/orig -> origin/gh/jerryzh168/3/orig 2025-06-05T23:12:47.0783253Z * [new branch] gh/jerryzh168/4/base -> origin/gh/jerryzh168/4/base 2025-06-05T23:12:47.0784485Z * [new branch] gh/jerryzh168/4/head -> origin/gh/jerryzh168/4/head 2025-06-05T23:12:47.0785744Z * [new branch] gh/jerryzh168/4/orig -> origin/gh/jerryzh168/4/orig 2025-06-05T23:12:47.0787377Z * [new branch] gh/jerryzh168/5/base -> origin/gh/jerryzh168/5/base 2025-06-05T23:12:47.0788699Z * [new branch] gh/jerryzh168/5/head -> origin/gh/jerryzh168/5/head 2025-06-05T23:12:47.0789923Z * [new branch] gh/jerryzh168/5/orig -> origin/gh/jerryzh168/5/orig 2025-06-05T23:12:47.0792364Z * [new branch] gh/jerryzh168/6/base -> origin/gh/jerryzh168/6/base 2025-06-05T23:12:47.0793669Z * [new branch] gh/jerryzh168/6/head -> origin/gh/jerryzh168/6/head 2025-06-05T23:12:47.0795057Z * [new branch] gh/jerryzh168/6/orig -> origin/gh/jerryzh168/6/orig 2025-06-05T23:12:47.0796676Z * [new branch] gh/jerryzh168/7/base -> origin/gh/jerryzh168/7/base 2025-06-05T23:12:47.0797956Z * [new branch] gh/jerryzh168/7/head -> origin/gh/jerryzh168/7/head 2025-06-05T23:12:47.0799232Z * [new branch] gh/jerryzh168/7/orig -> origin/gh/jerryzh168/7/orig 2025-06-05T23:12:47.0801029Z * [new branch] gh/jorgep31415/1/base -> origin/gh/jorgep31415/1/base 2025-06-05T23:12:47.0802397Z * [new branch] gh/jorgep31415/1/head -> origin/gh/jorgep31415/1/head 2025-06-05T23:12:47.0803830Z * [new branch] gh/jorgep31415/1/orig -> origin/gh/jorgep31415/1/orig 2025-06-05T23:12:47.0805509Z * [new branch] gh/jorgep31415/10/base -> origin/gh/jorgep31415/10/base 2025-06-05T23:12:47.0806847Z * [new branch] gh/jorgep31415/10/head -> origin/gh/jorgep31415/10/head 2025-06-05T23:12:47.0808260Z * [new branch] gh/jorgep31415/10/orig -> origin/gh/jorgep31415/10/orig 2025-06-05T23:12:47.0809913Z * [new branch] gh/jorgep31415/100/base -> origin/gh/jorgep31415/100/base 2025-06-05T23:12:47.0811167Z * [new branch] gh/jorgep31415/100/head -> origin/gh/jorgep31415/100/head 2025-06-05T23:12:47.0812555Z * [new branch] gh/jorgep31415/100/orig -> origin/gh/jorgep31415/100/orig 2025-06-05T23:12:47.0814022Z * [new branch] gh/jorgep31415/101/base -> origin/gh/jorgep31415/101/base 2025-06-05T23:12:47.0815251Z * [new branch] gh/jorgep31415/101/head -> origin/gh/jorgep31415/101/head 2025-06-05T23:12:47.0816524Z * [new branch] gh/jorgep31415/101/orig -> origin/gh/jorgep31415/101/orig 2025-06-05T23:12:47.0818144Z * [new branch] gh/jorgep31415/102/base -> origin/gh/jorgep31415/102/base 2025-06-05T23:12:47.0819438Z * [new branch] gh/jorgep31415/102/head -> origin/gh/jorgep31415/102/head 2025-06-05T23:12:47.0820726Z * [new branch] gh/jorgep31415/102/orig -> origin/gh/jorgep31415/102/orig 2025-06-05T23:12:47.0822403Z * [new branch] gh/jorgep31415/103/base -> origin/gh/jorgep31415/103/base 2025-06-05T23:12:47.0823740Z * [new branch] gh/jorgep31415/103/head -> origin/gh/jorgep31415/103/head 2025-06-05T23:12:47.0824981Z * [new branch] gh/jorgep31415/103/orig -> origin/gh/jorgep31415/103/orig 2025-06-05T23:12:47.0826703Z * [new branch] gh/jorgep31415/104/base -> origin/gh/jorgep31415/104/base 2025-06-05T23:12:47.0827993Z * [new branch] gh/jorgep31415/104/orig -> origin/gh/jorgep31415/104/orig 2025-06-05T23:12:47.0829645Z * [new branch] gh/jorgep31415/105/base -> origin/gh/jorgep31415/105/base 2025-06-05T23:12:47.0831103Z * [new branch] gh/jorgep31415/105/orig -> origin/gh/jorgep31415/105/orig 2025-06-05T23:12:47.0832592Z * [new branch] gh/jorgep31415/106/base -> origin/gh/jorgep31415/106/base 2025-06-05T23:12:47.0833978Z * [new branch] gh/jorgep31415/106/orig -> origin/gh/jorgep31415/106/orig 2025-06-05T23:12:47.0835516Z * [new branch] gh/jorgep31415/107/base -> origin/gh/jorgep31415/107/base 2025-06-05T23:12:47.0836850Z * [new branch] gh/jorgep31415/107/orig -> origin/gh/jorgep31415/107/orig 2025-06-05T23:12:47.0838544Z * [new branch] gh/jorgep31415/108/base -> origin/gh/jorgep31415/108/base 2025-06-05T23:12:47.0839580Z * [new branch] gh/jorgep31415/108/orig -> origin/gh/jorgep31415/108/orig 2025-06-05T23:12:47.0841326Z * [new branch] gh/jorgep31415/109/base -> origin/gh/jorgep31415/109/base 2025-06-05T23:12:47.0842700Z * [new branch] gh/jorgep31415/109/orig -> origin/gh/jorgep31415/109/orig 2025-06-05T23:12:47.0844213Z * [new branch] gh/jorgep31415/11/base -> origin/gh/jorgep31415/11/base 2025-06-05T23:12:47.0845530Z * [new branch] gh/jorgep31415/11/head -> origin/gh/jorgep31415/11/head 2025-06-05T23:12:47.0846824Z * [new branch] gh/jorgep31415/11/orig -> origin/gh/jorgep31415/11/orig 2025-06-05T23:12:47.0848478Z * [new branch] gh/jorgep31415/110/base -> origin/gh/jorgep31415/110/base 2025-06-05T23:12:47.0849740Z * [new branch] gh/jorgep31415/110/orig -> origin/gh/jorgep31415/110/orig 2025-06-05T23:12:47.0851424Z * [new branch] gh/jorgep31415/111/orig -> origin/gh/jorgep31415/111/orig 2025-06-05T23:12:47.0853022Z * [new branch] gh/jorgep31415/112/base -> origin/gh/jorgep31415/112/base 2025-06-05T23:12:47.0854329Z * [new branch] gh/jorgep31415/112/head -> origin/gh/jorgep31415/112/head 2025-06-05T23:12:47.0855717Z * [new branch] gh/jorgep31415/112/orig -> origin/gh/jorgep31415/112/orig 2025-06-05T23:12:47.0857396Z * [new branch] gh/jorgep31415/113/base -> origin/gh/jorgep31415/113/base 2025-06-05T23:12:47.0858826Z * [new branch] gh/jorgep31415/113/head -> origin/gh/jorgep31415/113/head 2025-06-05T23:12:47.0860075Z * [new branch] gh/jorgep31415/113/orig -> origin/gh/jorgep31415/113/orig 2025-06-05T23:12:47.0861911Z * [new branch] gh/jorgep31415/114/base -> origin/gh/jorgep31415/114/base 2025-06-05T23:12:47.0863117Z * [new branch] gh/jorgep31415/114/head -> origin/gh/jorgep31415/114/head 2025-06-05T23:12:47.0864198Z * [new branch] gh/jorgep31415/114/orig -> origin/gh/jorgep31415/114/orig 2025-06-05T23:12:47.0866145Z * [new branch] gh/jorgep31415/115/base -> origin/gh/jorgep31415/115/base 2025-06-05T23:12:47.0867382Z * [new branch] gh/jorgep31415/115/head -> origin/gh/jorgep31415/115/head 2025-06-05T23:12:47.0868677Z * [new branch] gh/jorgep31415/115/orig -> origin/gh/jorgep31415/115/orig 2025-06-05T23:12:47.0870380Z * [new branch] gh/jorgep31415/116/base -> origin/gh/jorgep31415/116/base 2025-06-05T23:12:47.0871630Z * [new branch] gh/jorgep31415/116/head -> origin/gh/jorgep31415/116/head 2025-06-05T23:12:47.0872830Z * [new branch] gh/jorgep31415/116/orig -> origin/gh/jorgep31415/116/orig 2025-06-05T23:12:47.0874843Z * [new branch] gh/jorgep31415/117/base -> origin/gh/jorgep31415/117/base 2025-06-05T23:12:47.0876154Z * [new branch] gh/jorgep31415/117/head -> origin/gh/jorgep31415/117/head 2025-06-05T23:12:47.0877491Z * [new branch] gh/jorgep31415/117/orig -> origin/gh/jorgep31415/117/orig 2025-06-05T23:12:47.0879316Z * [new branch] gh/jorgep31415/118/base -> origin/gh/jorgep31415/118/base 2025-06-05T23:12:47.0880307Z * [new branch] gh/jorgep31415/118/head -> origin/gh/jorgep31415/118/head 2025-06-05T23:12:47.0881679Z * [new branch] gh/jorgep31415/118/orig -> origin/gh/jorgep31415/118/orig 2025-06-05T23:12:47.0883554Z * [new branch] gh/jorgep31415/119/base -> origin/gh/jorgep31415/119/base 2025-06-05T23:12:47.0884774Z * [new branch] gh/jorgep31415/119/head -> origin/gh/jorgep31415/119/head 2025-06-05T23:12:47.0886142Z * [new branch] gh/jorgep31415/119/orig -> origin/gh/jorgep31415/119/orig 2025-06-05T23:12:47.0887668Z * [new branch] gh/jorgep31415/12/base -> origin/gh/jorgep31415/12/base 2025-06-05T23:12:47.0889025Z * [new branch] gh/jorgep31415/12/head -> origin/gh/jorgep31415/12/head 2025-06-05T23:12:47.0890431Z * [new branch] gh/jorgep31415/12/orig -> origin/gh/jorgep31415/12/orig 2025-06-05T23:12:47.0895001Z * [new branch] gh/jorgep31415/120/base -> origin/gh/jorgep31415/120/base 2025-06-05T23:12:47.0896076Z * [new branch] gh/jorgep31415/120/head -> origin/gh/jorgep31415/120/head 2025-06-05T23:12:47.0897535Z * [new branch] gh/jorgep31415/120/orig -> origin/gh/jorgep31415/120/orig 2025-06-05T23:12:47.0899293Z * [new branch] gh/jorgep31415/121/base -> origin/gh/jorgep31415/121/base 2025-06-05T23:12:47.0900404Z * [new branch] gh/jorgep31415/121/head -> origin/gh/jorgep31415/121/head 2025-06-05T23:12:47.0901777Z * [new branch] gh/jorgep31415/121/orig -> origin/gh/jorgep31415/121/orig 2025-06-05T23:12:47.0903604Z * [new branch] gh/jorgep31415/122/base -> origin/gh/jorgep31415/122/base 2025-06-05T23:12:47.0904780Z * [new branch] gh/jorgep31415/122/head -> origin/gh/jorgep31415/122/head 2025-06-05T23:12:47.0906224Z * [new branch] gh/jorgep31415/122/orig -> origin/gh/jorgep31415/122/orig 2025-06-05T23:12:47.0907703Z * [new branch] gh/jorgep31415/123/base -> origin/gh/jorgep31415/123/base 2025-06-05T23:12:47.0908996Z * [new branch] gh/jorgep31415/123/head -> origin/gh/jorgep31415/123/head 2025-06-05T23:12:47.0910282Z * [new branch] gh/jorgep31415/123/orig -> origin/gh/jorgep31415/123/orig 2025-06-05T23:12:47.0912118Z * [new branch] gh/jorgep31415/124/base -> origin/gh/jorgep31415/124/base 2025-06-05T23:12:47.0913717Z * [new branch] gh/jorgep31415/125/base -> origin/gh/jorgep31415/125/base 2025-06-05T23:12:47.0915502Z * [new branch] gh/jorgep31415/126/base -> origin/gh/jorgep31415/126/base 2025-06-05T23:12:47.0917231Z * [new branch] gh/jorgep31415/127/base -> origin/gh/jorgep31415/127/base 2025-06-05T23:12:47.0918919Z * [new branch] gh/jorgep31415/128/base -> origin/gh/jorgep31415/128/base 2025-06-05T23:12:47.0920617Z * [new branch] gh/jorgep31415/129/base -> origin/gh/jorgep31415/129/base 2025-06-05T23:12:47.0922118Z * [new branch] gh/jorgep31415/13/base -> origin/gh/jorgep31415/13/base 2025-06-05T23:12:47.0923426Z * [new branch] gh/jorgep31415/13/head -> origin/gh/jorgep31415/13/head 2025-06-05T23:12:47.0924894Z * [new branch] gh/jorgep31415/13/orig -> origin/gh/jorgep31415/13/orig 2025-06-05T23:12:47.0926641Z * [new branch] gh/jorgep31415/130/base -> origin/gh/jorgep31415/130/base 2025-06-05T23:12:47.0928414Z * [new branch] gh/jorgep31415/131/base -> origin/gh/jorgep31415/131/base 2025-06-05T23:12:47.0930080Z * [new branch] gh/jorgep31415/132/base -> origin/gh/jorgep31415/132/base 2025-06-05T23:12:47.0931770Z * [new branch] gh/jorgep31415/133/base -> origin/gh/jorgep31415/133/base 2025-06-05T23:12:47.0933571Z * [new branch] gh/jorgep31415/134/base -> origin/gh/jorgep31415/134/base 2025-06-05T23:12:47.0935165Z * [new branch] gh/jorgep31415/135/base -> origin/gh/jorgep31415/135/base 2025-06-05T23:12:47.0936884Z * [new branch] gh/jorgep31415/136/base -> origin/gh/jorgep31415/136/base 2025-06-05T23:12:47.0938581Z * [new branch] gh/jorgep31415/137/base -> origin/gh/jorgep31415/137/base 2025-06-05T23:12:47.0940016Z * [new branch] gh/jorgep31415/14/base -> origin/gh/jorgep31415/14/base 2025-06-05T23:12:47.0941357Z * [new branch] gh/jorgep31415/14/head -> origin/gh/jorgep31415/14/head 2025-06-05T23:12:47.0942735Z * [new branch] gh/jorgep31415/14/orig -> origin/gh/jorgep31415/14/orig 2025-06-05T23:12:47.0944238Z * [new branch] gh/jorgep31415/15/base -> origin/gh/jorgep31415/15/base 2025-06-05T23:12:47.0945555Z * [new branch] gh/jorgep31415/15/head -> origin/gh/jorgep31415/15/head 2025-06-05T23:12:47.0947373Z * [new branch] gh/jorgep31415/15/orig -> origin/gh/jorgep31415/15/orig 2025-06-05T23:12:47.0949133Z * [new branch] gh/jorgep31415/16/base -> origin/gh/jorgep31415/16/base 2025-06-05T23:12:47.0950361Z * [new branch] gh/jorgep31415/16/head -> origin/gh/jorgep31415/16/head 2025-06-05T23:12:47.0951880Z * [new branch] gh/jorgep31415/16/orig -> origin/gh/jorgep31415/16/orig 2025-06-05T23:12:47.0953657Z * [new branch] gh/jorgep31415/17/base -> origin/gh/jorgep31415/17/base 2025-06-05T23:12:47.0954916Z * [new branch] gh/jorgep31415/17/head -> origin/gh/jorgep31415/17/head 2025-06-05T23:12:47.0956064Z * [new branch] gh/jorgep31415/17/orig -> origin/gh/jorgep31415/17/orig 2025-06-05T23:12:47.0957815Z * [new branch] gh/jorgep31415/18/base -> origin/gh/jorgep31415/18/base 2025-06-05T23:12:47.0959320Z * [new branch] gh/jorgep31415/18/head -> origin/gh/jorgep31415/18/head 2025-06-05T23:12:47.0960801Z * [new branch] gh/jorgep31415/18/orig -> origin/gh/jorgep31415/18/orig 2025-06-05T23:12:47.0962523Z * [new branch] gh/jorgep31415/19/base -> origin/gh/jorgep31415/19/base 2025-06-05T23:12:47.0963890Z * [new branch] gh/jorgep31415/19/head -> origin/gh/jorgep31415/19/head 2025-06-05T23:12:47.0965192Z * [new branch] gh/jorgep31415/19/orig -> origin/gh/jorgep31415/19/orig 2025-06-05T23:12:47.0966697Z * [new branch] gh/jorgep31415/2/base -> origin/gh/jorgep31415/2/base 2025-06-05T23:12:47.0968128Z * [new branch] gh/jorgep31415/2/head -> origin/gh/jorgep31415/2/head 2025-06-05T23:12:47.0969451Z * [new branch] gh/jorgep31415/2/orig -> origin/gh/jorgep31415/2/orig 2025-06-05T23:12:47.0970936Z * [new branch] gh/jorgep31415/20/base -> origin/gh/jorgep31415/20/base 2025-06-05T23:12:47.0972367Z * [new branch] gh/jorgep31415/20/head -> origin/gh/jorgep31415/20/head 2025-06-05T23:12:47.0973752Z * [new branch] gh/jorgep31415/20/orig -> origin/gh/jorgep31415/20/orig 2025-06-05T23:12:47.0975194Z * [new branch] gh/jorgep31415/21/base -> origin/gh/jorgep31415/21/base 2025-06-05T23:12:47.0976565Z * [new branch] gh/jorgep31415/21/head -> origin/gh/jorgep31415/21/head 2025-06-05T23:12:47.0977887Z * [new branch] gh/jorgep31415/21/orig -> origin/gh/jorgep31415/21/orig 2025-06-05T23:12:47.0979552Z * [new branch] gh/jorgep31415/22/base -> origin/gh/jorgep31415/22/base 2025-06-05T23:12:47.0980824Z * [new branch] gh/jorgep31415/22/head -> origin/gh/jorgep31415/22/head 2025-06-05T23:12:47.0982145Z * [new branch] gh/jorgep31415/22/orig -> origin/gh/jorgep31415/22/orig 2025-06-05T23:12:47.0983665Z * [new branch] gh/jorgep31415/23/base -> origin/gh/jorgep31415/23/base 2025-06-05T23:12:47.0984987Z * [new branch] gh/jorgep31415/23/head -> origin/gh/jorgep31415/23/head 2025-06-05T23:12:47.0986307Z * [new branch] gh/jorgep31415/23/orig -> origin/gh/jorgep31415/23/orig 2025-06-05T23:12:47.0987817Z * [new branch] gh/jorgep31415/24/base -> origin/gh/jorgep31415/24/base 2025-06-05T23:12:47.0989244Z * [new branch] gh/jorgep31415/24/head -> origin/gh/jorgep31415/24/head 2025-06-05T23:12:47.0990693Z * [new branch] gh/jorgep31415/24/orig -> origin/gh/jorgep31415/24/orig 2025-06-05T23:12:47.0992438Z * [new branch] gh/jorgep31415/25/base -> origin/gh/jorgep31415/25/base 2025-06-05T23:12:47.0993721Z * [new branch] gh/jorgep31415/25/head -> origin/gh/jorgep31415/25/head 2025-06-05T23:12:47.0995212Z * [new branch] gh/jorgep31415/25/orig -> origin/gh/jorgep31415/25/orig 2025-06-05T23:12:47.0996729Z * [new branch] gh/jorgep31415/26/base -> origin/gh/jorgep31415/26/base 2025-06-05T23:12:47.0997991Z * [new branch] gh/jorgep31415/26/head -> origin/gh/jorgep31415/26/head 2025-06-05T23:12:47.0999329Z * [new branch] gh/jorgep31415/26/orig -> origin/gh/jorgep31415/26/orig 2025-06-05T23:12:47.1000798Z * [new branch] gh/jorgep31415/27/base -> origin/gh/jorgep31415/27/base 2025-06-05T23:12:47.1002255Z * [new branch] gh/jorgep31415/27/head -> origin/gh/jorgep31415/27/head 2025-06-05T23:12:47.1003814Z * [new branch] gh/jorgep31415/28/base -> origin/gh/jorgep31415/28/base 2025-06-05T23:12:47.1005190Z * [new branch] gh/jorgep31415/28/head -> origin/gh/jorgep31415/28/head 2025-06-05T23:12:47.1006837Z * [new branch] gh/jorgep31415/29/base -> origin/gh/jorgep31415/29/base 2025-06-05T23:12:47.1008668Z * [new branch] gh/jorgep31415/29/head -> origin/gh/jorgep31415/29/head 2025-06-05T23:12:47.1009942Z * [new branch] gh/jorgep31415/29/orig -> origin/gh/jorgep31415/29/orig 2025-06-05T23:12:47.1011482Z * [new branch] gh/jorgep31415/3/base -> origin/gh/jorgep31415/3/base 2025-06-05T23:12:47.1012784Z * [new branch] gh/jorgep31415/3/head -> origin/gh/jorgep31415/3/head 2025-06-05T23:12:47.1014231Z * [new branch] gh/jorgep31415/3/orig -> origin/gh/jorgep31415/3/orig 2025-06-05T23:12:47.1015744Z * [new branch] gh/jorgep31415/30/base -> origin/gh/jorgep31415/30/base 2025-06-05T23:12:47.1017572Z * [new branch] gh/jorgep31415/30/head -> origin/gh/jorgep31415/30/head 2025-06-05T23:12:47.1019030Z * [new branch] gh/jorgep31415/30/orig -> origin/gh/jorgep31415/30/orig 2025-06-05T23:12:47.1020883Z * [new branch] gh/jorgep31415/31/base -> origin/gh/jorgep31415/31/base 2025-06-05T23:12:47.1022107Z * [new branch] gh/jorgep31415/31/head -> origin/gh/jorgep31415/31/head 2025-06-05T23:12:47.1023452Z * [new branch] gh/jorgep31415/31/orig -> origin/gh/jorgep31415/31/orig 2025-06-05T23:12:47.1025180Z * [new branch] gh/jorgep31415/32/base -> origin/gh/jorgep31415/32/base 2025-06-05T23:12:47.1026533Z * [new branch] gh/jorgep31415/32/head -> origin/gh/jorgep31415/32/head 2025-06-05T23:12:47.1028003Z * [new branch] gh/jorgep31415/32/orig -> origin/gh/jorgep31415/32/orig 2025-06-05T23:12:47.1029823Z * [new branch] gh/jorgep31415/33/base -> origin/gh/jorgep31415/33/base 2025-06-05T23:12:47.1031357Z * [new branch] gh/jorgep31415/33/head -> origin/gh/jorgep31415/33/head 2025-06-05T23:12:47.1032736Z * [new branch] gh/jorgep31415/33/orig -> origin/gh/jorgep31415/33/orig 2025-06-05T23:12:47.1034723Z * [new branch] gh/jorgep31415/34/base -> origin/gh/jorgep31415/34/base 2025-06-05T23:12:47.1035954Z * [new branch] gh/jorgep31415/34/head -> origin/gh/jorgep31415/34/head 2025-06-05T23:12:47.1037319Z * [new branch] gh/jorgep31415/34/orig -> origin/gh/jorgep31415/34/orig 2025-06-05T23:12:47.1039046Z * [new branch] gh/jorgep31415/35/base -> origin/gh/jorgep31415/35/base 2025-06-05T23:12:47.1040354Z * [new branch] gh/jorgep31415/35/head -> origin/gh/jorgep31415/35/head 2025-06-05T23:12:47.1042259Z * [new branch] gh/jorgep31415/35/orig -> origin/gh/jorgep31415/35/orig 2025-06-05T23:12:47.1043831Z * [new branch] gh/jorgep31415/36/base -> origin/gh/jorgep31415/36/base 2025-06-05T23:12:47.1045356Z * [new branch] gh/jorgep31415/36/head -> origin/gh/jorgep31415/36/head 2025-06-05T23:12:47.1046706Z * [new branch] gh/jorgep31415/36/orig -> origin/gh/jorgep31415/36/orig 2025-06-05T23:12:47.1048854Z * [new branch] gh/jorgep31415/37/base -> origin/gh/jorgep31415/37/base 2025-06-05T23:12:47.1050344Z * [new branch] gh/jorgep31415/37/head -> origin/gh/jorgep31415/37/head 2025-06-05T23:12:47.1051908Z * [new branch] gh/jorgep31415/37/orig -> origin/gh/jorgep31415/37/orig 2025-06-05T23:12:47.1053656Z * [new branch] gh/jorgep31415/38/base -> origin/gh/jorgep31415/38/base 2025-06-05T23:12:47.1055063Z * [new branch] gh/jorgep31415/38/head -> origin/gh/jorgep31415/38/head 2025-06-05T23:12:47.1056570Z * [new branch] gh/jorgep31415/38/orig -> origin/gh/jorgep31415/38/orig 2025-06-05T23:12:47.1058248Z * [new branch] gh/jorgep31415/39/base -> origin/gh/jorgep31415/39/base 2025-06-05T23:12:47.1059603Z * [new branch] gh/jorgep31415/39/head -> origin/gh/jorgep31415/39/head 2025-06-05T23:12:47.1060993Z * [new branch] gh/jorgep31415/39/orig -> origin/gh/jorgep31415/39/orig 2025-06-05T23:12:47.1062466Z * [new branch] gh/jorgep31415/4/base -> origin/gh/jorgep31415/4/base 2025-06-05T23:12:47.1063841Z * [new branch] gh/jorgep31415/4/head -> origin/gh/jorgep31415/4/head 2025-06-05T23:12:47.1065261Z * [new branch] gh/jorgep31415/4/orig -> origin/gh/jorgep31415/4/orig 2025-06-05T23:12:47.1067116Z * [new branch] gh/jorgep31415/40/base -> origin/gh/jorgep31415/40/base 2025-06-05T23:12:47.1068527Z * [new branch] gh/jorgep31415/40/head -> origin/gh/jorgep31415/40/head 2025-06-05T23:12:47.1069832Z * [new branch] gh/jorgep31415/40/orig -> origin/gh/jorgep31415/40/orig 2025-06-05T23:12:47.1071624Z * [new branch] gh/jorgep31415/41/base -> origin/gh/jorgep31415/41/base 2025-06-05T23:12:47.1072841Z * [new branch] gh/jorgep31415/41/head -> origin/gh/jorgep31415/41/head 2025-06-05T23:12:47.1074270Z * [new branch] gh/jorgep31415/41/orig -> origin/gh/jorgep31415/41/orig 2025-06-05T23:12:47.1075943Z * [new branch] gh/jorgep31415/42/base -> origin/gh/jorgep31415/42/base 2025-06-05T23:12:47.1077275Z * [new branch] gh/jorgep31415/42/head -> origin/gh/jorgep31415/42/head 2025-06-05T23:12:47.1078638Z * [new branch] gh/jorgep31415/42/orig -> origin/gh/jorgep31415/42/orig 2025-06-05T23:12:47.1080297Z * [new branch] gh/jorgep31415/43/base -> origin/gh/jorgep31415/43/base 2025-06-05T23:12:47.1081759Z * [new branch] gh/jorgep31415/43/head -> origin/gh/jorgep31415/43/head 2025-06-05T23:12:47.1083572Z * [new branch] gh/jorgep31415/43/orig -> origin/gh/jorgep31415/43/orig 2025-06-05T23:12:47.1085287Z * [new branch] gh/jorgep31415/44/base -> origin/gh/jorgep31415/44/base 2025-06-05T23:12:47.1086699Z * [new branch] gh/jorgep31415/44/head -> origin/gh/jorgep31415/44/head 2025-06-05T23:12:47.1088503Z * [new branch] gh/jorgep31415/44/orig -> origin/gh/jorgep31415/44/orig 2025-06-05T23:12:47.1090027Z * [new branch] gh/jorgep31415/45/base -> origin/gh/jorgep31415/45/base 2025-06-05T23:12:47.1091399Z * [new branch] gh/jorgep31415/45/head -> origin/gh/jorgep31415/45/head 2025-06-05T23:12:47.1092629Z * [new branch] gh/jorgep31415/45/orig -> origin/gh/jorgep31415/45/orig 2025-06-05T23:12:47.1094266Z * [new branch] gh/jorgep31415/46/base -> origin/gh/jorgep31415/46/base 2025-06-05T23:12:47.1095972Z * [new branch] gh/jorgep31415/46/head -> origin/gh/jorgep31415/46/head 2025-06-05T23:12:47.1097231Z * [new branch] gh/jorgep31415/46/orig -> origin/gh/jorgep31415/46/orig 2025-06-05T23:12:47.1098979Z * [new branch] gh/jorgep31415/47/base -> origin/gh/jorgep31415/47/base 2025-06-05T23:12:47.1100356Z * [new branch] gh/jorgep31415/47/head -> origin/gh/jorgep31415/47/head 2025-06-05T23:12:47.1114398Z * [new branch] gh/jorgep31415/47/orig -> origin/gh/jorgep31415/47/orig 2025-06-05T23:12:47.1115164Z * [new branch] gh/jorgep31415/48/base -> origin/gh/jorgep31415/48/base 2025-06-05T23:12:47.1115724Z * [new branch] gh/jorgep31415/48/head -> origin/gh/jorgep31415/48/head 2025-06-05T23:12:47.1116260Z * [new branch] gh/jorgep31415/48/orig -> origin/gh/jorgep31415/48/orig 2025-06-05T23:12:47.1116803Z * [new branch] gh/jorgep31415/49/base -> origin/gh/jorgep31415/49/base 2025-06-05T23:12:47.1117340Z * [new branch] gh/jorgep31415/49/head -> origin/gh/jorgep31415/49/head 2025-06-05T23:12:47.1117870Z * [new branch] gh/jorgep31415/49/orig -> origin/gh/jorgep31415/49/orig 2025-06-05T23:12:47.1118417Z * [new branch] gh/jorgep31415/5/base -> origin/gh/jorgep31415/5/base 2025-06-05T23:12:47.1118949Z * [new branch] gh/jorgep31415/5/head -> origin/gh/jorgep31415/5/head 2025-06-05T23:12:47.1119499Z * [new branch] gh/jorgep31415/50/base -> origin/gh/jorgep31415/50/base 2025-06-05T23:12:47.1120182Z * [new branch] gh/jorgep31415/50/head -> origin/gh/jorgep31415/50/head 2025-06-05T23:12:47.1120712Z * [new branch] gh/jorgep31415/50/orig -> origin/gh/jorgep31415/50/orig 2025-06-05T23:12:47.1121253Z * [new branch] gh/jorgep31415/51/base -> origin/gh/jorgep31415/51/base 2025-06-05T23:12:47.1121785Z * [new branch] gh/jorgep31415/51/head -> origin/gh/jorgep31415/51/head 2025-06-05T23:12:47.1122329Z * [new branch] gh/jorgep31415/51/orig -> origin/gh/jorgep31415/51/orig 2025-06-05T23:12:47.1123914Z * [new branch] gh/jorgep31415/52/base -> origin/gh/jorgep31415/52/base 2025-06-05T23:12:47.1125223Z * [new branch] gh/jorgep31415/52/head -> origin/gh/jorgep31415/52/head 2025-06-05T23:12:47.1126503Z * [new branch] gh/jorgep31415/52/orig -> origin/gh/jorgep31415/52/orig 2025-06-05T23:12:47.1128202Z * [new branch] gh/jorgep31415/53/base -> origin/gh/jorgep31415/53/base 2025-06-05T23:12:47.1129293Z * [new branch] gh/jorgep31415/53/head -> origin/gh/jorgep31415/53/head 2025-06-05T23:12:47.1130648Z * [new branch] gh/jorgep31415/53/orig -> origin/gh/jorgep31415/53/orig 2025-06-05T23:12:47.1132277Z * [new branch] gh/jorgep31415/54/base -> origin/gh/jorgep31415/54/base 2025-06-05T23:12:47.1133515Z * [new branch] gh/jorgep31415/54/head -> origin/gh/jorgep31415/54/head 2025-06-05T23:12:47.1134898Z * [new branch] gh/jorgep31415/54/orig -> origin/gh/jorgep31415/54/orig 2025-06-05T23:12:47.1136781Z * [new branch] gh/jorgep31415/55/base -> origin/gh/jorgep31415/55/base 2025-06-05T23:12:47.1137847Z * [new branch] gh/jorgep31415/55/head -> origin/gh/jorgep31415/55/head 2025-06-05T23:12:47.1139436Z * [new branch] gh/jorgep31415/55/orig -> origin/gh/jorgep31415/55/orig 2025-06-05T23:12:47.1140915Z * [new branch] gh/jorgep31415/56/base -> origin/gh/jorgep31415/56/base 2025-06-05T23:12:47.1142221Z * [new branch] gh/jorgep31415/56/head -> origin/gh/jorgep31415/56/head 2025-06-05T23:12:47.1143570Z * [new branch] gh/jorgep31415/56/orig -> origin/gh/jorgep31415/56/orig 2025-06-05T23:12:47.1145023Z * [new branch] gh/jorgep31415/57/base -> origin/gh/jorgep31415/57/base 2025-06-05T23:12:47.1146311Z * [new branch] gh/jorgep31415/57/head -> origin/gh/jorgep31415/57/head 2025-06-05T23:12:47.1147550Z * [new branch] gh/jorgep31415/57/orig -> origin/gh/jorgep31415/57/orig 2025-06-05T23:12:47.1149212Z * [new branch] gh/jorgep31415/58/base -> origin/gh/jorgep31415/58/base 2025-06-05T23:12:47.1150287Z * [new branch] gh/jorgep31415/58/head -> origin/gh/jorgep31415/58/head 2025-06-05T23:12:47.1151638Z * [new branch] gh/jorgep31415/58/orig -> origin/gh/jorgep31415/58/orig 2025-06-05T23:12:47.1153343Z * [new branch] gh/jorgep31415/59/base -> origin/gh/jorgep31415/59/base 2025-06-05T23:12:47.1154539Z * [new branch] gh/jorgep31415/59/head -> origin/gh/jorgep31415/59/head 2025-06-05T23:12:47.1155912Z * [new branch] gh/jorgep31415/59/orig -> origin/gh/jorgep31415/59/orig 2025-06-05T23:12:47.1157357Z * [new branch] gh/jorgep31415/6/base -> origin/gh/jorgep31415/6/base 2025-06-05T23:12:47.1158666Z * [new branch] gh/jorgep31415/6/head -> origin/gh/jorgep31415/6/head 2025-06-05T23:12:47.1160440Z * [new branch] gh/jorgep31415/60/base -> origin/gh/jorgep31415/60/base 2025-06-05T23:12:47.1161878Z * [new branch] gh/jorgep31415/60/head -> origin/gh/jorgep31415/60/head 2025-06-05T23:12:47.1163277Z * [new branch] gh/jorgep31415/60/orig -> origin/gh/jorgep31415/60/orig 2025-06-05T23:12:47.1165059Z * [new branch] gh/jorgep31415/61/base -> origin/gh/jorgep31415/61/base 2025-06-05T23:12:47.1166356Z * [new branch] gh/jorgep31415/61/head -> origin/gh/jorgep31415/61/head 2025-06-05T23:12:47.1167716Z * [new branch] gh/jorgep31415/61/orig -> origin/gh/jorgep31415/61/orig 2025-06-05T23:12:47.1169592Z * [new branch] gh/jorgep31415/62/base -> origin/gh/jorgep31415/62/base 2025-06-05T23:12:47.1170877Z * [new branch] gh/jorgep31415/62/head -> origin/gh/jorgep31415/62/head 2025-06-05T23:12:47.1172321Z * [new branch] gh/jorgep31415/62/orig -> origin/gh/jorgep31415/62/orig 2025-06-05T23:12:47.1174190Z * [new branch] gh/jorgep31415/63/base -> origin/gh/jorgep31415/63/base 2025-06-05T23:12:47.1175619Z * [new branch] gh/jorgep31415/63/head -> origin/gh/jorgep31415/63/head 2025-06-05T23:12:47.1177087Z * [new branch] gh/jorgep31415/63/orig -> origin/gh/jorgep31415/63/orig 2025-06-05T23:12:47.1179109Z * [new branch] gh/jorgep31415/64/base -> origin/gh/jorgep31415/64/base 2025-06-05T23:12:47.1180411Z * [new branch] gh/jorgep31415/64/head -> origin/gh/jorgep31415/64/head 2025-06-05T23:12:47.1181674Z * [new branch] gh/jorgep31415/64/orig -> origin/gh/jorgep31415/64/orig 2025-06-05T23:12:47.1183509Z * [new branch] gh/jorgep31415/65/base -> origin/gh/jorgep31415/65/base 2025-06-05T23:12:47.1184657Z * [new branch] gh/jorgep31415/65/head -> origin/gh/jorgep31415/65/head 2025-06-05T23:12:47.1186079Z * [new branch] gh/jorgep31415/65/orig -> origin/gh/jorgep31415/65/orig 2025-06-05T23:12:47.1187873Z * [new branch] gh/jorgep31415/66/base -> origin/gh/jorgep31415/66/base 2025-06-05T23:12:47.1189242Z * [new branch] gh/jorgep31415/66/head -> origin/gh/jorgep31415/66/head 2025-06-05T23:12:47.1190615Z * [new branch] gh/jorgep31415/66/orig -> origin/gh/jorgep31415/66/orig 2025-06-05T23:12:47.1194193Z * [new branch] gh/jorgep31415/67/base -> origin/gh/jorgep31415/67/base 2025-06-05T23:12:47.1195482Z * [new branch] gh/jorgep31415/67/head -> origin/gh/jorgep31415/67/head 2025-06-05T23:12:47.1196809Z * [new branch] gh/jorgep31415/67/orig -> origin/gh/jorgep31415/67/orig 2025-06-05T23:12:47.1198451Z * [new branch] gh/jorgep31415/68/base -> origin/gh/jorgep31415/68/base 2025-06-05T23:12:47.1199792Z * [new branch] gh/jorgep31415/68/head -> origin/gh/jorgep31415/68/head 2025-06-05T23:12:47.1201168Z * [new branch] gh/jorgep31415/68/orig -> origin/gh/jorgep31415/68/orig 2025-06-05T23:12:47.1202872Z * [new branch] gh/jorgep31415/69/base -> origin/gh/jorgep31415/69/base 2025-06-05T23:12:47.1204176Z * [new branch] gh/jorgep31415/69/head -> origin/gh/jorgep31415/69/head 2025-06-05T23:12:47.1205432Z * [new branch] gh/jorgep31415/69/orig -> origin/gh/jorgep31415/69/orig 2025-06-05T23:12:47.1207281Z * [new branch] gh/jorgep31415/7/base -> origin/gh/jorgep31415/7/base 2025-06-05T23:12:47.1208340Z * [new branch] gh/jorgep31415/7/head -> origin/gh/jorgep31415/7/head 2025-06-05T23:12:47.1210086Z * [new branch] gh/jorgep31415/70/base -> origin/gh/jorgep31415/70/base 2025-06-05T23:12:47.1211139Z * [new branch] gh/jorgep31415/70/head -> origin/gh/jorgep31415/70/head 2025-06-05T23:12:47.1212833Z * [new branch] gh/jorgep31415/71/base -> origin/gh/jorgep31415/71/base 2025-06-05T23:12:47.1214261Z * [new branch] gh/jorgep31415/71/head -> origin/gh/jorgep31415/71/head 2025-06-05T23:12:47.1215213Z * [new branch] gh/jorgep31415/71/orig -> origin/gh/jorgep31415/71/orig 2025-06-05T23:12:47.1216937Z * [new branch] gh/jorgep31415/72/base -> origin/gh/jorgep31415/72/base 2025-06-05T23:12:47.1218209Z * [new branch] gh/jorgep31415/72/head -> origin/gh/jorgep31415/72/head 2025-06-05T23:12:47.1219553Z * [new branch] gh/jorgep31415/72/orig -> origin/gh/jorgep31415/72/orig 2025-06-05T23:12:47.1221267Z * [new branch] gh/jorgep31415/73/base -> origin/gh/jorgep31415/73/base 2025-06-05T23:12:47.1222497Z * [new branch] gh/jorgep31415/73/head -> origin/gh/jorgep31415/73/head 2025-06-05T23:12:47.1223752Z * [new branch] gh/jorgep31415/73/orig -> origin/gh/jorgep31415/73/orig 2025-06-05T23:12:47.1225403Z * [new branch] gh/jorgep31415/74/base -> origin/gh/jorgep31415/74/base 2025-06-05T23:12:47.1226849Z * [new branch] gh/jorgep31415/74/head -> origin/gh/jorgep31415/74/head 2025-06-05T23:12:47.1228164Z * [new branch] gh/jorgep31415/74/orig -> origin/gh/jorgep31415/74/orig 2025-06-05T23:12:47.1229830Z * [new branch] gh/jorgep31415/75/base -> origin/gh/jorgep31415/75/base 2025-06-05T23:12:47.1230903Z * [new branch] gh/jorgep31415/75/head -> origin/gh/jorgep31415/75/head 2025-06-05T23:12:47.1232467Z * [new branch] gh/jorgep31415/75/orig -> origin/gh/jorgep31415/75/orig 2025-06-05T23:12:47.1233948Z * [new branch] gh/jorgep31415/76/base -> origin/gh/jorgep31415/76/base 2025-06-05T23:12:47.1235216Z * [new branch] gh/jorgep31415/76/head -> origin/gh/jorgep31415/76/head 2025-06-05T23:12:47.1236601Z * [new branch] gh/jorgep31415/76/orig -> origin/gh/jorgep31415/76/orig 2025-06-05T23:12:47.1238199Z * [new branch] gh/jorgep31415/77/base -> origin/gh/jorgep31415/77/base 2025-06-05T23:12:47.1239488Z * [new branch] gh/jorgep31415/77/head -> origin/gh/jorgep31415/77/head 2025-06-05T23:12:47.1241087Z * [new branch] gh/jorgep31415/77/orig -> origin/gh/jorgep31415/77/orig 2025-06-05T23:12:47.1242565Z * [new branch] gh/jorgep31415/78/base -> origin/gh/jorgep31415/78/base 2025-06-05T23:12:47.1243928Z * [new branch] gh/jorgep31415/78/head -> origin/gh/jorgep31415/78/head 2025-06-05T23:12:47.1245207Z * [new branch] gh/jorgep31415/78/orig -> origin/gh/jorgep31415/78/orig 2025-06-05T23:12:47.1246884Z * [new branch] gh/jorgep31415/79/base -> origin/gh/jorgep31415/79/base 2025-06-05T23:12:47.1247999Z * [new branch] gh/jorgep31415/79/head -> origin/gh/jorgep31415/79/head 2025-06-05T23:12:47.1249292Z * [new branch] gh/jorgep31415/79/orig -> origin/gh/jorgep31415/79/orig 2025-06-05T23:12:47.1250727Z * [new branch] gh/jorgep31415/8/base -> origin/gh/jorgep31415/8/base 2025-06-05T23:12:47.1252072Z * [new branch] gh/jorgep31415/8/head -> origin/gh/jorgep31415/8/head 2025-06-05T23:12:47.1253776Z * [new branch] gh/jorgep31415/80/base -> origin/gh/jorgep31415/80/base 2025-06-05T23:12:47.1254992Z * [new branch] gh/jorgep31415/80/head -> origin/gh/jorgep31415/80/head 2025-06-05T23:12:47.1256342Z * [new branch] gh/jorgep31415/80/orig -> origin/gh/jorgep31415/80/orig 2025-06-05T23:12:47.1257736Z * [new branch] gh/jorgep31415/81/base -> origin/gh/jorgep31415/81/base 2025-06-05T23:12:47.1258946Z * [new branch] gh/jorgep31415/81/head -> origin/gh/jorgep31415/81/head 2025-06-05T23:12:47.1260256Z * [new branch] gh/jorgep31415/81/orig -> origin/gh/jorgep31415/81/orig 2025-06-05T23:12:47.1261722Z * [new branch] gh/jorgep31415/82/base -> origin/gh/jorgep31415/82/base 2025-06-05T23:12:47.1263111Z * [new branch] gh/jorgep31415/82/head -> origin/gh/jorgep31415/82/head 2025-06-05T23:12:47.1264380Z * [new branch] gh/jorgep31415/82/orig -> origin/gh/jorgep31415/82/orig 2025-06-05T23:12:47.1266045Z * [new branch] gh/jorgep31415/83/base -> origin/gh/jorgep31415/83/base 2025-06-05T23:12:47.1267283Z * [new branch] gh/jorgep31415/83/head -> origin/gh/jorgep31415/83/head 2025-06-05T23:12:47.1268666Z * [new branch] gh/jorgep31415/83/orig -> origin/gh/jorgep31415/83/orig 2025-06-05T23:12:47.1270112Z * [new branch] gh/jorgep31415/84/base -> origin/gh/jorgep31415/84/base 2025-06-05T23:12:47.1271457Z * [new branch] gh/jorgep31415/84/head -> origin/gh/jorgep31415/84/head 2025-06-05T23:12:47.1272690Z * [new branch] gh/jorgep31415/84/orig -> origin/gh/jorgep31415/84/orig 2025-06-05T23:12:47.1274174Z * [new branch] gh/jorgep31415/85/base -> origin/gh/jorgep31415/85/base 2025-06-05T23:12:47.1275344Z * [new branch] gh/jorgep31415/85/head -> origin/gh/jorgep31415/85/head 2025-06-05T23:12:47.1276529Z * [new branch] gh/jorgep31415/85/orig -> origin/gh/jorgep31415/85/orig 2025-06-05T23:12:47.1277945Z * [new branch] gh/jorgep31415/86/base -> origin/gh/jorgep31415/86/base 2025-06-05T23:12:47.1279322Z * [new branch] gh/jorgep31415/86/head -> origin/gh/jorgep31415/86/head 2025-06-05T23:12:47.1280449Z * [new branch] gh/jorgep31415/86/orig -> origin/gh/jorgep31415/86/orig 2025-06-05T23:12:47.1281968Z * [new branch] gh/jorgep31415/87/base -> origin/gh/jorgep31415/87/base 2025-06-05T23:12:47.1283110Z * [new branch] gh/jorgep31415/87/head -> origin/gh/jorgep31415/87/head 2025-06-05T23:12:47.1284592Z * [new branch] gh/jorgep31415/87/orig -> origin/gh/jorgep31415/87/orig 2025-06-05T23:12:47.1285879Z * [new branch] gh/jorgep31415/88/base -> origin/gh/jorgep31415/88/base 2025-06-05T23:12:47.1287160Z * [new branch] gh/jorgep31415/88/head -> origin/gh/jorgep31415/88/head 2025-06-05T23:12:47.1289015Z * [new branch] gh/jorgep31415/88/orig -> origin/gh/jorgep31415/88/orig 2025-06-05T23:12:47.1290730Z * [new branch] gh/jorgep31415/89/base -> origin/gh/jorgep31415/89/base 2025-06-05T23:12:47.1292155Z * [new branch] gh/jorgep31415/89/head -> origin/gh/jorgep31415/89/head 2025-06-05T23:12:47.1293542Z * [new branch] gh/jorgep31415/89/orig -> origin/gh/jorgep31415/89/orig 2025-06-05T23:12:47.1295239Z * [new branch] gh/jorgep31415/9/base -> origin/gh/jorgep31415/9/base 2025-06-05T23:12:47.1296295Z * [new branch] gh/jorgep31415/9/head -> origin/gh/jorgep31415/9/head 2025-06-05T23:12:47.1297658Z * [new branch] gh/jorgep31415/9/orig -> origin/gh/jorgep31415/9/orig 2025-06-05T23:12:47.1299235Z * [new branch] gh/jorgep31415/90/base -> origin/gh/jorgep31415/90/base 2025-06-05T23:12:47.1300328Z * [new branch] gh/jorgep31415/90/head -> origin/gh/jorgep31415/90/head 2025-06-05T23:12:47.1301471Z * [new branch] gh/jorgep31415/90/orig -> origin/gh/jorgep31415/90/orig 2025-06-05T23:12:47.1303208Z * [new branch] gh/jorgep31415/91/base -> origin/gh/jorgep31415/91/base 2025-06-05T23:12:47.1304334Z * [new branch] gh/jorgep31415/91/head -> origin/gh/jorgep31415/91/head 2025-06-05T23:12:47.1305673Z * [new branch] gh/jorgep31415/91/orig -> origin/gh/jorgep31415/91/orig 2025-06-05T23:12:47.1307411Z * [new branch] gh/jorgep31415/92/base -> origin/gh/jorgep31415/92/base 2025-06-05T23:12:47.1308554Z * [new branch] gh/jorgep31415/92/head -> origin/gh/jorgep31415/92/head 2025-06-05T23:12:47.1309902Z * [new branch] gh/jorgep31415/92/orig -> origin/gh/jorgep31415/92/orig 2025-06-05T23:12:47.1311636Z * [new branch] gh/jorgep31415/93/base -> origin/gh/jorgep31415/93/base 2025-06-05T23:12:47.1312966Z * [new branch] gh/jorgep31415/93/head -> origin/gh/jorgep31415/93/head 2025-06-05T23:12:47.1314278Z * [new branch] gh/jorgep31415/93/orig -> origin/gh/jorgep31415/93/orig 2025-06-05T23:12:47.1315931Z * [new branch] gh/jorgep31415/94/base -> origin/gh/jorgep31415/94/base 2025-06-05T23:12:47.1317224Z * [new branch] gh/jorgep31415/94/head -> origin/gh/jorgep31415/94/head 2025-06-05T23:12:47.1318558Z * [new branch] gh/jorgep31415/94/orig -> origin/gh/jorgep31415/94/orig 2025-06-05T23:12:47.1320214Z * [new branch] gh/jorgep31415/95/base -> origin/gh/jorgep31415/95/base 2025-06-05T23:12:47.1321492Z * [new branch] gh/jorgep31415/95/head -> origin/gh/jorgep31415/95/head 2025-06-05T23:12:47.1323223Z * [new branch] gh/jorgep31415/95/orig -> origin/gh/jorgep31415/95/orig 2025-06-05T23:12:47.1325036Z * [new branch] gh/jorgep31415/96/base -> origin/gh/jorgep31415/96/base 2025-06-05T23:12:47.1326368Z * [new branch] gh/jorgep31415/96/head -> origin/gh/jorgep31415/96/head 2025-06-05T23:12:47.1327681Z * [new branch] gh/jorgep31415/96/orig -> origin/gh/jorgep31415/96/orig 2025-06-05T23:12:47.1329585Z * [new branch] gh/jorgep31415/97/base -> origin/gh/jorgep31415/97/base 2025-06-05T23:12:47.1330618Z * [new branch] gh/jorgep31415/97/head -> origin/gh/jorgep31415/97/head 2025-06-05T23:12:47.1332060Z * [new branch] gh/jorgep31415/97/orig -> origin/gh/jorgep31415/97/orig 2025-06-05T23:12:47.1333662Z * [new branch] gh/jorgep31415/98/base -> origin/gh/jorgep31415/98/base 2025-06-05T23:12:47.1334796Z * [new branch] gh/jorgep31415/98/head -> origin/gh/jorgep31415/98/head 2025-06-05T23:12:47.1336175Z * [new branch] gh/jorgep31415/98/orig -> origin/gh/jorgep31415/98/orig 2025-06-05T23:12:47.1337683Z * [new branch] gh/jorgep31415/99/base -> origin/gh/jorgep31415/99/base 2025-06-05T23:12:47.1338760Z * [new branch] gh/jorgep31415/99/head -> origin/gh/jorgep31415/99/head 2025-06-05T23:12:47.1340489Z * [new branch] gh/jorgep31415/99/orig -> origin/gh/jorgep31415/99/orig 2025-06-05T23:12:47.1342367Z * [new branch] gh/kimishpatel/10/base -> origin/gh/kimishpatel/10/base 2025-06-05T23:12:47.1343542Z * [new branch] gh/kimishpatel/10/head -> origin/gh/kimishpatel/10/head 2025-06-05T23:12:47.1344849Z * [new branch] gh/kimishpatel/10/orig -> origin/gh/kimishpatel/10/orig 2025-06-05T23:12:47.1346493Z * [new branch] gh/kimishpatel/100/base -> origin/gh/kimishpatel/100/base 2025-06-05T23:12:47.1347625Z * [new branch] gh/kimishpatel/100/head -> origin/gh/kimishpatel/100/head 2025-06-05T23:12:47.1349059Z * [new branch] gh/kimishpatel/100/orig -> origin/gh/kimishpatel/100/orig 2025-06-05T23:12:47.1350776Z * [new branch] gh/kimishpatel/101/base -> origin/gh/kimishpatel/101/base 2025-06-05T23:12:47.1351946Z * [new branch] gh/kimishpatel/101/head -> origin/gh/kimishpatel/101/head 2025-06-05T23:12:47.1353353Z * [new branch] gh/kimishpatel/101/orig -> origin/gh/kimishpatel/101/orig 2025-06-05T23:12:47.1355043Z * [new branch] gh/kimishpatel/102/base -> origin/gh/kimishpatel/102/base 2025-06-05T23:12:47.1356199Z * [new branch] gh/kimishpatel/102/head -> origin/gh/kimishpatel/102/head 2025-06-05T23:12:47.1357589Z * [new branch] gh/kimishpatel/102/orig -> origin/gh/kimishpatel/102/orig 2025-06-05T23:12:47.1359255Z * [new branch] gh/kimishpatel/103/base -> origin/gh/kimishpatel/103/base 2025-06-05T23:12:47.1360420Z * [new branch] gh/kimishpatel/103/head -> origin/gh/kimishpatel/103/head 2025-06-05T23:12:47.1361767Z * [new branch] gh/kimishpatel/103/orig -> origin/gh/kimishpatel/103/orig 2025-06-05T23:12:47.1363491Z * [new branch] gh/kimishpatel/104/base -> origin/gh/kimishpatel/104/base 2025-06-05T23:12:47.1364726Z * [new branch] gh/kimishpatel/104/head -> origin/gh/kimishpatel/104/head 2025-06-05T23:12:47.1366021Z * [new branch] gh/kimishpatel/104/orig -> origin/gh/kimishpatel/104/orig 2025-06-05T23:12:47.1367728Z * [new branch] gh/kimishpatel/105/base -> origin/gh/kimishpatel/105/base 2025-06-05T23:12:47.1369278Z * [new branch] gh/kimishpatel/105/head -> origin/gh/kimishpatel/105/head 2025-06-05T23:12:47.1370541Z * [new branch] gh/kimishpatel/105/orig -> origin/gh/kimishpatel/105/orig 2025-06-05T23:12:47.1372151Z * [new branch] gh/kimishpatel/106/base -> origin/gh/kimishpatel/106/base 2025-06-05T23:12:47.1373399Z * [new branch] gh/kimishpatel/106/head -> origin/gh/kimishpatel/106/head 2025-06-05T23:12:47.1374643Z * [new branch] gh/kimishpatel/106/orig -> origin/gh/kimishpatel/106/orig 2025-06-05T23:12:47.1376365Z * [new branch] gh/kimishpatel/107/base -> origin/gh/kimishpatel/107/base 2025-06-05T23:12:47.1377731Z * [new branch] gh/kimishpatel/107/head -> origin/gh/kimishpatel/107/head 2025-06-05T23:12:47.1378915Z * [new branch] gh/kimishpatel/107/orig -> origin/gh/kimishpatel/107/orig 2025-06-05T23:12:47.1380492Z * [new branch] gh/kimishpatel/108/base -> origin/gh/kimishpatel/108/base 2025-06-05T23:12:47.1381814Z * [new branch] gh/kimishpatel/108/head -> origin/gh/kimishpatel/108/head 2025-06-05T23:12:47.1383132Z * [new branch] gh/kimishpatel/108/orig -> origin/gh/kimishpatel/108/orig 2025-06-05T23:12:47.1384677Z * [new branch] gh/kimishpatel/109/base -> origin/gh/kimishpatel/109/base 2025-06-05T23:12:47.1385778Z * [new branch] gh/kimishpatel/109/head -> origin/gh/kimishpatel/109/head 2025-06-05T23:12:47.1387048Z * [new branch] gh/kimishpatel/109/orig -> origin/gh/kimishpatel/109/orig 2025-06-05T23:12:47.1388690Z * [new branch] gh/kimishpatel/11/base -> origin/gh/kimishpatel/11/base 2025-06-05T23:12:47.1389910Z * [new branch] gh/kimishpatel/11/head -> origin/gh/kimishpatel/11/head 2025-06-05T23:12:47.1391277Z * [new branch] gh/kimishpatel/11/orig -> origin/gh/kimishpatel/11/orig 2025-06-05T23:12:47.1392934Z * [new branch] gh/kimishpatel/110/base -> origin/gh/kimishpatel/110/base 2025-06-05T23:12:47.1394031Z * [new branch] gh/kimishpatel/110/head -> origin/gh/kimishpatel/110/head 2025-06-05T23:12:47.1395282Z * [new branch] gh/kimishpatel/110/orig -> origin/gh/kimishpatel/110/orig 2025-06-05T23:12:47.1396918Z * [new branch] gh/kimishpatel/111/base -> origin/gh/kimishpatel/111/base 2025-06-05T23:12:47.1398029Z * [new branch] gh/kimishpatel/111/head -> origin/gh/kimishpatel/111/head 2025-06-05T23:12:47.1399349Z * [new branch] gh/kimishpatel/111/orig -> origin/gh/kimishpatel/111/orig 2025-06-05T23:12:47.1400966Z * [new branch] gh/kimishpatel/112/base -> origin/gh/kimishpatel/112/base 2025-06-05T23:12:47.1402110Z * [new branch] gh/kimishpatel/112/head -> origin/gh/kimishpatel/112/head 2025-06-05T23:12:47.1403402Z * [new branch] gh/kimishpatel/112/orig -> origin/gh/kimishpatel/112/orig 2025-06-05T23:12:47.1405101Z * [new branch] gh/kimishpatel/113/base -> origin/gh/kimishpatel/113/base 2025-06-05T23:12:47.1406738Z * [new branch] gh/kimishpatel/114/base -> origin/gh/kimishpatel/114/base 2025-06-05T23:12:47.1408816Z * [new branch] gh/kimishpatel/115/base -> origin/gh/kimishpatel/115/base 2025-06-05T23:12:47.1410158Z * [new branch] gh/kimishpatel/115/head -> origin/gh/kimishpatel/115/head 2025-06-05T23:12:47.1411510Z * [new branch] gh/kimishpatel/115/orig -> origin/gh/kimishpatel/115/orig 2025-06-05T23:12:47.1413187Z * [new branch] gh/kimishpatel/116/base -> origin/gh/kimishpatel/116/base 2025-06-05T23:12:47.1414471Z * [new branch] gh/kimishpatel/116/head -> origin/gh/kimishpatel/116/head 2025-06-05T23:12:47.1415774Z * [new branch] gh/kimishpatel/116/orig -> origin/gh/kimishpatel/116/orig 2025-06-05T23:12:47.1417257Z * [new branch] gh/kimishpatel/117/base -> origin/gh/kimishpatel/117/base 2025-06-05T23:12:47.1418903Z * [new branch] gh/kimishpatel/117/head -> origin/gh/kimishpatel/117/head 2025-06-05T23:12:47.1420256Z * [new branch] gh/kimishpatel/117/orig -> origin/gh/kimishpatel/117/orig 2025-06-05T23:12:47.1421750Z * [new branch] gh/kimishpatel/118/base -> origin/gh/kimishpatel/118/base 2025-06-05T23:12:47.1422955Z * [new branch] gh/kimishpatel/118/head -> origin/gh/kimishpatel/118/head 2025-06-05T23:12:47.1424130Z * [new branch] gh/kimishpatel/118/orig -> origin/gh/kimishpatel/118/orig 2025-06-05T23:12:47.1425584Z * [new branch] gh/kimishpatel/119/base -> origin/gh/kimishpatel/119/base 2025-06-05T23:12:47.1426878Z * [new branch] gh/kimishpatel/119/head -> origin/gh/kimishpatel/119/head 2025-06-05T23:12:47.1428200Z * [new branch] gh/kimishpatel/119/orig -> origin/gh/kimishpatel/119/orig 2025-06-05T23:12:47.1429911Z * [new branch] gh/kimishpatel/12/base -> origin/gh/kimishpatel/12/base 2025-06-05T23:12:47.1431075Z * [new branch] gh/kimishpatel/12/head -> origin/gh/kimishpatel/12/head 2025-06-05T23:12:47.1432450Z * [new branch] gh/kimishpatel/12/orig -> origin/gh/kimishpatel/12/orig 2025-06-05T23:12:47.1434001Z * [new branch] gh/kimishpatel/120/base -> origin/gh/kimishpatel/120/base 2025-06-05T23:12:47.1435257Z * [new branch] gh/kimishpatel/120/head -> origin/gh/kimishpatel/120/head 2025-06-05T23:12:47.1436509Z * [new branch] gh/kimishpatel/120/orig -> origin/gh/kimishpatel/120/orig 2025-06-05T23:12:47.1437965Z * [new branch] gh/kimishpatel/121/base -> origin/gh/kimishpatel/121/base 2025-06-05T23:12:47.1439267Z * [new branch] gh/kimishpatel/121/head -> origin/gh/kimishpatel/121/head 2025-06-05T23:12:47.1440553Z * [new branch] gh/kimishpatel/121/orig -> origin/gh/kimishpatel/121/orig 2025-06-05T23:12:47.1442004Z * [new branch] gh/kimishpatel/122/base -> origin/gh/kimishpatel/122/base 2025-06-05T23:12:47.1443295Z * [new branch] gh/kimishpatel/122/head -> origin/gh/kimishpatel/122/head 2025-06-05T23:12:47.1444708Z * [new branch] gh/kimishpatel/122/orig -> origin/gh/kimishpatel/122/orig 2025-06-05T23:12:47.1446128Z * [new branch] gh/kimishpatel/123/base -> origin/gh/kimishpatel/123/base 2025-06-05T23:12:47.1447458Z * [new branch] gh/kimishpatel/123/head -> origin/gh/kimishpatel/123/head 2025-06-05T23:12:47.1448686Z * [new branch] gh/kimishpatel/123/orig -> origin/gh/kimishpatel/123/orig 2025-06-05T23:12:47.1450820Z * [new branch] gh/kimishpatel/124/base -> origin/gh/kimishpatel/124/base 2025-06-05T23:12:47.1452454Z * [new branch] gh/kimishpatel/125/base -> origin/gh/kimishpatel/125/base 2025-06-05T23:12:47.1454089Z * [new branch] gh/kimishpatel/126/base -> origin/gh/kimishpatel/126/base 2025-06-05T23:12:47.1455789Z * [new branch] gh/kimishpatel/127/base -> origin/gh/kimishpatel/127/base 2025-06-05T23:12:47.1457390Z * [new branch] gh/kimishpatel/128/base -> origin/gh/kimishpatel/128/base 2025-06-05T23:12:47.1459041Z * [new branch] gh/kimishpatel/129/base -> origin/gh/kimishpatel/129/base 2025-06-05T23:12:47.1460799Z * [new branch] gh/kimishpatel/13/base -> origin/gh/kimishpatel/13/base 2025-06-05T23:12:47.1461970Z * [new branch] gh/kimishpatel/13/head -> origin/gh/kimishpatel/13/head 2025-06-05T23:12:47.1463228Z * [new branch] gh/kimishpatel/13/orig -> origin/gh/kimishpatel/13/orig 2025-06-05T23:12:47.1464933Z * [new branch] gh/kimishpatel/130/base -> origin/gh/kimishpatel/130/base 2025-06-05T23:12:47.1466598Z * [new branch] gh/kimishpatel/131/base -> origin/gh/kimishpatel/131/base 2025-06-05T23:12:47.1468214Z * [new branch] gh/kimishpatel/132/base -> origin/gh/kimishpatel/132/base 2025-06-05T23:12:47.1469914Z * [new branch] gh/kimishpatel/133/base -> origin/gh/kimishpatel/133/base 2025-06-05T23:12:47.1471231Z * [new branch] gh/kimishpatel/133/head -> origin/gh/kimishpatel/133/head 2025-06-05T23:12:47.1473057Z * [new branch] gh/kimishpatel/133/orig -> origin/gh/kimishpatel/133/orig 2025-06-05T23:12:47.1474480Z * [new branch] gh/kimishpatel/134/base -> origin/gh/kimishpatel/134/base 2025-06-05T23:12:47.1476045Z * [new branch] gh/kimishpatel/134/head -> origin/gh/kimishpatel/134/head 2025-06-05T23:12:47.1477355Z * [new branch] gh/kimishpatel/134/orig -> origin/gh/kimishpatel/134/orig 2025-06-05T23:12:47.1478980Z * [new branch] gh/kimishpatel/135/base -> origin/gh/kimishpatel/135/base 2025-06-05T23:12:47.1480629Z * [new branch] gh/kimishpatel/135/head -> origin/gh/kimishpatel/135/head 2025-06-05T23:12:47.1481593Z * [new branch] gh/kimishpatel/135/orig -> origin/gh/kimishpatel/135/orig 2025-06-05T23:12:47.1483345Z * [new branch] gh/kimishpatel/136/base -> origin/gh/kimishpatel/136/base 2025-06-05T23:12:47.1484721Z * [new branch] gh/kimishpatel/136/head -> origin/gh/kimishpatel/136/head 2025-06-05T23:12:47.1486024Z * [new branch] gh/kimishpatel/136/orig -> origin/gh/kimishpatel/136/orig 2025-06-05T23:12:47.1487673Z * [new branch] gh/kimishpatel/137/base -> origin/gh/kimishpatel/137/base 2025-06-05T23:12:47.1488967Z * [new branch] gh/kimishpatel/137/head -> origin/gh/kimishpatel/137/head 2025-06-05T23:12:47.1490235Z * [new branch] gh/kimishpatel/137/orig -> origin/gh/kimishpatel/137/orig 2025-06-05T23:12:47.1494376Z * [new branch] gh/kimishpatel/138/base -> origin/gh/kimishpatel/138/base 2025-06-05T23:12:47.1495697Z * [new branch] gh/kimishpatel/138/head -> origin/gh/kimishpatel/138/head 2025-06-05T23:12:47.1496999Z * [new branch] gh/kimishpatel/138/orig -> origin/gh/kimishpatel/138/orig 2025-06-05T23:12:47.1498698Z * [new branch] gh/kimishpatel/139/base -> origin/gh/kimishpatel/139/base 2025-06-05T23:12:47.1500125Z * [new branch] gh/kimishpatel/139/head -> origin/gh/kimishpatel/139/head 2025-06-05T23:12:47.1501258Z * [new branch] gh/kimishpatel/139/orig -> origin/gh/kimishpatel/139/orig 2025-06-05T23:12:47.1503091Z * [new branch] gh/kimishpatel/14/base -> origin/gh/kimishpatel/14/base 2025-06-05T23:12:47.1504253Z * [new branch] gh/kimishpatel/14/head -> origin/gh/kimishpatel/14/head 2025-06-05T23:12:47.1505547Z * [new branch] gh/kimishpatel/14/orig -> origin/gh/kimishpatel/14/orig 2025-06-05T23:12:47.1507191Z * [new branch] gh/kimishpatel/140/base -> origin/gh/kimishpatel/140/base 2025-06-05T23:12:47.1508264Z * [new branch] gh/kimishpatel/140/head -> origin/gh/kimishpatel/140/head 2025-06-05T23:12:47.1509392Z * [new branch] gh/kimishpatel/140/orig -> origin/gh/kimishpatel/140/orig 2025-06-05T23:12:47.1511523Z * [new branch] gh/kimishpatel/141/base -> origin/gh/kimishpatel/141/base 2025-06-05T23:12:47.1512515Z * [new branch] gh/kimishpatel/141/head -> origin/gh/kimishpatel/141/head 2025-06-05T23:12:47.1513937Z * [new branch] gh/kimishpatel/141/orig -> origin/gh/kimishpatel/141/orig 2025-06-05T23:12:47.1515531Z * [new branch] gh/kimishpatel/142/base -> origin/gh/kimishpatel/142/base 2025-06-05T23:12:47.1517205Z * [new branch] gh/kimishpatel/143/base -> origin/gh/kimishpatel/143/base 2025-06-05T23:12:47.1518857Z * [new branch] gh/kimishpatel/144/base -> origin/gh/kimishpatel/144/base 2025-06-05T23:12:47.1520580Z * [new branch] gh/kimishpatel/145/base -> origin/gh/kimishpatel/145/base 2025-06-05T23:12:47.1522683Z * [new branch] gh/kimishpatel/146/base -> origin/gh/kimishpatel/146/base 2025-06-05T23:12:47.1524544Z * [new branch] gh/kimishpatel/147/base -> origin/gh/kimishpatel/147/base 2025-06-05T23:12:47.1525594Z * [new branch] gh/kimishpatel/147/head -> origin/gh/kimishpatel/147/head 2025-06-05T23:12:47.1526939Z * [new branch] gh/kimishpatel/147/orig -> origin/gh/kimishpatel/147/orig 2025-06-05T23:12:47.1528590Z * [new branch] gh/kimishpatel/148/base -> origin/gh/kimishpatel/148/base 2025-06-05T23:12:47.1529912Z * [new branch] gh/kimishpatel/148/orig -> origin/gh/kimishpatel/148/orig 2025-06-05T23:12:47.1531884Z * [new branch] gh/kimishpatel/149/base -> origin/gh/kimishpatel/149/base 2025-06-05T23:12:47.1533288Z * [new branch] gh/kimishpatel/149/orig -> origin/gh/kimishpatel/149/orig 2025-06-05T23:12:47.1535062Z * [new branch] gh/kimishpatel/15/base -> origin/gh/kimishpatel/15/base 2025-06-05T23:12:47.1536852Z * [new branch] gh/kimishpatel/15/head -> origin/gh/kimishpatel/15/head 2025-06-05T23:12:47.1537524Z * [new branch] gh/kimishpatel/15/orig -> origin/gh/kimishpatel/15/orig 2025-06-05T23:12:47.1539338Z * [new branch] gh/kimishpatel/150/base -> origin/gh/kimishpatel/150/base 2025-06-05T23:12:47.1541174Z * [new branch] gh/kimishpatel/151/base -> origin/gh/kimishpatel/151/base 2025-06-05T23:12:47.1543231Z * [new branch] gh/kimishpatel/152/base -> origin/gh/kimishpatel/152/base 2025-06-05T23:12:47.1544805Z * [new branch] gh/kimishpatel/153/base -> origin/gh/kimishpatel/153/base 2025-06-05T23:12:47.1546113Z * [new branch] gh/kimishpatel/153/orig -> origin/gh/kimishpatel/153/orig 2025-06-05T23:12:47.1547963Z * [new branch] gh/kimishpatel/154/base -> origin/gh/kimishpatel/154/base 2025-06-05T23:12:47.1549220Z * [new branch] gh/kimishpatel/154/orig -> origin/gh/kimishpatel/154/orig 2025-06-05T23:12:47.1550916Z * [new branch] gh/kimishpatel/155/base -> origin/gh/kimishpatel/155/base 2025-06-05T23:12:47.1552229Z * [new branch] gh/kimishpatel/155/orig -> origin/gh/kimishpatel/155/orig 2025-06-05T23:12:47.1553926Z * [new branch] gh/kimishpatel/156/base -> origin/gh/kimishpatel/156/base 2025-06-05T23:12:47.1555207Z * [new branch] gh/kimishpatel/156/orig -> origin/gh/kimishpatel/156/orig 2025-06-05T23:12:47.1556934Z * [new branch] gh/kimishpatel/157/base -> origin/gh/kimishpatel/157/base 2025-06-05T23:12:47.1559098Z * [new branch] gh/kimishpatel/158/base -> origin/gh/kimishpatel/158/base 2025-06-05T23:12:47.1560420Z * [new branch] gh/kimishpatel/158/orig -> origin/gh/kimishpatel/158/orig 2025-06-05T23:12:47.1562130Z * [new branch] gh/kimishpatel/159/base -> origin/gh/kimishpatel/159/base 2025-06-05T23:12:47.1564265Z * [new branch] gh/kimishpatel/16/base -> origin/gh/kimishpatel/16/base 2025-06-05T23:12:47.1565419Z * [new branch] gh/kimishpatel/16/head -> origin/gh/kimishpatel/16/head 2025-06-05T23:12:47.1566663Z * [new branch] gh/kimishpatel/16/orig -> origin/gh/kimishpatel/16/orig 2025-06-05T23:12:47.1568310Z * [new branch] gh/kimishpatel/160/base -> origin/gh/kimishpatel/160/base 2025-06-05T23:12:47.1569579Z * [new branch] gh/kimishpatel/160/head -> origin/gh/kimishpatel/160/head 2025-06-05T23:12:47.1570851Z * [new branch] gh/kimishpatel/160/orig -> origin/gh/kimishpatel/160/orig 2025-06-05T23:12:47.1572488Z * [new branch] gh/kimishpatel/161/base -> origin/gh/kimishpatel/161/base 2025-06-05T23:12:47.1573748Z * [new branch] gh/kimishpatel/161/head -> origin/gh/kimishpatel/161/head 2025-06-05T23:12:47.1575020Z * [new branch] gh/kimishpatel/161/orig -> origin/gh/kimishpatel/161/orig 2025-06-05T23:12:47.1576629Z * [new branch] gh/kimishpatel/162/base -> origin/gh/kimishpatel/162/base 2025-06-05T23:12:47.1578352Z * [new branch] gh/kimishpatel/163/base -> origin/gh/kimishpatel/163/base 2025-06-05T23:12:47.1579577Z * [new branch] gh/kimishpatel/163/head -> origin/gh/kimishpatel/163/head 2025-06-05T23:12:47.1580829Z * [new branch] gh/kimishpatel/163/orig -> origin/gh/kimishpatel/163/orig 2025-06-05T23:12:47.1582507Z * [new branch] gh/kimishpatel/164/base -> origin/gh/kimishpatel/164/base 2025-06-05T23:12:47.1584627Z * [new branch] gh/kimishpatel/165/base -> origin/gh/kimishpatel/165/base 2025-06-05T23:12:47.1586781Z * [new branch] gh/kimishpatel/166/base -> origin/gh/kimishpatel/166/base 2025-06-05T23:12:47.1588390Z * [new branch] gh/kimishpatel/167/base -> origin/gh/kimishpatel/167/base 2025-06-05T23:12:47.1590106Z * [new branch] gh/kimishpatel/168/base -> origin/gh/kimishpatel/168/base 2025-06-05T23:12:47.1592073Z * [new branch] gh/kimishpatel/169/base -> origin/gh/kimishpatel/169/base 2025-06-05T23:12:47.1593720Z * [new branch] gh/kimishpatel/17/base -> origin/gh/kimishpatel/17/base 2025-06-05T23:12:47.1594953Z * [new branch] gh/kimishpatel/17/head -> origin/gh/kimishpatel/17/head 2025-06-05T23:12:47.1596346Z * [new branch] gh/kimishpatel/17/orig -> origin/gh/kimishpatel/17/orig 2025-06-05T23:12:47.1598010Z * [new branch] gh/kimishpatel/170/base -> origin/gh/kimishpatel/170/base 2025-06-05T23:12:47.1599642Z * [new branch] gh/kimishpatel/171/base -> origin/gh/kimishpatel/171/base 2025-06-05T23:12:47.1601328Z * [new branch] gh/kimishpatel/172/base -> origin/gh/kimishpatel/172/base 2025-06-05T23:12:47.1602984Z * [new branch] gh/kimishpatel/173/base -> origin/gh/kimishpatel/173/base 2025-06-05T23:12:47.1604606Z * [new branch] gh/kimishpatel/173/head -> origin/gh/kimishpatel/173/head 2025-06-05T23:12:47.1606088Z * [new branch] gh/kimishpatel/174/base -> origin/gh/kimishpatel/174/base 2025-06-05T23:12:47.1607491Z * [new branch] gh/kimishpatel/174/head -> origin/gh/kimishpatel/174/head 2025-06-05T23:12:47.1608948Z * [new branch] gh/kimishpatel/175/base -> origin/gh/kimishpatel/175/base 2025-06-05T23:12:47.1610300Z * [new branch] gh/kimishpatel/175/head -> origin/gh/kimishpatel/175/head 2025-06-05T23:12:47.1611729Z * [new branch] gh/kimishpatel/176/base -> origin/gh/kimishpatel/176/base 2025-06-05T23:12:47.1613055Z * [new branch] gh/kimishpatel/176/head -> origin/gh/kimishpatel/176/head 2025-06-05T23:12:47.1614464Z * [new branch] gh/kimishpatel/177/base -> origin/gh/kimishpatel/177/base 2025-06-05T23:12:47.1615920Z * [new branch] gh/kimishpatel/177/head -> origin/gh/kimishpatel/177/head 2025-06-05T23:12:47.1617312Z * [new branch] gh/kimishpatel/178/base -> origin/gh/kimishpatel/178/base 2025-06-05T23:12:47.1618496Z * [new branch] gh/kimishpatel/178/head -> origin/gh/kimishpatel/178/head 2025-06-05T23:12:47.1619899Z * [new branch] gh/kimishpatel/179/base -> origin/gh/kimishpatel/179/base 2025-06-05T23:12:47.1621230Z * [new branch] gh/kimishpatel/179/head -> origin/gh/kimishpatel/179/head 2025-06-05T23:12:47.1622879Z * [new branch] gh/kimishpatel/18/base -> origin/gh/kimishpatel/18/base 2025-06-05T23:12:47.1624386Z * [new branch] gh/kimishpatel/18/head -> origin/gh/kimishpatel/18/head 2025-06-05T23:12:47.1625665Z * [new branch] gh/kimishpatel/18/orig -> origin/gh/kimishpatel/18/orig 2025-06-05T23:12:47.1627078Z * [new branch] gh/kimishpatel/180/base -> origin/gh/kimishpatel/180/base 2025-06-05T23:12:47.1628267Z * [new branch] gh/kimishpatel/180/head -> origin/gh/kimishpatel/180/head 2025-06-05T23:12:47.1629967Z * [new branch] gh/kimishpatel/181/base -> origin/gh/kimishpatel/181/base 2025-06-05T23:12:47.1631634Z * [new branch] gh/kimishpatel/182/base -> origin/gh/kimishpatel/182/base 2025-06-05T23:12:47.1633309Z * [new branch] gh/kimishpatel/183/base -> origin/gh/kimishpatel/183/base 2025-06-05T23:12:47.1634993Z * [new branch] gh/kimishpatel/184/base -> origin/gh/kimishpatel/184/base 2025-06-05T23:12:47.1636656Z * [new branch] gh/kimishpatel/185/base -> origin/gh/kimishpatel/185/base 2025-06-05T23:12:47.1638260Z * [new branch] gh/kimishpatel/186/base -> origin/gh/kimishpatel/186/base 2025-06-05T23:12:47.1639953Z * [new branch] gh/kimishpatel/187/base -> origin/gh/kimishpatel/187/base 2025-06-05T23:12:47.1641595Z * [new branch] gh/kimishpatel/188/base -> origin/gh/kimishpatel/188/base 2025-06-05T23:12:47.1643279Z * [new branch] gh/kimishpatel/189/base -> origin/gh/kimishpatel/189/base 2025-06-05T23:12:47.1645129Z * [new branch] gh/kimishpatel/19/base -> origin/gh/kimishpatel/19/base 2025-06-05T23:12:47.1646388Z * [new branch] gh/kimishpatel/19/head -> origin/gh/kimishpatel/19/head 2025-06-05T23:12:47.1647649Z * [new branch] gh/kimishpatel/19/orig -> origin/gh/kimishpatel/19/orig 2025-06-05T23:12:47.1649260Z * [new branch] gh/kimishpatel/20/base -> origin/gh/kimishpatel/20/base 2025-06-05T23:12:47.1650573Z * [new branch] gh/kimishpatel/20/head -> origin/gh/kimishpatel/20/head 2025-06-05T23:12:47.1651791Z * [new branch] gh/kimishpatel/20/orig -> origin/gh/kimishpatel/20/orig 2025-06-05T23:12:47.1653616Z * [new branch] gh/kimishpatel/21/base -> origin/gh/kimishpatel/21/base 2025-06-05T23:12:47.1655020Z * [new branch] gh/kimishpatel/21/head -> origin/gh/kimishpatel/21/head 2025-06-05T23:12:47.1656429Z * [new branch] gh/kimishpatel/21/orig -> origin/gh/kimishpatel/21/orig 2025-06-05T23:12:47.1658148Z * [new branch] gh/kimishpatel/22/base -> origin/gh/kimishpatel/22/base 2025-06-05T23:12:47.1659397Z * [new branch] gh/kimishpatel/22/head -> origin/gh/kimishpatel/22/head 2025-06-05T23:12:47.1660659Z * [new branch] gh/kimishpatel/22/orig -> origin/gh/kimishpatel/22/orig 2025-06-05T23:12:47.1662410Z * [new branch] gh/kimishpatel/23/base -> origin/gh/kimishpatel/23/base 2025-06-05T23:12:47.1663630Z * [new branch] gh/kimishpatel/23/head -> origin/gh/kimishpatel/23/head 2025-06-05T23:12:47.1664825Z * [new branch] gh/kimishpatel/23/orig -> origin/gh/kimishpatel/23/orig 2025-06-05T23:12:47.1666441Z * [new branch] gh/kimishpatel/24/base -> origin/gh/kimishpatel/24/base 2025-06-05T23:12:47.1667791Z * [new branch] gh/kimishpatel/24/head -> origin/gh/kimishpatel/24/head 2025-06-05T23:12:47.1669040Z * [new branch] gh/kimishpatel/24/orig -> origin/gh/kimishpatel/24/orig 2025-06-05T23:12:47.1670749Z * [new branch] gh/kimishpatel/25/base -> origin/gh/kimishpatel/25/base 2025-06-05T23:12:47.1671921Z * [new branch] gh/kimishpatel/25/head -> origin/gh/kimishpatel/25/head 2025-06-05T23:12:47.1673155Z * [new branch] gh/kimishpatel/25/orig -> origin/gh/kimishpatel/25/orig 2025-06-05T23:12:47.1674759Z * [new branch] gh/kimishpatel/26/base -> origin/gh/kimishpatel/26/base 2025-06-05T23:12:47.1676034Z * [new branch] gh/kimishpatel/26/head -> origin/gh/kimishpatel/26/head 2025-06-05T23:12:47.1677278Z * [new branch] gh/kimishpatel/26/orig -> origin/gh/kimishpatel/26/orig 2025-06-05T23:12:47.1679373Z * [new branch] gh/kimishpatel/27/base -> origin/gh/kimishpatel/27/base 2025-06-05T23:12:47.1680792Z * [new branch] gh/kimishpatel/27/head -> origin/gh/kimishpatel/27/head 2025-06-05T23:12:47.1682275Z * [new branch] gh/kimishpatel/28/base -> origin/gh/kimishpatel/28/base 2025-06-05T23:12:47.1683453Z * [new branch] gh/kimishpatel/28/head -> origin/gh/kimishpatel/28/head 2025-06-05T23:12:47.1684999Z * [new branch] gh/kimishpatel/29/base -> origin/gh/kimishpatel/29/base 2025-06-05T23:12:47.1687978Z * [new branch] gh/kimishpatel/29/head -> origin/gh/kimishpatel/29/head 2025-06-05T23:12:47.1689640Z * [new branch] gh/kimishpatel/30/base -> origin/gh/kimishpatel/30/base 2025-06-05T23:12:47.1691021Z * [new branch] gh/kimishpatel/30/head -> origin/gh/kimishpatel/30/head 2025-06-05T23:12:47.1692359Z * [new branch] gh/kimishpatel/30/orig -> origin/gh/kimishpatel/30/orig 2025-06-05T23:12:47.1693820Z * [new branch] gh/kimishpatel/31/base -> origin/gh/kimishpatel/31/base 2025-06-05T23:12:47.1695073Z * [new branch] gh/kimishpatel/31/head -> origin/gh/kimishpatel/31/head 2025-06-05T23:12:47.1696365Z * [new branch] gh/kimishpatel/31/orig -> origin/gh/kimishpatel/31/orig 2025-06-05T23:12:47.1698211Z * [new branch] gh/kimishpatel/32/base -> origin/gh/kimishpatel/32/base 2025-06-05T23:12:47.1699375Z * [new branch] gh/kimishpatel/32/head -> origin/gh/kimishpatel/32/head 2025-06-05T23:12:47.1700653Z * [new branch] gh/kimishpatel/32/orig -> origin/gh/kimishpatel/32/orig 2025-06-05T23:12:47.1702405Z * [new branch] gh/kimishpatel/33/base -> origin/gh/kimishpatel/33/base 2025-06-05T23:12:47.1704007Z * [new branch] gh/kimishpatel/33/head -> origin/gh/kimishpatel/33/head 2025-06-05T23:12:47.1705290Z * [new branch] gh/kimishpatel/33/orig -> origin/gh/kimishpatel/33/orig 2025-06-05T23:12:47.1706912Z * [new branch] gh/kimishpatel/34/base -> origin/gh/kimishpatel/34/base 2025-06-05T23:12:47.1708336Z * [new branch] gh/kimishpatel/34/head -> origin/gh/kimishpatel/34/head 2025-06-05T23:12:47.1709667Z * [new branch] gh/kimishpatel/34/orig -> origin/gh/kimishpatel/34/orig 2025-06-05T23:12:47.1711341Z * [new branch] gh/kimishpatel/35/base -> origin/gh/kimishpatel/35/base 2025-06-05T23:12:47.1712346Z * [new branch] gh/kimishpatel/35/head -> origin/gh/kimishpatel/35/head 2025-06-05T23:12:47.1713535Z * [new branch] gh/kimishpatel/35/orig -> origin/gh/kimishpatel/35/orig 2025-06-05T23:12:47.1714966Z * [new branch] gh/kimishpatel/36/base -> origin/gh/kimishpatel/36/base 2025-06-05T23:12:47.1716254Z * [new branch] gh/kimishpatel/36/head -> origin/gh/kimishpatel/36/head 2025-06-05T23:12:47.1718034Z * [new branch] gh/kimishpatel/36/orig -> origin/gh/kimishpatel/36/orig 2025-06-05T23:12:47.1720104Z * [new branch] gh/kimishpatel/37/base -> origin/gh/kimishpatel/37/base 2025-06-05T23:12:47.1721137Z * [new branch] gh/kimishpatel/37/head -> origin/gh/kimishpatel/37/head 2025-06-05T23:12:47.1722521Z * [new branch] gh/kimishpatel/37/orig -> origin/gh/kimishpatel/37/orig 2025-06-05T23:12:47.1724262Z * [new branch] gh/kimishpatel/38/base -> origin/gh/kimishpatel/38/base 2025-06-05T23:12:47.1725740Z * [new branch] gh/kimishpatel/38/head -> origin/gh/kimishpatel/38/head 2025-06-05T23:12:47.1726868Z * [new branch] gh/kimishpatel/38/orig -> origin/gh/kimishpatel/38/orig 2025-06-05T23:12:47.1728830Z * [new branch] gh/kimishpatel/39/base -> origin/gh/kimishpatel/39/base 2025-06-05T23:12:47.1729810Z * [new branch] gh/kimishpatel/39/head -> origin/gh/kimishpatel/39/head 2025-06-05T23:12:47.1731126Z * [new branch] gh/kimishpatel/39/orig -> origin/gh/kimishpatel/39/orig 2025-06-05T23:12:47.1732847Z * [new branch] gh/kimishpatel/4/base -> origin/gh/kimishpatel/4/base 2025-06-05T23:12:47.1734025Z * [new branch] gh/kimishpatel/4/head -> origin/gh/kimishpatel/4/head 2025-06-05T23:12:47.1735317Z * [new branch] gh/kimishpatel/4/orig -> origin/gh/kimishpatel/4/orig 2025-06-05T23:12:47.1738471Z * [new branch] gh/kimishpatel/40/base -> origin/gh/kimishpatel/40/base 2025-06-05T23:12:47.1738948Z * [new branch] gh/kimishpatel/40/head -> origin/gh/kimishpatel/40/head 2025-06-05T23:12:47.1739924Z * [new branch] gh/kimishpatel/40/orig -> origin/gh/kimishpatel/40/orig 2025-06-05T23:12:47.1741722Z * [new branch] gh/kimishpatel/41/base -> origin/gh/kimishpatel/41/base 2025-06-05T23:12:47.1742920Z * [new branch] gh/kimishpatel/41/head -> origin/gh/kimishpatel/41/head 2025-06-05T23:12:47.1744189Z * [new branch] gh/kimishpatel/41/orig -> origin/gh/kimishpatel/41/orig 2025-06-05T23:12:47.1746260Z * [new branch] gh/kimishpatel/42/base -> origin/gh/kimishpatel/42/base 2025-06-05T23:12:47.1747053Z * [new branch] gh/kimishpatel/42/head -> origin/gh/kimishpatel/42/head 2025-06-05T23:12:47.1748524Z * [new branch] gh/kimishpatel/42/orig -> origin/gh/kimishpatel/42/orig 2025-06-05T23:12:47.1750196Z * [new branch] gh/kimishpatel/43/base -> origin/gh/kimishpatel/43/base 2025-06-05T23:12:47.1751288Z * [new branch] gh/kimishpatel/43/head -> origin/gh/kimishpatel/43/head 2025-06-05T23:12:47.1752650Z * [new branch] gh/kimishpatel/43/orig -> origin/gh/kimishpatel/43/orig 2025-06-05T23:12:47.1754321Z * [new branch] gh/kimishpatel/44/base -> origin/gh/kimishpatel/44/base 2025-06-05T23:12:47.1755530Z * [new branch] gh/kimishpatel/44/head -> origin/gh/kimishpatel/44/head 2025-06-05T23:12:47.1756707Z * [new branch] gh/kimishpatel/44/orig -> origin/gh/kimishpatel/44/orig 2025-06-05T23:12:47.1758307Z * [new branch] gh/kimishpatel/45/base -> origin/gh/kimishpatel/45/base 2025-06-05T23:12:47.1759512Z * [new branch] gh/kimishpatel/45/head -> origin/gh/kimishpatel/45/head 2025-06-05T23:12:47.1761218Z * [new branch] gh/kimishpatel/45/orig -> origin/gh/kimishpatel/45/orig 2025-06-05T23:12:47.1765658Z * [new branch] gh/kimishpatel/46/base -> origin/gh/kimishpatel/46/base 2025-06-05T23:12:47.1767221Z * [new branch] gh/kimishpatel/46/head -> origin/gh/kimishpatel/46/head 2025-06-05T23:12:47.1767495Z * [new branch] gh/kimishpatel/46/orig -> origin/gh/kimishpatel/46/orig 2025-06-05T23:12:47.1767734Z * [new branch] gh/kimishpatel/47/base -> origin/gh/kimishpatel/47/base 2025-06-05T23:12:47.1769065Z * [new branch] gh/kimishpatel/47/head -> origin/gh/kimishpatel/47/head 2025-06-05T23:12:47.1770332Z * [new branch] gh/kimishpatel/47/orig -> origin/gh/kimishpatel/47/orig 2025-06-05T23:12:47.1771957Z * [new branch] gh/kimishpatel/48/base -> origin/gh/kimishpatel/48/base 2025-06-05T23:12:47.1773335Z * [new branch] gh/kimishpatel/48/head -> origin/gh/kimishpatel/48/head 2025-06-05T23:12:47.1774646Z * [new branch] gh/kimishpatel/48/orig -> origin/gh/kimishpatel/48/orig 2025-06-05T23:12:47.1776504Z * [new branch] gh/kimishpatel/49/base -> origin/gh/kimishpatel/49/base 2025-06-05T23:12:47.1777725Z * [new branch] gh/kimishpatel/49/head -> origin/gh/kimishpatel/49/head 2025-06-05T23:12:47.1779151Z * [new branch] gh/kimishpatel/49/orig -> origin/gh/kimishpatel/49/orig 2025-06-05T23:12:47.1780817Z * [new branch] gh/kimishpatel/5/base -> origin/gh/kimishpatel/5/base 2025-06-05T23:12:47.1782146Z * [new branch] gh/kimishpatel/5/head -> origin/gh/kimishpatel/5/head 2025-06-05T23:12:47.1783663Z * [new branch] gh/kimishpatel/5/orig -> origin/gh/kimishpatel/5/orig 2025-06-05T23:12:47.1785374Z * [new branch] gh/kimishpatel/50/base -> origin/gh/kimishpatel/50/base 2025-06-05T23:12:47.1786701Z * [new branch] gh/kimishpatel/50/head -> origin/gh/kimishpatel/50/head 2025-06-05T23:12:47.1788196Z * [new branch] gh/kimishpatel/50/orig -> origin/gh/kimishpatel/50/orig 2025-06-05T23:12:47.1789741Z * [new branch] gh/kimishpatel/51/base -> origin/gh/kimishpatel/51/base 2025-06-05T23:12:47.1791204Z * [new branch] gh/kimishpatel/51/head -> origin/gh/kimishpatel/51/head 2025-06-05T23:12:47.1794546Z * [new branch] gh/kimishpatel/51/orig -> origin/gh/kimishpatel/51/orig 2025-06-05T23:12:47.1795850Z * [new branch] gh/kimishpatel/52/base -> origin/gh/kimishpatel/52/base 2025-06-05T23:12:47.1797113Z * [new branch] gh/kimishpatel/52/head -> origin/gh/kimishpatel/52/head 2025-06-05T23:12:47.1798383Z * [new branch] gh/kimishpatel/52/orig -> origin/gh/kimishpatel/52/orig 2025-06-05T23:12:47.1799807Z * [new branch] gh/kimishpatel/53/base -> origin/gh/kimishpatel/53/base 2025-06-05T23:12:47.1801085Z * [new branch] gh/kimishpatel/53/head -> origin/gh/kimishpatel/53/head 2025-06-05T23:12:47.1802434Z * [new branch] gh/kimishpatel/53/orig -> origin/gh/kimishpatel/53/orig 2025-06-05T23:12:47.1804158Z * [new branch] gh/kimishpatel/54/base -> origin/gh/kimishpatel/54/base 2025-06-05T23:12:47.1805409Z * [new branch] gh/kimishpatel/54/head -> origin/gh/kimishpatel/54/head 2025-06-05T23:12:47.1806633Z * [new branch] gh/kimishpatel/54/orig -> origin/gh/kimishpatel/54/orig 2025-06-05T23:12:47.1808339Z * [new branch] gh/kimishpatel/55/base -> origin/gh/kimishpatel/55/base 2025-06-05T23:12:47.1809721Z * [new branch] gh/kimishpatel/55/head -> origin/gh/kimishpatel/55/head 2025-06-05T23:12:47.1810991Z * [new branch] gh/kimishpatel/55/orig -> origin/gh/kimishpatel/55/orig 2025-06-05T23:12:47.1812616Z * [new branch] gh/kimishpatel/56/base -> origin/gh/kimishpatel/56/base 2025-06-05T23:12:47.1813897Z * [new branch] gh/kimishpatel/56/head -> origin/gh/kimishpatel/56/head 2025-06-05T23:12:47.1815281Z * [new branch] gh/kimishpatel/56/orig -> origin/gh/kimishpatel/56/orig 2025-06-05T23:12:47.1816941Z * [new branch] gh/kimishpatel/57/base -> origin/gh/kimishpatel/57/base 2025-06-05T23:12:47.1818242Z * [new branch] gh/kimishpatel/57/head -> origin/gh/kimishpatel/57/head 2025-06-05T23:12:47.1819408Z * [new branch] gh/kimishpatel/57/orig -> origin/gh/kimishpatel/57/orig 2025-06-05T23:12:47.1821032Z * [new branch] gh/kimishpatel/58/base -> origin/gh/kimishpatel/58/base 2025-06-05T23:12:47.1822364Z * [new branch] gh/kimishpatel/58/head -> origin/gh/kimishpatel/58/head 2025-06-05T23:12:47.1823485Z * [new branch] gh/kimishpatel/58/orig -> origin/gh/kimishpatel/58/orig 2025-06-05T23:12:47.1825128Z * [new branch] gh/kimishpatel/59/base -> origin/gh/kimishpatel/59/base 2025-06-05T23:12:47.1826433Z * [new branch] gh/kimishpatel/59/head -> origin/gh/kimishpatel/59/head 2025-06-05T23:12:47.1827777Z * [new branch] gh/kimishpatel/59/orig -> origin/gh/kimishpatel/59/orig 2025-06-05T23:12:47.1829350Z * [new branch] gh/kimishpatel/6/base -> origin/gh/kimishpatel/6/base 2025-06-05T23:12:47.1830632Z * [new branch] gh/kimishpatel/6/head -> origin/gh/kimishpatel/6/head 2025-06-05T23:12:47.1831980Z * [new branch] gh/kimishpatel/6/orig -> origin/gh/kimishpatel/6/orig 2025-06-05T23:12:47.1833595Z * [new branch] gh/kimishpatel/60/base -> origin/gh/kimishpatel/60/base 2025-06-05T23:12:47.1835395Z * [new branch] gh/kimishpatel/60/head -> origin/gh/kimishpatel/60/head 2025-06-05T23:12:47.1836620Z * [new branch] gh/kimishpatel/60/orig -> origin/gh/kimishpatel/60/orig 2025-06-05T23:12:47.1838409Z * [new branch] gh/kimishpatel/61/base -> origin/gh/kimishpatel/61/base 2025-06-05T23:12:47.1839801Z * [new branch] gh/kimishpatel/61/head -> origin/gh/kimishpatel/61/head 2025-06-05T23:12:47.1840954Z * [new branch] gh/kimishpatel/61/orig -> origin/gh/kimishpatel/61/orig 2025-06-05T23:12:47.1842658Z * [new branch] gh/kimishpatel/62/base -> origin/gh/kimishpatel/62/base 2025-06-05T23:12:47.1844586Z * [new branch] gh/kimishpatel/62/head -> origin/gh/kimishpatel/62/head 2025-06-05T23:12:47.1845327Z * [new branch] gh/kimishpatel/62/orig -> origin/gh/kimishpatel/62/orig 2025-06-05T23:12:47.1847079Z * [new branch] gh/kimishpatel/63/base -> origin/gh/kimishpatel/63/base 2025-06-05T23:12:47.1848464Z * [new branch] gh/kimishpatel/63/head -> origin/gh/kimishpatel/63/head 2025-06-05T23:12:47.1849497Z * [new branch] gh/kimishpatel/63/orig -> origin/gh/kimishpatel/63/orig 2025-06-05T23:12:47.1851081Z * [new branch] gh/kimishpatel/64/base -> origin/gh/kimishpatel/64/base 2025-06-05T23:12:47.1852402Z * [new branch] gh/kimishpatel/64/head -> origin/gh/kimishpatel/64/head 2025-06-05T23:12:47.1853627Z * [new branch] gh/kimishpatel/64/orig -> origin/gh/kimishpatel/64/orig 2025-06-05T23:12:47.1855516Z * [new branch] gh/kimishpatel/65/base -> origin/gh/kimishpatel/65/base 2025-06-05T23:12:47.1856628Z * [new branch] gh/kimishpatel/65/head -> origin/gh/kimishpatel/65/head 2025-06-05T23:12:47.1857980Z * [new branch] gh/kimishpatel/65/orig -> origin/gh/kimishpatel/65/orig 2025-06-05T23:12:47.1859387Z * [new branch] gh/kimishpatel/66/base -> origin/gh/kimishpatel/66/base 2025-06-05T23:12:47.1860611Z * [new branch] gh/kimishpatel/66/head -> origin/gh/kimishpatel/66/head 2025-06-05T23:12:47.1861805Z * [new branch] gh/kimishpatel/66/orig -> origin/gh/kimishpatel/66/orig 2025-06-05T23:12:47.1863546Z * [new branch] gh/kimishpatel/67/base -> origin/gh/kimishpatel/67/base 2025-06-05T23:12:47.1864718Z * [new branch] gh/kimishpatel/67/head -> origin/gh/kimishpatel/67/head 2025-06-05T23:12:47.1865824Z * [new branch] gh/kimishpatel/67/orig -> origin/gh/kimishpatel/67/orig 2025-06-05T23:12:47.1867456Z * [new branch] gh/kimishpatel/68/base -> origin/gh/kimishpatel/68/base 2025-06-05T23:12:47.1868708Z * [new branch] gh/kimishpatel/68/head -> origin/gh/kimishpatel/68/head 2025-06-05T23:12:47.1870028Z * [new branch] gh/kimishpatel/68/orig -> origin/gh/kimishpatel/68/orig 2025-06-05T23:12:47.1871461Z * [new branch] gh/kimishpatel/69/base -> origin/gh/kimishpatel/69/base 2025-06-05T23:12:47.1872729Z * [new branch] gh/kimishpatel/69/head -> origin/gh/kimishpatel/69/head 2025-06-05T23:12:47.1873812Z * [new branch] gh/kimishpatel/69/orig -> origin/gh/kimishpatel/69/orig 2025-06-05T23:12:47.1875365Z * [new branch] gh/kimishpatel/70/base -> origin/gh/kimishpatel/70/base 2025-06-05T23:12:47.1876567Z * [new branch] gh/kimishpatel/70/head -> origin/gh/kimishpatel/70/head 2025-06-05T23:12:47.1877712Z * [new branch] gh/kimishpatel/70/orig -> origin/gh/kimishpatel/70/orig 2025-06-05T23:12:47.1879385Z * [new branch] gh/kimishpatel/71/base -> origin/gh/kimishpatel/71/base 2025-06-05T23:12:47.1880654Z * [new branch] gh/kimishpatel/71/head -> origin/gh/kimishpatel/71/head 2025-06-05T23:12:47.1881769Z * [new branch] gh/kimishpatel/71/orig -> origin/gh/kimishpatel/71/orig 2025-06-05T23:12:47.1883615Z * [new branch] gh/kimishpatel/72/base -> origin/gh/kimishpatel/72/base 2025-06-05T23:12:47.1884962Z * [new branch] gh/kimishpatel/72/head -> origin/gh/kimishpatel/72/head 2025-06-05T23:12:47.1886114Z * [new branch] gh/kimishpatel/72/orig -> origin/gh/kimishpatel/72/orig 2025-06-05T23:12:47.1887551Z * [new branch] gh/kimishpatel/73/base -> origin/gh/kimishpatel/73/base 2025-06-05T23:12:47.1888861Z * [new branch] gh/kimishpatel/73/head -> origin/gh/kimishpatel/73/head 2025-06-05T23:12:47.1890124Z * [new branch] gh/kimishpatel/73/orig -> origin/gh/kimishpatel/73/orig 2025-06-05T23:12:47.1891935Z * [new branch] gh/kimishpatel/74/base -> origin/gh/kimishpatel/74/base 2025-06-05T23:12:47.1893226Z * [new branch] gh/kimishpatel/74/head -> origin/gh/kimishpatel/74/head 2025-06-05T23:12:47.1894325Z * [new branch] gh/kimishpatel/74/orig -> origin/gh/kimishpatel/74/orig 2025-06-05T23:12:47.1895933Z * [new branch] gh/kimishpatel/75/base -> origin/gh/kimishpatel/75/base 2025-06-05T23:12:47.1897099Z * [new branch] gh/kimishpatel/75/head -> origin/gh/kimishpatel/75/head 2025-06-05T23:12:47.1898376Z * [new branch] gh/kimishpatel/75/orig -> origin/gh/kimishpatel/75/orig 2025-06-05T23:12:47.1899811Z * [new branch] gh/kimishpatel/76/base -> origin/gh/kimishpatel/76/base 2025-06-05T23:12:47.1901120Z * [new branch] gh/kimishpatel/76/head -> origin/gh/kimishpatel/76/head 2025-06-05T23:12:47.1902272Z * [new branch] gh/kimishpatel/76/orig -> origin/gh/kimishpatel/76/orig 2025-06-05T23:12:47.1903911Z * [new branch] gh/kimishpatel/77/base -> origin/gh/kimishpatel/77/base 2025-06-05T23:12:47.1905107Z * [new branch] gh/kimishpatel/77/head -> origin/gh/kimishpatel/77/head 2025-06-05T23:12:47.1906328Z * [new branch] gh/kimishpatel/77/orig -> origin/gh/kimishpatel/77/orig 2025-06-05T23:12:47.1907715Z * [new branch] gh/kimishpatel/78/base -> origin/gh/kimishpatel/78/base 2025-06-05T23:12:47.1908907Z * [new branch] gh/kimishpatel/78/head -> origin/gh/kimishpatel/78/head 2025-06-05T23:12:47.1910058Z * [new branch] gh/kimishpatel/78/orig -> origin/gh/kimishpatel/78/orig 2025-06-05T23:12:47.1911608Z * [new branch] gh/kimishpatel/79/base -> origin/gh/kimishpatel/79/base 2025-06-05T23:12:47.1912950Z * [new branch] gh/kimishpatel/79/head -> origin/gh/kimishpatel/79/head 2025-06-05T23:12:47.1914122Z * [new branch] gh/kimishpatel/79/orig -> origin/gh/kimishpatel/79/orig 2025-06-05T23:12:47.1915525Z * [new branch] gh/kimishpatel/80/base -> origin/gh/kimishpatel/80/base 2025-06-05T23:12:47.1916758Z * [new branch] gh/kimishpatel/80/head -> origin/gh/kimishpatel/80/head 2025-06-05T23:12:47.1918010Z * [new branch] gh/kimishpatel/80/orig -> origin/gh/kimishpatel/80/orig 2025-06-05T23:12:47.1919380Z * [new branch] gh/kimishpatel/81/base -> origin/gh/kimishpatel/81/base 2025-06-05T23:12:47.1920495Z * [new branch] gh/kimishpatel/81/head -> origin/gh/kimishpatel/81/head 2025-06-05T23:12:47.1921613Z * [new branch] gh/kimishpatel/81/orig -> origin/gh/kimishpatel/81/orig 2025-06-05T23:12:47.1923015Z * [new branch] gh/kimishpatel/82/base -> origin/gh/kimishpatel/82/base 2025-06-05T23:12:47.1924164Z * [new branch] gh/kimishpatel/82/head -> origin/gh/kimishpatel/82/head 2025-06-05T23:12:47.1925407Z * [new branch] gh/kimishpatel/82/orig -> origin/gh/kimishpatel/82/orig 2025-06-05T23:12:47.1926906Z * [new branch] gh/kimishpatel/83/base -> origin/gh/kimishpatel/83/base 2025-06-05T23:12:47.1928045Z * [new branch] gh/kimishpatel/83/head -> origin/gh/kimishpatel/83/head 2025-06-05T23:12:47.1929274Z * [new branch] gh/kimishpatel/83/orig -> origin/gh/kimishpatel/83/orig 2025-06-05T23:12:47.1930662Z * [new branch] gh/kimishpatel/84/base -> origin/gh/kimishpatel/84/base 2025-06-05T23:12:47.1931901Z * [new branch] gh/kimishpatel/84/head -> origin/gh/kimishpatel/84/head 2025-06-05T23:12:47.1933128Z * [new branch] gh/kimishpatel/84/orig -> origin/gh/kimishpatel/84/orig 2025-06-05T23:12:47.1934782Z * [new branch] gh/kimishpatel/85/base -> origin/gh/kimishpatel/85/base 2025-06-05T23:12:47.1935874Z * [new branch] gh/kimishpatel/85/head -> origin/gh/kimishpatel/85/head 2025-06-05T23:12:47.1937103Z * [new branch] gh/kimishpatel/85/orig -> origin/gh/kimishpatel/85/orig 2025-06-05T23:12:47.1938525Z * [new branch] gh/kimishpatel/86/base -> origin/gh/kimishpatel/86/base 2025-06-05T23:12:47.1939662Z * [new branch] gh/kimishpatel/86/head -> origin/gh/kimishpatel/86/head 2025-06-05T23:12:47.1940838Z * [new branch] gh/kimishpatel/86/orig -> origin/gh/kimishpatel/86/orig 2025-06-05T23:12:47.1942263Z * [new branch] gh/kimishpatel/87/base -> origin/gh/kimishpatel/87/base 2025-06-05T23:12:47.1943500Z * [new branch] gh/kimishpatel/87/head -> origin/gh/kimishpatel/87/head 2025-06-05T23:12:47.1944696Z * [new branch] gh/kimishpatel/87/orig -> origin/gh/kimishpatel/87/orig 2025-06-05T23:12:47.1946129Z * [new branch] gh/kimishpatel/88/base -> origin/gh/kimishpatel/88/base 2025-06-05T23:12:47.1947382Z * [new branch] gh/kimishpatel/88/head -> origin/gh/kimishpatel/88/head 2025-06-05T23:12:47.1948584Z * [new branch] gh/kimishpatel/88/orig -> origin/gh/kimishpatel/88/orig 2025-06-05T23:12:47.1950017Z * [new branch] gh/kimishpatel/89/base -> origin/gh/kimishpatel/89/base 2025-06-05T23:12:47.1951368Z * [new branch] gh/kimishpatel/89/head -> origin/gh/kimishpatel/89/head 2025-06-05T23:12:47.1952452Z * [new branch] gh/kimishpatel/89/orig -> origin/gh/kimishpatel/89/orig 2025-06-05T23:12:47.1954577Z * [new branch] gh/kimishpatel/9/base -> origin/gh/kimishpatel/9/base 2025-06-05T23:12:47.1955807Z * [new branch] gh/kimishpatel/9/head -> origin/gh/kimishpatel/9/head 2025-06-05T23:12:47.1957050Z * [new branch] gh/kimishpatel/9/orig -> origin/gh/kimishpatel/9/orig 2025-06-05T23:12:47.1958555Z * [new branch] gh/kimishpatel/90/head -> origin/gh/kimishpatel/90/head 2025-06-05T23:12:47.1960118Z * [new branch] gh/kimishpatel/91/orig -> origin/gh/kimishpatel/91/orig 2025-06-05T23:12:47.1961642Z * [new branch] gh/kimishpatel/92/orig -> origin/gh/kimishpatel/92/orig 2025-06-05T23:12:47.1963268Z * [new branch] gh/kimishpatel/93/orig -> origin/gh/kimishpatel/93/orig 2025-06-05T23:12:47.1964832Z * [new branch] gh/kimishpatel/98/base -> origin/gh/kimishpatel/98/base 2025-06-05T23:12:47.1966061Z * [new branch] gh/kimishpatel/98/head -> origin/gh/kimishpatel/98/head 2025-06-05T23:12:47.1967292Z * [new branch] gh/kimishpatel/98/orig -> origin/gh/kimishpatel/98/orig 2025-06-05T23:12:47.1968842Z * [new branch] gh/kimishpatel/99/base -> origin/gh/kimishpatel/99/base 2025-06-05T23:12:47.1969951Z * [new branch] gh/kimishpatel/99/head -> origin/gh/kimishpatel/99/head 2025-06-05T23:12:47.1971181Z * [new branch] gh/kimishpatel/99/orig -> origin/gh/kimishpatel/99/orig 2025-06-05T23:12:47.1972996Z * [new branch] gh/kirklandsign/1/base -> origin/gh/kirklandsign/1/base 2025-06-05T23:12:47.1974148Z * [new branch] gh/kirklandsign/1/orig -> origin/gh/kirklandsign/1/orig 2025-06-05T23:12:47.1976290Z * [new branch] gh/kirklandsign/12/base -> origin/gh/kirklandsign/12/base 2025-06-05T23:12:47.1977535Z * [new branch] gh/kirklandsign/12/orig -> origin/gh/kirklandsign/12/orig 2025-06-05T23:12:47.1979118Z * [new branch] gh/kirklandsign/13/base -> origin/gh/kirklandsign/13/base 2025-06-05T23:12:47.1980690Z * [new branch] gh/kirklandsign/14/base -> origin/gh/kirklandsign/14/base 2025-06-05T23:12:47.1982249Z * [new branch] gh/kirklandsign/15/base -> origin/gh/kirklandsign/15/base 2025-06-05T23:12:47.1983515Z * [new branch] gh/kirklandsign/15/head -> origin/gh/kirklandsign/15/head 2025-06-05T23:12:47.1985162Z * [new branch] gh/kirklandsign/16/base -> origin/gh/kirklandsign/16/base 2025-06-05T23:12:47.1986617Z * [new branch] gh/kirklandsign/17/base -> origin/gh/kirklandsign/17/base 2025-06-05T23:12:47.1987824Z * [new branch] gh/kirklandsign/17/head -> origin/gh/kirklandsign/17/head 2025-06-05T23:12:47.1988968Z * [new branch] gh/kirklandsign/17/orig -> origin/gh/kirklandsign/17/orig 2025-06-05T23:12:47.1990357Z * [new branch] gh/kirklandsign/2/base -> origin/gh/kirklandsign/2/base 2025-06-05T23:12:47.1991754Z * [new branch] gh/kirklandsign/2/head -> origin/gh/kirklandsign/2/head 2025-06-05T23:12:47.1992920Z * [new branch] gh/kirklandsign/2/orig -> origin/gh/kirklandsign/2/orig 2025-06-05T23:12:47.1994461Z * [new branch] gh/kirklandsign/3/base -> origin/gh/kirklandsign/3/base 2025-06-05T23:12:47.1995667Z * [new branch] gh/kirklandsign/3/head -> origin/gh/kirklandsign/3/head 2025-06-05T23:12:47.1997316Z * [new branch] gh/kirklandsign/4/base -> origin/gh/kirklandsign/4/base 2025-06-05T23:12:47.1998511Z * [new branch] gh/kirklandsign/4/orig -> origin/gh/kirklandsign/4/orig 2025-06-05T23:12:47.2000117Z * [new branch] gh/kirklandsign/5/base -> origin/gh/kirklandsign/5/base 2025-06-05T23:12:47.2001898Z * [new branch] gh/larryliu0820/10/base -> origin/gh/larryliu0820/10/base 2025-06-05T23:12:47.2003180Z * [new branch] gh/larryliu0820/10/head -> origin/gh/larryliu0820/10/head 2025-06-05T23:12:47.2004400Z * [new branch] gh/larryliu0820/10/orig -> origin/gh/larryliu0820/10/orig 2025-06-05T23:12:47.2006220Z * [new branch] gh/larryliu0820/11/base -> origin/gh/larryliu0820/11/base 2025-06-05T23:12:47.2007433Z * [new branch] gh/larryliu0820/11/head -> origin/gh/larryliu0820/11/head 2025-06-05T23:12:47.2008639Z * [new branch] gh/larryliu0820/11/orig -> origin/gh/larryliu0820/11/orig 2025-06-05T23:12:47.2010041Z * [new branch] gh/larryliu0820/12/base -> origin/gh/larryliu0820/12/base 2025-06-05T23:12:47.2011237Z * [new branch] gh/larryliu0820/12/head -> origin/gh/larryliu0820/12/head 2025-06-05T23:12:47.2012728Z * [new branch] gh/larryliu0820/12/orig -> origin/gh/larryliu0820/12/orig 2025-06-05T23:12:47.2014121Z * [new branch] gh/larryliu0820/13/base -> origin/gh/larryliu0820/13/base 2025-06-05T23:12:47.2015471Z * [new branch] gh/larryliu0820/13/head -> origin/gh/larryliu0820/13/head 2025-06-05T23:12:47.2016647Z * [new branch] gh/larryliu0820/13/orig -> origin/gh/larryliu0820/13/orig 2025-06-05T23:12:47.2018296Z * [new branch] gh/larryliu0820/14/base -> origin/gh/larryliu0820/14/base 2025-06-05T23:12:47.2019478Z * [new branch] gh/larryliu0820/14/head -> origin/gh/larryliu0820/14/head 2025-06-05T23:12:47.2020710Z * [new branch] gh/larryliu0820/14/orig -> origin/gh/larryliu0820/14/orig 2025-06-05T23:12:47.2022079Z * [new branch] gh/larryliu0820/15/base -> origin/gh/larryliu0820/15/base 2025-06-05T23:12:47.2023560Z * [new branch] gh/larryliu0820/15/head -> origin/gh/larryliu0820/15/head 2025-06-05T23:12:47.2024687Z * [new branch] gh/larryliu0820/15/orig -> origin/gh/larryliu0820/15/orig 2025-06-05T23:12:47.2026251Z * [new branch] gh/larryliu0820/16/base -> origin/gh/larryliu0820/16/base 2025-06-05T23:12:47.2027453Z * [new branch] gh/larryliu0820/16/head -> origin/gh/larryliu0820/16/head 2025-06-05T23:12:47.2028614Z * [new branch] gh/larryliu0820/16/orig -> origin/gh/larryliu0820/16/orig 2025-06-05T23:12:47.2030144Z * [new branch] gh/larryliu0820/17/base -> origin/gh/larryliu0820/17/base 2025-06-05T23:12:47.2031312Z * [new branch] gh/larryliu0820/17/head -> origin/gh/larryliu0820/17/head 2025-06-05T23:12:47.2032480Z * [new branch] gh/larryliu0820/17/orig -> origin/gh/larryliu0820/17/orig 2025-06-05T23:12:47.2034433Z * [new branch] gh/larryliu0820/18/base -> origin/gh/larryliu0820/18/base 2025-06-05T23:12:47.2035673Z * [new branch] gh/larryliu0820/18/head -> origin/gh/larryliu0820/18/head 2025-06-05T23:12:47.2036859Z * [new branch] gh/larryliu0820/18/orig -> origin/gh/larryliu0820/18/orig 2025-06-05T23:12:47.2038438Z * [new branch] gh/larryliu0820/19/base -> origin/gh/larryliu0820/19/base 2025-06-05T23:12:47.2039705Z * [new branch] gh/larryliu0820/19/head -> origin/gh/larryliu0820/19/head 2025-06-05T23:12:47.2040870Z * [new branch] gh/larryliu0820/19/orig -> origin/gh/larryliu0820/19/orig 2025-06-05T23:12:47.2042537Z * [new branch] gh/larryliu0820/20/base -> origin/gh/larryliu0820/20/base 2025-06-05T23:12:47.2043738Z * [new branch] gh/larryliu0820/20/head -> origin/gh/larryliu0820/20/head 2025-06-05T23:12:47.2045030Z * [new branch] gh/larryliu0820/20/orig -> origin/gh/larryliu0820/20/orig 2025-06-05T23:12:47.2046546Z * [new branch] gh/larryliu0820/21/base -> origin/gh/larryliu0820/21/base 2025-06-05T23:12:47.2047742Z * [new branch] gh/larryliu0820/21/head -> origin/gh/larryliu0820/21/head 2025-06-05T23:12:47.2048957Z * [new branch] gh/larryliu0820/21/orig -> origin/gh/larryliu0820/21/orig 2025-06-05T23:12:47.2050568Z * [new branch] gh/larryliu0820/22/base -> origin/gh/larryliu0820/22/base 2025-06-05T23:12:47.2051847Z * [new branch] gh/larryliu0820/22/head -> origin/gh/larryliu0820/22/head 2025-06-05T23:12:47.2052896Z * [new branch] gh/larryliu0820/22/orig -> origin/gh/larryliu0820/22/orig 2025-06-05T23:12:47.2054410Z * [new branch] gh/larryliu0820/24/base -> origin/gh/larryliu0820/24/base 2025-06-05T23:12:47.2055627Z * [new branch] gh/larryliu0820/24/head -> origin/gh/larryliu0820/24/head 2025-06-05T23:12:47.2056845Z * [new branch] gh/larryliu0820/24/orig -> origin/gh/larryliu0820/24/orig 2025-06-05T23:12:47.2058210Z * [new branch] gh/larryliu0820/25/base -> origin/gh/larryliu0820/25/base 2025-06-05T23:12:47.2059482Z * [new branch] gh/larryliu0820/25/head -> origin/gh/larryliu0820/25/head 2025-06-05T23:12:47.2060678Z * [new branch] gh/larryliu0820/25/orig -> origin/gh/larryliu0820/25/orig 2025-06-05T23:12:47.2062062Z * [new branch] gh/larryliu0820/26/base -> origin/gh/larryliu0820/26/base 2025-06-05T23:12:47.2063699Z * [new branch] gh/larryliu0820/26/head -> origin/gh/larryliu0820/26/head 2025-06-05T23:12:47.2064752Z * [new branch] gh/larryliu0820/26/orig -> origin/gh/larryliu0820/26/orig 2025-06-05T23:12:47.2066349Z * [new branch] gh/larryliu0820/27/base -> origin/gh/larryliu0820/27/base 2025-06-05T23:12:47.2067604Z * [new branch] gh/larryliu0820/27/head -> origin/gh/larryliu0820/27/head 2025-06-05T23:12:47.2068730Z * [new branch] gh/larryliu0820/27/orig -> origin/gh/larryliu0820/27/orig 2025-06-05T23:12:47.2070311Z * [new branch] gh/larryliu0820/28/base -> origin/gh/larryliu0820/28/base 2025-06-05T23:12:47.2071515Z * [new branch] gh/larryliu0820/28/head -> origin/gh/larryliu0820/28/head 2025-06-05T23:12:47.2072734Z * [new branch] gh/larryliu0820/28/orig -> origin/gh/larryliu0820/28/orig 2025-06-05T23:12:47.2074671Z * [new branch] gh/larryliu0820/29/base -> origin/gh/larryliu0820/29/base 2025-06-05T23:12:47.2075858Z * [new branch] gh/larryliu0820/29/head -> origin/gh/larryliu0820/29/head 2025-06-05T23:12:47.2077083Z * [new branch] gh/larryliu0820/29/orig -> origin/gh/larryliu0820/29/orig 2025-06-05T23:12:47.2078708Z * [new branch] gh/larryliu0820/30/base -> origin/gh/larryliu0820/30/base 2025-06-05T23:12:47.2079923Z * [new branch] gh/larryliu0820/30/head -> origin/gh/larryliu0820/30/head 2025-06-05T23:12:47.2081111Z * [new branch] gh/larryliu0820/30/orig -> origin/gh/larryliu0820/30/orig 2025-06-05T23:12:47.2082793Z * [new branch] gh/larryliu0820/31/base -> origin/gh/larryliu0820/31/base 2025-06-05T23:12:47.2084140Z * [new branch] gh/larryliu0820/31/head -> origin/gh/larryliu0820/31/head 2025-06-05T23:12:47.2085329Z * [new branch] gh/larryliu0820/31/orig -> origin/gh/larryliu0820/31/orig 2025-06-05T23:12:47.2087092Z * [new branch] gh/larryliu0820/32/base -> origin/gh/larryliu0820/32/base 2025-06-05T23:12:47.2088362Z * [new branch] gh/larryliu0820/32/head -> origin/gh/larryliu0820/32/head 2025-06-05T23:12:47.2089565Z * [new branch] gh/larryliu0820/32/orig -> origin/gh/larryliu0820/32/orig 2025-06-05T23:12:47.2091400Z * [new branch] gh/larryliu0820/33/base -> origin/gh/larryliu0820/33/base 2025-06-05T23:12:47.2094984Z * [new branch] gh/larryliu0820/33/head -> origin/gh/larryliu0820/33/head 2025-06-05T23:12:47.2095908Z * [new branch] gh/larryliu0820/33/orig -> origin/gh/larryliu0820/33/orig 2025-06-05T23:12:47.2097424Z * [new branch] gh/larryliu0820/34/base -> origin/gh/larryliu0820/34/base 2025-06-05T23:12:47.2098551Z * [new branch] gh/larryliu0820/34/head -> origin/gh/larryliu0820/34/head 2025-06-05T23:12:47.2099794Z * [new branch] gh/larryliu0820/34/orig -> origin/gh/larryliu0820/34/orig 2025-06-05T23:12:47.2101541Z * [new branch] gh/larryliu0820/35/base -> origin/gh/larryliu0820/35/base 2025-06-05T23:12:47.2102707Z * [new branch] gh/larryliu0820/35/head -> origin/gh/larryliu0820/35/head 2025-06-05T23:12:47.2103958Z * [new branch] gh/larryliu0820/35/orig -> origin/gh/larryliu0820/35/orig 2025-06-05T23:12:47.2106018Z * [new branch] gh/larryliu0820/36/base -> origin/gh/larryliu0820/36/base 2025-06-05T23:12:47.2107212Z * [new branch] gh/larryliu0820/36/head -> origin/gh/larryliu0820/36/head 2025-06-05T23:12:47.2108471Z * [new branch] gh/larryliu0820/36/orig -> origin/gh/larryliu0820/36/orig 2025-06-05T23:12:47.2109903Z * [new branch] gh/larryliu0820/37/base -> origin/gh/larryliu0820/37/base 2025-06-05T23:12:47.2111221Z * [new branch] gh/larryliu0820/37/head -> origin/gh/larryliu0820/37/head 2025-06-05T23:12:47.2112384Z * [new branch] gh/larryliu0820/37/orig -> origin/gh/larryliu0820/37/orig 2025-06-05T23:12:47.2113985Z * [new branch] gh/larryliu0820/38/base -> origin/gh/larryliu0820/38/base 2025-06-05T23:12:47.2115215Z * [new branch] gh/larryliu0820/38/head -> origin/gh/larryliu0820/38/head 2025-06-05T23:12:47.2116391Z * [new branch] gh/larryliu0820/38/orig -> origin/gh/larryliu0820/38/orig 2025-06-05T23:12:47.2117967Z * [new branch] gh/larryliu0820/39/base -> origin/gh/larryliu0820/39/base 2025-06-05T23:12:47.2119161Z * [new branch] gh/larryliu0820/39/head -> origin/gh/larryliu0820/39/head 2025-06-05T23:12:47.2120440Z * [new branch] gh/larryliu0820/39/orig -> origin/gh/larryliu0820/39/orig 2025-06-05T23:12:47.2121789Z * [new branch] gh/larryliu0820/40/base -> origin/gh/larryliu0820/40/base 2025-06-05T23:12:47.2122973Z * [new branch] gh/larryliu0820/40/head -> origin/gh/larryliu0820/40/head 2025-06-05T23:12:47.2124295Z * [new branch] gh/larryliu0820/40/orig -> origin/gh/larryliu0820/40/orig 2025-06-05T23:12:47.2125695Z * [new branch] gh/larryliu0820/41/base -> origin/gh/larryliu0820/41/base 2025-06-05T23:12:47.2126950Z * [new branch] gh/larryliu0820/41/head -> origin/gh/larryliu0820/41/head 2025-06-05T23:12:47.2128095Z * [new branch] gh/larryliu0820/41/orig -> origin/gh/larryliu0820/41/orig 2025-06-05T23:12:47.2129740Z * [new branch] gh/larryliu0820/42/base -> origin/gh/larryliu0820/42/base 2025-06-05T23:12:47.2130970Z * [new branch] gh/larryliu0820/42/head -> origin/gh/larryliu0820/42/head 2025-06-05T23:12:47.2132104Z * [new branch] gh/larryliu0820/42/orig -> origin/gh/larryliu0820/42/orig 2025-06-05T23:12:47.2133837Z * [new branch] gh/larryliu0820/43/base -> origin/gh/larryliu0820/43/base 2025-06-05T23:12:47.2135193Z * [new branch] gh/larryliu0820/43/head -> origin/gh/larryliu0820/43/head 2025-06-05T23:12:47.2136465Z * [new branch] gh/larryliu0820/43/orig -> origin/gh/larryliu0820/43/orig 2025-06-05T23:12:47.2138056Z * [new branch] gh/larryliu0820/44/base -> origin/gh/larryliu0820/44/base 2025-06-05T23:12:47.2139346Z * [new branch] gh/larryliu0820/44/head -> origin/gh/larryliu0820/44/head 2025-06-05T23:12:47.2141016Z * [new branch] gh/larryliu0820/44/orig -> origin/gh/larryliu0820/44/orig 2025-06-05T23:12:47.2142679Z * [new branch] gh/larryliu0820/45/base -> origin/gh/larryliu0820/45/base 2025-06-05T23:12:47.2143951Z * [new branch] gh/larryliu0820/45/head -> origin/gh/larryliu0820/45/head 2025-06-05T23:12:47.2145219Z * [new branch] gh/larryliu0820/45/orig -> origin/gh/larryliu0820/45/orig 2025-06-05T23:12:47.2146796Z * [new branch] gh/larryliu0820/46/base -> origin/gh/larryliu0820/46/base 2025-06-05T23:12:47.2148004Z * [new branch] gh/larryliu0820/46/head -> origin/gh/larryliu0820/46/head 2025-06-05T23:12:47.2149684Z * [new branch] gh/larryliu0820/46/orig -> origin/gh/larryliu0820/46/orig 2025-06-05T23:12:47.2151357Z * [new branch] gh/larryliu0820/47/base -> origin/gh/larryliu0820/47/base 2025-06-05T23:12:47.2152536Z * [new branch] gh/larryliu0820/47/head -> origin/gh/larryliu0820/47/head 2025-06-05T23:12:47.2153768Z * [new branch] gh/larryliu0820/47/orig -> origin/gh/larryliu0820/47/orig 2025-06-05T23:12:47.2155351Z * [new branch] gh/larryliu0820/48/base -> origin/gh/larryliu0820/48/base 2025-06-05T23:12:47.2156448Z * [new branch] gh/larryliu0820/48/head -> origin/gh/larryliu0820/48/head 2025-06-05T23:12:47.2157641Z * [new branch] gh/larryliu0820/48/orig -> origin/gh/larryliu0820/48/orig 2025-06-05T23:12:47.2159305Z * [new branch] gh/larryliu0820/49/base -> origin/gh/larryliu0820/49/base 2025-06-05T23:12:47.2160396Z * [new branch] gh/larryliu0820/49/head -> origin/gh/larryliu0820/49/head 2025-06-05T23:12:47.2161569Z * [new branch] gh/larryliu0820/49/orig -> origin/gh/larryliu0820/49/orig 2025-06-05T23:12:47.2163327Z * [new branch] gh/larryliu0820/50/base -> origin/gh/larryliu0820/50/base 2025-06-05T23:12:47.2164620Z * [new branch] gh/larryliu0820/50/head -> origin/gh/larryliu0820/50/head 2025-06-05T23:12:47.2165868Z * [new branch] gh/larryliu0820/50/orig -> origin/gh/larryliu0820/50/orig 2025-06-05T23:12:47.2167487Z * [new branch] gh/larryliu0820/51/base -> origin/gh/larryliu0820/51/base 2025-06-05T23:12:47.2168786Z * [new branch] gh/larryliu0820/51/head -> origin/gh/larryliu0820/51/head 2025-06-05T23:12:47.2170036Z * [new branch] gh/larryliu0820/51/orig -> origin/gh/larryliu0820/51/orig 2025-06-05T23:12:47.2171436Z * [new branch] gh/larryliu0820/52/base -> origin/gh/larryliu0820/52/base 2025-06-05T23:12:47.2172635Z * [new branch] gh/larryliu0820/52/orig -> origin/gh/larryliu0820/52/orig 2025-06-05T23:12:47.2174379Z * [new branch] gh/larryliu0820/53/base -> origin/gh/larryliu0820/53/base 2025-06-05T23:12:47.2176025Z * [new branch] gh/larryliu0820/54/base -> origin/gh/larryliu0820/54/base 2025-06-05T23:12:47.2177229Z * [new branch] gh/larryliu0820/54/head -> origin/gh/larryliu0820/54/head 2025-06-05T23:12:47.2178511Z * [new branch] gh/larryliu0820/54/orig -> origin/gh/larryliu0820/54/orig 2025-06-05T23:12:47.2180155Z * [new branch] gh/larryliu0820/55/base -> origin/gh/larryliu0820/55/base 2025-06-05T23:12:47.2181769Z * [new branch] gh/larryliu0820/56/base -> origin/gh/larryliu0820/56/base 2025-06-05T23:12:47.2183428Z * [new branch] gh/larryliu0820/57/base -> origin/gh/larryliu0820/57/base 2025-06-05T23:12:47.2185014Z * [new branch] gh/larryliu0820/58/base -> origin/gh/larryliu0820/58/base 2025-06-05T23:12:47.2186213Z * [new branch] gh/larryliu0820/58/orig -> origin/gh/larryliu0820/58/orig 2025-06-05T23:12:47.2187843Z * [new branch] gh/larryliu0820/59/base -> origin/gh/larryliu0820/59/base 2025-06-05T23:12:47.2189514Z * [new branch] gh/larryliu0820/6/base -> origin/gh/larryliu0820/6/base 2025-06-05T23:12:47.2190698Z * [new branch] gh/larryliu0820/6/head -> origin/gh/larryliu0820/6/head 2025-06-05T23:12:47.2192091Z * [new branch] gh/larryliu0820/6/orig -> origin/gh/larryliu0820/6/orig 2025-06-05T23:12:47.2194234Z * [new branch] gh/larryliu0820/60/base -> origin/gh/larryliu0820/60/base 2025-06-05T23:12:47.2196135Z * [new branch] gh/larryliu0820/61/base -> origin/gh/larryliu0820/61/base 2025-06-05T23:12:47.2197340Z * [new branch] gh/larryliu0820/61/orig -> origin/gh/larryliu0820/61/orig 2025-06-05T23:12:47.2199076Z * [new branch] gh/larryliu0820/62/base -> origin/gh/larryliu0820/62/base 2025-06-05T23:12:47.2200861Z * [new branch] gh/larryliu0820/63/base -> origin/gh/larryliu0820/63/base 2025-06-05T23:12:47.2202350Z * [new branch] gh/larryliu0820/64/base -> origin/gh/larryliu0820/64/base 2025-06-05T23:12:47.2204089Z * [new branch] gh/larryliu0820/65/base -> origin/gh/larryliu0820/65/base 2025-06-05T23:12:47.2205711Z * [new branch] gh/larryliu0820/65/head -> origin/gh/larryliu0820/65/head 2025-06-05T23:12:47.2206825Z * [new branch] gh/larryliu0820/65/orig -> origin/gh/larryliu0820/65/orig 2025-06-05T23:12:47.2208464Z * [new branch] gh/larryliu0820/7/base -> origin/gh/larryliu0820/7/base 2025-06-05T23:12:47.2209591Z * [new branch] gh/larryliu0820/7/head -> origin/gh/larryliu0820/7/head 2025-06-05T23:12:47.2210797Z * [new branch] gh/larryliu0820/7/orig -> origin/gh/larryliu0820/7/orig 2025-06-05T23:12:47.2212339Z * [new branch] gh/larryliu0820/8/base -> origin/gh/larryliu0820/8/base 2025-06-05T23:12:47.2213508Z * [new branch] gh/larryliu0820/8/head -> origin/gh/larryliu0820/8/head 2025-06-05T23:12:47.2214673Z * [new branch] gh/larryliu0820/8/orig -> origin/gh/larryliu0820/8/orig 2025-06-05T23:12:47.2216259Z * [new branch] gh/larryliu0820/9/base -> origin/gh/larryliu0820/9/base 2025-06-05T23:12:47.2217569Z * [new branch] gh/larryliu0820/9/head -> origin/gh/larryliu0820/9/head 2025-06-05T23:12:47.2218760Z * [new branch] gh/larryliu0820/9/orig -> origin/gh/larryliu0820/9/orig 2025-06-05T23:12:47.2220582Z * [new branch] gh/liuk22/1/base -> origin/gh/liuk22/1/base 2025-06-05T23:12:47.2221822Z * [new branch] gh/liuk22/1/head -> origin/gh/liuk22/1/head 2025-06-05T23:12:47.2223140Z * [new branch] gh/liuk22/1/orig -> origin/gh/liuk22/1/orig 2025-06-05T23:12:47.2224534Z * [new branch] gh/liuk22/2/base -> origin/gh/liuk22/2/base 2025-06-05T23:12:47.2225814Z * [new branch] gh/liuk22/2/head -> origin/gh/liuk22/2/head 2025-06-05T23:12:47.2227182Z * [new branch] gh/liuk22/2/orig -> origin/gh/liuk22/2/orig 2025-06-05T23:12:47.2228516Z * [new branch] gh/liuk22/3/base -> origin/gh/liuk22/3/base 2025-06-05T23:12:47.2229755Z * [new branch] gh/liuk22/3/head -> origin/gh/liuk22/3/head 2025-06-05T23:12:47.2231075Z * [new branch] gh/liuk22/3/orig -> origin/gh/liuk22/3/orig 2025-06-05T23:12:47.2232491Z * [new branch] gh/liuk22/4/base -> origin/gh/liuk22/4/base 2025-06-05T23:12:47.2233642Z * [new branch] gh/liuk22/4/head -> origin/gh/liuk22/4/head 2025-06-05T23:12:47.2234967Z * [new branch] gh/liuk22/4/orig -> origin/gh/liuk22/4/orig 2025-06-05T23:12:47.2236305Z * [new branch] gh/liuk22/5/base -> origin/gh/liuk22/5/base 2025-06-05T23:12:47.2237637Z * [new branch] gh/liuk22/5/head -> origin/gh/liuk22/5/head 2025-06-05T23:12:47.2239084Z * [new branch] gh/liuk22/5/orig -> origin/gh/liuk22/5/orig 2025-06-05T23:12:47.2240861Z * [new branch] gh/lucylq/28/base -> origin/gh/lucylq/28/base 2025-06-05T23:12:47.2242425Z * [new branch] gh/lucylq/29/base -> origin/gh/lucylq/29/base 2025-06-05T23:12:47.2244183Z * [new branch] gh/lucylq/30/base -> origin/gh/lucylq/30/base 2025-06-05T23:12:47.2245728Z * [new branch] gh/lucylq/31/base -> origin/gh/lucylq/31/base 2025-06-05T23:12:47.2246974Z * [new branch] gh/lucylq/31/orig -> origin/gh/lucylq/31/orig 2025-06-05T23:12:47.2248515Z * [new branch] gh/lucylq/32/base -> origin/gh/lucylq/32/base 2025-06-05T23:12:47.2250078Z * [new branch] gh/lucylq/33/base -> origin/gh/lucylq/33/base 2025-06-05T23:12:47.2251625Z * [new branch] gh/lucylq/34/base -> origin/gh/lucylq/34/base 2025-06-05T23:12:47.2253178Z * [new branch] gh/lucylq/35/base -> origin/gh/lucylq/35/base 2025-06-05T23:12:47.2254458Z * [new branch] gh/lucylq/35/head -> origin/gh/lucylq/35/head 2025-06-05T23:12:47.2255898Z * [new branch] gh/lucylq/36/base -> origin/gh/lucylq/36/base 2025-06-05T23:12:47.2256992Z * [new branch] gh/lucylq/36/head -> origin/gh/lucylq/36/head 2025-06-05T23:12:47.2258307Z * [new branch] gh/lucylq/37/base -> origin/gh/lucylq/37/base 2025-06-05T23:12:47.2259407Z * [new branch] gh/lucylq/37/head -> origin/gh/lucylq/37/head 2025-06-05T23:12:47.2261007Z * [new branch] gh/lucylq/38/base -> origin/gh/lucylq/38/base 2025-06-05T23:12:47.2262944Z * [new branch] gh/lucylq/39/base -> origin/gh/lucylq/39/base 2025-06-05T23:12:47.2264516Z * [new branch] gh/lucylq/40/base -> origin/gh/lucylq/40/base 2025-06-05T23:12:47.2266129Z * [new branch] gh/lucylq/41/base -> origin/gh/lucylq/41/base 2025-06-05T23:12:47.2267679Z * [new branch] gh/lucylq/42/base -> origin/gh/lucylq/42/base 2025-06-05T23:12:47.2268910Z * [new branch] gh/lucylq/42/head -> origin/gh/lucylq/42/head 2025-06-05T23:12:47.2270103Z * [new branch] gh/lucylq/42/orig -> origin/gh/lucylq/42/orig 2025-06-05T23:12:47.2271648Z * [new branch] gh/lucylq/43/base -> origin/gh/lucylq/43/base 2025-06-05T23:12:47.2273224Z * [new branch] gh/lucylq/44/base -> origin/gh/lucylq/44/base 2025-06-05T23:12:47.2274543Z * [new branch] gh/lucylq/44/head -> origin/gh/lucylq/44/head 2025-06-05T23:12:47.2275740Z * [new branch] gh/lucylq/44/orig -> origin/gh/lucylq/44/orig 2025-06-05T23:12:47.2277356Z * [new branch] gh/lucylq/45/base -> origin/gh/lucylq/45/base 2025-06-05T23:12:47.2278684Z * [new branch] gh/lucylq/45/head -> origin/gh/lucylq/45/head 2025-06-05T23:12:47.2280034Z * [new branch] gh/lucylq/45/orig -> origin/gh/lucylq/45/orig 2025-06-05T23:12:47.2281793Z * [new branch] gh/lucylq/46/base -> origin/gh/lucylq/46/base 2025-06-05T23:12:47.2283155Z * [new branch] gh/lucylq/46/head -> origin/gh/lucylq/46/head 2025-06-05T23:12:47.2284609Z * [new branch] gh/lucylq/46/orig -> origin/gh/lucylq/46/orig 2025-06-05T23:12:47.2286220Z * [new branch] gh/lucylq/47/base -> origin/gh/lucylq/47/base 2025-06-05T23:12:47.2287408Z * [new branch] gh/lucylq/47/head -> origin/gh/lucylq/47/head 2025-06-05T23:12:47.2288561Z * [new branch] gh/lucylq/47/orig -> origin/gh/lucylq/47/orig 2025-06-05T23:12:47.2290512Z * [new branch] gh/lucylq/48/base -> origin/gh/lucylq/48/base 2025-06-05T23:12:47.2291884Z * [new branch] gh/lucylq/48/head -> origin/gh/lucylq/48/head 2025-06-05T23:12:47.2293038Z * [new branch] gh/lucylq/48/orig -> origin/gh/lucylq/48/orig 2025-06-05T23:12:47.2294738Z * [new branch] gh/lucylq/49/base -> origin/gh/lucylq/49/base 2025-06-05T23:12:47.2296070Z * [new branch] gh/lucylq/49/head -> origin/gh/lucylq/49/head 2025-06-05T23:12:47.2297396Z * [new branch] gh/lucylq/49/orig -> origin/gh/lucylq/49/orig 2025-06-05T23:12:47.2299344Z * [new branch] gh/lucylq/50/base -> origin/gh/lucylq/50/base 2025-06-05T23:12:47.2300549Z * [new branch] gh/lucylq/50/head -> origin/gh/lucylq/50/head 2025-06-05T23:12:47.2301950Z * [new branch] gh/lucylq/50/orig -> origin/gh/lucylq/50/orig 2025-06-05T23:12:47.2303302Z * [new branch] gh/lucylq/51/base -> origin/gh/lucylq/51/base 2025-06-05T23:12:47.2304597Z * [new branch] gh/lucylq/51/head -> origin/gh/lucylq/51/head 2025-06-05T23:12:47.2305863Z * [new branch] gh/lucylq/51/orig -> origin/gh/lucylq/51/orig 2025-06-05T23:12:47.2307496Z * [new branch] gh/lucylq/52/base -> origin/gh/lucylq/52/base 2025-06-05T23:12:47.2309858Z * [new branch] gh/lucylq/53/base -> origin/gh/lucylq/53/base 2025-06-05T23:12:47.2311514Z * [new branch] gh/lucylq/54/base -> origin/gh/lucylq/54/base 2025-06-05T23:12:47.2312744Z * [new branch] gh/lucylq/54/head -> origin/gh/lucylq/54/head 2025-06-05T23:12:47.2313984Z * [new branch] gh/lucylq/54/orig -> origin/gh/lucylq/54/orig 2025-06-05T23:12:47.2315637Z * [new branch] gh/lucylq/55/base -> origin/gh/lucylq/55/base 2025-06-05T23:12:47.2317338Z * [new branch] gh/lucylq/56/base -> origin/gh/lucylq/56/base 2025-06-05T23:12:47.2319511Z * [new branch] gh/lucylq/57/base -> origin/gh/lucylq/57/base 2025-06-05T23:12:47.2321069Z * [new branch] gh/lucylq/58/base -> origin/gh/lucylq/58/base 2025-06-05T23:12:47.2322286Z * [new branch] gh/lucylq/58/orig -> origin/gh/lucylq/58/orig 2025-06-05T23:12:47.2324004Z * [new branch] gh/lucylq/59/base -> origin/gh/lucylq/59/base 2025-06-05T23:12:47.2325641Z * [new branch] gh/lucylq/60/base -> origin/gh/lucylq/60/base 2025-06-05T23:12:47.2326937Z * [new branch] gh/lucylq/60/orig -> origin/gh/lucylq/60/orig 2025-06-05T23:12:47.2328557Z * [new branch] gh/lucylq/61/base -> origin/gh/lucylq/61/base 2025-06-05T23:12:47.2330153Z * [new branch] gh/lucylq/62/base -> origin/gh/lucylq/62/base 2025-06-05T23:12:47.2331919Z * [new branch] gh/lucylq/63/base -> origin/gh/lucylq/63/base 2025-06-05T23:12:47.2333559Z * [new branch] gh/lucylq/64/base -> origin/gh/lucylq/64/base 2025-06-05T23:12:47.2334805Z * [new branch] gh/lucylq/64/head -> origin/gh/lucylq/64/head 2025-06-05T23:12:47.2336088Z * [new branch] gh/lucylq/64/orig -> origin/gh/lucylq/64/orig 2025-06-05T23:12:47.2337860Z * [new branch] gh/lucylq/65/base -> origin/gh/lucylq/65/base 2025-06-05T23:12:47.2339006Z * [new branch] gh/lucylq/65/head -> origin/gh/lucylq/65/head 2025-06-05T23:12:47.2340155Z * [new branch] gh/lucylq/65/orig -> origin/gh/lucylq/65/orig 2025-06-05T23:12:47.2341759Z * [new branch] gh/lucylq/66/base -> origin/gh/lucylq/66/base 2025-06-05T23:12:47.2343573Z * [new branch] gh/lucylq/67/base -> origin/gh/lucylq/67/base 2025-06-05T23:12:47.2345164Z * [new branch] gh/lucylq/68/base -> origin/gh/lucylq/68/base 2025-06-05T23:12:47.2346801Z * [new branch] gh/lucylq/69/base -> origin/gh/lucylq/69/base 2025-06-05T23:12:47.2348354Z * [new branch] gh/lucylq/70/base -> origin/gh/lucylq/70/base 2025-06-05T23:12:47.2349978Z * [new branch] gh/lucylq/71/base -> origin/gh/lucylq/71/base 2025-06-05T23:12:47.2351562Z * [new branch] gh/lucylq/72/base -> origin/gh/lucylq/72/base 2025-06-05T23:12:47.2353125Z * [new branch] gh/lucylq/73/base -> origin/gh/lucylq/73/base 2025-06-05T23:12:47.2354771Z * [new branch] gh/lucylq/74/base -> origin/gh/lucylq/74/base 2025-06-05T23:12:47.2356429Z * [new branch] gh/lucylq/75/base -> origin/gh/lucylq/75/base 2025-06-05T23:12:47.2358012Z * [new branch] gh/lucylq/76/base -> origin/gh/lucylq/76/base 2025-06-05T23:12:47.2359640Z * [new branch] gh/lucylq/77/base -> origin/gh/lucylq/77/base 2025-06-05T23:12:47.2360949Z * [new branch] gh/lucylq/77/head -> origin/gh/lucylq/77/head 2025-06-05T23:12:47.2362170Z * [new branch] gh/lucylq/77/orig -> origin/gh/lucylq/77/orig 2025-06-05T23:12:47.2363701Z * [new branch] gh/lucylq/78/base -> origin/gh/lucylq/78/base 2025-06-05T23:12:47.2364880Z * [new branch] gh/lucylq/78/head -> origin/gh/lucylq/78/head 2025-06-05T23:12:47.2365968Z * [new branch] gh/lucylq/78/orig -> origin/gh/lucylq/78/orig 2025-06-05T23:12:47.2367686Z * [new branch] gh/lucylq/79/base -> origin/gh/lucylq/79/base 2025-06-05T23:12:47.2369270Z * [new branch] gh/lucylq/80/base -> origin/gh/lucylq/80/base 2025-06-05T23:12:47.2370847Z * [new branch] gh/lucylq/81/base -> origin/gh/lucylq/81/base 2025-06-05T23:12:47.2372335Z * [new branch] gh/lucylq/82/base -> origin/gh/lucylq/82/base 2025-06-05T23:12:47.2373621Z * [new branch] gh/lucylq/82/head -> origin/gh/lucylq/82/head 2025-06-05T23:12:47.2374822Z * [new branch] gh/lucylq/82/orig -> origin/gh/lucylq/82/orig 2025-06-05T23:12:47.2376222Z * [new branch] gh/lucylq/83/base -> origin/gh/lucylq/83/base 2025-06-05T23:12:47.2377382Z * [new branch] gh/lucylq/83/head -> origin/gh/lucylq/83/head 2025-06-05T23:12:47.2378569Z * [new branch] gh/lucylq/83/orig -> origin/gh/lucylq/83/orig 2025-06-05T23:12:47.2380158Z * [new branch] gh/lucylq/84/base -> origin/gh/lucylq/84/base 2025-06-05T23:12:47.2382491Z * [new branch] gh/manuelcandales/100/base -> origin/gh/manuelcandales/100/base 2025-06-05T23:12:47.2383657Z * [new branch] gh/manuelcandales/100/head -> origin/gh/manuelcandales/100/head 2025-06-05T23:12:47.2384870Z * [new branch] gh/manuelcandales/100/orig -> origin/gh/manuelcandales/100/orig 2025-06-05T23:12:47.2386493Z * [new branch] gh/manuelcandales/101/base -> origin/gh/manuelcandales/101/base 2025-06-05T23:12:47.2387600Z * [new branch] gh/manuelcandales/101/head -> origin/gh/manuelcandales/101/head 2025-06-05T23:12:47.2388861Z * [new branch] gh/manuelcandales/101/orig -> origin/gh/manuelcandales/101/orig 2025-06-05T23:12:47.2390514Z * [new branch] gh/manuelcandales/102/base -> origin/gh/manuelcandales/102/base 2025-06-05T23:12:47.2393495Z * [new branch] gh/manuelcandales/102/head -> origin/gh/manuelcandales/102/head 2025-06-05T23:12:47.2394792Z * [new branch] gh/manuelcandales/102/orig -> origin/gh/manuelcandales/102/orig 2025-06-05T23:12:47.2396811Z * [new branch] gh/manuelcandales/103/base -> origin/gh/manuelcandales/103/base 2025-06-05T23:12:47.2398131Z * [new branch] gh/manuelcandales/103/head -> origin/gh/manuelcandales/103/head 2025-06-05T23:12:47.2399333Z * [new branch] gh/manuelcandales/103/orig -> origin/gh/manuelcandales/103/orig 2025-06-05T23:12:47.2400953Z * [new branch] gh/manuelcandales/104/base -> origin/gh/manuelcandales/104/base 2025-06-05T23:12:47.2402163Z * [new branch] gh/manuelcandales/104/head -> origin/gh/manuelcandales/104/head 2025-06-05T23:12:47.2403344Z * [new branch] gh/manuelcandales/104/orig -> origin/gh/manuelcandales/104/orig 2025-06-05T23:12:47.2405081Z * [new branch] gh/manuelcandales/105/base -> origin/gh/manuelcandales/105/base 2025-06-05T23:12:47.2406207Z * [new branch] gh/manuelcandales/105/head -> origin/gh/manuelcandales/105/head 2025-06-05T23:12:47.2407343Z * [new branch] gh/manuelcandales/105/orig -> origin/gh/manuelcandales/105/orig 2025-06-05T23:12:47.2408952Z * [new branch] gh/manuelcandales/106/base -> origin/gh/manuelcandales/106/base 2025-06-05T23:12:47.2410091Z * [new branch] gh/manuelcandales/106/head -> origin/gh/manuelcandales/106/head 2025-06-05T23:12:47.2411277Z * [new branch] gh/manuelcandales/106/orig -> origin/gh/manuelcandales/106/orig 2025-06-05T23:12:47.2413085Z * [new branch] gh/manuelcandales/107/base -> origin/gh/manuelcandales/107/base 2025-06-05T23:12:47.2414384Z * [new branch] gh/manuelcandales/107/head -> origin/gh/manuelcandales/107/head 2025-06-05T23:12:47.2415765Z * [new branch] gh/manuelcandales/107/orig -> origin/gh/manuelcandales/107/orig 2025-06-05T23:12:47.2417088Z * [new branch] gh/manuelcandales/108/base -> origin/gh/manuelcandales/108/base 2025-06-05T23:12:47.2418297Z * [new branch] gh/manuelcandales/108/head -> origin/gh/manuelcandales/108/head 2025-06-05T23:12:47.2419415Z * [new branch] gh/manuelcandales/108/orig -> origin/gh/manuelcandales/108/orig 2025-06-05T23:12:47.2420900Z * [new branch] gh/manuelcandales/109/base -> origin/gh/manuelcandales/109/base 2025-06-05T23:12:47.2422271Z * [new branch] gh/manuelcandales/109/head -> origin/gh/manuelcandales/109/head 2025-06-05T23:12:47.2423499Z * [new branch] gh/manuelcandales/109/orig -> origin/gh/manuelcandales/109/orig 2025-06-05T23:12:47.2424997Z * [new branch] gh/manuelcandales/110/base -> origin/gh/manuelcandales/110/base 2025-06-05T23:12:47.2426116Z * [new branch] gh/manuelcandales/110/head -> origin/gh/manuelcandales/110/head 2025-06-05T23:12:47.2427285Z * [new branch] gh/manuelcandales/110/orig -> origin/gh/manuelcandales/110/orig 2025-06-05T23:12:47.2428718Z * [new branch] gh/manuelcandales/111/base -> origin/gh/manuelcandales/111/base 2025-06-05T23:12:47.2429817Z * [new branch] gh/manuelcandales/111/head -> origin/gh/manuelcandales/111/head 2025-06-05T23:12:47.2431463Z * [new branch] gh/manuelcandales/111/orig -> origin/gh/manuelcandales/111/orig 2025-06-05T23:12:47.2432995Z * [new branch] gh/manuelcandales/112/base -> origin/gh/manuelcandales/112/base 2025-06-05T23:12:47.2434266Z * [new branch] gh/manuelcandales/112/head -> origin/gh/manuelcandales/112/head 2025-06-05T23:12:47.2435421Z * [new branch] gh/manuelcandales/112/orig -> origin/gh/manuelcandales/112/orig 2025-06-05T23:12:47.2437362Z * [new branch] gh/manuelcandales/32/base -> origin/gh/manuelcandales/32/base 2025-06-05T23:12:47.2438432Z * [new branch] gh/manuelcandales/32/head -> origin/gh/manuelcandales/32/head 2025-06-05T23:12:47.2439735Z * [new branch] gh/manuelcandales/32/orig -> origin/gh/manuelcandales/32/orig 2025-06-05T23:12:47.2441272Z * [new branch] gh/manuelcandales/46/base -> origin/gh/manuelcandales/46/base 2025-06-05T23:12:47.2442518Z * [new branch] gh/manuelcandales/46/head -> origin/gh/manuelcandales/46/head 2025-06-05T23:12:47.2443836Z * [new branch] gh/manuelcandales/46/orig -> origin/gh/manuelcandales/46/orig 2025-06-05T23:12:47.2445253Z * [new branch] gh/manuelcandales/47/base -> origin/gh/manuelcandales/47/base 2025-06-05T23:12:47.2446428Z * [new branch] gh/manuelcandales/47/head -> origin/gh/manuelcandales/47/head 2025-06-05T23:12:47.2447663Z * [new branch] gh/manuelcandales/47/orig -> origin/gh/manuelcandales/47/orig 2025-06-05T23:12:47.2449039Z * [new branch] gh/manuelcandales/48/base -> origin/gh/manuelcandales/48/base 2025-06-05T23:12:47.2450295Z * [new branch] gh/manuelcandales/48/head -> origin/gh/manuelcandales/48/head 2025-06-05T23:12:47.2451527Z * [new branch] gh/manuelcandales/48/orig -> origin/gh/manuelcandales/48/orig 2025-06-05T23:12:47.2453249Z * [new branch] gh/manuelcandales/49/base -> origin/gh/manuelcandales/49/base 2025-06-05T23:12:47.2454436Z * [new branch] gh/manuelcandales/49/head -> origin/gh/manuelcandales/49/head 2025-06-05T23:12:47.2455556Z * [new branch] gh/manuelcandales/49/orig -> origin/gh/manuelcandales/49/orig 2025-06-05T23:12:47.2457055Z * [new branch] gh/manuelcandales/50/base -> origin/gh/manuelcandales/50/base 2025-06-05T23:12:47.2458319Z * [new branch] gh/manuelcandales/50/head -> origin/gh/manuelcandales/50/head 2025-06-05T23:12:47.2459489Z * [new branch] gh/manuelcandales/50/orig -> origin/gh/manuelcandales/50/orig 2025-06-05T23:12:47.2461199Z * [new branch] gh/manuelcandales/51/base -> origin/gh/manuelcandales/51/base 2025-06-05T23:12:47.2462265Z * [new branch] gh/manuelcandales/51/head -> origin/gh/manuelcandales/51/head 2025-06-05T23:12:47.2463420Z * [new branch] gh/manuelcandales/51/orig -> origin/gh/manuelcandales/51/orig 2025-06-05T23:12:47.2464949Z * [new branch] gh/manuelcandales/52/base -> origin/gh/manuelcandales/52/base 2025-06-05T23:12:47.2466075Z * [new branch] gh/manuelcandales/52/head -> origin/gh/manuelcandales/52/head 2025-06-05T23:12:47.2467212Z * [new branch] gh/manuelcandales/52/orig -> origin/gh/manuelcandales/52/orig 2025-06-05T23:12:47.2468706Z * [new branch] gh/manuelcandales/53/base -> origin/gh/manuelcandales/53/base 2025-06-05T23:12:47.2469743Z * [new branch] gh/manuelcandales/53/head -> origin/gh/manuelcandales/53/head 2025-06-05T23:12:47.2470940Z * [new branch] gh/manuelcandales/53/orig -> origin/gh/manuelcandales/53/orig 2025-06-05T23:12:47.2472453Z * [new branch] gh/manuelcandales/54/base -> origin/gh/manuelcandales/54/base 2025-06-05T23:12:47.2473560Z * [new branch] gh/manuelcandales/54/head -> origin/gh/manuelcandales/54/head 2025-06-05T23:12:47.2474694Z * [new branch] gh/manuelcandales/54/orig -> origin/gh/manuelcandales/54/orig 2025-06-05T23:12:47.2476142Z * [new branch] gh/manuelcandales/55/base -> origin/gh/manuelcandales/55/base 2025-06-05T23:12:47.2477411Z * [new branch] gh/manuelcandales/55/head -> origin/gh/manuelcandales/55/head 2025-06-05T23:12:47.2478544Z * [new branch] gh/manuelcandales/55/orig -> origin/gh/manuelcandales/55/orig 2025-06-05T23:12:47.2480048Z * [new branch] gh/manuelcandales/56/base -> origin/gh/manuelcandales/56/base 2025-06-05T23:12:47.2481438Z * [new branch] gh/manuelcandales/56/head -> origin/gh/manuelcandales/56/head 2025-06-05T23:12:47.2482800Z * [new branch] gh/manuelcandales/57/base -> origin/gh/manuelcandales/57/base 2025-06-05T23:12:47.2484100Z * [new branch] gh/manuelcandales/57/head -> origin/gh/manuelcandales/57/head 2025-06-05T23:12:47.2485415Z * [new branch] gh/manuelcandales/58/base -> origin/gh/manuelcandales/58/base 2025-06-05T23:12:47.2486639Z * [new branch] gh/manuelcandales/58/head -> origin/gh/manuelcandales/58/head 2025-06-05T23:12:47.2487970Z * [new branch] gh/manuelcandales/59/base -> origin/gh/manuelcandales/59/base 2025-06-05T23:12:47.2489635Z * [new branch] gh/manuelcandales/59/head -> origin/gh/manuelcandales/59/head 2025-06-05T23:12:47.2491271Z * [new branch] gh/manuelcandales/60/base -> origin/gh/manuelcandales/60/base 2025-06-05T23:12:47.2492409Z * [new branch] gh/manuelcandales/60/head -> origin/gh/manuelcandales/60/head 2025-06-05T23:12:47.2493839Z * [new branch] gh/manuelcandales/61/base -> origin/gh/manuelcandales/61/base 2025-06-05T23:12:47.2494998Z * [new branch] gh/manuelcandales/61/head -> origin/gh/manuelcandales/61/head 2025-06-05T23:12:47.2496816Z * [new branch] gh/manuelcandales/62/base -> origin/gh/manuelcandales/62/base 2025-06-05T23:12:47.2497964Z * [new branch] gh/manuelcandales/62/head -> origin/gh/manuelcandales/62/head 2025-06-05T23:12:47.2499353Z * [new branch] gh/manuelcandales/63/base -> origin/gh/manuelcandales/63/base 2025-06-05T23:12:47.2500604Z * [new branch] gh/manuelcandales/63/head -> origin/gh/manuelcandales/63/head 2025-06-05T23:12:47.2502048Z * [new branch] gh/manuelcandales/64/base -> origin/gh/manuelcandales/64/base 2025-06-05T23:12:47.2503242Z * [new branch] gh/manuelcandales/64/head -> origin/gh/manuelcandales/64/head 2025-06-05T23:12:47.2504598Z * [new branch] gh/manuelcandales/65/base -> origin/gh/manuelcandales/65/base 2025-06-05T23:12:47.2505748Z * [new branch] gh/manuelcandales/65/head -> origin/gh/manuelcandales/65/head 2025-06-05T23:12:47.2507155Z * [new branch] gh/manuelcandales/66/base -> origin/gh/manuelcandales/66/base 2025-06-05T23:12:47.2508199Z * [new branch] gh/manuelcandales/66/head -> origin/gh/manuelcandales/66/head 2025-06-05T23:12:47.2510027Z * [new branch] gh/manuelcandales/67/base -> origin/gh/manuelcandales/67/base 2025-06-05T23:12:47.2511203Z * [new branch] gh/manuelcandales/67/head -> origin/gh/manuelcandales/67/head 2025-06-05T23:12:47.2512600Z * [new branch] gh/manuelcandales/68/base -> origin/gh/manuelcandales/68/base 2025-06-05T23:12:47.2513677Z * [new branch] gh/manuelcandales/68/head -> origin/gh/manuelcandales/68/head 2025-06-05T23:12:47.2515043Z * [new branch] gh/manuelcandales/69/base -> origin/gh/manuelcandales/69/base 2025-06-05T23:12:47.2516145Z * [new branch] gh/manuelcandales/69/head -> origin/gh/manuelcandales/69/head 2025-06-05T23:12:47.2517502Z * [new branch] gh/manuelcandales/70/base -> origin/gh/manuelcandales/70/base 2025-06-05T23:12:47.2518590Z * [new branch] gh/manuelcandales/70/head -> origin/gh/manuelcandales/70/head 2025-06-05T23:12:47.2519950Z * [new branch] gh/manuelcandales/71/base -> origin/gh/manuelcandales/71/base 2025-06-05T23:12:47.2521035Z * [new branch] gh/manuelcandales/71/head -> origin/gh/manuelcandales/71/head 2025-06-05T23:12:47.2522406Z * [new branch] gh/manuelcandales/72/base -> origin/gh/manuelcandales/72/base 2025-06-05T23:12:47.2523622Z * [new branch] gh/manuelcandales/72/head -> origin/gh/manuelcandales/72/head 2025-06-05T23:12:47.2525081Z * [new branch] gh/manuelcandales/73/base -> origin/gh/manuelcandales/73/base 2025-06-05T23:12:47.2526174Z * [new branch] gh/manuelcandales/73/head -> origin/gh/manuelcandales/73/head 2025-06-05T23:12:47.2527633Z * [new branch] gh/manuelcandales/74/base -> origin/gh/manuelcandales/74/base 2025-06-05T23:12:47.2528695Z * [new branch] gh/manuelcandales/74/head -> origin/gh/manuelcandales/74/head 2025-06-05T23:12:47.2530075Z * [new branch] gh/manuelcandales/75/base -> origin/gh/manuelcandales/75/base 2025-06-05T23:12:47.2531144Z * [new branch] gh/manuelcandales/75/head -> origin/gh/manuelcandales/75/head 2025-06-05T23:12:47.2532895Z * [new branch] gh/manuelcandales/76/base -> origin/gh/manuelcandales/76/base 2025-06-05T23:12:47.2534098Z * [new branch] gh/manuelcandales/76/head -> origin/gh/manuelcandales/76/head 2025-06-05T23:12:47.2535479Z * [new branch] gh/manuelcandales/76/orig -> origin/gh/manuelcandales/76/orig 2025-06-05T23:12:47.2536946Z * [new branch] gh/manuelcandales/77/base -> origin/gh/manuelcandales/77/base 2025-06-05T23:12:47.2538171Z * [new branch] gh/manuelcandales/77/head -> origin/gh/manuelcandales/77/head 2025-06-05T23:12:47.2539334Z * [new branch] gh/manuelcandales/77/orig -> origin/gh/manuelcandales/77/orig 2025-06-05T23:12:47.2540882Z * [new branch] gh/manuelcandales/78/base -> origin/gh/manuelcandales/78/base 2025-06-05T23:12:47.2542124Z * [new branch] gh/manuelcandales/78/head -> origin/gh/manuelcandales/78/head 2025-06-05T23:12:47.2543394Z * [new branch] gh/manuelcandales/78/orig -> origin/gh/manuelcandales/78/orig 2025-06-05T23:12:47.2544887Z * [new branch] gh/manuelcandales/79/base -> origin/gh/manuelcandales/79/base 2025-06-05T23:12:47.2546026Z * [new branch] gh/manuelcandales/79/head -> origin/gh/manuelcandales/79/head 2025-06-05T23:12:47.2547203Z * [new branch] gh/manuelcandales/79/orig -> origin/gh/manuelcandales/79/orig 2025-06-05T23:12:47.2548623Z * [new branch] gh/manuelcandales/80/base -> origin/gh/manuelcandales/80/base 2025-06-05T23:12:47.2549832Z * [new branch] gh/manuelcandales/80/head -> origin/gh/manuelcandales/80/head 2025-06-05T23:12:47.2550881Z * [new branch] gh/manuelcandales/80/orig -> origin/gh/manuelcandales/80/orig 2025-06-05T23:12:47.2552507Z * [new branch] gh/manuelcandales/81/base -> origin/gh/manuelcandales/81/base 2025-06-05T23:12:47.2553746Z * [new branch] gh/manuelcandales/81/head -> origin/gh/manuelcandales/81/head 2025-06-05T23:12:47.2554913Z * [new branch] gh/manuelcandales/81/orig -> origin/gh/manuelcandales/81/orig 2025-06-05T23:12:47.2556488Z * [new branch] gh/manuelcandales/82/base -> origin/gh/manuelcandales/82/base 2025-06-05T23:12:47.2557722Z * [new branch] gh/manuelcandales/82/head -> origin/gh/manuelcandales/82/head 2025-06-05T23:12:47.2558879Z * [new branch] gh/manuelcandales/82/orig -> origin/gh/manuelcandales/82/orig 2025-06-05T23:12:47.2560506Z * [new branch] gh/manuelcandales/83/base -> origin/gh/manuelcandales/83/base 2025-06-05T23:12:47.2561732Z * [new branch] gh/manuelcandales/83/head -> origin/gh/manuelcandales/83/head 2025-06-05T23:12:47.2562974Z * [new branch] gh/manuelcandales/83/orig -> origin/gh/manuelcandales/83/orig 2025-06-05T23:12:47.2564670Z * [new branch] gh/manuelcandales/84/base -> origin/gh/manuelcandales/84/base 2025-06-05T23:12:47.2565910Z * [new branch] gh/manuelcandales/84/head -> origin/gh/manuelcandales/84/head 2025-06-05T23:12:47.2567088Z * [new branch] gh/manuelcandales/84/orig -> origin/gh/manuelcandales/84/orig 2025-06-05T23:12:47.2568535Z * [new branch] gh/manuelcandales/85/base -> origin/gh/manuelcandales/85/base 2025-06-05T23:12:47.2569849Z * [new branch] gh/manuelcandales/85/head -> origin/gh/manuelcandales/85/head 2025-06-05T23:12:47.2570951Z * [new branch] gh/manuelcandales/85/orig -> origin/gh/manuelcandales/85/orig 2025-06-05T23:12:47.2572509Z * [new branch] gh/manuelcandales/86/base -> origin/gh/manuelcandales/86/base 2025-06-05T23:12:47.2573746Z * [new branch] gh/manuelcandales/86/head -> origin/gh/manuelcandales/86/head 2025-06-05T23:12:47.2575101Z * [new branch] gh/manuelcandales/86/orig -> origin/gh/manuelcandales/86/orig 2025-06-05T23:12:47.2576479Z * [new branch] gh/manuelcandales/87/base -> origin/gh/manuelcandales/87/base 2025-06-05T23:12:47.2577662Z * [new branch] gh/manuelcandales/87/head -> origin/gh/manuelcandales/87/head 2025-06-05T23:12:47.2578936Z * [new branch] gh/manuelcandales/87/orig -> origin/gh/manuelcandales/87/orig 2025-06-05T23:12:47.2580254Z * [new branch] gh/manuelcandales/88/base -> origin/gh/manuelcandales/88/base 2025-06-05T23:12:47.2581459Z * [new branch] gh/manuelcandales/88/head -> origin/gh/manuelcandales/88/head 2025-06-05T23:12:47.2582617Z * [new branch] gh/manuelcandales/88/orig -> origin/gh/manuelcandales/88/orig 2025-06-05T23:12:47.2583959Z * [new branch] gh/manuelcandales/89/base -> origin/gh/manuelcandales/89/base 2025-06-05T23:12:47.2585135Z * [new branch] gh/manuelcandales/89/head -> origin/gh/manuelcandales/89/head 2025-06-05T23:12:47.2586371Z * [new branch] gh/manuelcandales/89/orig -> origin/gh/manuelcandales/89/orig 2025-06-05T23:12:47.2588107Z * [new branch] gh/manuelcandales/90/base -> origin/gh/manuelcandales/90/base 2025-06-05T23:12:47.2589198Z * [new branch] gh/manuelcandales/90/head -> origin/gh/manuelcandales/90/head 2025-06-05T23:12:47.2590386Z * [new branch] gh/manuelcandales/90/orig -> origin/gh/manuelcandales/90/orig 2025-06-05T23:12:47.2592019Z * [new branch] gh/manuelcandales/91/base -> origin/gh/manuelcandales/91/base 2025-06-05T23:12:47.2593189Z * [new branch] gh/manuelcandales/91/head -> origin/gh/manuelcandales/91/head 2025-06-05T23:12:47.2594362Z * [new branch] gh/manuelcandales/91/orig -> origin/gh/manuelcandales/91/orig 2025-06-05T23:12:47.2595735Z * [new branch] gh/manuelcandales/92/base -> origin/gh/manuelcandales/92/base 2025-06-05T23:12:47.2596985Z * [new branch] gh/manuelcandales/92/head -> origin/gh/manuelcandales/92/head 2025-06-05T23:12:47.2597947Z * [new branch] gh/manuelcandales/92/orig -> origin/gh/manuelcandales/92/orig 2025-06-05T23:12:47.2599417Z * [new branch] gh/manuelcandales/93/base -> origin/gh/manuelcandales/93/base 2025-06-05T23:12:47.2601002Z * [new branch] gh/manuelcandales/93/head -> origin/gh/manuelcandales/93/head 2025-06-05T23:12:47.2602189Z * [new branch] gh/manuelcandales/93/orig -> origin/gh/manuelcandales/93/orig 2025-06-05T23:12:47.2603615Z * [new branch] gh/manuelcandales/94/base -> origin/gh/manuelcandales/94/base 2025-06-05T23:12:47.2604880Z * [new branch] gh/manuelcandales/94/head -> origin/gh/manuelcandales/94/head 2025-06-05T23:12:47.2605989Z * [new branch] gh/manuelcandales/94/orig -> origin/gh/manuelcandales/94/orig 2025-06-05T23:12:47.2607391Z * [new branch] gh/manuelcandales/95/base -> origin/gh/manuelcandales/95/base 2025-06-05T23:12:47.2608490Z * [new branch] gh/manuelcandales/95/head -> origin/gh/manuelcandales/95/head 2025-06-05T23:12:47.2609990Z * [new branch] gh/manuelcandales/95/orig -> origin/gh/manuelcandales/95/orig 2025-06-05T23:12:47.2611572Z * [new branch] gh/manuelcandales/96/base -> origin/gh/manuelcandales/96/base 2025-06-05T23:12:47.2612997Z * [new branch] gh/manuelcandales/96/head -> origin/gh/manuelcandales/96/head 2025-06-05T23:12:47.2614346Z * [new branch] gh/manuelcandales/96/orig -> origin/gh/manuelcandales/96/orig 2025-06-05T23:12:47.2616167Z * [new branch] gh/manuelcandales/97/base -> origin/gh/manuelcandales/97/base 2025-06-05T23:12:47.2617293Z * [new branch] gh/manuelcandales/97/head -> origin/gh/manuelcandales/97/head 2025-06-05T23:12:47.2618674Z * [new branch] gh/manuelcandales/97/orig -> origin/gh/manuelcandales/97/orig 2025-06-05T23:12:47.2620643Z * [new branch] gh/manuelcandales/98/base -> origin/gh/manuelcandales/98/base 2025-06-05T23:12:47.2621680Z * [new branch] gh/manuelcandales/98/head -> origin/gh/manuelcandales/98/head 2025-06-05T23:12:47.2623019Z * [new branch] gh/manuelcandales/98/orig -> origin/gh/manuelcandales/98/orig 2025-06-05T23:12:47.2624585Z * [new branch] gh/manuelcandales/99/base -> origin/gh/manuelcandales/99/base 2025-06-05T23:12:47.2625794Z * [new branch] gh/manuelcandales/99/head -> origin/gh/manuelcandales/99/head 2025-06-05T23:12:47.2627026Z * [new branch] gh/manuelcandales/99/orig -> origin/gh/manuelcandales/99/orig 2025-06-05T23:12:47.2628760Z * [new branch] gh/mcr229/20/next -> origin/gh/mcr229/20/next 2025-06-05T23:12:47.2629966Z * [new branch] gh/mcr229/20/orig -> origin/gh/mcr229/20/orig 2025-06-05T23:12:47.2631486Z * [new branch] gh/mcr229/21/next -> origin/gh/mcr229/21/next 2025-06-05T23:12:47.2632660Z * [new branch] gh/mcr229/21/orig -> origin/gh/mcr229/21/orig 2025-06-05T23:12:47.2634635Z * [new branch] gh/mcr229/22/next -> origin/gh/mcr229/22/next 2025-06-05T23:12:47.2635833Z * [new branch] gh/mcr229/22/orig -> origin/gh/mcr229/22/orig 2025-06-05T23:12:47.2637315Z * [new branch] gh/mcr229/23/next -> origin/gh/mcr229/23/next 2025-06-05T23:12:47.2638500Z * [new branch] gh/mcr229/23/orig -> origin/gh/mcr229/23/orig 2025-06-05T23:12:47.2639969Z * [new branch] gh/mcr229/24/head -> origin/gh/mcr229/24/head 2025-06-05T23:12:47.2641037Z * [new branch] gh/mcr229/24/next -> origin/gh/mcr229/24/next 2025-06-05T23:12:47.2642196Z * [new branch] gh/mcr229/24/orig -> origin/gh/mcr229/24/orig 2025-06-05T23:12:47.2643724Z * [new branch] gh/mcr229/25/head -> origin/gh/mcr229/25/head 2025-06-05T23:12:47.2644817Z * [new branch] gh/mcr229/25/next -> origin/gh/mcr229/25/next 2025-06-05T23:12:47.2646027Z * [new branch] gh/mcr229/25/orig -> origin/gh/mcr229/25/orig 2025-06-05T23:12:47.2647534Z * [new branch] gh/mcr229/26/head -> origin/gh/mcr229/26/head 2025-06-05T23:12:47.2648614Z * [new branch] gh/mcr229/26/next -> origin/gh/mcr229/26/next 2025-06-05T23:12:47.2649812Z * [new branch] gh/mcr229/26/orig -> origin/gh/mcr229/26/orig 2025-06-05T23:12:47.2651284Z * [new branch] gh/mcr229/27/head -> origin/gh/mcr229/27/head 2025-06-05T23:12:47.2652269Z * [new branch] gh/mcr229/27/next -> origin/gh/mcr229/27/next 2025-06-05T23:12:47.2653463Z * [new branch] gh/mcr229/27/orig -> origin/gh/mcr229/27/orig 2025-06-05T23:12:47.2655412Z * [new branch] gh/nathanaelsee/1/base -> origin/gh/nathanaelsee/1/base 2025-06-05T23:12:47.2656884Z * [new branch] gh/nathanaelsee/2/base -> origin/gh/nathanaelsee/2/base 2025-06-05T23:12:47.2658497Z * [new branch] gh/nathanaelsee/3/base -> origin/gh/nathanaelsee/3/base 2025-06-05T23:12:47.2660022Z * [new branch] gh/nathanaelsee/4/base -> origin/gh/nathanaelsee/4/base 2025-06-05T23:12:47.2661319Z * [new branch] gh/nathanaelsee/4/orig -> origin/gh/nathanaelsee/4/orig 2025-06-05T23:12:47.2662943Z * [new branch] gh/nathanaelsee/5/base -> origin/gh/nathanaelsee/5/base 2025-06-05T23:12:47.2664450Z * [new branch] gh/nathanaelsee/6/base -> origin/gh/nathanaelsee/6/base 2025-06-05T23:12:47.2666031Z * [new branch] gh/nathanaelsee/7/base -> origin/gh/nathanaelsee/7/base 2025-06-05T23:12:47.2667596Z * [new branch] gh/nathanaelsee/8/base -> origin/gh/nathanaelsee/8/base 2025-06-05T23:12:47.2669285Z * [new branch] gh/swolchok/1/base -> origin/gh/swolchok/1/base 2025-06-05T23:12:47.2670477Z * [new branch] gh/swolchok/1/head -> origin/gh/swolchok/1/head 2025-06-05T23:12:47.2671661Z * [new branch] gh/swolchok/1/orig -> origin/gh/swolchok/1/orig 2025-06-05T23:12:47.2673750Z * [new branch] gh/swolchok/10/base -> origin/gh/swolchok/10/base 2025-06-05T23:12:47.2674955Z * [new branch] gh/swolchok/10/head -> origin/gh/swolchok/10/head 2025-06-05T23:12:47.2676161Z * [new branch] gh/swolchok/10/orig -> origin/gh/swolchok/10/orig 2025-06-05T23:12:47.2677798Z * [new branch] gh/swolchok/100/base -> origin/gh/swolchok/100/base 2025-06-05T23:12:47.2678910Z * [new branch] gh/swolchok/100/head -> origin/gh/swolchok/100/head 2025-06-05T23:12:47.2680612Z * [new branch] gh/swolchok/100/orig -> origin/gh/swolchok/100/orig 2025-06-05T23:12:47.2682703Z * [new branch] gh/swolchok/101/base -> origin/gh/swolchok/101/base 2025-06-05T23:12:47.2683984Z * [new branch] gh/swolchok/101/head -> origin/gh/swolchok/101/head 2025-06-05T23:12:47.2685256Z * [new branch] gh/swolchok/101/orig -> origin/gh/swolchok/101/orig 2025-06-05T23:12:47.2686736Z * [new branch] gh/swolchok/102/base -> origin/gh/swolchok/102/base 2025-06-05T23:12:47.2687935Z * [new branch] gh/swolchok/102/head -> origin/gh/swolchok/102/head 2025-06-05T23:12:47.2689700Z * [new branch] gh/swolchok/102/orig -> origin/gh/swolchok/102/orig 2025-06-05T23:12:47.2691355Z * [new branch] gh/swolchok/103/base -> origin/gh/swolchok/103/base 2025-06-05T23:12:47.2694403Z * [new branch] gh/swolchok/103/head -> origin/gh/swolchok/103/head 2025-06-05T23:12:47.2695665Z * [new branch] gh/swolchok/103/orig -> origin/gh/swolchok/103/orig 2025-06-05T23:12:47.2697301Z * [new branch] gh/swolchok/104/base -> origin/gh/swolchok/104/base 2025-06-05T23:12:47.2698624Z * [new branch] gh/swolchok/104/head -> origin/gh/swolchok/104/head 2025-06-05T23:12:47.2699983Z * [new branch] gh/swolchok/104/orig -> origin/gh/swolchok/104/orig 2025-06-05T23:12:47.2701596Z * [new branch] gh/swolchok/105/base -> origin/gh/swolchok/105/base 2025-06-05T23:12:47.2702762Z * [new branch] gh/swolchok/105/head -> origin/gh/swolchok/105/head 2025-06-05T23:12:47.2703980Z * [new branch] gh/swolchok/105/orig -> origin/gh/swolchok/105/orig 2025-06-05T23:12:47.2705502Z * [new branch] gh/swolchok/106/base -> origin/gh/swolchok/106/base 2025-06-05T23:12:47.2706742Z * [new branch] gh/swolchok/106/head -> origin/gh/swolchok/106/head 2025-06-05T23:12:47.2707990Z * [new branch] gh/swolchok/106/orig -> origin/gh/swolchok/106/orig 2025-06-05T23:12:47.2709515Z * [new branch] gh/swolchok/107/base -> origin/gh/swolchok/107/base 2025-06-05T23:12:47.2710752Z * [new branch] gh/swolchok/107/head -> origin/gh/swolchok/107/head 2025-06-05T23:12:47.2711925Z * [new branch] gh/swolchok/107/orig -> origin/gh/swolchok/107/orig 2025-06-05T23:12:47.2713426Z * [new branch] gh/swolchok/108/base -> origin/gh/swolchok/108/base 2025-06-05T23:12:47.2714616Z * [new branch] gh/swolchok/108/head -> origin/gh/swolchok/108/head 2025-06-05T23:12:47.2715766Z * [new branch] gh/swolchok/108/orig -> origin/gh/swolchok/108/orig 2025-06-05T23:12:47.2717364Z * [new branch] gh/swolchok/109/base -> origin/gh/swolchok/109/base 2025-06-05T23:12:47.2718981Z * [new branch] gh/swolchok/11/base -> origin/gh/swolchok/11/base 2025-06-05T23:12:47.2720416Z * [new branch] gh/swolchok/11/head -> origin/gh/swolchok/11/head 2025-06-05T23:12:47.2721583Z * [new branch] gh/swolchok/11/orig -> origin/gh/swolchok/11/orig 2025-06-05T23:12:47.2723718Z * [new branch] gh/swolchok/110/base -> origin/gh/swolchok/110/base 2025-06-05T23:12:47.2725092Z * [new branch] gh/swolchok/110/head -> origin/gh/swolchok/110/head 2025-06-05T23:12:47.2726200Z * [new branch] gh/swolchok/110/orig -> origin/gh/swolchok/110/orig 2025-06-05T23:12:47.2727675Z * [new branch] gh/swolchok/111/base -> origin/gh/swolchok/111/base 2025-06-05T23:12:47.2729357Z * [new branch] gh/swolchok/112/base -> origin/gh/swolchok/112/base 2025-06-05T23:12:47.2731089Z * [new branch] gh/swolchok/113/base -> origin/gh/swolchok/113/base 2025-06-05T23:12:47.2733205Z * [new branch] gh/swolchok/114/base -> origin/gh/swolchok/114/base 2025-06-05T23:12:47.2734312Z * [new branch] gh/swolchok/114/head -> origin/gh/swolchok/114/head 2025-06-05T23:12:47.2735491Z * [new branch] gh/swolchok/114/orig -> origin/gh/swolchok/114/orig 2025-06-05T23:12:47.2737441Z * [new branch] gh/swolchok/115/base -> origin/gh/swolchok/115/base 2025-06-05T23:12:47.2738860Z * [new branch] gh/swolchok/116/base -> origin/gh/swolchok/116/base 2025-06-05T23:12:47.2740528Z * [new branch] gh/swolchok/117/base -> origin/gh/swolchok/117/base 2025-06-05T23:12:47.2741683Z * [new branch] gh/swolchok/117/head -> origin/gh/swolchok/117/head 2025-06-05T23:12:47.2742945Z * [new branch] gh/swolchok/117/orig -> origin/gh/swolchok/117/orig 2025-06-05T23:12:47.2744541Z * [new branch] gh/swolchok/118/base -> origin/gh/swolchok/118/base 2025-06-05T23:12:47.2746141Z * [new branch] gh/swolchok/119/base -> origin/gh/swolchok/119/base 2025-06-05T23:12:47.2747717Z * [new branch] gh/swolchok/12/base -> origin/gh/swolchok/12/base 2025-06-05T23:12:47.2748997Z * [new branch] gh/swolchok/12/head -> origin/gh/swolchok/12/head 2025-06-05T23:12:47.2750169Z * [new branch] gh/swolchok/12/orig -> origin/gh/swolchok/12/orig 2025-06-05T23:12:47.2751891Z * [new branch] gh/swolchok/120/base -> origin/gh/swolchok/120/base 2025-06-05T23:12:47.2753672Z * [new branch] gh/swolchok/121/base -> origin/gh/swolchok/121/base 2025-06-05T23:12:47.2754809Z * [new branch] gh/swolchok/121/head -> origin/gh/swolchok/121/head 2025-06-05T23:12:47.2755685Z * [new branch] gh/swolchok/121/orig -> origin/gh/swolchok/121/orig 2025-06-05T23:12:47.2757395Z * [new branch] gh/swolchok/122/base -> origin/gh/swolchok/122/base 2025-06-05T23:12:47.2758562Z * [new branch] gh/swolchok/122/head -> origin/gh/swolchok/122/head 2025-06-05T23:12:47.2759795Z * [new branch] gh/swolchok/122/orig -> origin/gh/swolchok/122/orig 2025-06-05T23:12:47.2761844Z * [new branch] gh/swolchok/123/base -> origin/gh/swolchok/123/base 2025-06-05T23:12:47.2764071Z * [new branch] gh/swolchok/124/base -> origin/gh/swolchok/124/base 2025-06-05T23:12:47.2765677Z * [new branch] gh/swolchok/125/base -> origin/gh/swolchok/125/base 2025-06-05T23:12:47.2767334Z * [new branch] gh/swolchok/126/base -> origin/gh/swolchok/126/base 2025-06-05T23:12:47.2768912Z * [new branch] gh/swolchok/126/head -> origin/gh/swolchok/126/head 2025-06-05T23:12:47.2770196Z * [new branch] gh/swolchok/126/orig -> origin/gh/swolchok/126/orig 2025-06-05T23:12:47.2772003Z * [new branch] gh/swolchok/127/base -> origin/gh/swolchok/127/base 2025-06-05T23:12:47.2773613Z * [new branch] gh/swolchok/128/base -> origin/gh/swolchok/128/base 2025-06-05T23:12:47.2775204Z * [new branch] gh/swolchok/129/base -> origin/gh/swolchok/129/base 2025-06-05T23:12:47.2777315Z * [new branch] gh/swolchok/13/base -> origin/gh/swolchok/13/base 2025-06-05T23:12:47.2778529Z * [new branch] gh/swolchok/13/head -> origin/gh/swolchok/13/head 2025-06-05T23:12:47.2779772Z * [new branch] gh/swolchok/13/orig -> origin/gh/swolchok/13/orig 2025-06-05T23:12:47.2781475Z * [new branch] gh/swolchok/130/base -> origin/gh/swolchok/130/base 2025-06-05T23:12:47.2783008Z * [new branch] gh/swolchok/131/base -> origin/gh/swolchok/131/base 2025-06-05T23:12:47.2784559Z * [new branch] gh/swolchok/132/base -> origin/gh/swolchok/132/base 2025-06-05T23:12:47.2786264Z * [new branch] gh/swolchok/133/base -> origin/gh/swolchok/133/base 2025-06-05T23:12:47.2787840Z * [new branch] gh/swolchok/134/next -> origin/gh/swolchok/134/next 2025-06-05T23:12:47.2789063Z * [new branch] gh/swolchok/134/orig -> origin/gh/swolchok/134/orig 2025-06-05T23:12:47.2790667Z * [new branch] gh/swolchok/135/next -> origin/gh/swolchok/135/next 2025-06-05T23:12:47.2792217Z * [new branch] gh/swolchok/135/orig -> origin/gh/swolchok/135/orig 2025-06-05T23:12:47.2793689Z * [new branch] gh/swolchok/136/next -> origin/gh/swolchok/136/next 2025-06-05T23:12:47.2794869Z * [new branch] gh/swolchok/136/orig -> origin/gh/swolchok/136/orig 2025-06-05T23:12:47.2796393Z * [new branch] gh/swolchok/137/next -> origin/gh/swolchok/137/next 2025-06-05T23:12:47.2797583Z * [new branch] gh/swolchok/137/orig -> origin/gh/swolchok/137/orig 2025-06-05T23:12:47.2799192Z * [new branch] gh/swolchok/138/next -> origin/gh/swolchok/138/next 2025-06-05T23:12:47.2800389Z * [new branch] gh/swolchok/138/orig -> origin/gh/swolchok/138/orig 2025-06-05T23:12:47.2802605Z * [new branch] gh/swolchok/139/next -> origin/gh/swolchok/139/next 2025-06-05T23:12:47.2803914Z * [new branch] gh/swolchok/139/orig -> origin/gh/swolchok/139/orig 2025-06-05T23:12:47.2805402Z * [new branch] gh/swolchok/14/base -> origin/gh/swolchok/14/base 2025-06-05T23:12:47.2806645Z * [new branch] gh/swolchok/14/head -> origin/gh/swolchok/14/head 2025-06-05T23:12:47.2807931Z * [new branch] gh/swolchok/14/orig -> origin/gh/swolchok/14/orig 2025-06-05T23:12:47.2809402Z * [new branch] gh/swolchok/140/head -> origin/gh/swolchok/140/head 2025-06-05T23:12:47.2810343Z * [new branch] gh/swolchok/140/next -> origin/gh/swolchok/140/next 2025-06-05T23:12:47.2811647Z * [new branch] gh/swolchok/140/orig -> origin/gh/swolchok/140/orig 2025-06-05T23:12:47.2813178Z * [new branch] gh/swolchok/141/next -> origin/gh/swolchok/141/next 2025-06-05T23:12:47.2814350Z * [new branch] gh/swolchok/141/orig -> origin/gh/swolchok/141/orig 2025-06-05T23:12:47.2816325Z * [new branch] gh/swolchok/142/next -> origin/gh/swolchok/142/next 2025-06-05T23:12:47.2817538Z * [new branch] gh/swolchok/142/orig -> origin/gh/swolchok/142/orig 2025-06-05T23:12:47.2819080Z * [new branch] gh/swolchok/143/next -> origin/gh/swolchok/143/next 2025-06-05T23:12:47.2820278Z * [new branch] gh/swolchok/143/orig -> origin/gh/swolchok/143/orig 2025-06-05T23:12:47.2821877Z * [new branch] gh/swolchok/144/next -> origin/gh/swolchok/144/next 2025-06-05T23:12:47.2822944Z * [new branch] gh/swolchok/144/orig -> origin/gh/swolchok/144/orig 2025-06-05T23:12:47.2824595Z * [new branch] gh/swolchok/145/next -> origin/gh/swolchok/145/next 2025-06-05T23:12:47.2825780Z * [new branch] gh/swolchok/145/orig -> origin/gh/swolchok/145/orig 2025-06-05T23:12:47.2827238Z * [new branch] gh/swolchok/146/next -> origin/gh/swolchok/146/next 2025-06-05T23:12:47.2828418Z * [new branch] gh/swolchok/146/orig -> origin/gh/swolchok/146/orig 2025-06-05T23:12:47.2829933Z * [new branch] gh/swolchok/147/next -> origin/gh/swolchok/147/next 2025-06-05T23:12:47.2831106Z * [new branch] gh/swolchok/147/orig -> origin/gh/swolchok/147/orig 2025-06-05T23:12:47.2832660Z * [new branch] gh/swolchok/148/next -> origin/gh/swolchok/148/next 2025-06-05T23:12:47.2833667Z * [new branch] gh/swolchok/148/orig -> origin/gh/swolchok/148/orig 2025-06-05T23:12:47.2835466Z * [new branch] gh/swolchok/149/base -> origin/gh/swolchok/149/base 2025-06-05T23:12:47.2837044Z * [new branch] gh/swolchok/15/base -> origin/gh/swolchok/15/base 2025-06-05T23:12:47.2838253Z * [new branch] gh/swolchok/15/head -> origin/gh/swolchok/15/head 2025-06-05T23:12:47.2839446Z * [new branch] gh/swolchok/15/orig -> origin/gh/swolchok/15/orig 2025-06-05T23:12:47.2840975Z * [new branch] gh/swolchok/150/next -> origin/gh/swolchok/150/next 2025-06-05T23:12:47.2842149Z * [new branch] gh/swolchok/150/orig -> origin/gh/swolchok/150/orig 2025-06-05T23:12:47.2843679Z * [new branch] gh/swolchok/151/next -> origin/gh/swolchok/151/next 2025-06-05T23:12:47.2844938Z * [new branch] gh/swolchok/151/orig -> origin/gh/swolchok/151/orig 2025-06-05T23:12:47.2846476Z * [new branch] gh/swolchok/152/next -> origin/gh/swolchok/152/next 2025-06-05T23:12:47.2847735Z * [new branch] gh/swolchok/152/orig -> origin/gh/swolchok/152/orig 2025-06-05T23:12:47.2849196Z * [new branch] gh/swolchok/153/next -> origin/gh/swolchok/153/next 2025-06-05T23:12:47.2850227Z * [new branch] gh/swolchok/153/orig -> origin/gh/swolchok/153/orig 2025-06-05T23:12:47.2851779Z * [new branch] gh/swolchok/154/next -> origin/gh/swolchok/154/next 2025-06-05T23:12:47.2853040Z * [new branch] gh/swolchok/154/orig -> origin/gh/swolchok/154/orig 2025-06-05T23:12:47.2854690Z * [new branch] gh/swolchok/155/next -> origin/gh/swolchok/155/next 2025-06-05T23:12:47.2855738Z * [new branch] gh/swolchok/155/orig -> origin/gh/swolchok/155/orig 2025-06-05T23:12:47.2857342Z * [new branch] gh/swolchok/156/next -> origin/gh/swolchok/156/next 2025-06-05T23:12:47.2858322Z * [new branch] gh/swolchok/156/orig -> origin/gh/swolchok/156/orig 2025-06-05T23:12:47.2859796Z * [new branch] gh/swolchok/157/next -> origin/gh/swolchok/157/next 2025-06-05T23:12:47.2861303Z * [new branch] gh/swolchok/157/orig -> origin/gh/swolchok/157/orig 2025-06-05T23:12:47.2862912Z * [new branch] gh/swolchok/158/next -> origin/gh/swolchok/158/next 2025-06-05T23:12:47.2864335Z * [new branch] gh/swolchok/158/orig -> origin/gh/swolchok/158/orig 2025-06-05T23:12:47.2865668Z * [new branch] gh/swolchok/159/next -> origin/gh/swolchok/159/next 2025-06-05T23:12:47.2866641Z * [new branch] gh/swolchok/159/orig -> origin/gh/swolchok/159/orig 2025-06-05T23:12:47.2868185Z * [new branch] gh/swolchok/16/orig -> origin/gh/swolchok/16/orig 2025-06-05T23:12:47.2869397Z * [new branch] gh/swolchok/160/next -> origin/gh/swolchok/160/next 2025-06-05T23:12:47.2870269Z * [new branch] gh/swolchok/160/orig -> origin/gh/swolchok/160/orig 2025-06-05T23:12:47.2871631Z * [new branch] gh/swolchok/161/next -> origin/gh/swolchok/161/next 2025-06-05T23:12:47.2872574Z * [new branch] gh/swolchok/161/orig -> origin/gh/swolchok/161/orig 2025-06-05T23:12:47.2873972Z * [new branch] gh/swolchok/162/next -> origin/gh/swolchok/162/next 2025-06-05T23:12:47.2874934Z * [new branch] gh/swolchok/162/orig -> origin/gh/swolchok/162/orig 2025-06-05T23:12:47.2876312Z * [new branch] gh/swolchok/163/next -> origin/gh/swolchok/163/next 2025-06-05T23:12:47.2877225Z * [new branch] gh/swolchok/163/orig -> origin/gh/swolchok/163/orig 2025-06-05T23:12:47.2878550Z * [new branch] gh/swolchok/164/next -> origin/gh/swolchok/164/next 2025-06-05T23:12:47.2879408Z * [new branch] gh/swolchok/164/orig -> origin/gh/swolchok/164/orig 2025-06-05T23:12:47.2880873Z * [new branch] gh/swolchok/165/next -> origin/gh/swolchok/165/next 2025-06-05T23:12:47.2881757Z * [new branch] gh/swolchok/165/orig -> origin/gh/swolchok/165/orig 2025-06-05T23:12:47.2883041Z * [new branch] gh/swolchok/166/next -> origin/gh/swolchok/166/next 2025-06-05T23:12:47.2883977Z * [new branch] gh/swolchok/166/orig -> origin/gh/swolchok/166/orig 2025-06-05T23:12:47.2885409Z * [new branch] gh/swolchok/167/next -> origin/gh/swolchok/167/next 2025-06-05T23:12:47.2886218Z * [new branch] gh/swolchok/167/orig -> origin/gh/swolchok/167/orig 2025-06-05T23:12:47.2887605Z * [new branch] gh/swolchok/168/next -> origin/gh/swolchok/168/next 2025-06-05T23:12:47.2888456Z * [new branch] gh/swolchok/168/orig -> origin/gh/swolchok/168/orig 2025-06-05T23:12:47.2889821Z * [new branch] gh/swolchok/169/next -> origin/gh/swolchok/169/next 2025-06-05T23:12:47.2890621Z * [new branch] gh/swolchok/169/orig -> origin/gh/swolchok/169/orig 2025-06-05T23:12:47.2892343Z * [new branch] gh/swolchok/17/orig -> origin/gh/swolchok/17/orig 2025-06-05T23:12:47.2893653Z * [new branch] gh/swolchok/170/next -> origin/gh/swolchok/170/next 2025-06-05T23:12:47.2894548Z * [new branch] gh/swolchok/170/orig -> origin/gh/swolchok/170/orig 2025-06-05T23:12:47.2895866Z * [new branch] gh/swolchok/171/next -> origin/gh/swolchok/171/next 2025-06-05T23:12:47.2896764Z * [new branch] gh/swolchok/171/orig -> origin/gh/swolchok/171/orig 2025-06-05T23:12:47.2898133Z * [new branch] gh/swolchok/172/next -> origin/gh/swolchok/172/next 2025-06-05T23:12:47.2899064Z * [new branch] gh/swolchok/172/orig -> origin/gh/swolchok/172/orig 2025-06-05T23:12:47.2900372Z * [new branch] gh/swolchok/173/head -> origin/gh/swolchok/173/head 2025-06-05T23:12:47.2901230Z * [new branch] gh/swolchok/173/next -> origin/gh/swolchok/173/next 2025-06-05T23:12:47.2902086Z * [new branch] gh/swolchok/173/orig -> origin/gh/swolchok/173/orig 2025-06-05T23:12:47.2903944Z * [new branch] gh/swolchok/174/next -> origin/gh/swolchok/174/next 2025-06-05T23:12:47.2904758Z * [new branch] gh/swolchok/174/orig -> origin/gh/swolchok/174/orig 2025-06-05T23:12:47.2906204Z * [new branch] gh/swolchok/175/next -> origin/gh/swolchok/175/next 2025-06-05T23:12:47.2907103Z * [new branch] gh/swolchok/175/orig -> origin/gh/swolchok/175/orig 2025-06-05T23:12:47.2908456Z * [new branch] gh/swolchok/176/next -> origin/gh/swolchok/176/next 2025-06-05T23:12:47.2909234Z * [new branch] gh/swolchok/176/orig -> origin/gh/swolchok/176/orig 2025-06-05T23:12:47.2910546Z * [new branch] gh/swolchok/177/next -> origin/gh/swolchok/177/next 2025-06-05T23:12:47.2911447Z * [new branch] gh/swolchok/177/orig -> origin/gh/swolchok/177/orig 2025-06-05T23:12:47.2912722Z * [new branch] gh/swolchok/178/next -> origin/gh/swolchok/178/next 2025-06-05T23:12:47.2913671Z * [new branch] gh/swolchok/178/orig -> origin/gh/swolchok/178/orig 2025-06-05T23:12:47.2915101Z * [new branch] gh/swolchok/179/head -> origin/gh/swolchok/179/head 2025-06-05T23:12:47.2915858Z * [new branch] gh/swolchok/179/next -> origin/gh/swolchok/179/next 2025-06-05T23:12:47.2916837Z * [new branch] gh/swolchok/179/orig -> origin/gh/swolchok/179/orig 2025-06-05T23:12:47.2918231Z * [new branch] gh/swolchok/18/orig -> origin/gh/swolchok/18/orig 2025-06-05T23:12:47.2919665Z * [new branch] gh/swolchok/180/next -> origin/gh/swolchok/180/next 2025-06-05T23:12:47.2920556Z * [new branch] gh/swolchok/180/orig -> origin/gh/swolchok/180/orig 2025-06-05T23:12:47.2921862Z * [new branch] gh/swolchok/181/next -> origin/gh/swolchok/181/next 2025-06-05T23:12:47.2922689Z * [new branch] gh/swolchok/181/orig -> origin/gh/swolchok/181/orig 2025-06-05T23:12:47.2924160Z * [new branch] gh/swolchok/182/next -> origin/gh/swolchok/182/next 2025-06-05T23:12:47.2925127Z * [new branch] gh/swolchok/182/orig -> origin/gh/swolchok/182/orig 2025-06-05T23:12:47.2926918Z * [new branch] gh/swolchok/183/next -> origin/gh/swolchok/183/next 2025-06-05T23:12:47.2927765Z * [new branch] gh/swolchok/183/orig -> origin/gh/swolchok/183/orig 2025-06-05T23:12:47.2929157Z * [new branch] gh/swolchok/184/next -> origin/gh/swolchok/184/next 2025-06-05T23:12:47.2929973Z * [new branch] gh/swolchok/184/orig -> origin/gh/swolchok/184/orig 2025-06-05T23:12:47.2931349Z * [new branch] gh/swolchok/185/next -> origin/gh/swolchok/185/next 2025-06-05T23:12:47.2932382Z * [new branch] gh/swolchok/185/orig -> origin/gh/swolchok/185/orig 2025-06-05T23:12:47.2933748Z * [new branch] gh/swolchok/186/next -> origin/gh/swolchok/186/next 2025-06-05T23:12:47.2934634Z * [new branch] gh/swolchok/186/orig -> origin/gh/swolchok/186/orig 2025-06-05T23:12:47.2936048Z * [new branch] gh/swolchok/187/next -> origin/gh/swolchok/187/next 2025-06-05T23:12:47.2936944Z * [new branch] gh/swolchok/187/orig -> origin/gh/swolchok/187/orig 2025-06-05T23:12:47.2938547Z * [new branch] gh/swolchok/188/next -> origin/gh/swolchok/188/next 2025-06-05T23:12:47.2939478Z * [new branch] gh/swolchok/188/orig -> origin/gh/swolchok/188/orig 2025-06-05T23:12:47.2940893Z * [new branch] gh/swolchok/189/next -> origin/gh/swolchok/189/next 2025-06-05T23:12:47.2941742Z * [new branch] gh/swolchok/189/orig -> origin/gh/swolchok/189/orig 2025-06-05T23:12:47.2943602Z * [new branch] gh/swolchok/19/orig -> origin/gh/swolchok/19/orig 2025-06-05T23:12:47.2944776Z * [new branch] gh/swolchok/190/next -> origin/gh/swolchok/190/next 2025-06-05T23:12:47.2945620Z * [new branch] gh/swolchok/190/orig -> origin/gh/swolchok/190/orig 2025-06-05T23:12:47.2947057Z * [new branch] gh/swolchok/191/next -> origin/gh/swolchok/191/next 2025-06-05T23:12:47.2948010Z * [new branch] gh/swolchok/191/orig -> origin/gh/swolchok/191/orig 2025-06-05T23:12:47.2949386Z * [new branch] gh/swolchok/192/next -> origin/gh/swolchok/192/next 2025-06-05T23:12:47.2950197Z * [new branch] gh/swolchok/192/orig -> origin/gh/swolchok/192/orig 2025-06-05T23:12:47.2951576Z * [new branch] gh/swolchok/193/next -> origin/gh/swolchok/193/next 2025-06-05T23:12:47.2952447Z * [new branch] gh/swolchok/193/orig -> origin/gh/swolchok/193/orig 2025-06-05T23:12:47.2953799Z * [new branch] gh/swolchok/194/next -> origin/gh/swolchok/194/next 2025-06-05T23:12:47.2954706Z * [new branch] gh/swolchok/194/orig -> origin/gh/swolchok/194/orig 2025-06-05T23:12:47.2956371Z * [new branch] gh/swolchok/195/next -> origin/gh/swolchok/195/next 2025-06-05T23:12:47.2957394Z * [new branch] gh/swolchok/195/orig -> origin/gh/swolchok/195/orig 2025-06-05T23:12:47.2959089Z * [new branch] gh/swolchok/196/next -> origin/gh/swolchok/196/next 2025-06-05T23:12:47.2960064Z * [new branch] gh/swolchok/196/orig -> origin/gh/swolchok/196/orig 2025-06-05T23:12:47.2962171Z * [new branch] gh/swolchok/197/next -> origin/gh/swolchok/197/next 2025-06-05T23:12:47.2963335Z * [new branch] gh/swolchok/197/orig -> origin/gh/swolchok/197/orig 2025-06-05T23:12:47.2965211Z * [new branch] gh/swolchok/198/next -> origin/gh/swolchok/198/next 2025-06-05T23:12:47.2966461Z * [new branch] gh/swolchok/198/orig -> origin/gh/swolchok/198/orig 2025-06-05T23:12:47.2968060Z * [new branch] gh/swolchok/199/next -> origin/gh/swolchok/199/next 2025-06-05T23:12:47.2969231Z * [new branch] gh/swolchok/199/orig -> origin/gh/swolchok/199/orig 2025-06-05T23:12:47.2970618Z * [new branch] gh/swolchok/2/base -> origin/gh/swolchok/2/base 2025-06-05T23:12:47.2971783Z * [new branch] gh/swolchok/2/head -> origin/gh/swolchok/2/head 2025-06-05T23:12:47.2972983Z * [new branch] gh/swolchok/2/orig -> origin/gh/swolchok/2/orig 2025-06-05T23:12:47.2974640Z * [new branch] gh/swolchok/20/base -> origin/gh/swolchok/20/base 2025-06-05T23:12:47.2975955Z * [new branch] gh/swolchok/20/orig -> origin/gh/swolchok/20/orig 2025-06-05T23:12:47.2977658Z * [new branch] gh/swolchok/200/base -> origin/gh/swolchok/200/base 2025-06-05T23:12:47.2978735Z * [new branch] gh/swolchok/200/head -> origin/gh/swolchok/200/head 2025-06-05T23:12:47.2980437Z * [new branch] gh/swolchok/201/base -> origin/gh/swolchok/201/base 2025-06-05T23:12:47.2981985Z * [new branch] gh/swolchok/202/next -> origin/gh/swolchok/202/next 2025-06-05T23:12:47.2983157Z * [new branch] gh/swolchok/202/orig -> origin/gh/swolchok/202/orig 2025-06-05T23:12:47.2984678Z * [new branch] gh/swolchok/203/next -> origin/gh/swolchok/203/next 2025-06-05T23:12:47.2985889Z * [new branch] gh/swolchok/203/orig -> origin/gh/swolchok/203/orig 2025-06-05T23:12:47.2987439Z * [new branch] gh/swolchok/204/next -> origin/gh/swolchok/204/next 2025-06-05T23:12:47.3010598Z * [new branch] gh/swolchok/204/orig -> origin/gh/swolchok/204/orig 2025-06-05T23:12:47.3011329Z * [new branch] gh/swolchok/205/next -> origin/gh/swolchok/205/next 2025-06-05T23:12:47.3011994Z * [new branch] gh/swolchok/205/orig -> origin/gh/swolchok/205/orig 2025-06-05T23:12:47.3012520Z * [new branch] gh/swolchok/206/next -> origin/gh/swolchok/206/next 2025-06-05T23:12:47.3013036Z * [new branch] gh/swolchok/206/orig -> origin/gh/swolchok/206/orig 2025-06-05T23:12:47.3013547Z * [new branch] gh/swolchok/207/next -> origin/gh/swolchok/207/next 2025-06-05T23:12:47.3014127Z * [new branch] gh/swolchok/207/orig -> origin/gh/swolchok/207/orig 2025-06-05T23:12:47.3014700Z * [new branch] gh/swolchok/208/next -> origin/gh/swolchok/208/next 2025-06-05T23:12:47.3015213Z * [new branch] gh/swolchok/208/orig -> origin/gh/swolchok/208/orig 2025-06-05T23:12:47.3015732Z * [new branch] gh/swolchok/209/next -> origin/gh/swolchok/209/next 2025-06-05T23:12:47.3016244Z * [new branch] gh/swolchok/209/orig -> origin/gh/swolchok/209/orig 2025-06-05T23:12:47.3016760Z * [new branch] gh/swolchok/21/base -> origin/gh/swolchok/21/base 2025-06-05T23:12:47.3017271Z * [new branch] gh/swolchok/21/orig -> origin/gh/swolchok/21/orig 2025-06-05T23:12:47.3017768Z * [new branch] gh/swolchok/210/next -> origin/gh/swolchok/210/next 2025-06-05T23:12:47.3018285Z * [new branch] gh/swolchok/210/orig -> origin/gh/swolchok/210/orig 2025-06-05T23:12:47.3018809Z * [new branch] gh/swolchok/211/next -> origin/gh/swolchok/211/next 2025-06-05T23:12:47.3019314Z * [new branch] gh/swolchok/211/orig -> origin/gh/swolchok/211/orig 2025-06-05T23:12:47.3019819Z * [new branch] gh/swolchok/212/next -> origin/gh/swolchok/212/next 2025-06-05T23:12:47.3020332Z * [new branch] gh/swolchok/212/orig -> origin/gh/swolchok/212/orig 2025-06-05T23:12:47.3020884Z * [new branch] gh/swolchok/213/next -> origin/gh/swolchok/213/next 2025-06-05T23:12:47.3021389Z * [new branch] gh/swolchok/213/orig -> origin/gh/swolchok/213/orig 2025-06-05T23:12:47.3021898Z * [new branch] gh/swolchok/214/head -> origin/gh/swolchok/214/head 2025-06-05T23:12:47.3022397Z * [new branch] gh/swolchok/214/next -> origin/gh/swolchok/214/next 2025-06-05T23:12:47.3022901Z * [new branch] gh/swolchok/214/orig -> origin/gh/swolchok/214/orig 2025-06-05T23:12:47.3023852Z * [new branch] gh/swolchok/215/next -> origin/gh/swolchok/215/next 2025-06-05T23:12:47.3025158Z * [new branch] gh/swolchok/215/orig -> origin/gh/swolchok/215/orig 2025-06-05T23:12:47.3026962Z * [new branch] gh/swolchok/216/base -> origin/gh/swolchok/216/base 2025-06-05T23:12:47.3028562Z * [new branch] gh/swolchok/217/base -> origin/gh/swolchok/217/base 2025-06-05T23:12:47.3030445Z * [new branch] gh/swolchok/218/base -> origin/gh/swolchok/218/base 2025-06-05T23:12:47.3031533Z * [new branch] gh/swolchok/218/head -> origin/gh/swolchok/218/head 2025-06-05T23:12:47.3033410Z * [new branch] gh/swolchok/219/base -> origin/gh/swolchok/219/base 2025-06-05T23:12:47.3035313Z * [new branch] gh/swolchok/22/base -> origin/gh/swolchok/22/base 2025-06-05T23:12:47.3036505Z * [new branch] gh/swolchok/22/orig -> origin/gh/swolchok/22/orig 2025-06-05T23:12:47.3037981Z * [new branch] gh/swolchok/220/base -> origin/gh/swolchok/220/base 2025-06-05T23:12:47.3039010Z * [new branch] gh/swolchok/220/head -> origin/gh/swolchok/220/head 2025-06-05T23:12:47.3040500Z * [new branch] gh/swolchok/221/base -> origin/gh/swolchok/221/base 2025-06-05T23:12:47.3041487Z * [new branch] gh/swolchok/221/head -> origin/gh/swolchok/221/head 2025-06-05T23:12:47.3043181Z * [new branch] gh/swolchok/222/base -> origin/gh/swolchok/222/base 2025-06-05T23:12:47.3044996Z * [new branch] gh/swolchok/223/next -> origin/gh/swolchok/223/next 2025-06-05T23:12:47.3046052Z * [new branch] gh/swolchok/223/orig -> origin/gh/swolchok/223/orig 2025-06-05T23:12:47.3048159Z * [new branch] gh/swolchok/224/base -> origin/gh/swolchok/224/base 2025-06-05T23:12:47.3049344Z * [new branch] gh/swolchok/224/head -> origin/gh/swolchok/224/head 2025-06-05T23:12:47.3050878Z * [new branch] gh/swolchok/225/next -> origin/gh/swolchok/225/next 2025-06-05T23:12:47.3052051Z * [new branch] gh/swolchok/225/orig -> origin/gh/swolchok/225/orig 2025-06-05T23:12:47.3053420Z * [new branch] gh/swolchok/226/base -> origin/gh/swolchok/226/base 2025-06-05T23:12:47.3054472Z * [new branch] gh/swolchok/226/head -> origin/gh/swolchok/226/head 2025-06-05T23:12:47.3055961Z * [new branch] gh/swolchok/227/base -> origin/gh/swolchok/227/base 2025-06-05T23:12:47.3056945Z * [new branch] gh/swolchok/227/head -> origin/gh/swolchok/227/head 2025-06-05T23:12:47.3058922Z * [new branch] gh/swolchok/228/base -> origin/gh/swolchok/228/base 2025-06-05T23:12:47.3060390Z * [new branch] gh/swolchok/229/head -> origin/gh/swolchok/229/head 2025-06-05T23:12:47.3061369Z * [new branch] gh/swolchok/229/next -> origin/gh/swolchok/229/next 2025-06-05T23:12:47.3062615Z * [new branch] gh/swolchok/229/orig -> origin/gh/swolchok/229/orig 2025-06-05T23:12:47.3064266Z * [new branch] gh/swolchok/23/base -> origin/gh/swolchok/23/base 2025-06-05T23:12:47.3065564Z * [new branch] gh/swolchok/23/orig -> origin/gh/swolchok/23/orig 2025-06-05T23:12:47.3070339Z * [new branch] gh/swolchok/230/head -> origin/gh/swolchok/230/head 2025-06-05T23:12:47.3071848Z * [new branch] gh/swolchok/230/next -> origin/gh/swolchok/230/next 2025-06-05T23:12:47.3072384Z * [new branch] gh/swolchok/230/orig -> origin/gh/swolchok/230/orig 2025-06-05T23:12:47.3072911Z * [new branch] gh/swolchok/231/head -> origin/gh/swolchok/231/head 2025-06-05T23:12:47.3073444Z * [new branch] gh/swolchok/231/next -> origin/gh/swolchok/231/next 2025-06-05T23:12:47.3074049Z * [new branch] gh/swolchok/231/orig -> origin/gh/swolchok/231/orig 2025-06-05T23:12:47.3075756Z * [new branch] gh/swolchok/232/next -> origin/gh/swolchok/232/next 2025-06-05T23:12:47.3076930Z * [new branch] gh/swolchok/232/orig -> origin/gh/swolchok/232/orig 2025-06-05T23:12:47.3078432Z * [new branch] gh/swolchok/233/next -> origin/gh/swolchok/233/next 2025-06-05T23:12:47.3079654Z * [new branch] gh/swolchok/233/orig -> origin/gh/swolchok/233/orig 2025-06-05T23:12:47.3081167Z * [new branch] gh/swolchok/234/next -> origin/gh/swolchok/234/next 2025-06-05T23:12:47.3082321Z * [new branch] gh/swolchok/234/orig -> origin/gh/swolchok/234/orig 2025-06-05T23:12:47.3084401Z * [new branch] gh/swolchok/235/next -> origin/gh/swolchok/235/next 2025-06-05T23:12:47.3085654Z * [new branch] gh/swolchok/235/orig -> origin/gh/swolchok/235/orig 2025-06-05T23:12:47.3087140Z * [new branch] gh/swolchok/236/next -> origin/gh/swolchok/236/next 2025-06-05T23:12:47.3088308Z * [new branch] gh/swolchok/236/orig -> origin/gh/swolchok/236/orig 2025-06-05T23:12:47.3089836Z * [new branch] gh/swolchok/237/next -> origin/gh/swolchok/237/next 2025-06-05T23:12:47.3091270Z * [new branch] gh/swolchok/237/orig -> origin/gh/swolchok/237/orig 2025-06-05T23:12:47.3093022Z * [new branch] gh/swolchok/238/head -> origin/gh/swolchok/238/head 2025-06-05T23:12:47.3093959Z * [new branch] gh/swolchok/238/next -> origin/gh/swolchok/238/next 2025-06-05T23:12:47.3095265Z * [new branch] gh/swolchok/238/orig -> origin/gh/swolchok/238/orig 2025-06-05T23:12:47.3096876Z * [new branch] gh/swolchok/239/head -> origin/gh/swolchok/239/head 2025-06-05T23:12:47.3097714Z * [new branch] gh/swolchok/239/next -> origin/gh/swolchok/239/next 2025-06-05T23:12:47.3099067Z * [new branch] gh/swolchok/239/orig -> origin/gh/swolchok/239/orig 2025-06-05T23:12:47.3100678Z * [new branch] gh/swolchok/24/base -> origin/gh/swolchok/24/base 2025-06-05T23:12:47.3101747Z * [new branch] gh/swolchok/24/orig -> origin/gh/swolchok/24/orig 2025-06-05T23:12:47.3103389Z * [new branch] gh/swolchok/240/head -> origin/gh/swolchok/240/head 2025-06-05T23:12:47.3104285Z * [new branch] gh/swolchok/240/next -> origin/gh/swolchok/240/next 2025-06-05T23:12:47.3105585Z * [new branch] gh/swolchok/240/orig -> origin/gh/swolchok/240/orig 2025-06-05T23:12:47.3107518Z * [new branch] gh/swolchok/241/next -> origin/gh/swolchok/241/next 2025-06-05T23:12:47.3108713Z * [new branch] gh/swolchok/241/orig -> origin/gh/swolchok/241/orig 2025-06-05T23:12:47.3110331Z * [new branch] gh/swolchok/242/next -> origin/gh/swolchok/242/next 2025-06-05T23:12:47.3111555Z * [new branch] gh/swolchok/242/orig -> origin/gh/swolchok/242/orig 2025-06-05T23:12:47.3113039Z * [new branch] gh/swolchok/243/next -> origin/gh/swolchok/243/next 2025-06-05T23:12:47.3114215Z * [new branch] gh/swolchok/243/orig -> origin/gh/swolchok/243/orig 2025-06-05T23:12:47.3115747Z * [new branch] gh/swolchok/244/head -> origin/gh/swolchok/244/head 2025-06-05T23:12:47.3116739Z * [new branch] gh/swolchok/244/next -> origin/gh/swolchok/244/next 2025-06-05T23:12:47.3118209Z * [new branch] gh/swolchok/245/next -> origin/gh/swolchok/245/next 2025-06-05T23:12:47.3119370Z * [new branch] gh/swolchok/245/orig -> origin/gh/swolchok/245/orig 2025-06-05T23:12:47.3121010Z * [new branch] gh/swolchok/246/next -> origin/gh/swolchok/246/next 2025-06-05T23:12:47.3122277Z * [new branch] gh/swolchok/246/orig -> origin/gh/swolchok/246/orig 2025-06-05T23:12:47.3123748Z * [new branch] gh/swolchok/247/base -> origin/gh/swolchok/247/base 2025-06-05T23:12:47.3124997Z * [new branch] gh/swolchok/247/head -> origin/gh/swolchok/247/head 2025-06-05T23:12:47.3126223Z * [new branch] gh/swolchok/247/orig -> origin/gh/swolchok/247/orig 2025-06-05T23:12:47.3127774Z * [new branch] gh/swolchok/248/base -> origin/gh/swolchok/248/base 2025-06-05T23:12:47.3129264Z * [new branch] gh/swolchok/249/next -> origin/gh/swolchok/249/next 2025-06-05T23:12:47.3130429Z * [new branch] gh/swolchok/249/orig -> origin/gh/swolchok/249/orig 2025-06-05T23:12:47.3131963Z * [new branch] gh/swolchok/25/base -> origin/gh/swolchok/25/base 2025-06-05T23:12:47.3133071Z * [new branch] gh/swolchok/25/orig -> origin/gh/swolchok/25/orig 2025-06-05T23:12:47.3134645Z * [new branch] gh/swolchok/250/next -> origin/gh/swolchok/250/next 2025-06-05T23:12:47.3136269Z * [new branch] gh/swolchok/250/orig -> origin/gh/swolchok/250/orig 2025-06-05T23:12:47.3137670Z * [new branch] gh/swolchok/251/next -> origin/gh/swolchok/251/next 2025-06-05T23:12:47.3139019Z * [new branch] gh/swolchok/251/orig -> origin/gh/swolchok/251/orig 2025-06-05T23:12:47.3140662Z * [new branch] gh/swolchok/252/base -> origin/gh/swolchok/252/base 2025-06-05T23:12:47.3141816Z * [new branch] gh/swolchok/252/head -> origin/gh/swolchok/252/head 2025-06-05T23:12:47.3142981Z * [new branch] gh/swolchok/252/orig -> origin/gh/swolchok/252/orig 2025-06-05T23:12:47.3144536Z * [new branch] gh/swolchok/253/head -> origin/gh/swolchok/253/head 2025-06-05T23:12:47.3145536Z * [new branch] gh/swolchok/253/next -> origin/gh/swolchok/253/next 2025-06-05T23:12:47.3146757Z * [new branch] gh/swolchok/253/orig -> origin/gh/swolchok/253/orig 2025-06-05T23:12:47.3148281Z * [new branch] gh/swolchok/254/head -> origin/gh/swolchok/254/head 2025-06-05T23:12:47.3149232Z * [new branch] gh/swolchok/254/next -> origin/gh/swolchok/254/next 2025-06-05T23:12:47.3150593Z * [new branch] gh/swolchok/254/orig -> origin/gh/swolchok/254/orig 2025-06-05T23:12:47.3152153Z * [new branch] gh/swolchok/255/next -> origin/gh/swolchok/255/next 2025-06-05T23:12:47.3153329Z * [new branch] gh/swolchok/255/orig -> origin/gh/swolchok/255/orig 2025-06-05T23:12:47.3154830Z * [new branch] gh/swolchok/256/next -> origin/gh/swolchok/256/next 2025-06-05T23:12:47.3155908Z * [new branch] gh/swolchok/256/orig -> origin/gh/swolchok/256/orig 2025-06-05T23:12:47.3157680Z * [new branch] gh/swolchok/257/next -> origin/gh/swolchok/257/next 2025-06-05T23:12:47.3158840Z * [new branch] gh/swolchok/257/orig -> origin/gh/swolchok/257/orig 2025-06-05T23:12:47.3160436Z * [new branch] gh/swolchok/258/base -> origin/gh/swolchok/258/base 2025-06-05T23:12:47.3161943Z * [new branch] gh/swolchok/259/next -> origin/gh/swolchok/259/next 2025-06-05T23:12:47.3163098Z * [new branch] gh/swolchok/259/orig -> origin/gh/swolchok/259/orig 2025-06-05T23:12:47.3164753Z * [new branch] gh/swolchok/26/base -> origin/gh/swolchok/26/base 2025-06-05T23:12:47.3165725Z * [new branch] gh/swolchok/26/orig -> origin/gh/swolchok/26/orig 2025-06-05T23:12:47.3167335Z * [new branch] gh/swolchok/260/next -> origin/gh/swolchok/260/next 2025-06-05T23:12:47.3168466Z * [new branch] gh/swolchok/260/orig -> origin/gh/swolchok/260/orig 2025-06-05T23:12:47.3170036Z * [new branch] gh/swolchok/261/next -> origin/gh/swolchok/261/next 2025-06-05T23:12:47.3171358Z * [new branch] gh/swolchok/261/orig -> origin/gh/swolchok/261/orig 2025-06-05T23:12:47.3172957Z * [new branch] gh/swolchok/262/next -> origin/gh/swolchok/262/next 2025-06-05T23:12:47.3174013Z * [new branch] gh/swolchok/262/orig -> origin/gh/swolchok/262/orig 2025-06-05T23:12:47.3175644Z * [new branch] gh/swolchok/263/next -> origin/gh/swolchok/263/next 2025-06-05T23:12:47.3176822Z * [new branch] gh/swolchok/263/orig -> origin/gh/swolchok/263/orig 2025-06-05T23:12:47.3178472Z * [new branch] gh/swolchok/264/next -> origin/gh/swolchok/264/next 2025-06-05T23:12:47.3179527Z * [new branch] gh/swolchok/264/orig -> origin/gh/swolchok/264/orig 2025-06-05T23:12:47.3181078Z * [new branch] gh/swolchok/265/next -> origin/gh/swolchok/265/next 2025-06-05T23:12:47.3182257Z * [new branch] gh/swolchok/265/orig -> origin/gh/swolchok/265/orig 2025-06-05T23:12:47.3183758Z * [new branch] gh/swolchok/266/next -> origin/gh/swolchok/266/next 2025-06-05T23:12:47.3184917Z * [new branch] gh/swolchok/266/orig -> origin/gh/swolchok/266/orig 2025-06-05T23:12:47.3186706Z * [new branch] gh/swolchok/267/base -> origin/gh/swolchok/267/base 2025-06-05T23:12:47.3188133Z * [new branch] gh/swolchok/268/next -> origin/gh/swolchok/268/next 2025-06-05T23:12:47.3189329Z * [new branch] gh/swolchok/268/orig -> origin/gh/swolchok/268/orig 2025-06-05T23:12:47.3190816Z * [new branch] gh/swolchok/269/next -> origin/gh/swolchok/269/next 2025-06-05T23:12:47.3193963Z * [new branch] gh/swolchok/269/orig -> origin/gh/swolchok/269/orig 2025-06-05T23:12:47.3195508Z * [new branch] gh/swolchok/27/base -> origin/gh/swolchok/27/base 2025-06-05T23:12:47.3196804Z * [new branch] gh/swolchok/27/orig -> origin/gh/swolchok/27/orig 2025-06-05T23:12:47.3198366Z * [new branch] gh/swolchok/270/base -> origin/gh/swolchok/270/base 2025-06-05T23:12:47.3199990Z * [new branch] gh/swolchok/271/head -> origin/gh/swolchok/271/head 2025-06-05T23:12:47.3200926Z * [new branch] gh/swolchok/271/next -> origin/gh/swolchok/271/next 2025-06-05T23:12:47.3202231Z * [new branch] gh/swolchok/271/orig -> origin/gh/swolchok/271/orig 2025-06-05T23:12:47.3203993Z * [new branch] gh/swolchok/272/base -> origin/gh/swolchok/272/base 2025-06-05T23:12:47.3205734Z * [new branch] gh/swolchok/273/base -> origin/gh/swolchok/273/base 2025-06-05T23:12:47.3207792Z * [new branch] gh/swolchok/274/base -> origin/gh/swolchok/274/base 2025-06-05T23:12:47.3209016Z * [new branch] gh/swolchok/274/head -> origin/gh/swolchok/274/head 2025-06-05T23:12:47.3210309Z * [new branch] gh/swolchok/274/orig -> origin/gh/swolchok/274/orig 2025-06-05T23:12:47.3211884Z * [new branch] gh/swolchok/275/base -> origin/gh/swolchok/275/base 2025-06-05T23:12:47.3213070Z * [new branch] gh/swolchok/275/head -> origin/gh/swolchok/275/head 2025-06-05T23:12:47.3214245Z * [new branch] gh/swolchok/275/orig -> origin/gh/swolchok/275/orig 2025-06-05T23:12:47.3215819Z * [new branch] gh/swolchok/276/next -> origin/gh/swolchok/276/next 2025-06-05T23:12:47.3217100Z * [new branch] gh/swolchok/276/orig -> origin/gh/swolchok/276/orig 2025-06-05T23:12:47.3218606Z * [new branch] gh/swolchok/277/next -> origin/gh/swolchok/277/next 2025-06-05T23:12:47.3219774Z * [new branch] gh/swolchok/277/orig -> origin/gh/swolchok/277/orig 2025-06-05T23:12:47.3221386Z * [new branch] gh/swolchok/278/next -> origin/gh/swolchok/278/next 2025-06-05T23:12:47.3222597Z * [new branch] gh/swolchok/278/orig -> origin/gh/swolchok/278/orig 2025-06-05T23:12:47.3224143Z * [new branch] gh/swolchok/279/next -> origin/gh/swolchok/279/next 2025-06-05T23:12:47.3225162Z * [new branch] gh/swolchok/279/orig -> origin/gh/swolchok/279/orig 2025-06-05T23:12:47.3226756Z * [new branch] gh/swolchok/28/base -> origin/gh/swolchok/28/base 2025-06-05T23:12:47.3227970Z * [new branch] gh/swolchok/28/orig -> origin/gh/swolchok/28/orig 2025-06-05T23:12:47.3229487Z * [new branch] gh/swolchok/280/next -> origin/gh/swolchok/280/next 2025-06-05T23:12:47.3230918Z * [new branch] gh/swolchok/280/orig -> origin/gh/swolchok/280/orig 2025-06-05T23:12:47.3232275Z * [new branch] gh/swolchok/281/base -> origin/gh/swolchok/281/base 2025-06-05T23:12:47.3233896Z * [new branch] gh/swolchok/282/next -> origin/gh/swolchok/282/next 2025-06-05T23:12:47.3235227Z * [new branch] gh/swolchok/282/orig -> origin/gh/swolchok/282/orig 2025-06-05T23:12:47.3236744Z * [new branch] gh/swolchok/283/next -> origin/gh/swolchok/283/next 2025-06-05T23:12:47.3238005Z * [new branch] gh/swolchok/283/orig -> origin/gh/swolchok/283/orig 2025-06-05T23:12:47.3239588Z * [new branch] gh/swolchok/284/next -> origin/gh/swolchok/284/next 2025-06-05T23:12:47.3240662Z * [new branch] gh/swolchok/284/orig -> origin/gh/swolchok/284/orig 2025-06-05T23:12:47.3242232Z * [new branch] gh/swolchok/285/next -> origin/gh/swolchok/285/next 2025-06-05T23:12:47.3243378Z * [new branch] gh/swolchok/285/orig -> origin/gh/swolchok/285/orig 2025-06-05T23:12:47.3245057Z * [new branch] gh/swolchok/286/next -> origin/gh/swolchok/286/next 2025-06-05T23:12:47.3246191Z * [new branch] gh/swolchok/286/orig -> origin/gh/swolchok/286/orig 2025-06-05T23:12:47.3247728Z * [new branch] gh/swolchok/287/next -> origin/gh/swolchok/287/next 2025-06-05T23:12:47.3248919Z * [new branch] gh/swolchok/287/orig -> origin/gh/swolchok/287/orig 2025-06-05T23:12:47.3250528Z * [new branch] gh/swolchok/288/next -> origin/gh/swolchok/288/next 2025-06-05T23:12:47.3251630Z * [new branch] gh/swolchok/288/orig -> origin/gh/swolchok/288/orig 2025-06-05T23:12:47.3253227Z * [new branch] gh/swolchok/289/next -> origin/gh/swolchok/289/next 2025-06-05T23:12:47.3254304Z * [new branch] gh/swolchok/289/orig -> origin/gh/swolchok/289/orig 2025-06-05T23:12:47.3256202Z * [new branch] gh/swolchok/29/base -> origin/gh/swolchok/29/base 2025-06-05T23:12:47.3257109Z * [new branch] gh/swolchok/29/orig -> origin/gh/swolchok/29/orig 2025-06-05T23:12:47.3258772Z * [new branch] gh/swolchok/290/head -> origin/gh/swolchok/290/head 2025-06-05T23:12:47.3259692Z * [new branch] gh/swolchok/290/next -> origin/gh/swolchok/290/next 2025-06-05T23:12:47.3261199Z * [new branch] gh/swolchok/290/orig -> origin/gh/swolchok/290/orig 2025-06-05T23:12:47.3262588Z * [new branch] gh/swolchok/291/next -> origin/gh/swolchok/291/next 2025-06-05T23:12:47.3263697Z * [new branch] gh/swolchok/291/orig -> origin/gh/swolchok/291/orig 2025-06-05T23:12:47.3265369Z * [new branch] gh/swolchok/292/next -> origin/gh/swolchok/292/next 2025-06-05T23:12:47.3266447Z * [new branch] gh/swolchok/292/orig -> origin/gh/swolchok/292/orig 2025-06-05T23:12:47.3268106Z * [new branch] gh/swolchok/293/head -> origin/gh/swolchok/293/head 2025-06-05T23:12:47.3269066Z * [new branch] gh/swolchok/293/next -> origin/gh/swolchok/293/next 2025-06-05T23:12:47.3270312Z * [new branch] gh/swolchok/293/orig -> origin/gh/swolchok/293/orig 2025-06-05T23:12:47.3272233Z * [new branch] gh/swolchok/294/next -> origin/gh/swolchok/294/next 2025-06-05T23:12:47.3273582Z * [new branch] gh/swolchok/294/orig -> origin/gh/swolchok/294/orig 2025-06-05T23:12:47.3274752Z * [new branch] gh/swolchok/295/next -> origin/gh/swolchok/295/next 2025-06-05T23:12:47.3275963Z * [new branch] gh/swolchok/295/orig -> origin/gh/swolchok/295/orig 2025-06-05T23:12:47.3277547Z * [new branch] gh/swolchok/296/head -> origin/gh/swolchok/296/head 2025-06-05T23:12:47.3278428Z * [new branch] gh/swolchok/296/next -> origin/gh/swolchok/296/next 2025-06-05T23:12:47.3279626Z * [new branch] gh/swolchok/296/orig -> origin/gh/swolchok/296/orig 2025-06-05T23:12:47.3281236Z * [new branch] gh/swolchok/297/head -> origin/gh/swolchok/297/head 2025-06-05T23:12:47.3282253Z * [new branch] gh/swolchok/297/next -> origin/gh/swolchok/297/next 2025-06-05T23:12:47.3283449Z * [new branch] gh/swolchok/297/orig -> origin/gh/swolchok/297/orig 2025-06-05T23:12:47.3285231Z * [new branch] gh/swolchok/298/head -> origin/gh/swolchok/298/head 2025-06-05T23:12:47.3286280Z * [new branch] gh/swolchok/298/next -> origin/gh/swolchok/298/next 2025-06-05T23:12:47.3287276Z * [new branch] gh/swolchok/298/orig -> origin/gh/swolchok/298/orig 2025-06-05T23:12:47.3288853Z * [new branch] gh/swolchok/299/next -> origin/gh/swolchok/299/next 2025-06-05T23:12:47.3289951Z * [new branch] gh/swolchok/299/orig -> origin/gh/swolchok/299/orig 2025-06-05T23:12:47.3291971Z * [new branch] gh/swolchok/3/base -> origin/gh/swolchok/3/base 2025-06-05T23:12:47.3292927Z * [new branch] gh/swolchok/3/head -> origin/gh/swolchok/3/head 2025-06-05T23:12:47.3294177Z * [new branch] gh/swolchok/3/orig -> origin/gh/swolchok/3/orig 2025-06-05T23:12:47.3295863Z * [new branch] gh/swolchok/30/base -> origin/gh/swolchok/30/base 2025-06-05T23:12:47.3297686Z * [new branch] gh/swolchok/30/orig -> origin/gh/swolchok/30/orig 2025-06-05T23:12:47.3299171Z * [new branch] gh/swolchok/300/next -> origin/gh/swolchok/300/next 2025-06-05T23:12:47.3300235Z * [new branch] gh/swolchok/300/orig -> origin/gh/swolchok/300/orig 2025-06-05T23:12:47.3301837Z * [new branch] gh/swolchok/301/next -> origin/gh/swolchok/301/next 2025-06-05T23:12:47.3302957Z * [new branch] gh/swolchok/301/orig -> origin/gh/swolchok/301/orig 2025-06-05T23:12:47.3304510Z * [new branch] gh/swolchok/302/next -> origin/gh/swolchok/302/next 2025-06-05T23:12:47.3305562Z * [new branch] gh/swolchok/302/orig -> origin/gh/swolchok/302/orig 2025-06-05T23:12:47.3307250Z * [new branch] gh/swolchok/303/base -> origin/gh/swolchok/303/base 2025-06-05T23:12:47.3308650Z * [new branch] gh/swolchok/304/next -> origin/gh/swolchok/304/next 2025-06-05T23:12:47.3309863Z * [new branch] gh/swolchok/304/orig -> origin/gh/swolchok/304/orig 2025-06-05T23:12:47.3311492Z * [new branch] gh/swolchok/305/next -> origin/gh/swolchok/305/next 2025-06-05T23:12:47.3312615Z * [new branch] gh/swolchok/305/orig -> origin/gh/swolchok/305/orig 2025-06-05T23:12:47.3314194Z * [new branch] gh/swolchok/306/next -> origin/gh/swolchok/306/next 2025-06-05T23:12:47.3315423Z * [new branch] gh/swolchok/306/orig -> origin/gh/swolchok/306/orig 2025-06-05T23:12:47.3317047Z * [new branch] gh/swolchok/307/next -> origin/gh/swolchok/307/next 2025-06-05T23:12:47.3318171Z * [new branch] gh/swolchok/307/orig -> origin/gh/swolchok/307/orig 2025-06-05T23:12:47.3319715Z * [new branch] gh/swolchok/308/next -> origin/gh/swolchok/308/next 2025-06-05T23:12:47.3320891Z * [new branch] gh/swolchok/308/orig -> origin/gh/swolchok/308/orig 2025-06-05T23:12:47.3322473Z * [new branch] gh/swolchok/309/head -> origin/gh/swolchok/309/head 2025-06-05T23:12:47.3323413Z * [new branch] gh/swolchok/309/next -> origin/gh/swolchok/309/next 2025-06-05T23:12:47.3324770Z * [new branch] gh/swolchok/309/orig -> origin/gh/swolchok/309/orig 2025-06-05T23:12:47.3326382Z * [new branch] gh/swolchok/31/base -> origin/gh/swolchok/31/base 2025-06-05T23:12:47.3327482Z * [new branch] gh/swolchok/31/orig -> origin/gh/swolchok/31/orig 2025-06-05T23:12:47.3329031Z * [new branch] gh/swolchok/310/head -> origin/gh/swolchok/310/head 2025-06-05T23:12:47.3330070Z * [new branch] gh/swolchok/310/next -> origin/gh/swolchok/310/next 2025-06-05T23:12:47.3331343Z * [new branch] gh/swolchok/310/orig -> origin/gh/swolchok/310/orig 2025-06-05T23:12:47.3332924Z * [new branch] gh/swolchok/311/next -> origin/gh/swolchok/311/next 2025-06-05T23:12:47.3334009Z * [new branch] gh/swolchok/311/orig -> origin/gh/swolchok/311/orig 2025-06-05T23:12:47.3335522Z * [new branch] gh/swolchok/312/next -> origin/gh/swolchok/312/next 2025-06-05T23:12:47.3336702Z * [new branch] gh/swolchok/312/orig -> origin/gh/swolchok/312/orig 2025-06-05T23:12:47.3338279Z * [new branch] gh/swolchok/313/next -> origin/gh/swolchok/313/next 2025-06-05T23:12:47.3339387Z * [new branch] gh/swolchok/313/orig -> origin/gh/swolchok/313/orig 2025-06-05T23:12:47.3340975Z * [new branch] gh/swolchok/314/next -> origin/gh/swolchok/314/next 2025-06-05T23:12:47.3342093Z * [new branch] gh/swolchok/314/orig -> origin/gh/swolchok/314/orig 2025-06-05T23:12:47.3344133Z * [new branch] gh/swolchok/315/next -> origin/gh/swolchok/315/next 2025-06-05T23:12:47.3345352Z * [new branch] gh/swolchok/315/orig -> origin/gh/swolchok/315/orig 2025-06-05T23:12:47.3347050Z * [new branch] gh/swolchok/316/head -> origin/gh/swolchok/316/head 2025-06-05T23:12:47.3347901Z * [new branch] gh/swolchok/316/next -> origin/gh/swolchok/316/next 2025-06-05T23:12:47.3349091Z * [new branch] gh/swolchok/316/orig -> origin/gh/swolchok/316/orig 2025-06-05T23:12:47.3350631Z * [new branch] gh/swolchok/317/next -> origin/gh/swolchok/317/next 2025-06-05T23:12:47.3351691Z * [new branch] gh/swolchok/317/orig -> origin/gh/swolchok/317/orig 2025-06-05T23:12:47.3353247Z * [new branch] gh/swolchok/318/next -> origin/gh/swolchok/318/next 2025-06-05T23:12:47.3354384Z * [new branch] gh/swolchok/318/orig -> origin/gh/swolchok/318/orig 2025-06-05T23:12:47.3355904Z * [new branch] gh/swolchok/319/next -> origin/gh/swolchok/319/next 2025-06-05T23:12:47.3357068Z * [new branch] gh/swolchok/319/orig -> origin/gh/swolchok/319/orig 2025-06-05T23:12:47.3358723Z * [new branch] gh/swolchok/32/base -> origin/gh/swolchok/32/base 2025-06-05T23:12:47.3359974Z * [new branch] gh/swolchok/32/orig -> origin/gh/swolchok/32/orig 2025-06-05T23:12:47.3361578Z * [new branch] gh/swolchok/320/next -> origin/gh/swolchok/320/next 2025-06-05T23:12:47.3362627Z * [new branch] gh/swolchok/320/orig -> origin/gh/swolchok/320/orig 2025-06-05T23:12:47.3364358Z * [new branch] gh/swolchok/321/next -> origin/gh/swolchok/321/next 2025-06-05T23:12:47.3365441Z * [new branch] gh/swolchok/321/orig -> origin/gh/swolchok/321/orig 2025-06-05T23:12:47.3367131Z * [new branch] gh/swolchok/322/next -> origin/gh/swolchok/322/next 2025-06-05T23:12:47.3368241Z * [new branch] gh/swolchok/322/orig -> origin/gh/swolchok/322/orig 2025-06-05T23:12:47.3369842Z * [new branch] gh/swolchok/323/next -> origin/gh/swolchok/323/next 2025-06-05T23:12:47.3371349Z * [new branch] gh/swolchok/323/orig -> origin/gh/swolchok/323/orig 2025-06-05T23:12:47.3372933Z * [new branch] gh/swolchok/324/next -> origin/gh/swolchok/324/next 2025-06-05T23:12:47.3374175Z * [new branch] gh/swolchok/324/orig -> origin/gh/swolchok/324/orig 2025-06-05T23:12:47.3375745Z * [new branch] gh/swolchok/325/next -> origin/gh/swolchok/325/next 2025-06-05T23:12:47.3376937Z * [new branch] gh/swolchok/325/orig -> origin/gh/swolchok/325/orig 2025-06-05T23:12:47.3378569Z * [new branch] gh/swolchok/326/next -> origin/gh/swolchok/326/next 2025-06-05T23:12:47.3379718Z * [new branch] gh/swolchok/326/orig -> origin/gh/swolchok/326/orig 2025-06-05T23:12:47.3381184Z * [new branch] gh/swolchok/327/next -> origin/gh/swolchok/327/next 2025-06-05T23:12:47.3382464Z * [new branch] gh/swolchok/327/orig -> origin/gh/swolchok/327/orig 2025-06-05T23:12:47.3384203Z * [new branch] gh/swolchok/328/next -> origin/gh/swolchok/328/next 2025-06-05T23:12:47.3385284Z * [new branch] gh/swolchok/328/orig -> origin/gh/swolchok/328/orig 2025-06-05T23:12:47.3386818Z * [new branch] gh/swolchok/329/next -> origin/gh/swolchok/329/next 2025-06-05T23:12:47.3388059Z * [new branch] gh/swolchok/329/orig -> origin/gh/swolchok/329/orig 2025-06-05T23:12:47.3389664Z * [new branch] gh/swolchok/33/base -> origin/gh/swolchok/33/base 2025-06-05T23:12:47.3391059Z * [new branch] gh/swolchok/33/orig -> origin/gh/swolchok/33/orig 2025-06-05T23:12:47.3392799Z * [new branch] gh/swolchok/330/next -> origin/gh/swolchok/330/next 2025-06-05T23:12:47.3393889Z * [new branch] gh/swolchok/330/orig -> origin/gh/swolchok/330/orig 2025-06-05T23:12:47.3395473Z * [new branch] gh/swolchok/331/next -> origin/gh/swolchok/331/next 2025-06-05T23:12:47.3396737Z * [new branch] gh/swolchok/331/orig -> origin/gh/swolchok/331/orig 2025-06-05T23:12:47.3398201Z * [new branch] gh/swolchok/332/next -> origin/gh/swolchok/332/next 2025-06-05T23:12:47.3399241Z * [new branch] gh/swolchok/332/orig -> origin/gh/swolchok/332/orig 2025-06-05T23:12:47.3400792Z * [new branch] gh/swolchok/333/next -> origin/gh/swolchok/333/next 2025-06-05T23:12:47.3401955Z * [new branch] gh/swolchok/333/orig -> origin/gh/swolchok/333/orig 2025-06-05T23:12:47.3403475Z * [new branch] gh/swolchok/334/next -> origin/gh/swolchok/334/next 2025-06-05T23:12:47.3404707Z * [new branch] gh/swolchok/334/orig -> origin/gh/swolchok/334/orig 2025-06-05T23:12:47.3406590Z * [new branch] gh/swolchok/335/next -> origin/gh/swolchok/335/next 2025-06-05T23:12:47.3407827Z * [new branch] gh/swolchok/335/orig -> origin/gh/swolchok/335/orig 2025-06-05T23:12:47.3409391Z * [new branch] gh/swolchok/336/next -> origin/gh/swolchok/336/next 2025-06-05T23:12:47.3410505Z * [new branch] gh/swolchok/336/orig -> origin/gh/swolchok/336/orig 2025-06-05T23:12:47.3412011Z * [new branch] gh/swolchok/337/next -> origin/gh/swolchok/337/next 2025-06-05T23:12:47.3413172Z * [new branch] gh/swolchok/337/orig -> origin/gh/swolchok/337/orig 2025-06-05T23:12:47.3414737Z * [new branch] gh/swolchok/338/next -> origin/gh/swolchok/338/next 2025-06-05T23:12:47.3416307Z * [new branch] gh/swolchok/338/orig -> origin/gh/swolchok/338/orig 2025-06-05T23:12:47.3417816Z * [new branch] gh/swolchok/339/head -> origin/gh/swolchok/339/head 2025-06-05T23:12:47.3418821Z * [new branch] gh/swolchok/339/next -> origin/gh/swolchok/339/next 2025-06-05T23:12:47.3420037Z * [new branch] gh/swolchok/339/orig -> origin/gh/swolchok/339/orig 2025-06-05T23:12:47.3421628Z * [new branch] gh/swolchok/34/orig -> origin/gh/swolchok/34/orig 2025-06-05T23:12:47.3423313Z * [new branch] gh/swolchok/340/next -> origin/gh/swolchok/340/next 2025-06-05T23:12:47.3424475Z * [new branch] gh/swolchok/340/orig -> origin/gh/swolchok/340/orig 2025-06-05T23:12:47.3425982Z * [new branch] gh/swolchok/341/next -> origin/gh/swolchok/341/next 2025-06-05T23:12:47.3427140Z * [new branch] gh/swolchok/341/orig -> origin/gh/swolchok/341/orig 2025-06-05T23:12:47.3428644Z * [new branch] gh/swolchok/342/next -> origin/gh/swolchok/342/next 2025-06-05T23:12:47.3429855Z * [new branch] gh/swolchok/342/orig -> origin/gh/swolchok/342/orig 2025-06-05T23:12:47.3431735Z * [new branch] gh/swolchok/343/next -> origin/gh/swolchok/343/next 2025-06-05T23:12:47.3432751Z * [new branch] gh/swolchok/343/orig -> origin/gh/swolchok/343/orig 2025-06-05T23:12:47.3434405Z * [new branch] gh/swolchok/344/next -> origin/gh/swolchok/344/next 2025-06-05T23:12:47.3435438Z * [new branch] gh/swolchok/344/orig -> origin/gh/swolchok/344/orig 2025-06-05T23:12:47.3436931Z * [new branch] gh/swolchok/345/next -> origin/gh/swolchok/345/next 2025-06-05T23:12:47.3438188Z * [new branch] gh/swolchok/345/orig -> origin/gh/swolchok/345/orig 2025-06-05T23:12:47.3439653Z * [new branch] gh/swolchok/346/next -> origin/gh/swolchok/346/next 2025-06-05T23:12:47.3440870Z * [new branch] gh/swolchok/346/orig -> origin/gh/swolchok/346/orig 2025-06-05T23:12:47.3442397Z * [new branch] gh/swolchok/347/next -> origin/gh/swolchok/347/next 2025-06-05T23:12:47.3443671Z * [new branch] gh/swolchok/347/orig -> origin/gh/swolchok/347/orig 2025-06-05T23:12:47.3445207Z * [new branch] gh/swolchok/348/next -> origin/gh/swolchok/348/next 2025-06-05T23:12:47.3446320Z * [new branch] gh/swolchok/348/orig -> origin/gh/swolchok/348/orig 2025-06-05T23:12:47.3447990Z * [new branch] gh/swolchok/349/next -> origin/gh/swolchok/349/next 2025-06-05T23:12:47.3449109Z * [new branch] gh/swolchok/349/orig -> origin/gh/swolchok/349/orig 2025-06-05T23:12:47.3450720Z * [new branch] gh/swolchok/35/base -> origin/gh/swolchok/35/base 2025-06-05T23:12:47.3451864Z * [new branch] gh/swolchok/35/orig -> origin/gh/swolchok/35/orig 2025-06-05T23:12:47.3453885Z * [new branch] gh/swolchok/350/next -> origin/gh/swolchok/350/next 2025-06-05T23:12:47.3455099Z * [new branch] gh/swolchok/350/orig -> origin/gh/swolchok/350/orig 2025-06-05T23:12:47.3456718Z * [new branch] gh/swolchok/351/next -> origin/gh/swolchok/351/next 2025-06-05T23:12:47.3457840Z * [new branch] gh/swolchok/351/orig -> origin/gh/swolchok/351/orig 2025-06-05T23:12:47.3459385Z * [new branch] gh/swolchok/352/next -> origin/gh/swolchok/352/next 2025-06-05T23:12:47.3460627Z * [new branch] gh/swolchok/352/orig -> origin/gh/swolchok/352/orig 2025-06-05T23:12:47.3462213Z * [new branch] gh/swolchok/353/next -> origin/gh/swolchok/353/next 2025-06-05T23:12:47.3463413Z * [new branch] gh/swolchok/353/orig -> origin/gh/swolchok/353/orig 2025-06-05T23:12:47.3465057Z * [new branch] gh/swolchok/354/next -> origin/gh/swolchok/354/next 2025-06-05T23:12:47.3466220Z * [new branch] gh/swolchok/354/orig -> origin/gh/swolchok/354/orig 2025-06-05T23:12:47.3467795Z * [new branch] gh/swolchok/355/next -> origin/gh/swolchok/355/next 2025-06-05T23:12:47.3468995Z * [new branch] gh/swolchok/355/orig -> origin/gh/swolchok/355/orig 2025-06-05T23:12:47.3470532Z * [new branch] gh/swolchok/356/next -> origin/gh/swolchok/356/next 2025-06-05T23:12:47.3471679Z * [new branch] gh/swolchok/356/orig -> origin/gh/swolchok/356/orig 2025-06-05T23:12:47.3473219Z * [new branch] gh/swolchok/357/next -> origin/gh/swolchok/357/next 2025-06-05T23:12:47.3474405Z * [new branch] gh/swolchok/357/orig -> origin/gh/swolchok/357/orig 2025-06-05T23:12:47.3476267Z * [new branch] gh/swolchok/358/next -> origin/gh/swolchok/358/next 2025-06-05T23:12:47.3477425Z * [new branch] gh/swolchok/358/orig -> origin/gh/swolchok/358/orig 2025-06-05T23:12:47.3478956Z * [new branch] gh/swolchok/359/head -> origin/gh/swolchok/359/head 2025-06-05T23:12:47.3480039Z * [new branch] gh/swolchok/359/next -> origin/gh/swolchok/359/next 2025-06-05T23:12:47.3481159Z * [new branch] gh/swolchok/359/orig -> origin/gh/swolchok/359/orig 2025-06-05T23:12:47.3482846Z * [new branch] gh/swolchok/36/base -> origin/gh/swolchok/36/base 2025-06-05T23:12:47.3484216Z * [new branch] gh/swolchok/36/head -> origin/gh/swolchok/36/head 2025-06-05T23:12:47.3485495Z * [new branch] gh/swolchok/36/orig -> origin/gh/swolchok/36/orig 2025-06-05T23:12:47.3487004Z * [new branch] gh/swolchok/360/next -> origin/gh/swolchok/360/next 2025-06-05T23:12:47.3488196Z * [new branch] gh/swolchok/360/orig -> origin/gh/swolchok/360/orig 2025-06-05T23:12:47.3489695Z * [new branch] gh/swolchok/361/next -> origin/gh/swolchok/361/next 2025-06-05T23:12:47.3491121Z * [new branch] gh/swolchok/361/orig -> origin/gh/swolchok/361/orig 2025-06-05T23:12:47.3494503Z * [new branch] gh/swolchok/362/next -> origin/gh/swolchok/362/next 2025-06-05T23:12:47.3495699Z * [new branch] gh/swolchok/362/orig -> origin/gh/swolchok/362/orig 2025-06-05T23:12:47.3497686Z * [new branch] gh/swolchok/363/next -> origin/gh/swolchok/363/next 2025-06-05T23:12:47.3498901Z * [new branch] gh/swolchok/363/orig -> origin/gh/swolchok/363/orig 2025-06-05T23:12:47.3500610Z * [new branch] gh/swolchok/364/base -> origin/gh/swolchok/364/base 2025-06-05T23:12:47.3501897Z * [new branch] gh/swolchok/364/head -> origin/gh/swolchok/364/head 2025-06-05T23:12:47.3503494Z * [new branch] gh/swolchok/365/base -> origin/gh/swolchok/365/base 2025-06-05T23:12:47.3504688Z * [new branch] gh/swolchok/365/head -> origin/gh/swolchok/365/head 2025-06-05T23:12:47.3506697Z * [new branch] gh/swolchok/366/base -> origin/gh/swolchok/366/base 2025-06-05T23:12:47.3507800Z * [new branch] gh/swolchok/366/head -> origin/gh/swolchok/366/head 2025-06-05T23:12:47.3509409Z * [new branch] gh/swolchok/367/base -> origin/gh/swolchok/367/base 2025-06-05T23:12:47.3511144Z * [new branch] gh/swolchok/368/base -> origin/gh/swolchok/368/base 2025-06-05T23:12:47.3512305Z * [new branch] gh/swolchok/368/head -> origin/gh/swolchok/368/head 2025-06-05T23:12:47.3513436Z * [new branch] gh/swolchok/368/orig -> origin/gh/swolchok/368/orig 2025-06-05T23:12:47.3514944Z * [new branch] gh/swolchok/369/next -> origin/gh/swolchok/369/next 2025-06-05T23:12:47.3516131Z * [new branch] gh/swolchok/369/orig -> origin/gh/swolchok/369/orig 2025-06-05T23:12:47.3517920Z * [new branch] gh/swolchok/37/base -> origin/gh/swolchok/37/base 2025-06-05T23:12:47.3519098Z * [new branch] gh/swolchok/37/head -> origin/gh/swolchok/37/head 2025-06-05T23:12:47.3520333Z * [new branch] gh/swolchok/37/orig -> origin/gh/swolchok/37/orig 2025-06-05T23:12:47.3521897Z * [new branch] gh/swolchok/370/next -> origin/gh/swolchok/370/next 2025-06-05T23:12:47.3523048Z * [new branch] gh/swolchok/370/orig -> origin/gh/swolchok/370/orig 2025-06-05T23:12:47.3525119Z * [new branch] gh/swolchok/371/next -> origin/gh/swolchok/371/next 2025-06-05T23:12:47.3526301Z * [new branch] gh/swolchok/371/orig -> origin/gh/swolchok/371/orig 2025-06-05T23:12:47.3527811Z * [new branch] gh/swolchok/372/next -> origin/gh/swolchok/372/next 2025-06-05T23:12:47.3529080Z * [new branch] gh/swolchok/372/orig -> origin/gh/swolchok/372/orig 2025-06-05T23:12:47.3530573Z * [new branch] gh/swolchok/373/next -> origin/gh/swolchok/373/next 2025-06-05T23:12:47.3531703Z * [new branch] gh/swolchok/373/orig -> origin/gh/swolchok/373/orig 2025-06-05T23:12:47.3533365Z * [new branch] gh/swolchok/374/next -> origin/gh/swolchok/374/next 2025-06-05T23:12:47.3534524Z * [new branch] gh/swolchok/374/orig -> origin/gh/swolchok/374/orig 2025-06-05T23:12:47.3536142Z * [new branch] gh/swolchok/375/next -> origin/gh/swolchok/375/next 2025-06-05T23:12:47.3537278Z * [new branch] gh/swolchok/375/orig -> origin/gh/swolchok/375/orig 2025-06-05T23:12:47.3538834Z * [new branch] gh/swolchok/376/next -> origin/gh/swolchok/376/next 2025-06-05T23:12:47.3539961Z * [new branch] gh/swolchok/376/orig -> origin/gh/swolchok/376/orig 2025-06-05T23:12:47.3541443Z * [new branch] gh/swolchok/377/head -> origin/gh/swolchok/377/head 2025-06-05T23:12:47.3542472Z * [new branch] gh/swolchok/377/next -> origin/gh/swolchok/377/next 2025-06-05T23:12:47.3543879Z * [new branch] gh/swolchok/378/next -> origin/gh/swolchok/378/next 2025-06-05T23:12:47.3545111Z * [new branch] gh/swolchok/378/orig -> origin/gh/swolchok/378/orig 2025-06-05T23:12:47.3546604Z * [new branch] gh/swolchok/379/next -> origin/gh/swolchok/379/next 2025-06-05T23:12:47.3547744Z * [new branch] gh/swolchok/379/orig -> origin/gh/swolchok/379/orig 2025-06-05T23:12:47.3549489Z * [new branch] gh/swolchok/38/base -> origin/gh/swolchok/38/base 2025-06-05T23:12:47.3550735Z * [new branch] gh/swolchok/38/head -> origin/gh/swolchok/38/head 2025-06-05T23:12:47.3552008Z * [new branch] gh/swolchok/38/orig -> origin/gh/swolchok/38/orig 2025-06-05T23:12:47.3553543Z * [new branch] gh/swolchok/380/head -> origin/gh/swolchok/380/head 2025-06-05T23:12:47.3554573Z * [new branch] gh/swolchok/380/next -> origin/gh/swolchok/380/next 2025-06-05T23:12:47.3555799Z * [new branch] gh/swolchok/380/orig -> origin/gh/swolchok/380/orig 2025-06-05T23:12:47.3557331Z * [new branch] gh/swolchok/381/head -> origin/gh/swolchok/381/head 2025-06-05T23:12:47.3558321Z * [new branch] gh/swolchok/381/next -> origin/gh/swolchok/381/next 2025-06-05T23:12:47.3559520Z * [new branch] gh/swolchok/381/orig -> origin/gh/swolchok/381/orig 2025-06-05T23:12:47.3561023Z * [new branch] gh/swolchok/382/next -> origin/gh/swolchok/382/next 2025-06-05T23:12:47.3562166Z * [new branch] gh/swolchok/382/orig -> origin/gh/swolchok/382/orig 2025-06-05T23:12:47.3563839Z * [new branch] gh/swolchok/383/next -> origin/gh/swolchok/383/next 2025-06-05T23:12:47.3565298Z * [new branch] gh/swolchok/383/orig -> origin/gh/swolchok/383/orig 2025-06-05T23:12:47.3566797Z * [new branch] gh/swolchok/384/next -> origin/gh/swolchok/384/next 2025-06-05T23:12:47.3567951Z * [new branch] gh/swolchok/384/orig -> origin/gh/swolchok/384/orig 2025-06-05T23:12:47.3569494Z * [new branch] gh/swolchok/385/next -> origin/gh/swolchok/385/next 2025-06-05T23:12:47.3570679Z * [new branch] gh/swolchok/385/orig -> origin/gh/swolchok/385/orig 2025-06-05T23:12:47.3572185Z * [new branch] gh/swolchok/386/head -> origin/gh/swolchok/386/head 2025-06-05T23:12:47.3573226Z * [new branch] gh/swolchok/386/next -> origin/gh/swolchok/386/next 2025-06-05T23:12:47.3574517Z * [new branch] gh/swolchok/386/orig -> origin/gh/swolchok/386/orig 2025-06-05T23:12:47.3575990Z * [new branch] gh/swolchok/387/next -> origin/gh/swolchok/387/next 2025-06-05T23:12:47.3577647Z * [new branch] gh/swolchok/387/orig -> origin/gh/swolchok/387/orig 2025-06-05T23:12:47.3578657Z * [new branch] gh/swolchok/388/next -> origin/gh/swolchok/388/next 2025-06-05T23:12:47.3579646Z * [new branch] gh/swolchok/388/orig -> origin/gh/swolchok/388/orig 2025-06-05T23:12:47.3580892Z * [new branch] gh/swolchok/389/next -> origin/gh/swolchok/389/next 2025-06-05T23:12:47.3581955Z * [new branch] gh/swolchok/389/orig -> origin/gh/swolchok/389/orig 2025-06-05T23:12:47.3583439Z * [new branch] gh/swolchok/39/base -> origin/gh/swolchok/39/base 2025-06-05T23:12:47.3584528Z * [new branch] gh/swolchok/39/head -> origin/gh/swolchok/39/head 2025-06-05T23:12:47.3585557Z * [new branch] gh/swolchok/39/orig -> origin/gh/swolchok/39/orig 2025-06-05T23:12:47.3586910Z * [new branch] gh/swolchok/390/next -> origin/gh/swolchok/390/next 2025-06-05T23:12:47.3587834Z * [new branch] gh/swolchok/390/orig -> origin/gh/swolchok/390/orig 2025-06-05T23:12:47.3589154Z * [new branch] gh/swolchok/391/next -> origin/gh/swolchok/391/next 2025-06-05T23:12:47.3590148Z * [new branch] gh/swolchok/391/orig -> origin/gh/swolchok/391/orig 2025-06-05T23:12:47.3591695Z * [new branch] gh/swolchok/392/head -> origin/gh/swolchok/392/head 2025-06-05T23:12:47.3592729Z * [new branch] gh/swolchok/392/next -> origin/gh/swolchok/392/next 2025-06-05T23:12:47.3593786Z * [new branch] gh/swolchok/392/orig -> origin/gh/swolchok/392/orig 2025-06-05T23:12:47.3595089Z * [new branch] gh/swolchok/393/next -> origin/gh/swolchok/393/next 2025-06-05T23:12:47.3596065Z * [new branch] gh/swolchok/393/orig -> origin/gh/swolchok/393/orig 2025-06-05T23:12:47.3597430Z * [new branch] gh/swolchok/394/next -> origin/gh/swolchok/394/next 2025-06-05T23:12:47.3598293Z * [new branch] gh/swolchok/394/orig -> origin/gh/swolchok/394/orig 2025-06-05T23:12:47.3600007Z * [new branch] gh/swolchok/395/head -> origin/gh/swolchok/395/head 2025-06-05T23:12:47.3600854Z * [new branch] gh/swolchok/395/next -> origin/gh/swolchok/395/next 2025-06-05T23:12:47.3601809Z * [new branch] gh/swolchok/395/orig -> origin/gh/swolchok/395/orig 2025-06-05T23:12:47.3603159Z * [new branch] gh/swolchok/396/head -> origin/gh/swolchok/396/head 2025-06-05T23:12:47.3604067Z * [new branch] gh/swolchok/396/next -> origin/gh/swolchok/396/next 2025-06-05T23:12:47.3605078Z * [new branch] gh/swolchok/396/orig -> origin/gh/swolchok/396/orig 2025-06-05T23:12:47.3606592Z * [new branch] gh/swolchok/397/head -> origin/gh/swolchok/397/head 2025-06-05T23:12:47.3607414Z * [new branch] gh/swolchok/397/next -> origin/gh/swolchok/397/next 2025-06-05T23:12:47.3608389Z * [new branch] gh/swolchok/397/orig -> origin/gh/swolchok/397/orig 2025-06-05T23:12:47.3609655Z * [new branch] gh/swolchok/398/next -> origin/gh/swolchok/398/next 2025-06-05T23:12:47.3610613Z * [new branch] gh/swolchok/398/orig -> origin/gh/swolchok/398/orig 2025-06-05T23:12:47.3611913Z * [new branch] gh/swolchok/399/next -> origin/gh/swolchok/399/next 2025-06-05T23:12:47.3612900Z * [new branch] gh/swolchok/399/orig -> origin/gh/swolchok/399/orig 2025-06-05T23:12:47.3614264Z * [new branch] gh/swolchok/4/base -> origin/gh/swolchok/4/base 2025-06-05T23:12:47.3615289Z * [new branch] gh/swolchok/4/head -> origin/gh/swolchok/4/head 2025-06-05T23:12:47.3616255Z * [new branch] gh/swolchok/4/orig -> origin/gh/swolchok/4/orig 2025-06-05T23:12:47.3617492Z * [new branch] gh/swolchok/40/base -> origin/gh/swolchok/40/base 2025-06-05T23:12:47.3618602Z * [new branch] gh/swolchok/40/head -> origin/gh/swolchok/40/head 2025-06-05T23:12:47.3619566Z * [new branch] gh/swolchok/40/orig -> origin/gh/swolchok/40/orig 2025-06-05T23:12:47.3620897Z * [new branch] gh/swolchok/400/head -> origin/gh/swolchok/400/head 2025-06-05T23:12:47.3621732Z * [new branch] gh/swolchok/400/next -> origin/gh/swolchok/400/next 2025-06-05T23:12:47.3622710Z * [new branch] gh/swolchok/400/orig -> origin/gh/swolchok/400/orig 2025-06-05T23:12:47.3623996Z * [new branch] gh/swolchok/401/head -> origin/gh/swolchok/401/head 2025-06-05T23:12:47.3625040Z * [new branch] gh/swolchok/401/next -> origin/gh/swolchok/401/next 2025-06-05T23:12:47.3625830Z * [new branch] gh/swolchok/401/orig -> origin/gh/swolchok/401/orig 2025-06-05T23:12:47.3627219Z * [new branch] gh/swolchok/402/head -> origin/gh/swolchok/402/head 2025-06-05T23:12:47.3627969Z * [new branch] gh/swolchok/402/next -> origin/gh/swolchok/402/next 2025-06-05T23:12:47.3628982Z * [new branch] gh/swolchok/402/orig -> origin/gh/swolchok/402/orig 2025-06-05T23:12:47.3630286Z * [new branch] gh/swolchok/403/next -> origin/gh/swolchok/403/next 2025-06-05T23:12:47.3631347Z * [new branch] gh/swolchok/403/orig -> origin/gh/swolchok/403/orig 2025-06-05T23:12:47.3632656Z * [new branch] gh/swolchok/404/head -> origin/gh/swolchok/404/head 2025-06-05T23:12:47.3633465Z * [new branch] gh/swolchok/404/next -> origin/gh/swolchok/404/next 2025-06-05T23:12:47.3634484Z * [new branch] gh/swolchok/404/orig -> origin/gh/swolchok/404/orig 2025-06-05T23:12:47.3635785Z * [new branch] gh/swolchok/405/head -> origin/gh/swolchok/405/head 2025-06-05T23:12:47.3636660Z * [new branch] gh/swolchok/405/next -> origin/gh/swolchok/405/next 2025-06-05T23:12:47.3637606Z * [new branch] gh/swolchok/405/orig -> origin/gh/swolchok/405/orig 2025-06-05T23:12:47.3638936Z * [new branch] gh/swolchok/406/head -> origin/gh/swolchok/406/head 2025-06-05T23:12:47.3639709Z * [new branch] gh/swolchok/406/next -> origin/gh/swolchok/406/next 2025-06-05T23:12:47.3640759Z * [new branch] gh/swolchok/406/orig -> origin/gh/swolchok/406/orig 2025-06-05T23:12:47.3642438Z * [new branch] gh/swolchok/407/head -> origin/gh/swolchok/407/head 2025-06-05T23:12:47.3643361Z * [new branch] gh/swolchok/407/next -> origin/gh/swolchok/407/next 2025-06-05T23:12:47.3644568Z * [new branch] gh/swolchok/407/orig -> origin/gh/swolchok/407/orig 2025-06-05T23:12:47.3645937Z * [new branch] gh/swolchok/408/next -> origin/gh/swolchok/408/next 2025-06-05T23:12:47.3646916Z * [new branch] gh/swolchok/408/orig -> origin/gh/swolchok/408/orig 2025-06-05T23:12:47.3648200Z * [new branch] gh/swolchok/409/next -> origin/gh/swolchok/409/next 2025-06-05T23:12:47.3649247Z * [new branch] gh/swolchok/409/orig -> origin/gh/swolchok/409/orig 2025-06-05T23:12:47.3650702Z * [new branch] gh/swolchok/41/base -> origin/gh/swolchok/41/base 2025-06-05T23:12:47.3651673Z * [new branch] gh/swolchok/41/head -> origin/gh/swolchok/41/head 2025-06-05T23:12:47.3652741Z * [new branch] gh/swolchok/41/orig -> origin/gh/swolchok/41/orig 2025-06-05T23:12:47.3654080Z * [new branch] gh/swolchok/410/head -> origin/gh/swolchok/410/head 2025-06-05T23:12:47.3654916Z * [new branch] gh/swolchok/410/next -> origin/gh/swolchok/410/next 2025-06-05T23:12:47.3655967Z * [new branch] gh/swolchok/410/orig -> origin/gh/swolchok/410/orig 2025-06-05T23:12:47.3657249Z * [new branch] gh/swolchok/411/head -> origin/gh/swolchok/411/head 2025-06-05T23:12:47.3658041Z * [new branch] gh/swolchok/411/next -> origin/gh/swolchok/411/next 2025-06-05T23:12:47.3659202Z * [new branch] gh/swolchok/411/orig -> origin/gh/swolchok/411/orig 2025-06-05T23:12:47.3660465Z * [new branch] gh/swolchok/412/head -> origin/gh/swolchok/412/head 2025-06-05T23:12:47.3661309Z * [new branch] gh/swolchok/412/next -> origin/gh/swolchok/412/next 2025-06-05T23:12:47.3662322Z * [new branch] gh/swolchok/412/orig -> origin/gh/swolchok/412/orig 2025-06-05T23:12:47.3663681Z * [new branch] gh/swolchok/413/head -> origin/gh/swolchok/413/head 2025-06-05T23:12:47.3664420Z * [new branch] gh/swolchok/413/next -> origin/gh/swolchok/413/next 2025-06-05T23:12:47.3665461Z * [new branch] gh/swolchok/413/orig -> origin/gh/swolchok/413/orig 2025-06-05T23:12:47.3666746Z * [new branch] gh/swolchok/414/head -> origin/gh/swolchok/414/head 2025-06-05T23:12:47.3667570Z * [new branch] gh/swolchok/414/next -> origin/gh/swolchok/414/next 2025-06-05T23:12:47.3668710Z * [new branch] gh/swolchok/414/orig -> origin/gh/swolchok/414/orig 2025-06-05T23:12:47.3670029Z * [new branch] gh/swolchok/415/next -> origin/gh/swolchok/415/next 2025-06-05T23:12:47.3671060Z * [new branch] gh/swolchok/415/orig -> origin/gh/swolchok/415/orig 2025-06-05T23:12:47.3672518Z * [new branch] gh/swolchok/416/next -> origin/gh/swolchok/416/next 2025-06-05T23:12:47.3673494Z * [new branch] gh/swolchok/416/orig -> origin/gh/swolchok/416/orig 2025-06-05T23:12:47.3674783Z * [new branch] gh/swolchok/417/next -> origin/gh/swolchok/417/next 2025-06-05T23:12:47.3675758Z * [new branch] gh/swolchok/417/orig -> origin/gh/swolchok/417/orig 2025-06-05T23:12:47.3677131Z * [new branch] gh/swolchok/418/next -> origin/gh/swolchok/418/next 2025-06-05T23:12:47.3678182Z * [new branch] gh/swolchok/418/orig -> origin/gh/swolchok/418/orig 2025-06-05T23:12:47.3679772Z * [new branch] gh/swolchok/419/next -> origin/gh/swolchok/419/next 2025-06-05T23:12:47.3680928Z * [new branch] gh/swolchok/419/orig -> origin/gh/swolchok/419/orig 2025-06-05T23:12:47.3682451Z * [new branch] gh/swolchok/42/base -> origin/gh/swolchok/42/base 2025-06-05T23:12:47.3683426Z * [new branch] gh/swolchok/42/head -> origin/gh/swolchok/42/head 2025-06-05T23:12:47.3684473Z * [new branch] gh/swolchok/42/orig -> origin/gh/swolchok/42/orig 2025-06-05T23:12:47.3685875Z * [new branch] gh/swolchok/420/next -> origin/gh/swolchok/420/next 2025-06-05T23:12:47.3686891Z * [new branch] gh/swolchok/420/orig -> origin/gh/swolchok/420/orig 2025-06-05T23:12:47.3688705Z * [new branch] gh/swolchok/421/base -> origin/gh/swolchok/421/base 2025-06-05T23:12:47.3690001Z * [new branch] gh/swolchok/422/next -> origin/gh/swolchok/422/next 2025-06-05T23:12:47.3691235Z * [new branch] gh/swolchok/422/orig -> origin/gh/swolchok/422/orig 2025-06-05T23:12:47.3693812Z * [new branch] gh/swolchok/423/next -> origin/gh/swolchok/423/next 2025-06-05T23:12:47.3694787Z * [new branch] gh/swolchok/423/orig -> origin/gh/swolchok/423/orig 2025-06-05T23:12:47.3696094Z * [new branch] gh/swolchok/424/next -> origin/gh/swolchok/424/next 2025-06-05T23:12:47.3697115Z * [new branch] gh/swolchok/424/orig -> origin/gh/swolchok/424/orig 2025-06-05T23:12:47.3698410Z * [new branch] gh/swolchok/425/next -> origin/gh/swolchok/425/next 2025-06-05T23:12:47.3699525Z * [new branch] gh/swolchok/425/orig -> origin/gh/swolchok/425/orig 2025-06-05T23:12:47.3700992Z * [new branch] gh/swolchok/426/next -> origin/gh/swolchok/426/next 2025-06-05T23:12:47.3702049Z * [new branch] gh/swolchok/426/orig -> origin/gh/swolchok/426/orig 2025-06-05T23:12:47.3703329Z * [new branch] gh/swolchok/427/next -> origin/gh/swolchok/427/next 2025-06-05T23:12:47.3704742Z * [new branch] gh/swolchok/427/orig -> origin/gh/swolchok/427/orig 2025-06-05T23:12:47.3706055Z * [new branch] gh/swolchok/428/next -> origin/gh/swolchok/428/next 2025-06-05T23:12:47.3707211Z * [new branch] gh/swolchok/428/orig -> origin/gh/swolchok/428/orig 2025-06-05T23:12:47.3708537Z * [new branch] gh/swolchok/429/next -> origin/gh/swolchok/429/next 2025-06-05T23:12:47.3709924Z * [new branch] gh/swolchok/429/orig -> origin/gh/swolchok/429/orig 2025-06-05T23:12:47.3711315Z * [new branch] gh/swolchok/43/base -> origin/gh/swolchok/43/base 2025-06-05T23:12:47.3712371Z * [new branch] gh/swolchok/43/head -> origin/gh/swolchok/43/head 2025-06-05T23:12:47.3713395Z * [new branch] gh/swolchok/43/orig -> origin/gh/swolchok/43/orig 2025-06-05T23:12:47.3714772Z * [new branch] gh/swolchok/430/next -> origin/gh/swolchok/430/next 2025-06-05T23:12:47.3715740Z * [new branch] gh/swolchok/430/orig -> origin/gh/swolchok/430/orig 2025-06-05T23:12:47.3717125Z * [new branch] gh/swolchok/431/next -> origin/gh/swolchok/431/next 2025-06-05T23:12:47.3718372Z * [new branch] gh/swolchok/431/orig -> origin/gh/swolchok/431/orig 2025-06-05T23:12:47.3720108Z * [new branch] gh/swolchok/432/next -> origin/gh/swolchok/432/next 2025-06-05T23:12:47.3721257Z * [new branch] gh/swolchok/432/orig -> origin/gh/swolchok/432/orig 2025-06-05T23:12:47.3722585Z * [new branch] gh/swolchok/433/next -> origin/gh/swolchok/433/next 2025-06-05T23:12:47.3723725Z * [new branch] gh/swolchok/433/orig -> origin/gh/swolchok/433/orig 2025-06-05T23:12:47.3725015Z * [new branch] gh/swolchok/434/next -> origin/gh/swolchok/434/next 2025-06-05T23:12:47.3725956Z * [new branch] gh/swolchok/434/orig -> origin/gh/swolchok/434/orig 2025-06-05T23:12:47.3727332Z * [new branch] gh/swolchok/435/next -> origin/gh/swolchok/435/next 2025-06-05T23:12:47.3728684Z * [new branch] gh/swolchok/435/orig -> origin/gh/swolchok/435/orig 2025-06-05T23:12:47.3730124Z * [new branch] gh/swolchok/436/base -> origin/gh/swolchok/436/base 2025-06-05T23:12:47.3731790Z * [new branch] gh/swolchok/437/head -> origin/gh/swolchok/437/head 2025-06-05T23:12:47.3732599Z * [new branch] gh/swolchok/437/next -> origin/gh/swolchok/437/next 2025-06-05T23:12:47.3733615Z * [new branch] gh/swolchok/437/orig -> origin/gh/swolchok/437/orig 2025-06-05T23:12:47.3734933Z * [new branch] gh/swolchok/438/head -> origin/gh/swolchok/438/head 2025-06-05T23:12:47.3735715Z * [new branch] gh/swolchok/438/next -> origin/gh/swolchok/438/next 2025-06-05T23:12:47.3736727Z * [new branch] gh/swolchok/438/orig -> origin/gh/swolchok/438/orig 2025-06-05T23:12:47.3738053Z * [new branch] gh/swolchok/439/head -> origin/gh/swolchok/439/head 2025-06-05T23:12:47.3738840Z * [new branch] gh/swolchok/439/next -> origin/gh/swolchok/439/next 2025-06-05T23:12:47.3739939Z * [new branch] gh/swolchok/439/orig -> origin/gh/swolchok/439/orig 2025-06-05T23:12:47.3741537Z * [new branch] gh/swolchok/44/base -> origin/gh/swolchok/44/base 2025-06-05T23:12:47.3742531Z * [new branch] gh/swolchok/44/orig -> origin/gh/swolchok/44/orig 2025-06-05T23:12:47.3743824Z * [new branch] gh/swolchok/440/head -> origin/gh/swolchok/440/head 2025-06-05T23:12:47.3744598Z * [new branch] gh/swolchok/440/next -> origin/gh/swolchok/440/next 2025-06-05T23:12:47.3745656Z * [new branch] gh/swolchok/440/orig -> origin/gh/swolchok/440/orig 2025-06-05T23:12:47.3747419Z * [new branch] gh/swolchok/441/head -> origin/gh/swolchok/441/head 2025-06-05T23:12:47.3748237Z * [new branch] gh/swolchok/441/next -> origin/gh/swolchok/441/next 2025-06-05T23:12:47.3749253Z * [new branch] gh/swolchok/441/orig -> origin/gh/swolchok/441/orig 2025-06-05T23:12:47.3751126Z * [new branch] gh/swolchok/442/base -> origin/gh/swolchok/442/base 2025-06-05T23:12:47.3752470Z * [new branch] gh/swolchok/443/next -> origin/gh/swolchok/443/next 2025-06-05T23:12:47.3753440Z * [new branch] gh/swolchok/443/orig -> origin/gh/swolchok/443/orig 2025-06-05T23:12:47.3755327Z * [new branch] gh/swolchok/444/next -> origin/gh/swolchok/444/next 2025-06-05T23:12:47.3756276Z * [new branch] gh/swolchok/444/orig -> origin/gh/swolchok/444/orig 2025-06-05T23:12:47.3757639Z * [new branch] gh/swolchok/445/next -> origin/gh/swolchok/445/next 2025-06-05T23:12:47.3758620Z * [new branch] gh/swolchok/445/orig -> origin/gh/swolchok/445/orig 2025-06-05T23:12:47.3759979Z * [new branch] gh/swolchok/446/next -> origin/gh/swolchok/446/next 2025-06-05T23:12:47.3760797Z * [new branch] gh/swolchok/446/orig -> origin/gh/swolchok/446/orig 2025-06-05T23:12:47.3762213Z * [new branch] gh/swolchok/447/next -> origin/gh/swolchok/447/next 2025-06-05T23:12:47.3763167Z * [new branch] gh/swolchok/447/orig -> origin/gh/swolchok/447/orig 2025-06-05T23:12:47.3764601Z * [new branch] gh/swolchok/448/head -> origin/gh/swolchok/448/head 2025-06-05T23:12:47.3765392Z * [new branch] gh/swolchok/448/next -> origin/gh/swolchok/448/next 2025-06-05T23:12:47.3766420Z * [new branch] gh/swolchok/448/orig -> origin/gh/swolchok/448/orig 2025-06-05T23:12:47.3767872Z * [new branch] gh/swolchok/449/next -> origin/gh/swolchok/449/next 2025-06-05T23:12:47.3768835Z * [new branch] gh/swolchok/449/orig -> origin/gh/swolchok/449/orig 2025-06-05T23:12:47.3770182Z * [new branch] gh/swolchok/45/base -> origin/gh/swolchok/45/base 2025-06-05T23:12:47.3771164Z * [new branch] gh/swolchok/45/orig -> origin/gh/swolchok/45/orig 2025-06-05T23:12:47.3772569Z * [new branch] gh/swolchok/450/head -> origin/gh/swolchok/450/head 2025-06-05T23:12:47.3773481Z * [new branch] gh/swolchok/450/next -> origin/gh/swolchok/450/next 2025-06-05T23:12:47.3774476Z * [new branch] gh/swolchok/450/orig -> origin/gh/swolchok/450/orig 2025-06-05T23:12:47.3775741Z * [new branch] gh/swolchok/46/base -> origin/gh/swolchok/46/base 2025-06-05T23:12:47.3776718Z * [new branch] gh/swolchok/46/orig -> origin/gh/swolchok/46/orig 2025-06-05T23:12:47.3778191Z * [new branch] gh/swolchok/47/base -> origin/gh/swolchok/47/base 2025-06-05T23:12:47.3779047Z * [new branch] gh/swolchok/47/orig -> origin/gh/swolchok/47/orig 2025-06-05T23:12:47.3780741Z * [new branch] gh/swolchok/48/base -> origin/gh/swolchok/48/base 2025-06-05T23:12:47.3781699Z * [new branch] gh/swolchok/48/orig -> origin/gh/swolchok/48/orig 2025-06-05T23:12:47.3783156Z * [new branch] gh/swolchok/49/base -> origin/gh/swolchok/49/base 2025-06-05T23:12:47.3784149Z * [new branch] gh/swolchok/49/orig -> origin/gh/swolchok/49/orig 2025-06-05T23:12:47.3785458Z * [new branch] gh/swolchok/5/base -> origin/gh/swolchok/5/base 2025-06-05T23:12:47.3786416Z * [new branch] gh/swolchok/5/head -> origin/gh/swolchok/5/head 2025-06-05T23:12:47.3787438Z * [new branch] gh/swolchok/5/orig -> origin/gh/swolchok/5/orig 2025-06-05T23:12:47.3788770Z * [new branch] gh/swolchok/50/base -> origin/gh/swolchok/50/base 2025-06-05T23:12:47.3789763Z * [new branch] gh/swolchok/50/head -> origin/gh/swolchok/50/head 2025-06-05T23:12:47.3790749Z * [new branch] gh/swolchok/50/orig -> origin/gh/swolchok/50/orig 2025-06-05T23:12:47.3792371Z * [new branch] gh/swolchok/51/base -> origin/gh/swolchok/51/base 2025-06-05T23:12:47.3793301Z * [new branch] gh/swolchok/51/head -> origin/gh/swolchok/51/head 2025-06-05T23:12:47.3794457Z * [new branch] gh/swolchok/51/orig -> origin/gh/swolchok/51/orig 2025-06-05T23:12:47.3795646Z * [new branch] gh/swolchok/52/base -> origin/gh/swolchok/52/base 2025-06-05T23:12:47.3796673Z * [new branch] gh/swolchok/52/head -> origin/gh/swolchok/52/head 2025-06-05T23:12:47.3797685Z * [new branch] gh/swolchok/52/orig -> origin/gh/swolchok/52/orig 2025-06-05T23:12:47.3799253Z * [new branch] gh/swolchok/53/base -> origin/gh/swolchok/53/base 2025-06-05T23:12:47.3800113Z * [new branch] gh/swolchok/53/head -> origin/gh/swolchok/53/head 2025-06-05T23:12:47.3801178Z * [new branch] gh/swolchok/53/orig -> origin/gh/swolchok/53/orig 2025-06-05T23:12:47.3802634Z * [new branch] gh/swolchok/54/base -> origin/gh/swolchok/54/base 2025-06-05T23:12:47.3803645Z * [new branch] gh/swolchok/54/head -> origin/gh/swolchok/54/head 2025-06-05T23:12:47.3804835Z * [new branch] gh/swolchok/54/orig -> origin/gh/swolchok/54/orig 2025-06-05T23:12:47.3806293Z * [new branch] gh/swolchok/55/base -> origin/gh/swolchok/55/base 2025-06-05T23:12:47.3807234Z * [new branch] gh/swolchok/55/head -> origin/gh/swolchok/55/head 2025-06-05T23:12:47.3808205Z * [new branch] gh/swolchok/55/orig -> origin/gh/swolchok/55/orig 2025-06-05T23:12:47.3809847Z * [new branch] gh/swolchok/56/base -> origin/gh/swolchok/56/base 2025-06-05T23:12:47.3810722Z * [new branch] gh/swolchok/56/head -> origin/gh/swolchok/56/head 2025-06-05T23:12:47.3811737Z * [new branch] gh/swolchok/56/orig -> origin/gh/swolchok/56/orig 2025-06-05T23:12:47.3813568Z * [new branch] gh/swolchok/57/base -> origin/gh/swolchok/57/base 2025-06-05T23:12:47.3814478Z * [new branch] gh/swolchok/57/head -> origin/gh/swolchok/57/head 2025-06-05T23:12:47.3815450Z * [new branch] gh/swolchok/57/orig -> origin/gh/swolchok/57/orig 2025-06-05T23:12:47.3816861Z * [new branch] gh/swolchok/58/base -> origin/gh/swolchok/58/base 2025-06-05T23:12:47.3817804Z * [new branch] gh/swolchok/58/head -> origin/gh/swolchok/58/head 2025-06-05T23:12:47.3818825Z * [new branch] gh/swolchok/58/orig -> origin/gh/swolchok/58/orig 2025-06-05T23:12:47.3820242Z * [new branch] gh/swolchok/59/base -> origin/gh/swolchok/59/base 2025-06-05T23:12:47.3821124Z * [new branch] gh/swolchok/59/head -> origin/gh/swolchok/59/head 2025-06-05T23:12:47.3822103Z * [new branch] gh/swolchok/59/orig -> origin/gh/swolchok/59/orig 2025-06-05T23:12:47.3823625Z * [new branch] gh/swolchok/6/base -> origin/gh/swolchok/6/base 2025-06-05T23:12:47.3824515Z * [new branch] gh/swolchok/6/head -> origin/gh/swolchok/6/head 2025-06-05T23:12:47.3825507Z * [new branch] gh/swolchok/6/orig -> origin/gh/swolchok/6/orig 2025-06-05T23:12:47.3826852Z * [new branch] gh/swolchok/60/base -> origin/gh/swolchok/60/base 2025-06-05T23:12:47.3828240Z * [new branch] gh/swolchok/60/head -> origin/gh/swolchok/60/head 2025-06-05T23:12:47.3829143Z * [new branch] gh/swolchok/60/orig -> origin/gh/swolchok/60/orig 2025-06-05T23:12:47.3830625Z * [new branch] gh/swolchok/61/base -> origin/gh/swolchok/61/base 2025-06-05T23:12:47.3831517Z * [new branch] gh/swolchok/61/head -> origin/gh/swolchok/61/head 2025-06-05T23:12:47.3832584Z * [new branch] gh/swolchok/61/orig -> origin/gh/swolchok/61/orig 2025-06-05T23:12:47.3833907Z * [new branch] gh/swolchok/62/base -> origin/gh/swolchok/62/base 2025-06-05T23:12:47.3834861Z * [new branch] gh/swolchok/62/head -> origin/gh/swolchok/62/head 2025-06-05T23:12:47.3835993Z * [new branch] gh/swolchok/62/orig -> origin/gh/swolchok/62/orig 2025-06-05T23:12:47.3837483Z * [new branch] gh/swolchok/63/base -> origin/gh/swolchok/63/base 2025-06-05T23:12:47.3838768Z * [new branch] gh/swolchok/63/head -> origin/gh/swolchok/63/head 2025-06-05T23:12:47.3839673Z * [new branch] gh/swolchok/63/orig -> origin/gh/swolchok/63/orig 2025-06-05T23:12:47.3841070Z * [new branch] gh/swolchok/64/base -> origin/gh/swolchok/64/base 2025-06-05T23:12:47.3842009Z * [new branch] gh/swolchok/64/head -> origin/gh/swolchok/64/head 2025-06-05T23:12:47.3843039Z * [new branch] gh/swolchok/64/orig -> origin/gh/swolchok/64/orig 2025-06-05T23:12:47.3844525Z * [new branch] gh/swolchok/65/base -> origin/gh/swolchok/65/base 2025-06-05T23:12:47.3845418Z * [new branch] gh/swolchok/65/head -> origin/gh/swolchok/65/head 2025-06-05T23:12:47.3846477Z * [new branch] gh/swolchok/65/orig -> origin/gh/swolchok/65/orig 2025-06-05T23:12:47.3847814Z * [new branch] gh/swolchok/66/base -> origin/gh/swolchok/66/base 2025-06-05T23:12:47.3848755Z * [new branch] gh/swolchok/66/head -> origin/gh/swolchok/66/head 2025-06-05T23:12:47.3849669Z * [new branch] gh/swolchok/66/orig -> origin/gh/swolchok/66/orig 2025-06-05T23:12:47.3851633Z * [new branch] gh/swolchok/67/base -> origin/gh/swolchok/67/base 2025-06-05T23:12:47.3852674Z * [new branch] gh/swolchok/67/head -> origin/gh/swolchok/67/head 2025-06-05T23:12:47.3853614Z * [new branch] gh/swolchok/67/orig -> origin/gh/swolchok/67/orig 2025-06-05T23:12:47.3855053Z * [new branch] gh/swolchok/68/base -> origin/gh/swolchok/68/base 2025-06-05T23:12:47.3856095Z * [new branch] gh/swolchok/68/head -> origin/gh/swolchok/68/head 2025-06-05T23:12:47.3857042Z * [new branch] gh/swolchok/68/orig -> origin/gh/swolchok/68/orig 2025-06-05T23:12:47.3858279Z * [new branch] gh/swolchok/69/base -> origin/gh/swolchok/69/base 2025-06-05T23:12:47.3859349Z * [new branch] gh/swolchok/69/head -> origin/gh/swolchok/69/head 2025-06-05T23:12:47.3860453Z * [new branch] gh/swolchok/69/orig -> origin/gh/swolchok/69/orig 2025-06-05T23:12:47.3861642Z * [new branch] gh/swolchok/7/base -> origin/gh/swolchok/7/base 2025-06-05T23:12:47.3862762Z * [new branch] gh/swolchok/7/head -> origin/gh/swolchok/7/head 2025-06-05T23:12:47.3863768Z * [new branch] gh/swolchok/7/orig -> origin/gh/swolchok/7/orig 2025-06-05T23:12:47.3865270Z * [new branch] gh/swolchok/70/base -> origin/gh/swolchok/70/base 2025-06-05T23:12:47.3866260Z * [new branch] gh/swolchok/70/head -> origin/gh/swolchok/70/head 2025-06-05T23:12:47.3867273Z * [new branch] gh/swolchok/70/orig -> origin/gh/swolchok/70/orig 2025-06-05T23:12:47.3868685Z * [new branch] gh/swolchok/71/base -> origin/gh/swolchok/71/base 2025-06-05T23:12:47.3869711Z * [new branch] gh/swolchok/71/head -> origin/gh/swolchok/71/head 2025-06-05T23:12:47.3870790Z * [new branch] gh/swolchok/71/orig -> origin/gh/swolchok/71/orig 2025-06-05T23:12:47.3872754Z * [new branch] gh/swolchok/72/base -> origin/gh/swolchok/72/base 2025-06-05T23:12:47.3873760Z * [new branch] gh/swolchok/72/head -> origin/gh/swolchok/72/head 2025-06-05T23:12:47.3874756Z * [new branch] gh/swolchok/72/orig -> origin/gh/swolchok/72/orig 2025-06-05T23:12:47.3875965Z * [new branch] gh/swolchok/73/base -> origin/gh/swolchok/73/base 2025-06-05T23:12:47.3876966Z * [new branch] gh/swolchok/73/head -> origin/gh/swolchok/73/head 2025-06-05T23:12:47.3877960Z * [new branch] gh/swolchok/73/orig -> origin/gh/swolchok/73/orig 2025-06-05T23:12:47.3879364Z * [new branch] gh/swolchok/74/base -> origin/gh/swolchok/74/base 2025-06-05T23:12:47.3880323Z * [new branch] gh/swolchok/74/head -> origin/gh/swolchok/74/head 2025-06-05T23:12:47.3881381Z * [new branch] gh/swolchok/74/orig -> origin/gh/swolchok/74/orig 2025-06-05T23:12:47.3883039Z * [new branch] gh/swolchok/75/base -> origin/gh/swolchok/75/base 2025-06-05T23:12:47.3884224Z * [new branch] gh/swolchok/75/head -> origin/gh/swolchok/75/head 2025-06-05T23:12:47.3885206Z * [new branch] gh/swolchok/75/orig -> origin/gh/swolchok/75/orig 2025-06-05T23:12:47.3886606Z * [new branch] gh/swolchok/76/base -> origin/gh/swolchok/76/base 2025-06-05T23:12:47.3887779Z * [new branch] gh/swolchok/77/base -> origin/gh/swolchok/77/base 2025-06-05T23:12:47.3888992Z * [new branch] gh/swolchok/78/base -> origin/gh/swolchok/78/base 2025-06-05T23:12:47.3890827Z * [new branch] gh/swolchok/79/base -> origin/gh/swolchok/79/base 2025-06-05T23:12:47.3892086Z * [new branch] gh/swolchok/79/head -> origin/gh/swolchok/79/head 2025-06-05T23:12:47.3893074Z * [new branch] gh/swolchok/79/orig -> origin/gh/swolchok/79/orig 2025-06-05T23:12:47.3894350Z * [new branch] gh/swolchok/8/base -> origin/gh/swolchok/8/base 2025-06-05T23:12:47.3895380Z * [new branch] gh/swolchok/8/head -> origin/gh/swolchok/8/head 2025-06-05T23:12:47.3896920Z * [new branch] gh/swolchok/8/orig -> origin/gh/swolchok/8/orig 2025-06-05T23:12:47.3898151Z * [new branch] gh/swolchok/80/base -> origin/gh/swolchok/80/base 2025-06-05T23:12:47.3899094Z * [new branch] gh/swolchok/80/head -> origin/gh/swolchok/80/head 2025-06-05T23:12:47.3900121Z * [new branch] gh/swolchok/80/orig -> origin/gh/swolchok/80/orig 2025-06-05T23:12:47.3901281Z * [new branch] gh/swolchok/81/base -> origin/gh/swolchok/81/base 2025-06-05T23:12:47.3902291Z * [new branch] gh/swolchok/81/head -> origin/gh/swolchok/81/head 2025-06-05T23:12:47.3903289Z * [new branch] gh/swolchok/81/orig -> origin/gh/swolchok/81/orig 2025-06-05T23:12:47.3904460Z * [new branch] gh/swolchok/82/base -> origin/gh/swolchok/82/base 2025-06-05T23:12:47.3905434Z * [new branch] gh/swolchok/82/head -> origin/gh/swolchok/82/head 2025-06-05T23:12:47.3906423Z * [new branch] gh/swolchok/82/orig -> origin/gh/swolchok/82/orig 2025-06-05T23:12:47.3907686Z * [new branch] gh/swolchok/83/base -> origin/gh/swolchok/83/base 2025-06-05T23:12:47.3908689Z * [new branch] gh/swolchok/83/head -> origin/gh/swolchok/83/head 2025-06-05T23:12:47.3909921Z * [new branch] gh/swolchok/84/base -> origin/gh/swolchok/84/base 2025-06-05T23:12:47.3911117Z * [new branch] gh/swolchok/85/base -> origin/gh/swolchok/85/base 2025-06-05T23:12:47.3912030Z * [new branch] gh/swolchok/85/head -> origin/gh/swolchok/85/head 2025-06-05T23:12:47.3913024Z * [new branch] gh/swolchok/85/orig -> origin/gh/swolchok/85/orig 2025-06-05T23:12:47.3914382Z * [new branch] gh/swolchok/86/base -> origin/gh/swolchok/86/base 2025-06-05T23:12:47.3915395Z * [new branch] gh/swolchok/86/head -> origin/gh/swolchok/86/head 2025-06-05T23:12:47.3916321Z * [new branch] gh/swolchok/86/orig -> origin/gh/swolchok/86/orig 2025-06-05T23:12:47.3917747Z * [new branch] gh/swolchok/87/base -> origin/gh/swolchok/87/base 2025-06-05T23:12:47.3918762Z * [new branch] gh/swolchok/87/head -> origin/gh/swolchok/87/head 2025-06-05T23:12:47.3919820Z * [new branch] gh/swolchok/87/orig -> origin/gh/swolchok/87/orig 2025-06-05T23:12:47.3921399Z * [new branch] gh/swolchok/88/base -> origin/gh/swolchok/88/base 2025-06-05T23:12:47.3922321Z * [new branch] gh/swolchok/88/head -> origin/gh/swolchok/88/head 2025-06-05T23:12:47.3923272Z * [new branch] gh/swolchok/88/orig -> origin/gh/swolchok/88/orig 2025-06-05T23:12:47.3924829Z * [new branch] gh/swolchok/89/base -> origin/gh/swolchok/89/base 2025-06-05T23:12:47.3925736Z * [new branch] gh/swolchok/89/head -> origin/gh/swolchok/89/head 2025-06-05T23:12:47.3926759Z * [new branch] gh/swolchok/89/orig -> origin/gh/swolchok/89/orig 2025-06-05T23:12:47.3928046Z * [new branch] gh/swolchok/9/base -> origin/gh/swolchok/9/base 2025-06-05T23:12:47.3929018Z * [new branch] gh/swolchok/9/head -> origin/gh/swolchok/9/head 2025-06-05T23:12:47.3929968Z * [new branch] gh/swolchok/9/orig -> origin/gh/swolchok/9/orig 2025-06-05T23:12:47.3931451Z * [new branch] gh/swolchok/90/base -> origin/gh/swolchok/90/base 2025-06-05T23:12:47.3932402Z * [new branch] gh/swolchok/90/head -> origin/gh/swolchok/90/head 2025-06-05T23:12:47.3933433Z * [new branch] gh/swolchok/90/orig -> origin/gh/swolchok/90/orig 2025-06-05T23:12:47.3934954Z * [new branch] gh/swolchok/91/base -> origin/gh/swolchok/91/base 2025-06-05T23:12:47.3935938Z * [new branch] gh/swolchok/91/head -> origin/gh/swolchok/91/head 2025-06-05T23:12:47.3936990Z * [new branch] gh/swolchok/91/orig -> origin/gh/swolchok/91/orig 2025-06-05T23:12:47.3938159Z * [new branch] gh/swolchok/92/base -> origin/gh/swolchok/92/base 2025-06-05T23:12:47.3939133Z * [new branch] gh/swolchok/92/head -> origin/gh/swolchok/92/head 2025-06-05T23:12:47.3940158Z * [new branch] gh/swolchok/92/orig -> origin/gh/swolchok/92/orig 2025-06-05T23:12:47.3941587Z * [new branch] gh/swolchok/93/base -> origin/gh/swolchok/93/base 2025-06-05T23:12:47.3942503Z * [new branch] gh/swolchok/93/head -> origin/gh/swolchok/93/head 2025-06-05T23:12:47.3943490Z * [new branch] gh/swolchok/93/orig -> origin/gh/swolchok/93/orig 2025-06-05T23:12:47.3945237Z * [new branch] gh/swolchok/94/base -> origin/gh/swolchok/94/base 2025-06-05T23:12:47.3946607Z * [new branch] gh/swolchok/94/head -> origin/gh/swolchok/94/head 2025-06-05T23:12:47.3947852Z * [new branch] gh/swolchok/95/base -> origin/gh/swolchok/95/base 2025-06-05T23:12:47.3948754Z * [new branch] gh/swolchok/95/head -> origin/gh/swolchok/95/head 2025-06-05T23:12:47.3950213Z * [new branch] gh/swolchok/96/base -> origin/gh/swolchok/96/base 2025-06-05T23:12:47.3951139Z * [new branch] gh/swolchok/96/head -> origin/gh/swolchok/96/head 2025-06-05T23:12:47.3952114Z * [new branch] gh/swolchok/96/orig -> origin/gh/swolchok/96/orig 2025-06-05T23:12:47.3953517Z * [new branch] gh/swolchok/97/base -> origin/gh/swolchok/97/base 2025-06-05T23:12:47.3954604Z * [new branch] gh/swolchok/97/head -> origin/gh/swolchok/97/head 2025-06-05T23:12:47.3955618Z * [new branch] gh/swolchok/97/orig -> origin/gh/swolchok/97/orig 2025-06-05T23:12:47.3957053Z * [new branch] gh/swolchok/98/base -> origin/gh/swolchok/98/base 2025-06-05T23:12:47.3957965Z * [new branch] gh/swolchok/98/head -> origin/gh/swolchok/98/head 2025-06-05T23:12:47.3958903Z * [new branch] gh/swolchok/98/orig -> origin/gh/swolchok/98/orig 2025-06-05T23:12:47.3960252Z * [new branch] gh/swolchok/99/base -> origin/gh/swolchok/99/base 2025-06-05T23:12:47.3961235Z * [new branch] gh/swolchok/99/head -> origin/gh/swolchok/99/head 2025-06-05T23:12:47.3962158Z * [new branch] gh/swolchok/99/orig -> origin/gh/swolchok/99/orig 2025-06-05T23:12:47.3964022Z * [new branch] gh/tarun292/1/base -> origin/gh/tarun292/1/base 2025-06-05T23:12:47.3965042Z * [new branch] gh/tarun292/1/head -> origin/gh/tarun292/1/head 2025-06-05T23:12:47.3966071Z * [new branch] gh/tarun292/1/orig -> origin/gh/tarun292/1/orig 2025-06-05T23:12:47.3967404Z * [new branch] gh/tarun292/2/base -> origin/gh/tarun292/2/base 2025-06-05T23:12:47.3968307Z * [new branch] gh/tarun292/2/head -> origin/gh/tarun292/2/head 2025-06-05T23:12:47.3969268Z * [new branch] gh/tarun292/2/orig -> origin/gh/tarun292/2/orig 2025-06-05T23:12:47.3970626Z * [new branch] gh/tarun292/3/base -> origin/gh/tarun292/3/base 2025-06-05T23:12:47.3971512Z * [new branch] gh/tarun292/3/head -> origin/gh/tarun292/3/head 2025-06-05T23:12:47.3972416Z * [new branch] gh/tarun292/3/orig -> origin/gh/tarun292/3/orig 2025-06-05T23:12:47.3973783Z * [new branch] gh/tarun292/4/base -> origin/gh/tarun292/4/base 2025-06-05T23:12:47.3974756Z * [new branch] gh/tarun292/4/orig -> origin/gh/tarun292/4/orig 2025-06-05T23:12:47.3976092Z * [new branch] gh/tarun292/5/base -> origin/gh/tarun292/5/base 2025-06-05T23:12:47.3977162Z * [new branch] gh/tarun292/5/head -> origin/gh/tarun292/5/head 2025-06-05T23:12:47.3978152Z * [new branch] gh/tarun292/5/orig -> origin/gh/tarun292/5/orig 2025-06-05T23:12:47.3979474Z * [new branch] gh/tarun292/6/base -> origin/gh/tarun292/6/base 2025-06-05T23:12:47.3980363Z * [new branch] gh/tarun292/6/head -> origin/gh/tarun292/6/head 2025-06-05T23:12:47.3981292Z * [new branch] gh/tarun292/6/orig -> origin/gh/tarun292/6/orig 2025-06-05T23:12:47.3982500Z * [new branch] gh/tarun292/7/base -> origin/gh/tarun292/7/base 2025-06-05T23:12:47.3983594Z * [new branch] gh/tarun292/7/head -> origin/gh/tarun292/7/head 2025-06-05T23:12:47.3984627Z * [new branch] gh/tarun292/7/orig -> origin/gh/tarun292/7/orig 2025-06-05T23:12:47.3986359Z * [new branch] gh/trivedivivek/1/base -> origin/gh/trivedivivek/1/base 2025-06-05T23:12:47.3987731Z * [new branch] gh/trivedivivek/10/base -> origin/gh/trivedivivek/10/base 2025-06-05T23:12:47.3989174Z * [new branch] gh/trivedivivek/100/base -> origin/gh/trivedivivek/100/base 2025-06-05T23:12:47.3990563Z * [new branch] gh/trivedivivek/101/base -> origin/gh/trivedivivek/101/base 2025-06-05T23:12:47.3993865Z * [new branch] gh/trivedivivek/102/base -> origin/gh/trivedivivek/102/base 2025-06-05T23:12:47.3995341Z * [new branch] gh/trivedivivek/103/base -> origin/gh/trivedivivek/103/base 2025-06-05T23:12:47.3996417Z * [new branch] gh/trivedivivek/103/head -> origin/gh/trivedivivek/103/head 2025-06-05T23:12:47.3997694Z * [new branch] gh/trivedivivek/104/base -> origin/gh/trivedivivek/104/base 2025-06-05T23:12:47.3998590Z * [new branch] gh/trivedivivek/104/head -> origin/gh/trivedivivek/104/head 2025-06-05T23:12:47.3999995Z * [new branch] gh/trivedivivek/105/base -> origin/gh/trivedivivek/105/base 2025-06-05T23:12:47.4000945Z * [new branch] gh/trivedivivek/105/head -> origin/gh/trivedivivek/105/head 2025-06-05T23:12:47.4002198Z * [new branch] gh/trivedivivek/106/base -> origin/gh/trivedivivek/106/base 2025-06-05T23:12:47.4003199Z * [new branch] gh/trivedivivek/106/head -> origin/gh/trivedivivek/106/head 2025-06-05T23:12:47.4004836Z * [new branch] gh/trivedivivek/107/base -> origin/gh/trivedivivek/107/base 2025-06-05T23:12:47.4006335Z * [new branch] gh/trivedivivek/108/base -> origin/gh/trivedivivek/108/base 2025-06-05T23:12:47.4007740Z * [new branch] gh/trivedivivek/109/base -> origin/gh/trivedivivek/109/base 2025-06-05T23:12:47.4009224Z * [new branch] gh/trivedivivek/11/base -> origin/gh/trivedivivek/11/base 2025-06-05T23:12:47.4010557Z * [new branch] gh/trivedivivek/110/base -> origin/gh/trivedivivek/110/base 2025-06-05T23:12:47.4012294Z * [new branch] gh/trivedivivek/111/base -> origin/gh/trivedivivek/111/base 2025-06-05T23:12:47.4013403Z * [new branch] gh/trivedivivek/111/head -> origin/gh/trivedivivek/111/head 2025-06-05T23:12:47.4014388Z * [new branch] gh/trivedivivek/111/orig -> origin/gh/trivedivivek/111/orig 2025-06-05T23:12:47.4015868Z * [new branch] gh/trivedivivek/12/base -> origin/gh/trivedivivek/12/base 2025-06-05T23:12:47.4017187Z * [new branch] gh/trivedivivek/13/base -> origin/gh/trivedivivek/13/base 2025-06-05T23:12:47.4018921Z * [new branch] gh/trivedivivek/14/base -> origin/gh/trivedivivek/14/base 2025-06-05T23:12:47.4020328Z * [new branch] gh/trivedivivek/15/base -> origin/gh/trivedivivek/15/base 2025-06-05T23:12:47.4021814Z * [new branch] gh/trivedivivek/16/base -> origin/gh/trivedivivek/16/base 2025-06-05T23:12:47.4023245Z * [new branch] gh/trivedivivek/17/base -> origin/gh/trivedivivek/17/base 2025-06-05T23:12:47.4024994Z * [new branch] gh/trivedivivek/18/base -> origin/gh/trivedivivek/18/base 2025-06-05T23:12:47.4026375Z * [new branch] gh/trivedivivek/19/base -> origin/gh/trivedivivek/19/base 2025-06-05T23:12:47.4027652Z * [new branch] gh/trivedivivek/2/base -> origin/gh/trivedivivek/2/base 2025-06-05T23:12:47.4029037Z * [new branch] gh/trivedivivek/20/base -> origin/gh/trivedivivek/20/base 2025-06-05T23:12:47.4030392Z * [new branch] gh/trivedivivek/21/base -> origin/gh/trivedivivek/21/base 2025-06-05T23:12:47.4031792Z * [new branch] gh/trivedivivek/22/base -> origin/gh/trivedivivek/22/base 2025-06-05T23:12:47.4033195Z * [new branch] gh/trivedivivek/23/base -> origin/gh/trivedivivek/23/base 2025-06-05T23:12:47.4034540Z * [new branch] gh/trivedivivek/24/base -> origin/gh/trivedivivek/24/base 2025-06-05T23:12:47.4035926Z * [new branch] gh/trivedivivek/25/base -> origin/gh/trivedivivek/25/base 2025-06-05T23:12:47.4037313Z * [new branch] gh/trivedivivek/26/base -> origin/gh/trivedivivek/26/base 2025-06-05T23:12:47.4038692Z * [new branch] gh/trivedivivek/27/base -> origin/gh/trivedivivek/27/base 2025-06-05T23:12:47.4040457Z * [new branch] gh/trivedivivek/28/base -> origin/gh/trivedivivek/28/base 2025-06-05T23:12:47.4041486Z * [new branch] gh/trivedivivek/28/head -> origin/gh/trivedivivek/28/head 2025-06-05T23:12:47.4042552Z * [new branch] gh/trivedivivek/28/orig -> origin/gh/trivedivivek/28/orig 2025-06-05T23:12:47.4044049Z * [new branch] gh/trivedivivek/29/base -> origin/gh/trivedivivek/29/base 2025-06-05T23:12:47.4045297Z * [new branch] gh/trivedivivek/3/base -> origin/gh/trivedivivek/3/base 2025-06-05T23:12:47.4046694Z * [new branch] gh/trivedivivek/30/base -> origin/gh/trivedivivek/30/base 2025-06-05T23:12:47.4048114Z * [new branch] gh/trivedivivek/31/base -> origin/gh/trivedivivek/31/base 2025-06-05T23:12:47.4049498Z * [new branch] gh/trivedivivek/32/base -> origin/gh/trivedivivek/32/base 2025-06-05T23:12:47.4050850Z * [new branch] gh/trivedivivek/33/base -> origin/gh/trivedivivek/33/base 2025-06-05T23:12:47.4052342Z * [new branch] gh/trivedivivek/34/base -> origin/gh/trivedivivek/34/base 2025-06-05T23:12:47.4053753Z * [new branch] gh/trivedivivek/35/base -> origin/gh/trivedivivek/35/base 2025-06-05T23:12:47.4055059Z * [new branch] gh/trivedivivek/36/base -> origin/gh/trivedivivek/36/base 2025-06-05T23:12:47.4056451Z * [new branch] gh/trivedivivek/37/base -> origin/gh/trivedivivek/37/base 2025-06-05T23:12:47.4057922Z * [new branch] gh/trivedivivek/38/base -> origin/gh/trivedivivek/38/base 2025-06-05T23:12:47.4058856Z * [new branch] gh/trivedivivek/38/head -> origin/gh/trivedivivek/38/head 2025-06-05T23:12:47.4060279Z * [new branch] gh/trivedivivek/39/base -> origin/gh/trivedivivek/39/base 2025-06-05T23:12:47.4061187Z * [new branch] gh/trivedivivek/39/head -> origin/gh/trivedivivek/39/head 2025-06-05T23:12:47.4062342Z * [new branch] gh/trivedivivek/4/base -> origin/gh/trivedivivek/4/base 2025-06-05T23:12:47.4063628Z * [new branch] gh/trivedivivek/40/base -> origin/gh/trivedivivek/40/base 2025-06-05T23:12:47.4064600Z * [new branch] gh/trivedivivek/40/head -> origin/gh/trivedivivek/40/head 2025-06-05T23:12:47.4065594Z * [new branch] gh/trivedivivek/40/orig -> origin/gh/trivedivivek/40/orig 2025-06-05T23:12:47.4066994Z * [new branch] gh/trivedivivek/41/base -> origin/gh/trivedivivek/41/base 2025-06-05T23:12:47.4068790Z * [new branch] gh/trivedivivek/42/base -> origin/gh/trivedivivek/42/base 2025-06-05T23:12:47.4070163Z * [new branch] gh/trivedivivek/43/base -> origin/gh/trivedivivek/43/base 2025-06-05T23:12:47.4071219Z * [new branch] gh/trivedivivek/43/head -> origin/gh/trivedivivek/43/head 2025-06-05T23:12:47.4072293Z * [new branch] gh/trivedivivek/43/orig -> origin/gh/trivedivivek/43/orig 2025-06-05T23:12:47.4073681Z * [new branch] gh/trivedivivek/44/base -> origin/gh/trivedivivek/44/base 2025-06-05T23:12:47.4074792Z * [new branch] gh/trivedivivek/44/head -> origin/gh/trivedivivek/44/head 2025-06-05T23:12:47.4075899Z * [new branch] gh/trivedivivek/44/orig -> origin/gh/trivedivivek/44/orig 2025-06-05T23:12:47.4077408Z * [new branch] gh/trivedivivek/45/base -> origin/gh/trivedivivek/45/base 2025-06-05T23:12:47.4078804Z * [new branch] gh/trivedivivek/46/base -> origin/gh/trivedivivek/46/base 2025-06-05T23:12:47.4080125Z * [new branch] gh/trivedivivek/47/base -> origin/gh/trivedivivek/47/base 2025-06-05T23:12:47.4081505Z * [new branch] gh/trivedivivek/48/base -> origin/gh/trivedivivek/48/base 2025-06-05T23:12:47.4082925Z * [new branch] gh/trivedivivek/49/base -> origin/gh/trivedivivek/49/base 2025-06-05T23:12:47.4084451Z * [new branch] gh/trivedivivek/5/base -> origin/gh/trivedivivek/5/base 2025-06-05T23:12:47.4086209Z * [new branch] gh/trivedivivek/50/base -> origin/gh/trivedivivek/50/base 2025-06-05T23:12:47.4087269Z * [new branch] gh/trivedivivek/50/head -> origin/gh/trivedivivek/50/head 2025-06-05T23:12:47.4088323Z * [new branch] gh/trivedivivek/50/orig -> origin/gh/trivedivivek/50/orig 2025-06-05T23:12:47.4089732Z * [new branch] gh/trivedivivek/51/base -> origin/gh/trivedivivek/51/base 2025-06-05T23:12:47.4091372Z * [new branch] gh/trivedivivek/52/base -> origin/gh/trivedivivek/52/base 2025-06-05T23:12:47.4092930Z * [new branch] gh/trivedivivek/53/base -> origin/gh/trivedivivek/53/base 2025-06-05T23:12:47.4094321Z * [new branch] gh/trivedivivek/54/base -> origin/gh/trivedivivek/54/base 2025-06-05T23:12:47.4095667Z * [new branch] gh/trivedivivek/55/base -> origin/gh/trivedivivek/55/base 2025-06-05T23:12:47.4097020Z * [new branch] gh/trivedivivek/56/base -> origin/gh/trivedivivek/56/base 2025-06-05T23:12:47.4098839Z * [new branch] gh/trivedivivek/57/base -> origin/gh/trivedivivek/57/base 2025-06-05T23:12:47.4100240Z * [new branch] gh/trivedivivek/58/base -> origin/gh/trivedivivek/58/base 2025-06-05T23:12:47.4101595Z * [new branch] gh/trivedivivek/59/base -> origin/gh/trivedivivek/59/base 2025-06-05T23:12:47.4103055Z * [new branch] gh/trivedivivek/6/base -> origin/gh/trivedivivek/6/base 2025-06-05T23:12:47.4104144Z * [new branch] gh/trivedivivek/6/head -> origin/gh/trivedivivek/6/head 2025-06-05T23:12:47.4105193Z * [new branch] gh/trivedivivek/6/orig -> origin/gh/trivedivivek/6/orig 2025-06-05T23:12:47.4106696Z * [new branch] gh/trivedivivek/60/base -> origin/gh/trivedivivek/60/base 2025-06-05T23:12:47.4108039Z * [new branch] gh/trivedivivek/61/base -> origin/gh/trivedivivek/61/base 2025-06-05T23:12:47.4109397Z * [new branch] gh/trivedivivek/62/base -> origin/gh/trivedivivek/62/base 2025-06-05T23:12:47.4110875Z * [new branch] gh/trivedivivek/63/base -> origin/gh/trivedivivek/63/base 2025-06-05T23:12:47.4112613Z * [new branch] gh/trivedivivek/64/base -> origin/gh/trivedivivek/64/base 2025-06-05T23:12:47.4114034Z * [new branch] gh/trivedivivek/65/base -> origin/gh/trivedivivek/65/base 2025-06-05T23:12:47.4115542Z * [new branch] gh/trivedivivek/66/base -> origin/gh/trivedivivek/66/base 2025-06-05T23:12:47.4116972Z * [new branch] gh/trivedivivek/67/base -> origin/gh/trivedivivek/67/base 2025-06-05T23:12:47.4118378Z * [new branch] gh/trivedivivek/68/base -> origin/gh/trivedivivek/68/base 2025-06-05T23:12:47.4119748Z * [new branch] gh/trivedivivek/69/base -> origin/gh/trivedivivek/69/base 2025-06-05T23:12:47.4120908Z * [new branch] gh/trivedivivek/7/base -> origin/gh/trivedivivek/7/base 2025-06-05T23:12:47.4121913Z * [new branch] gh/trivedivivek/7/head -> origin/gh/trivedivivek/7/head 2025-06-05T23:12:47.4122976Z * [new branch] gh/trivedivivek/7/orig -> origin/gh/trivedivivek/7/orig 2025-06-05T23:12:47.4124813Z * [new branch] gh/trivedivivek/70/base -> origin/gh/trivedivivek/70/base 2025-06-05T23:12:47.4126224Z * [new branch] gh/trivedivivek/71/base -> origin/gh/trivedivivek/71/base 2025-06-05T23:12:47.4127663Z * [new branch] gh/trivedivivek/72/base -> origin/gh/trivedivivek/72/base 2025-06-05T23:12:47.4129027Z * [new branch] gh/trivedivivek/73/base -> origin/gh/trivedivivek/73/base 2025-06-05T23:12:47.4130466Z * [new branch] gh/trivedivivek/74/base -> origin/gh/trivedivivek/74/base 2025-06-05T23:12:47.4131529Z * [new branch] gh/trivedivivek/74/head -> origin/gh/trivedivivek/74/head 2025-06-05T23:12:47.4132584Z * [new branch] gh/trivedivivek/74/orig -> origin/gh/trivedivivek/74/orig 2025-06-05T23:12:47.4133965Z * [new branch] gh/trivedivivek/75/base -> origin/gh/trivedivivek/75/base 2025-06-05T23:12:47.4134968Z * [new branch] gh/trivedivivek/75/head -> origin/gh/trivedivivek/75/head 2025-06-05T23:12:47.4135997Z * [new branch] gh/trivedivivek/75/orig -> origin/gh/trivedivivek/75/orig 2025-06-05T23:12:47.4137373Z * [new branch] gh/trivedivivek/76/base -> origin/gh/trivedivivek/76/base 2025-06-05T23:12:47.4138422Z * [new branch] gh/trivedivivek/76/head -> origin/gh/trivedivivek/76/head 2025-06-05T23:12:47.4139491Z * [new branch] gh/trivedivivek/76/orig -> origin/gh/trivedivivek/76/orig 2025-06-05T23:12:47.4140950Z * [new branch] gh/trivedivivek/77/base -> origin/gh/trivedivivek/77/base 2025-06-05T23:12:47.4142040Z * [new branch] gh/trivedivivek/77/head -> origin/gh/trivedivivek/77/head 2025-06-05T23:12:47.4143145Z * [new branch] gh/trivedivivek/77/orig -> origin/gh/trivedivivek/77/orig 2025-06-05T23:12:47.4144491Z * [new branch] gh/trivedivivek/78/base -> origin/gh/trivedivivek/78/base 2025-06-05T23:12:47.4145635Z * [new branch] gh/trivedivivek/78/orig -> origin/gh/trivedivivek/78/orig 2025-06-05T23:12:47.4147003Z * [new branch] gh/trivedivivek/79/base -> origin/gh/trivedivivek/79/base 2025-06-05T23:12:47.4147949Z * [new branch] gh/trivedivivek/79/orig -> origin/gh/trivedivivek/79/orig 2025-06-05T23:12:47.4149122Z * [new branch] gh/trivedivivek/8/base -> origin/gh/trivedivivek/8/base 2025-06-05T23:12:47.4150042Z * [new branch] gh/trivedivivek/8/head -> origin/gh/trivedivivek/8/head 2025-06-05T23:12:47.4151354Z * [new branch] gh/trivedivivek/8/orig -> origin/gh/trivedivivek/8/orig 2025-06-05T23:12:47.4152756Z * [new branch] gh/trivedivivek/80/base -> origin/gh/trivedivivek/80/base 2025-06-05T23:12:47.4154198Z * [new branch] gh/trivedivivek/81/base -> origin/gh/trivedivivek/81/base 2025-06-05T23:12:47.4155650Z * [new branch] gh/trivedivivek/82/base -> origin/gh/trivedivivek/82/base 2025-06-05T23:12:47.4157034Z * [new branch] gh/trivedivivek/83/base -> origin/gh/trivedivivek/83/base 2025-06-05T23:12:47.4158528Z * [new branch] gh/trivedivivek/83/head -> origin/gh/trivedivivek/83/head 2025-06-05T23:12:47.4159548Z * [new branch] gh/trivedivivek/83/orig -> origin/gh/trivedivivek/83/orig 2025-06-05T23:12:47.4160756Z * [new branch] gh/trivedivivek/84/base -> origin/gh/trivedivivek/84/base 2025-06-05T23:12:47.4161812Z * [new branch] gh/trivedivivek/84/head -> origin/gh/trivedivivek/84/head 2025-06-05T23:12:47.4162800Z * [new branch] gh/trivedivivek/84/orig -> origin/gh/trivedivivek/84/orig 2025-06-05T23:12:47.4164122Z * [new branch] gh/trivedivivek/85/base -> origin/gh/trivedivivek/85/base 2025-06-05T23:12:47.4165097Z * [new branch] gh/trivedivivek/85/head -> origin/gh/trivedivivek/85/head 2025-06-05T23:12:47.4166140Z * [new branch] gh/trivedivivek/85/orig -> origin/gh/trivedivivek/85/orig 2025-06-05T23:12:47.4167463Z * [new branch] gh/trivedivivek/86/base -> origin/gh/trivedivivek/86/base 2025-06-05T23:12:47.4168967Z * [new branch] gh/trivedivivek/87/base -> origin/gh/trivedivivek/87/base 2025-06-05T23:12:47.4170707Z * [new branch] gh/trivedivivek/88/base -> origin/gh/trivedivivek/88/base 2025-06-05T23:12:47.4171768Z * [new branch] gh/trivedivivek/88/head -> origin/gh/trivedivivek/88/head 2025-06-05T23:12:47.4172827Z * [new branch] gh/trivedivivek/88/orig -> origin/gh/trivedivivek/88/orig 2025-06-05T23:12:47.4174204Z * [new branch] gh/trivedivivek/89/base -> origin/gh/trivedivivek/89/base 2025-06-05T23:12:47.4175382Z * [new branch] gh/trivedivivek/9/base -> origin/gh/trivedivivek/9/base 2025-06-05T23:12:47.4176787Z * [new branch] gh/trivedivivek/90/base -> origin/gh/trivedivivek/90/base 2025-06-05T23:12:47.4178152Z * [new branch] gh/trivedivivek/91/base -> origin/gh/trivedivivek/91/base 2025-06-05T23:12:47.4179553Z * [new branch] gh/trivedivivek/92/base -> origin/gh/trivedivivek/92/base 2025-06-05T23:12:47.4180993Z * [new branch] gh/trivedivivek/93/base -> origin/gh/trivedivivek/93/base 2025-06-05T23:12:47.4182352Z * [new branch] gh/trivedivivek/94/base -> origin/gh/trivedivivek/94/base 2025-06-05T23:12:47.4183735Z * [new branch] gh/trivedivivek/95/base -> origin/gh/trivedivivek/95/base 2025-06-05T23:12:47.4185073Z * [new branch] gh/trivedivivek/96/base -> origin/gh/trivedivivek/96/base 2025-06-05T23:12:47.4186480Z * [new branch] gh/trivedivivek/97/base -> origin/gh/trivedivivek/97/base 2025-06-05T23:12:47.4188006Z * [new branch] gh/trivedivivek/98/base -> origin/gh/trivedivivek/98/base 2025-06-05T23:12:47.4189399Z * [new branch] gh/trivedivivek/99/base -> origin/gh/trivedivivek/99/base 2025-06-05T23:12:47.4191210Z * [new branch] gh/tugsbayasgalan/1/base -> origin/gh/tugsbayasgalan/1/base 2025-06-05T23:12:47.4193634Z * [new branch] gh/tugsbayasgalan/1/head -> origin/gh/tugsbayasgalan/1/head 2025-06-05T23:12:47.4194662Z * [new branch] gh/tugsbayasgalan/1/orig -> origin/gh/tugsbayasgalan/1/orig 2025-06-05T23:12:47.4195971Z * [new branch] gh/tugsbayasgalan/2/base -> origin/gh/tugsbayasgalan/2/base 2025-06-05T23:12:47.4196930Z * [new branch] gh/tugsbayasgalan/2/head -> origin/gh/tugsbayasgalan/2/head 2025-06-05T23:12:47.4197908Z * [new branch] gh/tugsbayasgalan/2/orig -> origin/gh/tugsbayasgalan/2/orig 2025-06-05T23:12:47.4199410Z * [new branch] gh/yipjustin/1/base -> origin/gh/yipjustin/1/base 2025-06-05T23:12:47.4200753Z * [new branch] gh/yipjustin/10/base -> origin/gh/yipjustin/10/base 2025-06-05T23:12:47.4201804Z * [new branch] gh/yipjustin/10/head -> origin/gh/yipjustin/10/head 2025-06-05T23:12:47.4202881Z * [new branch] gh/yipjustin/10/orig -> origin/gh/yipjustin/10/orig 2025-06-05T23:12:47.4204486Z * [new branch] gh/yipjustin/11/base -> origin/gh/yipjustin/11/base 2025-06-05T23:12:47.4205577Z * [new branch] gh/yipjustin/11/head -> origin/gh/yipjustin/11/head 2025-06-05T23:12:47.4206624Z * [new branch] gh/yipjustin/11/orig -> origin/gh/yipjustin/11/orig 2025-06-05T23:12:47.4207996Z * [new branch] gh/yipjustin/12/base -> origin/gh/yipjustin/12/base 2025-06-05T23:12:47.4209045Z * [new branch] gh/yipjustin/12/head -> origin/gh/yipjustin/12/head 2025-06-05T23:12:47.4210022Z * [new branch] gh/yipjustin/12/orig -> origin/gh/yipjustin/12/orig 2025-06-05T23:12:47.4211469Z * [new branch] gh/yipjustin/13/base -> origin/gh/yipjustin/13/base 2025-06-05T23:12:47.4212491Z * [new branch] gh/yipjustin/13/head -> origin/gh/yipjustin/13/head 2025-06-05T23:12:47.4213634Z * [new branch] gh/yipjustin/13/orig -> origin/gh/yipjustin/13/orig 2025-06-05T23:12:47.4215025Z * [new branch] gh/yipjustin/14/base -> origin/gh/yipjustin/14/base 2025-06-05T23:12:47.4215996Z * [new branch] gh/yipjustin/14/head -> origin/gh/yipjustin/14/head 2025-06-05T23:12:47.4217035Z * [new branch] gh/yipjustin/14/orig -> origin/gh/yipjustin/14/orig 2025-06-05T23:12:47.4218428Z * [new branch] gh/yipjustin/15/base -> origin/gh/yipjustin/15/base 2025-06-05T23:12:47.4219429Z * [new branch] gh/yipjustin/15/head -> origin/gh/yipjustin/15/head 2025-06-05T23:12:47.4220560Z * [new branch] gh/yipjustin/15/orig -> origin/gh/yipjustin/15/orig 2025-06-05T23:12:47.4221898Z * [new branch] gh/yipjustin/16/base -> origin/gh/yipjustin/16/base 2025-06-05T23:12:47.4222903Z * [new branch] gh/yipjustin/16/head -> origin/gh/yipjustin/16/head 2025-06-05T23:12:47.4224038Z * [new branch] gh/yipjustin/16/orig -> origin/gh/yipjustin/16/orig 2025-06-05T23:12:47.4225323Z * [new branch] gh/yipjustin/17/base -> origin/gh/yipjustin/17/base 2025-06-05T23:12:47.4226313Z * [new branch] gh/yipjustin/17/head -> origin/gh/yipjustin/17/head 2025-06-05T23:12:47.4227345Z * [new branch] gh/yipjustin/17/orig -> origin/gh/yipjustin/17/orig 2025-06-05T23:12:47.4228495Z * [new branch] gh/yipjustin/18/base -> origin/gh/yipjustin/18/base 2025-06-05T23:12:47.4229517Z * [new branch] gh/yipjustin/18/head -> origin/gh/yipjustin/18/head 2025-06-05T23:12:47.4230494Z * [new branch] gh/yipjustin/18/orig -> origin/gh/yipjustin/18/orig 2025-06-05T23:12:47.4231779Z * [new branch] gh/yipjustin/19/base -> origin/gh/yipjustin/19/base 2025-06-05T23:12:47.4232935Z * [new branch] gh/yipjustin/19/head -> origin/gh/yipjustin/19/head 2025-06-05T23:12:47.4233968Z * [new branch] gh/yipjustin/19/orig -> origin/gh/yipjustin/19/orig 2025-06-05T23:12:47.4235120Z * [new branch] gh/yipjustin/2/base -> origin/gh/yipjustin/2/base 2025-06-05T23:12:47.4236230Z * [new branch] gh/yipjustin/20/base -> origin/gh/yipjustin/20/base 2025-06-05T23:12:47.4237224Z * [new branch] gh/yipjustin/20/head -> origin/gh/yipjustin/20/head 2025-06-05T23:12:47.4238178Z * [new branch] gh/yipjustin/20/orig -> origin/gh/yipjustin/20/orig 2025-06-05T23:12:47.4239444Z * [new branch] gh/yipjustin/21/base -> origin/gh/yipjustin/21/base 2025-06-05T23:12:47.4240404Z * [new branch] gh/yipjustin/21/head -> origin/gh/yipjustin/21/head 2025-06-05T23:12:47.4241408Z * [new branch] gh/yipjustin/21/orig -> origin/gh/yipjustin/21/orig 2025-06-05T23:12:47.4242771Z * [new branch] gh/yipjustin/22/base -> origin/gh/yipjustin/22/base 2025-06-05T23:12:47.4243825Z * [new branch] gh/yipjustin/22/head -> origin/gh/yipjustin/22/head 2025-06-05T23:12:47.4244937Z * [new branch] gh/yipjustin/22/orig -> origin/gh/yipjustin/22/orig 2025-06-05T23:12:47.4246339Z * [new branch] gh/yipjustin/23/base -> origin/gh/yipjustin/23/base 2025-06-05T23:12:47.4247329Z * [new branch] gh/yipjustin/23/head -> origin/gh/yipjustin/23/head 2025-06-05T23:12:47.4248281Z * [new branch] gh/yipjustin/23/orig -> origin/gh/yipjustin/23/orig 2025-06-05T23:12:47.4249555Z * [new branch] gh/yipjustin/24/base -> origin/gh/yipjustin/24/base 2025-06-05T23:12:47.4250516Z * [new branch] gh/yipjustin/24/head -> origin/gh/yipjustin/24/head 2025-06-05T23:12:47.4251577Z * [new branch] gh/yipjustin/24/orig -> origin/gh/yipjustin/24/orig 2025-06-05T23:12:47.4252955Z * [new branch] gh/yipjustin/25/base -> origin/gh/yipjustin/25/base 2025-06-05T23:12:47.4254699Z * [new branch] gh/yipjustin/26/base -> origin/gh/yipjustin/26/base 2025-06-05T23:12:47.4255677Z * [new branch] gh/yipjustin/26/head -> origin/gh/yipjustin/26/head 2025-06-05T23:12:47.4257144Z * [new branch] gh/yipjustin/27/base -> origin/gh/yipjustin/27/base 2025-06-05T23:12:47.4258436Z * [new branch] gh/yipjustin/3/base -> origin/gh/yipjustin/3/base 2025-06-05T23:12:47.4259597Z * [new branch] gh/yipjustin/4/base -> origin/gh/yipjustin/4/base 2025-06-05T23:12:47.4260583Z * [new branch] gh/yipjustin/4/head -> origin/gh/yipjustin/4/head 2025-06-05T23:12:47.4261530Z * [new branch] gh/yipjustin/4/orig -> origin/gh/yipjustin/4/orig 2025-06-05T23:12:47.4262701Z * [new branch] gh/yipjustin/5/base -> origin/gh/yipjustin/5/base 2025-06-05T23:12:47.4263660Z * [new branch] gh/yipjustin/5/head -> origin/gh/yipjustin/5/head 2025-06-05T23:12:47.4264614Z * [new branch] gh/yipjustin/5/orig -> origin/gh/yipjustin/5/orig 2025-06-05T23:12:47.4265896Z * [new branch] gh/yipjustin/6/base -> origin/gh/yipjustin/6/base 2025-06-05T23:12:47.4266954Z * [new branch] gh/yipjustin/6/head -> origin/gh/yipjustin/6/head 2025-06-05T23:12:47.4268017Z * [new branch] gh/yipjustin/6/orig -> origin/gh/yipjustin/6/orig 2025-06-05T23:12:47.4269187Z * [new branch] gh/yipjustin/7/base -> origin/gh/yipjustin/7/base 2025-06-05T23:12:47.4270160Z * [new branch] gh/yipjustin/7/head -> origin/gh/yipjustin/7/head 2025-06-05T23:12:47.4271212Z * [new branch] gh/yipjustin/7/orig -> origin/gh/yipjustin/7/orig 2025-06-05T23:12:47.4272443Z * [new branch] gh/yipjustin/8/base -> origin/gh/yipjustin/8/base 2025-06-05T23:12:47.4273468Z * [new branch] gh/yipjustin/8/orig -> origin/gh/yipjustin/8/orig 2025-06-05T23:12:47.4274793Z * [new branch] gh/yipjustin/9/base -> origin/gh/yipjustin/9/base 2025-06-05T23:12:47.4275781Z * [new branch] gh/yipjustin/9/head -> origin/gh/yipjustin/9/head 2025-06-05T23:12:47.4276734Z * [new branch] gh/yipjustin/9/orig -> origin/gh/yipjustin/9/orig 2025-06-05T23:12:47.4278149Z * [new branch] gh/zhenyan-zhang-meta/1/base -> origin/gh/zhenyan-zhang-meta/1/base 2025-06-05T23:12:47.4279260Z * [new branch] gh/zhenyan-zhang-meta/1/head -> origin/gh/zhenyan-zhang-meta/1/head 2025-06-05T23:12:47.4280259Z * [new branch] gh/zhenyan-zhang-meta/1/orig -> origin/gh/zhenyan-zhang-meta/1/orig 2025-06-05T23:12:47.4281630Z * [new branch] gh/zhenyan-zhang-meta/2/base -> origin/gh/zhenyan-zhang-meta/2/base 2025-06-05T23:12:47.4283154Z * [new branch] gh/zhenyan-zhang-meta/3/base -> origin/gh/zhenyan-zhang-meta/3/base 2025-06-05T23:12:47.4284584Z * [new branch] gh/zhenyan-zhang-meta/4/base -> origin/gh/zhenyan-zhang-meta/4/base 2025-06-05T23:12:47.4285941Z * [new branch] gh/zhenyan-zhang-meta/5/base -> origin/gh/zhenyan-zhang-meta/5/base 2025-06-05T23:12:47.4287462Z * [new branch] gh/zhenyan-zhang-meta/6/base -> origin/gh/zhenyan-zhang-meta/6/base 2025-06-05T23:12:47.4288547Z * [new branch] gh/zhenyan-zhang-meta/6/head -> origin/gh/zhenyan-zhang-meta/6/head 2025-06-05T23:12:47.4292101Z * [new branch] gh/zhenyan-zhang-meta/6/orig -> origin/gh/zhenyan-zhang-meta/6/orig 2025-06-05T23:12:47.4292579Z * [new branch] gh/zhenyan-zhang-meta/7/base -> origin/gh/zhenyan-zhang-meta/7/base 2025-06-05T23:12:47.4293199Z * [new branch] gh/zhenyan-zhang-meta/7/head -> origin/gh/zhenyan-zhang-meta/7/head 2025-06-05T23:12:47.4294423Z * [new branch] gh/zhenyan-zhang-meta/7/orig -> origin/gh/zhenyan-zhang-meta/7/orig 2025-06-05T23:12:47.4295963Z * [new branch] gh/zonglinpeng/1/base -> origin/gh/zonglinpeng/1/base 2025-06-05T23:12:47.4297168Z * [new branch] gh/zonglinpeng/1/head -> origin/gh/zonglinpeng/1/head 2025-06-05T23:12:47.4297960Z * [new branch] gh/zonglinpeng/1/orig -> origin/gh/zonglinpeng/1/orig 2025-06-05T23:12:47.4299225Z * [new branch] gh/zonglinpeng/2/base -> origin/gh/zonglinpeng/2/base 2025-06-05T23:12:47.4300056Z * [new branch] gh/zonglinpeng/2/head -> origin/gh/zonglinpeng/2/head 2025-06-05T23:12:47.4301629Z * [new branch] gh/zonglinpeng/3/base -> origin/gh/zonglinpeng/3/base 2025-06-05T23:12:47.4302609Z * [new branch] gh/zonglinpeng/3/head -> origin/gh/zonglinpeng/3/head 2025-06-05T23:12:47.4304033Z * [new branch] gptq -> origin/gptq 2025-06-05T23:12:47.4305142Z * [new branch] groupsize -> origin/groupsize 2025-06-05T23:12:47.4306697Z * [new branch] guangy10/fix_links_in_readme -> origin/guangy10/fix_links_in_readme 2025-06-05T23:12:47.4307684Z * [new branch] guangy10/fix_sdk_etdump -> origin/guangy10/fix_sdk_etdump 2025-06-05T23:12:47.4308722Z * [new branch] guangy10/fix_sdk_profiling_doc -> origin/guangy10/fix_sdk_profiling_doc 2025-06-05T23:12:47.4309830Z * [new branch] handle-model-export-failures -> origin/handle-model-export-failures 2025-06-05T23:12:47.4310766Z * [new branch] hf_export_masked_lm -> origin/hf_export_masked_lm 2025-06-05T23:12:47.4312025Z * [new branch] huydhn-add-dependabot-config -> origin/huydhn-add-dependabot-config 2025-06-05T23:12:47.4312950Z * [new branch] improve_prefill -> origin/improve_prefill 2025-06-05T23:12:47.4313910Z * [new branch] increase_benchmark_iter -> origin/increase_benchmark_iter 2025-06-05T23:12:47.4314850Z * [new branch] increase_timeout -> origin/increase_timeout 2025-06-05T23:12:47.4315906Z * [new branch] install-android-on-runner -> origin/install-android-on-runner 2025-06-05T23:12:47.4316870Z * [new branch] int_seq_len -> origin/int_seq_len 2025-06-05T23:12:47.4317878Z * [new branch] intro-assertj -> origin/intro-assertj 2025-06-05T23:12:47.4318890Z * [new branch] ios-app-device-farm -> origin/ios-app-device-farm 2025-06-05T23:12:47.4319830Z * [new branch] ios_cmake -> origin/ios_cmake 2025-06-05T23:12:47.4320919Z * [new branch] iseeyuan-patch-1 -> origin/iseeyuan-patch-1 2025-06-05T23:12:47.4322003Z * [new branch] iseeyuan-patch-10 -> origin/iseeyuan-patch-10 2025-06-05T23:12:47.4323009Z * [new branch] iseeyuan-patch-11 -> origin/iseeyuan-patch-11 2025-06-05T23:12:47.4324104Z * [new branch] iseeyuan-patch-12 -> origin/iseeyuan-patch-12 2025-06-05T23:12:47.4325420Z * [new branch] iseeyuan-patch-2 -> origin/iseeyuan-patch-2 2025-06-05T23:12:47.4326522Z * [new branch] iseeyuan-patch-3 -> origin/iseeyuan-patch-3 2025-06-05T23:12:47.4327605Z * [new branch] iseeyuan-patch-4 -> origin/iseeyuan-patch-4 2025-06-05T23:12:47.4328683Z * [new branch] iseeyuan-patch-5 -> origin/iseeyuan-patch-5 2025-06-05T23:12:47.4329724Z * [new branch] iseeyuan-patch-6 -> origin/iseeyuan-patch-6 2025-06-05T23:12:47.4330839Z * [new branch] iseeyuan-patch-7 -> origin/iseeyuan-patch-7 2025-06-05T23:12:47.4331888Z * [new branch] iseeyuan-patch-8 -> origin/iseeyuan-patch-8 2025-06-05T23:12:47.4333002Z * [new branch] iseeyuan-patch-9 -> origin/iseeyuan-patch-9 2025-06-05T23:12:47.4334013Z * [new branch] isqp8 -> origin/isqp8 2025-06-05T23:12:47.4335024Z * [new branch] issue_metrics -> origin/issue_metrics 2025-06-05T23:12:47.4336573Z * [new branch] jackxz/comment-sdpa -> origin/jackxz/comment-sdpa 2025-06-05T23:12:47.4337594Z * [new branch] jackxz/llama2-rename -> origin/jackxz/llama2-rename 2025-06-05T23:12:47.4338369Z * [new branch] jackxz/remove-test-llava -> origin/jackxz/remove-test-llava 2025-06-05T23:12:47.4339381Z * [new branch] jackxz/update-cmake-doc -> origin/jackxz/update-cmake-doc 2025-06-05T23:12:47.4340384Z * [new branch] jackxz/update-phi3-mini-lora -> origin/jackxz/update-phi3-mini-lora 2025-06-05T23:12:47.4341764Z * [new branch] jackz/export-phi3-lora-training -> origin/jackz/export-phi3-lora-training 2025-06-05T23:12:47.4343075Z * [new branch] jathu/cmake-playground -> origin/jathu/cmake-playground 2025-06-05T23:12:47.4343870Z * [new branch] jathu/no-gflags -> origin/jathu/no-gflags 2025-06-05T23:12:47.4344866Z * [new branch] jathu/windows-ci-clang -> origin/jathu/windows-ci-clang 2025-06-05T23:12:47.4345938Z * [new branch] jathu/wip--pybind-preset -> origin/jathu/wip--pybind-preset 2025-06-05T23:12:47.4346663Z * [new branch] jathu/wip-atomize -> origin/jathu/wip-atomize 2025-06-05T23:12:47.4347750Z * [new branch] jerryzh168-patch-1 -> origin/jerryzh168-patch-1 2025-06-05T23:12:47.4349062Z * [new branch] jz/add-mengwei-tokeznier -> origin/jz/add-mengwei-tokeznier 2025-06-05T23:12:47.4350018Z * [new branch] jz/anthony -> origin/jz/anthony 2025-06-05T23:12:47.4350824Z * [new branch] jz/bump-tokenizer-version -> origin/jz/bump-tokenizer-version 2025-06-05T23:12:47.4351815Z * [new branch] jz/bump-tokenizers-test -> origin/jz/bump-tokenizers-test 2025-06-05T23:12:47.4352599Z * [new branch] jz/bump-torch -> origin/jz/bump-torch 2025-06-05T23:12:47.4353776Z * [new branch] jz/cleanup -> origin/jz/cleanup 2025-06-05T23:12:47.4354692Z * [new branch] jz/custom-sdpa -> origin/jz/custom-sdpa 2025-06-05T23:12:47.4355980Z * [new branch] jz/decouple-dtype-quantize_ -> origin/jz/decouple-dtype-quantize_ 2025-06-05T23:12:47.4357247Z * [new branch] jz/dtype-llama -> origin/jz/dtype-llama 2025-06-05T23:12:47.4358509Z * [new branch] jz/eager-model-inputs -> origin/jz/eager-model-inputs 2025-06-05T23:12:47.4359633Z * [new branch] jz/export_llama_new_api -> origin/jz/export_llama_new_api 2025-06-05T23:12:47.4360589Z * [new branch] jz/fix-benchmark-app -> origin/jz/fix-benchmark-app 2025-06-05T23:12:47.4361572Z * [new branch] jz/fix-doxygen -> origin/jz/fix-doxygen 2025-06-05T23:12:47.4362557Z * [new branch] jz/fix-et-kv-cache -> origin/jz/fix-et-kv-cache 2025-06-05T23:12:47.4363557Z * [new branch] jz/fix-llama-install -> origin/jz/fix-llama-install 2025-06-05T23:12:47.4364612Z * [new branch] jz/fix-test-2 -> origin/jz/fix-test-2 2025-06-05T23:12:47.4365837Z * [new branch] jz/fix-to-excecutorch-test-attention -> origin/jz/fix-to-excecutorch-test-attention 2025-06-05T23:12:47.4366724Z * [new branch] jz/fusion-embedding-transform -> origin/jz/fusion-embedding-transform 2025-06-05T23:12:47.4367676Z * [new branch] jz/ghstack-config -> origin/jz/ghstack-config 2025-06-05T23:12:47.4368559Z * [new branch] jz/hydra -> origin/jz/hydra 2025-06-05T23:12:47.4369562Z * [new branch] jz/llama-app-deep-sign -> origin/jz/llama-app-deep-sign 2025-06-05T23:12:47.4370492Z * [new branch] jz/llama3_2_1b -> origin/jz/llama3_2_1b 2025-06-05T23:12:47.4371654Z * [new branch] jz/llm-finetuning-fix -> origin/jz/llm-finetuning-fix 2025-06-05T23:12:47.4373019Z * [new branch] jz/mha-from-tt -> origin/jz/mha-from-tt 2025-06-05T23:12:47.4373985Z * [new branch] jz/new-config -> origin/jz/new-config 2025-06-05T23:12:47.4375163Z * [new branch] jz/phi-4-benchmark -> origin/jz/phi-4-benchmark 2025-06-05T23:12:47.4376271Z * [new branch] jz/pr-template-test -> origin/jz/pr-template-test 2025-06-05T23:12:47.4377224Z * [new branch] jz/proof -> origin/jz/proof 2025-06-05T23:12:47.4378072Z * [new branch] jz/quantizedkv -> origin/jz/quantizedkv 2025-06-05T23:12:47.4379065Z * [new branch] jz/qwen3-ao -> origin/jz/qwen3-ao 2025-06-05T23:12:47.4380094Z * [new branch] jz/recursive-partitioner -> origin/jz/recursive-partitioner 2025-06-05T23:12:47.4381133Z * [new branch] jz/remove-comments -> origin/jz/remove-comments 2025-06-05T23:12:47.4382058Z * [new branch] jz/remove-cond -> origin/jz/remove-cond 2025-06-05T23:12:47.4383472Z * [new branch] jz/remove-pull -> origin/jz/remove-pull 2025-06-05T23:12:47.4384416Z * [new branch] jz/remove-topic -> origin/jz/remove-topic 2025-06-05T23:12:47.4385451Z * [new branch] jz/rename-flamingo -> origin/jz/rename-flamingo 2025-06-05T23:12:47.4386495Z * [new branch] jz/rename-mm-to-vision -> origin/jz/rename-mm-to-vision 2025-06-05T23:12:47.4387660Z * [new branch] jz/rename-topic-not-user-facing -> origin/jz/rename-topic-not-user-facing 2025-06-05T23:12:47.4388582Z * [new branch] jz/revert-linux-v2 -> origin/jz/revert-linux-v2 2025-06-05T23:12:47.4389678Z * [new branch] jz/stories110m-readme -> origin/jz/stories110m-readme 2025-06-05T23:12:47.4390696Z * [new branch] jz/stride-repro -> origin/jz/stride-repro 2025-06-05T23:12:47.4392239Z * [new branch] jz/test-gh-import -> origin/jz/test-gh-import 2025-06-05T23:12:47.4393272Z * [new branch] jz/test-gh-import2 -> origin/jz/test-gh-import2 2025-06-05T23:12:47.4394292Z * [new branch] jz/test-gh-import3 -> origin/jz/test-gh-import3 2025-06-05T23:12:47.4395475Z * [new branch] jz/to-edge-lower-and-transform-llama -> origin/jz/to-edge-lower-and-transform-llama 2025-06-05T23:12:47.4396260Z * [new branch] jz/tresh -> origin/jz/tresh 2025-06-05T23:12:47.4397203Z * [new branch] jz/tt-ci -> origin/jz/tt-ci 2025-06-05T23:12:47.4398084Z * [new branch] jz/tt-ci-2 -> origin/jz/tt-ci-2 2025-06-05T23:12:47.4399330Z * [new branch] jz/tt-llama -> origin/jz/tt-llama 2025-06-05T23:12:47.4399917Z * [new branch] jz/tt-llama-3 -> origin/jz/tt-llama-3 2025-06-05T23:12:47.4400923Z * [new branch] jz/tt-llama-3.5 -> origin/jz/tt-llama-3.5 2025-06-05T23:12:47.4401846Z * [new branch] jz/tt-llama-4 -> origin/jz/tt-llama-4 2025-06-05T23:12:47.4402730Z * [new branch] jz/tt-llama-5 -> origin/jz/tt-llama-5 2025-06-05T23:12:47.4404059Z * [new branch] kirk-executor-runner-update -> origin/kirk-executor-runner-update 2025-06-05T23:12:47.4404966Z * [new branch] kit1980-patch-1 -> origin/kit1980-patch-1 2025-06-05T23:12:47.4406035Z * [new branch] larryliu0820-patch -> origin/larryliu0820-patch 2025-06-05T23:12:47.4407077Z * [new branch] larryliu0820-patch-1 -> origin/larryliu0820-patch-1 2025-06-05T23:12:47.4408281Z * [new branch] larryliu0820-patch-2 -> origin/larryliu0820-patch-2 2025-06-05T23:12:47.4409340Z * [new branch] larryliu0820-patch-3 -> origin/larryliu0820-patch-3 2025-06-05T23:12:47.4410486Z * [new branch] larryliu0820-patch-4 -> origin/larryliu0820-patch-4 2025-06-05T23:12:47.4411527Z * [new branch] larryliu0820-patch-5 -> origin/larryliu0820-patch-5 2025-06-05T23:12:47.4412989Z * [new branch] larryliu0820-patch-6 -> origin/larryliu0820-patch-6 2025-06-05T23:12:47.4414067Z * [new branch] larryliu0820-patch-7 -> origin/larryliu0820-patch-7 2025-06-05T23:12:47.4415192Z * [new branch] larryliu0820-patch-8 -> origin/larryliu0820-patch-8 2025-06-05T23:12:47.4416141Z * [new branch] latest -> origin/latest 2025-06-05T23:12:47.4417211Z * [new branch] legacy_flow_test_abs_op -> origin/legacy_flow_test_abs_op 2025-06-05T23:12:47.4418150Z * [new branch] legacy_flow_test_add -> origin/legacy_flow_test_add 2025-06-05T23:12:47.4419139Z * [new branch] legacy_flow_tests -> origin/legacy_flow_tests 2025-06-05T23:12:47.4420134Z * [new branch] lfq.add-lora-linear -> origin/lfq.add-lora-linear 2025-06-05T23:12:47.4421047Z * [new branch] lfq.coreml-io -> origin/lfq.coreml-io 2025-06-05T23:12:47.4422466Z * [new branch] lfq.dtype-list-api-cmake -> origin/lfq.dtype-list-api-cmake 2025-06-05T23:12:47.4423489Z * [new branch] lfq.export-llama-with-lora -> origin/lfq.export-llama-with-lora 2025-06-05T23:12:47.4428084Z * [new branch] lfq.export-lora-llama -> origin/lfq.export-lora-llama 2025-06-05T23:12:47.4429200Z * [new branch] lfq.flat-tensor -> origin/lfq.flat-tensor 2025-06-05T23:12:47.4430201Z * [new branch] lfq.refactor-attention -> origin/lfq.refactor-attention 2025-06-05T23:12:47.4431327Z * [new branch] lfq.runtime-integration-doc-changes -> origin/lfq.runtime-integration-doc-changes 2025-06-05T23:12:47.4432187Z * [new branch] lfq.torchtune-lora -> origin/lfq.torchtune-lora 2025-06-05T23:12:47.4433129Z * [new branch] lfq.xnnpack-io -> origin/lfq.xnnpack-io 2025-06-05T23:12:47.4434452Z * [new branch] lind/aosp -> origin/lind/aosp 2025-06-05T23:12:47.4435433Z * [new branch] lind/buffer-loader -> origin/lind/buffer-loader 2025-06-05T23:12:47.4436390Z * [new branch] lind/revert-loader-changes -> origin/lind/revert-loader-changes 2025-06-05T23:12:47.4437129Z * [new branch] lind/size-test -> origin/lind/size-test 2025-06-05T23:12:47.4438214Z * [new branch] llama2_xnnpack -> origin/llama2_xnnpack 2025-06-05T23:12:47.4439224Z * [new branch] llama_cpp -> origin/llama_cpp 2025-06-05T23:12:47.4440263Z * [new branch] llama_warmup -> origin/llama_warmup 2025-06-05T23:12:47.4441273Z * [new branch] llama_warmup2 -> origin/llama_warmup2 2025-06-05T23:12:47.4442275Z * [new branch] llava -> origin/llava 2025-06-05T23:12:47.4443364Z * [new branch] llava_csv_image -> origin/llava_csv_image 2025-06-05T23:12:47.4444571Z * [new branch] llava_logging -> origin/llava_logging 2025-06-05T23:12:47.4445669Z * [new branch] llm_runner_api_implementation -> origin/llm_runner_api_implementation 2025-06-05T23:12:47.4446710Z * [new branch] llmdoc -> origin/llmdoc 2025-06-05T23:12:47.4447863Z * [new branch] logistic_size -> origin/logistic_size 2025-06-05T23:12:47.4448919Z * [new branch] macos-cmake-custom-ops -> origin/macos-cmake-custom-ops 2025-06-05T23:12:47.4449987Z * [new branch] main -> origin/main 2025-06-05T23:12:47.4451125Z * [new branch] main-documentation-page -> origin/main-documentation-page 2025-06-05T23:12:47.4452137Z * [new branch] malfet-patch-1 -> origin/malfet-patch-1 2025-06-05T23:12:47.4453229Z * [new branch] malfet-patch-2 -> origin/malfet-patch-2 2025-06-05T23:12:47.4454183Z * [new branch] malfet-patch-3 -> origin/malfet-patch-3 2025-06-05T23:12:47.4455143Z * [new branch] malfet-patch-4 -> origin/malfet-patch-4 2025-06-05T23:12:47.4456288Z * [new branch] malfet-patch-5 -> origin/malfet-patch-5 2025-06-05T23:12:47.4457383Z * [new branch] manual -> origin/manual 2025-06-05T23:12:47.4458330Z * [new branch] metal_linear -> origin/metal_linear 2025-06-05T23:12:47.4459440Z * [new branch] metascroy-patch-1 -> origin/metascroy-patch-1 2025-06-05T23:12:47.4460486Z * [new branch] metascroy-patch-3 -> origin/metascroy-patch-3 2025-06-05T23:12:47.4461662Z * [new branch] mha-swap-squashed -> origin/mha-swap-squashed 2025-06-05T23:12:47.4462692Z * [new branch] migrate-xnnpack-vulkan -> origin/migrate-xnnpack-vulkan 2025-06-05T23:12:47.4463658Z * [new branch] migration -> origin/migration 2025-06-05T23:12:47.4464694Z * [new branch] mimi_4bit -> origin/mimi_4bit 2025-06-05T23:12:47.4465751Z * [new branch] mimi_hf -> origin/mimi_hf 2025-06-05T23:12:47.4466779Z * [new branch] mmlu -> origin/mmlu 2025-06-05T23:12:47.4467928Z * [new branch] mobileBuild -> origin/mobileBuild 2025-06-05T23:12:47.4468930Z * [new branch] model-explorer -> origin/model-explorer 2025-06-05T23:12:47.4469962Z * [new branch] modelname -> origin/modelname 2025-06-05T23:12:47.4471061Z * [new branch] move-files-to-docker -> origin/move-files-to-docker 2025-06-05T23:12:47.4472084Z * [new branch] move-github-macos-trunk -> origin/move-github-macos-trunk 2025-06-05T23:12:47.4473049Z * [new branch] move-macos-to-trunk -> origin/move-macos-to-trunk 2025-06-05T23:12:47.4474053Z * [new branch] move_benchmark_apps -> origin/move_benchmark_apps 2025-06-05T23:12:47.4474970Z * [new branch] move_tokenizer -> origin/move_tokenizer 2025-06-05T23:12:47.4476073Z * [new branch] mps_qlinear -> origin/mps_qlinear 2025-06-05T23:12:47.4477121Z * [new branch] mps_skip_dimorder -> origin/mps_skip_dimorder 2025-06-05T23:12:47.4478226Z * [new branch] mtk-app-runner -> origin/mtk-app-runner 2025-06-05T23:12:47.4479191Z * [new branch] mtk-model-check -> origin/mtk-model-check 2025-06-05T23:12:47.4480205Z * [new branch] mytest -> origin/mytest 2025-06-05T23:12:47.4481296Z * [new branch] new-static-llama -> origin/new-static-llama 2025-06-05T23:12:47.4482455Z * [new branch] new-test -> origin/new-test 2025-06-05T23:12:47.4483757Z * [new branch] new_pybind -> origin/new_pybind 2025-06-05T23:12:47.4484822Z * [new branch] new_xnnp_new_kleidi -> origin/new_xnnp_new_kleidi 2025-06-05T23:12:47.4485868Z * [new branch] nightly -> origin/nightly 2025-06-05T23:12:47.4486988Z * [new branch] noclipping -> origin/noclipping 2025-06-05T23:12:47.4488339Z * [new branch] nxp_recursive -> origin/nxp_recursive 2025-06-05T23:12:47.4489368Z * [new branch] olivialpx-april-8 -> origin/olivialpx-april-8 2025-06-05T23:12:47.4490407Z * [new branch] olivialpx-debug-etdump -> origin/olivialpx-debug-etdump 2025-06-05T23:12:47.4491739Z * [new branch] olivialpx-sdk-tutorial -> origin/olivialpx-sdk-tutorial 2025-06-05T23:12:47.4493043Z * [new branch] openvino-not-static-only -> origin/openvino-not-static-only 2025-06-05T23:12:47.4494891Z * [new branch] orig/release/0.1 -> origin/orig/release/0.1 2025-06-05T23:12:47.4495771Z * [new branch] orig/release/0.2 -> origin/orig/release/0.2 2025-06-05T23:12:47.4496769Z * [new branch] orig/release/0.3 -> origin/orig/release/0.3 2025-06-05T23:12:47.4498103Z * [new branch] orig/release/0.4 -> origin/orig/release/0.4 2025-06-05T23:12:47.4499297Z * [new branch] orionr-patch-1 -> origin/orionr-patch-1 2025-06-05T23:12:47.4500310Z * [new branch] orionr-patch-2 -> origin/orionr-patch-2 2025-06-05T23:12:47.4501335Z * [new branch] patch-repo-fix -> origin/patch-repo-fix 2025-06-05T23:12:47.4502328Z * [new branch] patch_mps -> origin/patch_mps 2025-06-05T23:12:47.4503729Z * [new branch] perf-repro -> origin/perf-repro 2025-06-05T23:12:47.4504770Z * [new branch] phi-3-kv-cache -> origin/phi-3-kv-cache 2025-06-05T23:12:47.4505786Z * [new branch] phi-3-mini-wrapper -> origin/phi-3-mini-wrapper 2025-06-05T23:12:47.4506673Z * [new branch] phi3-doc -> origin/phi3-doc 2025-06-05T23:12:47.4508061Z * [new branch] pianpwk/temp_pr_for_llava -> origin/pianpwk/temp_pr_for_llava 2025-06-05T23:12:47.4509197Z * [new branch] pick -> origin/pick 2025-06-05T23:12:47.4510374Z * [new branch] pick_2996 -> origin/pick_2996 2025-06-05T23:12:47.4511518Z * [new branch] pick_doc -> origin/pick_doc 2025-06-05T23:12:47.4512547Z * [new branch] pin-pt-commit -> origin/pin-pt-commit 2025-06-05T23:12:47.4513518Z * [new branch] pin_update_arm_fix -> origin/pin_update_arm_fix 2025-06-05T23:12:47.4514530Z * [new branch] pip_header -> origin/pip_header 2025-06-05T23:12:47.4515667Z * [new branch] populate-cadence-cpu-ops -> origin/populate-cadence-cpu-ops 2025-06-05T23:12:47.4516724Z * [new branch] ppllava -> origin/ppllava 2025-06-05T23:12:47.4517756Z * [new branch] pr11013 -> origin/pr11013 2025-06-05T23:12:47.4518794Z * [new branch] pre -> origin/pre 2025-06-05T23:12:47.4519942Z * [new branch] preprocess_with_flamingo_export -> origin/preprocess_with_flamingo_export 2025-06-05T23:12:47.4520840Z * [new branch] prim-ops-move-2 -> origin/prim-ops-move-2 2025-06-05T23:12:47.4521880Z * [new branch] pt2e-migration -> origin/pt2e-migration 2025-06-05T23:12:47.4522872Z * [new branch] pt2e_calibration -> origin/pt2e_calibration 2025-06-05T23:12:47.4523963Z * [new branch] pure-pytorch-llava -> origin/pure-pytorch-llava 2025-06-05T23:12:47.4525000Z * [new branch] push-0.2-docs -> origin/push-0.2-docs 2025-06-05T23:12:47.4526104Z * [new branch] pybind -> origin/pybind 2025-06-05T23:12:47.4527272Z * [new branch] pybind_docs -> origin/pybind_docs 2025-06-05T23:12:47.4528407Z * [new branch] pybind_module -> origin/pybind_module 2025-06-05T23:12:47.4529442Z * [new branch] pybind_runtime -> origin/pybind_runtime 2025-06-05T23:12:47.4530525Z * [new branch] pybind_set_output -> origin/pybind_set_output 2025-06-05T23:12:47.4531510Z * [new branch] qb4w_f16_fix -> origin/qb4w_f16_fix 2025-06-05T23:12:47.4532399Z * [new branch] qb4w_fp16_fix -> origin/qb4w_fp16_fix 2025-06-05T23:12:47.4533388Z * [new branch] qnn-aar -> origin/qnn-aar 2025-06-05T23:12:47.4534400Z * [new branch] qnn_ci -> origin/qnn_ci 2025-06-05T23:12:47.4535505Z * [new branch] qnn_doc -> origin/qnn_doc 2025-06-05T23:12:47.4536813Z * [new branch] qnn_e2e -> origin/qnn_e2e 2025-06-05T23:12:47.4537863Z * [new branch] qnn_stories -> origin/qnn_stories 2025-06-05T23:12:47.4538906Z * [new branch] qnn_stories_ci -> origin/qnn_stories_ci 2025-06-05T23:12:47.4540021Z * [new branch] quantization -> origin/quantization 2025-06-05T23:12:47.4541028Z * [new branch] quantization--force -> origin/quantization--force 2025-06-05T23:12:47.4541800Z * [new branch] rand -> origin/rand 2025-06-05T23:12:47.4542864Z * [new branch] readme -> origin/readme 2025-06-05T23:12:47.4543852Z * [new branch] refactor_codegen -> origin/refactor_codegen 2025-06-05T23:12:47.4545132Z * [new branch] refine_max_spill_fill_buffer_setting -> origin/refine_max_spill_fill_buffer_setting 2025-06-05T23:12:47.4546013Z * [new branch] refine_pybind -> origin/refine_pybind 2025-06-05T23:12:47.4547422Z * [new branch] release/0.1 -> origin/release/0.1 2025-06-05T23:12:47.4548388Z * [new branch] release/0.2 -> origin/release/0.2 2025-06-05T23:12:47.4549767Z * [new branch] release/0.3 -> origin/release/0.3 2025-06-05T23:12:47.4550788Z * [new branch] release/0.4 -> origin/release/0.4 2025-06-05T23:12:47.4551806Z * [new branch] release/0.5 -> origin/release/0.5 2025-06-05T23:12:47.4552750Z * [new branch] release/0.6 -> origin/release/0.6 2025-06-05T23:12:47.4553845Z * [new branch] release_0.6_notes -> origin/release_0.6_notes 2025-06-05T23:12:47.4554878Z * [new branch] remove_s -> origin/remove_s 2025-06-05T23:12:47.4556049Z * [new branch] replace_runners_prefix_20240725165345 -> origin/replace_runners_prefix_20240725165345 2025-06-05T23:12:47.4557021Z * [new branch] replace_runners_prefix_20240725195321 -> origin/replace_runners_prefix_20240725195321 2025-06-05T23:12:47.4558603Z * [new branch] revert-10347-support-dynamically-quantized-convolutions-2 -> origin/revert-10347-support-dynamically-quantized-convolutions-2 2025-06-05T23:12:47.4559487Z * [new branch] revert-2f0518d2cfb4ee4353dce4e39590de43fa391399 -> origin/revert-2f0518d2cfb4ee4353dce4e39590de43fa391399 2025-06-05T23:12:47.4560717Z * [new branch] revert-4502-add-profiling-to-xnn-executor-runner -> origin/revert-4502-add-profiling-to-xnn-executor-runner 2025-06-05T23:12:47.4561808Z * [new branch] revert-4793-larryliu0820-patch-4 -> origin/revert-4793-larryliu0820-patch-4 2025-06-05T23:12:47.4563001Z * [new branch] revert-5136-revert-5095-pt2e_calibration -> origin/revert-5136-revert-5095-pt2e_calibration 2025-06-05T23:12:47.4564267Z * [new branch] revert-5748-cherry-pick-5482-by-pytorch_bot_bot_ -> origin/revert-5748-cherry-pick-5482-by-pytorch_bot_bot_ 2025-06-05T23:12:47.4565119Z * [new branch] revert-6522-and-6892 -> origin/revert-6522-and-6892 2025-06-05T23:12:47.4567071Z * [new branch] revert-6807-gh/larryliu0820/58/head -> origin/revert-6807-gh/larryliu0820/58/head 2025-06-05T23:12:47.4568028Z * [new branch] revert-6837 -> origin/revert-6837 2025-06-05T23:12:47.4569076Z * [new branch] revert-6892 -> origin/revert-6892 2025-06-05T23:12:47.4571057Z * [new branch] revert-7150-gh/helunwencser/80/orig -> origin/revert-7150-gh/helunwencser/80/orig 2025-06-05T23:12:47.4572218Z * [new branch] revert-7165-populate-cadence-cpu-ops -> origin/revert-7165-populate-cadence-cpu-ops 2025-06-05T23:12:47.4573660Z * [new branch] revert-7278-export-D67013542 -> origin/revert-7278-export-D67013542 2025-06-05T23:12:47.4574891Z * [new branch] revert-7636-export-D68112936 -> origin/revert-7636-export-D68112936 2025-06-05T23:12:47.4576783Z * [new branch] revert-7857-gh/swolchok/179/head -> origin/revert-7857-gh/swolchok/179/head 2025-06-05T23:12:47.4578355Z * [new branch] revert-8151-tkaruturi/deepseek_distill_8b_readme -> origin/revert-8151-tkaruturi/deepseek_distill_8b_readme 2025-06-05T23:12:47.4579341Z * [new branch] revert-8679-topics -> origin/revert-8679-topics 2025-06-05T23:12:47.4580633Z * [new branch] revert-8916-windows-mmap-data-loader -> origin/revert-8916-windows-mmap-data-loader 2025-06-05T23:12:47.4581597Z * [new branch] revert-8997-change-985586 -> origin/revert-8997-change-985586 2025-06-05T23:12:47.4583142Z * [new branch] revert-939-tkaruturi/bundled_example_comment_change -> origin/revert-939-tkaruturi/bundled_example_comment_change 2025-06-05T23:12:47.4584078Z * [new branch] revert-9f47380ab5d4818270a7ea2eac13d9a4caa76dd0 -> origin/revert-9f47380ab5d4818270a7ea2eac13d9a4caa76dd0 2025-06-05T23:12:47.4585172Z * [new branch] revert-fbb0395110724717c42720582bb8804b752241e3 -> origin/revert-fbb0395110724717c42720582bb8804b752241e3 2025-06-05T23:12:47.4586111Z * [new branch] revert-ffc20208dae8f4900da11bfffb76f749e7514132 -> origin/revert-ffc20208dae8f4900da11bfffb76f749e7514132 2025-06-05T23:12:47.4587454Z * [new branch] revert_D55713944 -> origin/revert_D55713944 2025-06-05T23:12:47.4588765Z * [new branch] run-kirk-executor-runner-update-s24 -> origin/run-kirk-executor-runner-update-s24 2025-06-05T23:12:47.4589727Z * [new branch] run-xnnpack-model-tests -> origin/run-xnnpack-model-tests 2025-06-05T23:12:47.4590729Z * [new branch] run_coreml_mps_models_in_ci -> origin/run_coreml_mps_models_in_ci 2025-06-05T23:12:47.4593132Z * [new branch] runer_kv -> origin/runer_kv 2025-06-05T23:12:47.4594658Z * [new branch] runner_add_mps -> origin/runner_add_mps 2025-06-05T23:12:47.4595795Z * [new branch] runner_exp -> origin/runner_exp 2025-06-05T23:12:47.4596931Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-06-05T23:12:47.4597959Z * [new branch] script-updates -> origin/script-updates 2025-06-05T23:12:47.4599111Z * [new branch] sdpa_custom_op -> origin/sdpa_custom_op 2025-06-05T23:12:47.4600525Z * [new branch] sdym/ciflow -> origin/sdym/ciflow 2025-06-05T23:12:47.4601438Z * [new branch] sdym/docstring -> origin/sdym/docstring 2025-06-05T23:12:47.4602440Z * [new branch] sdym/pyproject -> origin/sdym/pyproject 2025-06-05T23:12:47.4603579Z * [new branch] sdym/torchfix -> origin/sdym/torchfix 2025-06-05T23:12:47.4604582Z * [new branch] sdym/torchfix-0.1.1 -> origin/sdym/torchfix-0.1.1 2025-06-05T23:12:47.4605922Z * [new branch] seemethere-patch-1 -> origin/seemethere-patch-1 2025-06-05T23:12:47.4607399Z * [new branch] seemethere/reduce_matrix_jobs -> origin/seemethere/reduce_matrix_jobs 2025-06-05T23:12:47.4608410Z * [new branch] selective_build -> origin/selective_build 2025-06-05T23:12:47.4609476Z * [new branch] set-buck2-version -> origin/set-buck2-version 2025-06-05T23:12:47.4610647Z * [new branch] setup_debug_empty_fix -> origin/setup_debug_empty_fix 2025-06-05T23:12:47.4611830Z * [new branch] shoumikhin-patch-4 -> origin/shoumikhin-patch-4 2025-06-05T23:12:47.4612919Z * [new branch] simplify_tokenizer_header -> origin/simplify_tokenizer_header 2025-06-05T23:12:47.4614069Z * [new branch] size_test -> origin/size_test 2025-06-05T23:12:47.4615339Z * [new branch] solving-broken-devtool-workflow -> origin/solving-broken-devtool-workflow 2025-06-05T23:12:47.4616331Z * [new branch] split-prim-ops -> origin/split-prim-ops 2025-06-05T23:12:47.4617695Z * [new branch] ssj/fix-doc-build-workflow -> origin/ssj/fix-doc-build-workflow 2025-06-05T23:12:47.4618714Z * [new branch] stable -> origin/stable 2025-06-05T23:12:47.4620044Z * [new branch] stable-2023-08-29_with_bundled_program -> origin/stable-2023-08-29_with_bundled_program 2025-06-05T23:12:47.4621115Z * [new branch] static-llama -> origin/static-llama 2025-06-05T23:12:47.4622210Z * [new branch] static-llama-kv -> origin/static-llama-kv 2025-06-05T23:12:47.4623219Z * [new branch] static_cache -> origin/static_cache 2025-06-05T23:12:47.4624308Z * [new branch] static_lib -> origin/static_lib 2025-06-05T23:12:47.4625391Z * [new branch] streaming_export -> origin/streaming_export 2025-06-05T23:12:47.4626502Z * [new branch] stride-cmp-size-oblivious -> origin/stride-cmp-size-oblivious 2025-06-05T23:12:47.4627571Z * [new branch] suo-patch-1 -> origin/suo-patch-1 2025-06-05T23:12:47.4628638Z * [new branch] suppress_cmake -> origin/suppress_cmake 2025-06-05T23:12:47.4629702Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-06-05T23:12:47.4630826Z * [new branch] svekars-patch-2 -> origin/svekars-patch-2 2025-06-05T23:12:47.4631899Z * [new branch] svekars-patch-3 -> origin/svekars-patch-3 2025-06-05T23:12:47.4632934Z * [new branch] svekars-patch-5 -> origin/svekars-patch-5 2025-06-05T23:12:47.4634042Z * [new branch] svekars-patch-6 -> origin/svekars-patch-6 2025-06-05T23:12:47.4635155Z * [new branch] svekars-patch-7 -> origin/svekars-patch-7 2025-06-05T23:12:47.4636282Z * [new branch] svekars-patch-8 -> origin/svekars-patch-8 2025-06-05T23:12:47.4637537Z * [new branch] swiftpm -> origin/swiftpm 2025-06-05T23:12:47.4638522Z * [new branch] swiftpm-0.4.0 -> origin/swiftpm-0.4.0 2025-06-05T23:12:47.4639591Z * [new branch] swiftpm-0.4.0.20241114 -> origin/swiftpm-0.4.0.20241114 2025-06-05T23:12:47.4640622Z * [new branch] swiftpm-0.4.0.20241115 -> origin/swiftpm-0.4.0.20241115 2025-06-05T23:12:47.4641695Z * [new branch] swiftpm-0.4.0.20241116 -> origin/swiftpm-0.4.0.20241116 2025-06-05T23:12:47.4642735Z * [new branch] swiftpm-0.4.0.20241117 -> origin/swiftpm-0.4.0.20241117 2025-06-05T23:12:47.4643835Z * [new branch] swiftpm-0.4.0.20241118 -> origin/swiftpm-0.4.0.20241118 2025-06-05T23:12:47.4644964Z * [new branch] swiftpm-0.4.0.20241119 -> origin/swiftpm-0.4.0.20241119 2025-06-05T23:12:47.4646029Z * [new branch] swiftpm-0.4.0.20241120 -> origin/swiftpm-0.4.0.20241120 2025-06-05T23:12:47.4647099Z * [new branch] swiftpm-0.4.0.20241121 -> origin/swiftpm-0.4.0.20241121 2025-06-05T23:12:47.4648150Z * [new branch] swiftpm-0.4.0.20241122 -> origin/swiftpm-0.4.0.20241122 2025-06-05T23:12:47.4649178Z * [new branch] swiftpm-0.4.0.20241123 -> origin/swiftpm-0.4.0.20241123 2025-06-05T23:12:47.4650176Z * [new branch] swiftpm-0.4.0.20241124 -> origin/swiftpm-0.4.0.20241124 2025-06-05T23:12:47.4651194Z * [new branch] swiftpm-0.4.0.20241125 -> origin/swiftpm-0.4.0.20241125 2025-06-05T23:12:47.4652227Z * [new branch] swiftpm-0.4.0.20241126 -> origin/swiftpm-0.4.0.20241126 2025-06-05T23:12:47.4653273Z * [new branch] swiftpm-0.4.0.20241127 -> origin/swiftpm-0.4.0.20241127 2025-06-05T23:12:47.4654412Z * [new branch] swiftpm-0.4.0.20241128 -> origin/swiftpm-0.4.0.20241128 2025-06-05T23:12:47.4655449Z * [new branch] swiftpm-0.4.0.20241129 -> origin/swiftpm-0.4.0.20241129 2025-06-05T23:12:47.4656459Z * [new branch] swiftpm-0.4.0.20241130 -> origin/swiftpm-0.4.0.20241130 2025-06-05T23:12:47.4657485Z * [new branch] swiftpm-0.4.0.20241201 -> origin/swiftpm-0.4.0.20241201 2025-06-05T23:12:47.4658888Z * [new branch] swiftpm-0.4.0.20241202 -> origin/swiftpm-0.4.0.20241202 2025-06-05T23:12:47.4659984Z * [new branch] swiftpm-0.4.0.20241203 -> origin/swiftpm-0.4.0.20241203 2025-06-05T23:12:47.4661169Z * [new branch] swiftpm-0.4.0.20241204 -> origin/swiftpm-0.4.0.20241204 2025-06-05T23:12:47.4662103Z * [new branch] swiftpm-0.4.0.20241205 -> origin/swiftpm-0.4.0.20241205 2025-06-05T23:12:47.4663106Z * [new branch] swiftpm-0.4.0.20241206 -> origin/swiftpm-0.4.0.20241206 2025-06-05T23:12:47.4664173Z * [new branch] swiftpm-0.4.0.20241207 -> origin/swiftpm-0.4.0.20241207 2025-06-05T23:12:47.4665185Z * [new branch] swiftpm-0.4.0.20241208 -> origin/swiftpm-0.4.0.20241208 2025-06-05T23:12:47.4666172Z * [new branch] swiftpm-0.4.0.20241209 -> origin/swiftpm-0.4.0.20241209 2025-06-05T23:12:47.4667595Z * [new branch] swiftpm-0.4.0.20241210 -> origin/swiftpm-0.4.0.20241210 2025-06-05T23:12:47.4668639Z * [new branch] swiftpm-0.4.0.20241211 -> origin/swiftpm-0.4.0.20241211 2025-06-05T23:12:47.4669685Z * [new branch] swiftpm-0.4.0.20241212 -> origin/swiftpm-0.4.0.20241212 2025-06-05T23:12:47.4670714Z * [new branch] swiftpm-0.4.0.20241213 -> origin/swiftpm-0.4.0.20241213 2025-06-05T23:12:47.4671886Z * [new branch] swiftpm-0.4.0.20241214 -> origin/swiftpm-0.4.0.20241214 2025-06-05T23:12:47.4672865Z * [new branch] swiftpm-0.4.0.20241215 -> origin/swiftpm-0.4.0.20241215 2025-06-05T23:12:47.4673885Z * [new branch] swiftpm-0.4.0.20241216 -> origin/swiftpm-0.4.0.20241216 2025-06-05T23:12:47.4674895Z * [new branch] swiftpm-0.4.0.20241217 -> origin/swiftpm-0.4.0.20241217 2025-06-05T23:12:47.4675905Z * [new branch] swiftpm-0.4.0.20241218 -> origin/swiftpm-0.4.0.20241218 2025-06-05T23:12:47.4676962Z * [new branch] swiftpm-0.4.0.20241219 -> origin/swiftpm-0.4.0.20241219 2025-06-05T23:12:47.4678000Z * [new branch] swiftpm-0.4.0.20241220 -> origin/swiftpm-0.4.0.20241220 2025-06-05T23:12:47.4679046Z * [new branch] swiftpm-0.4.0.20241221 -> origin/swiftpm-0.4.0.20241221 2025-06-05T23:12:47.4680045Z * [new branch] swiftpm-0.4.0.20241222 -> origin/swiftpm-0.4.0.20241222 2025-06-05T23:12:47.4681043Z * [new branch] swiftpm-0.4.0.20241223 -> origin/swiftpm-0.4.0.20241223 2025-06-05T23:12:47.4682060Z * [new branch] swiftpm-0.4.0.20241224 -> origin/swiftpm-0.4.0.20241224 2025-06-05T23:12:47.4683074Z * [new branch] swiftpm-0.4.0.20241225 -> origin/swiftpm-0.4.0.20241225 2025-06-05T23:12:47.4684254Z * [new branch] swiftpm-0.4.0.20241226 -> origin/swiftpm-0.4.0.20241226 2025-06-05T23:12:47.4685294Z * [new branch] swiftpm-0.4.0.20241227 -> origin/swiftpm-0.4.0.20241227 2025-06-05T23:12:47.4686391Z * [new branch] swiftpm-0.4.0.20241228 -> origin/swiftpm-0.4.0.20241228 2025-06-05T23:12:47.4695362Z * [new branch] swiftpm-0.4.0.20241229 -> origin/swiftpm-0.4.0.20241229 2025-06-05T23:12:47.4695847Z * [new branch] swiftpm-0.4.0.20241230 -> origin/swiftpm-0.4.0.20241230 2025-06-05T23:12:47.4696464Z * [new branch] swiftpm-0.4.0.20241231 -> origin/swiftpm-0.4.0.20241231 2025-06-05T23:12:47.4696697Z * [new branch] swiftpm-0.4.0.20250101 -> origin/swiftpm-0.4.0.20250101 2025-06-05T23:12:47.4696902Z * [new branch] swiftpm-0.4.0.20250102 -> origin/swiftpm-0.4.0.20250102 2025-06-05T23:12:47.4697173Z * [new branch] swiftpm-0.4.0.20250103 -> origin/swiftpm-0.4.0.20250103 2025-06-05T23:12:47.4697600Z * [new branch] swiftpm-0.4.0.20250104 -> origin/swiftpm-0.4.0.20250104 2025-06-05T23:12:47.4697929Z * [new branch] swiftpm-0.4.0.20250105 -> origin/swiftpm-0.4.0.20250105 2025-06-05T23:12:47.4698169Z * [new branch] swiftpm-0.4.0.20250106 -> origin/swiftpm-0.4.0.20250106 2025-06-05T23:12:47.4698590Z * [new branch] swiftpm-0.4.0.20250107 -> origin/swiftpm-0.4.0.20250107 2025-06-05T23:12:47.4698942Z * [new branch] swiftpm-0.4.0.20250108 -> origin/swiftpm-0.4.0.20250108 2025-06-05T23:12:47.4699658Z * [new branch] swiftpm-0.4.0.20250109 -> origin/swiftpm-0.4.0.20250109 2025-06-05T23:12:47.4700562Z * [new branch] swiftpm-0.4.0.20250110 -> origin/swiftpm-0.4.0.20250110 2025-06-05T23:12:47.4701784Z * [new branch] swiftpm-0.4.0.20250111 -> origin/swiftpm-0.4.0.20250111 2025-06-05T23:12:47.4702712Z * [new branch] swiftpm-0.4.0.20250112 -> origin/swiftpm-0.4.0.20250112 2025-06-05T23:12:47.4703684Z * [new branch] swiftpm-0.4.0.20250113 -> origin/swiftpm-0.4.0.20250113 2025-06-05T23:12:47.4704676Z * [new branch] swiftpm-0.4.0.20250114 -> origin/swiftpm-0.4.0.20250114 2025-06-05T23:12:47.4705832Z * [new branch] swiftpm-0.4.0.20250115 -> origin/swiftpm-0.4.0.20250115 2025-06-05T23:12:47.4706731Z * [new branch] swiftpm-0.4.0.20250116 -> origin/swiftpm-0.4.0.20250116 2025-06-05T23:12:47.4707695Z * [new branch] swiftpm-0.4.0.20250117 -> origin/swiftpm-0.4.0.20250117 2025-06-05T23:12:47.4708754Z * [new branch] swiftpm-0.4.0.20250118 -> origin/swiftpm-0.4.0.20250118 2025-06-05T23:12:47.4709923Z * [new branch] swiftpm-0.4.0.20250119 -> origin/swiftpm-0.4.0.20250119 2025-06-05T23:12:47.4710829Z * [new branch] swiftpm-0.4.0.20250120 -> origin/swiftpm-0.4.0.20250120 2025-06-05T23:12:47.4711822Z * [new branch] swiftpm-0.4.0.20250121 -> origin/swiftpm-0.4.0.20250121 2025-06-05T23:12:47.4712843Z * [new branch] swiftpm-0.4.0.20250122 -> origin/swiftpm-0.4.0.20250122 2025-06-05T23:12:47.4713848Z * [new branch] swiftpm-0.4.0.20250123 -> origin/swiftpm-0.4.0.20250123 2025-06-05T23:12:47.4714827Z * [new branch] swiftpm-0.4.0.20250124 -> origin/swiftpm-0.4.0.20250124 2025-06-05T23:12:47.4715797Z * [new branch] swiftpm-0.4.0.20250125 -> origin/swiftpm-0.4.0.20250125 2025-06-05T23:12:47.4716805Z * [new branch] swiftpm-0.4.0.20250126 -> origin/swiftpm-0.4.0.20250126 2025-06-05T23:12:47.4717788Z * [new branch] swiftpm-0.4.0.20250127 -> origin/swiftpm-0.4.0.20250127 2025-06-05T23:12:47.4718979Z * [new branch] swiftpm-0.4.0.20250128 -> origin/swiftpm-0.4.0.20250128 2025-06-05T23:12:47.4719916Z * [new branch] swiftpm-0.4.0.20250129 -> origin/swiftpm-0.4.0.20250129 2025-06-05T23:12:47.4720939Z * [new branch] swiftpm-0.4.0.20250130 -> origin/swiftpm-0.4.0.20250130 2025-06-05T23:12:47.4722204Z * [new branch] swiftpm-0.5.0 -> origin/swiftpm-0.5.0 2025-06-05T23:12:47.4723248Z * [new branch] swiftpm-0.5.0.20250130 -> origin/swiftpm-0.5.0.20250130 2025-06-05T23:12:47.4724277Z * [new branch] swiftpm-0.5.0.20250131 -> origin/swiftpm-0.5.0.20250131 2025-06-05T23:12:47.4725295Z * [new branch] swiftpm-0.5.0.20250201 -> origin/swiftpm-0.5.0.20250201 2025-06-05T23:12:47.4726788Z * [new branch] swiftpm-0.5.0.20250202 -> origin/swiftpm-0.5.0.20250202 2025-06-05T23:12:47.4727727Z * [new branch] swiftpm-0.5.0.20250203 -> origin/swiftpm-0.5.0.20250203 2025-06-05T23:12:47.4728686Z * [new branch] swiftpm-0.5.0.20250204 -> origin/swiftpm-0.5.0.20250204 2025-06-05T23:12:47.4729696Z * [new branch] swiftpm-0.5.0.20250205 -> origin/swiftpm-0.5.0.20250205 2025-06-05T23:12:47.4730718Z * [new branch] swiftpm-0.5.0.20250206 -> origin/swiftpm-0.5.0.20250206 2025-06-05T23:12:47.4731766Z * [new branch] swiftpm-0.5.0.20250207 -> origin/swiftpm-0.5.0.20250207 2025-06-05T23:12:47.4732791Z * [new branch] swiftpm-0.5.0.20250208 -> origin/swiftpm-0.5.0.20250208 2025-06-05T23:12:47.4733749Z * [new branch] swiftpm-0.5.0.20250209 -> origin/swiftpm-0.5.0.20250209 2025-06-05T23:12:47.4735199Z * [new branch] swiftpm-0.5.0.20250210 -> origin/swiftpm-0.5.0.20250210 2025-06-05T23:12:47.4736297Z * [new branch] swiftpm-0.5.0.20250211 -> origin/swiftpm-0.5.0.20250211 2025-06-05T23:12:47.4737176Z * [new branch] swiftpm-0.5.0.20250212 -> origin/swiftpm-0.5.0.20250212 2025-06-05T23:12:47.4738213Z * [new branch] swiftpm-0.5.0.20250213 -> origin/swiftpm-0.5.0.20250213 2025-06-05T23:12:47.4739417Z * [new branch] swiftpm-0.5.0.20250214 -> origin/swiftpm-0.5.0.20250214 2025-06-05T23:12:47.4740385Z * [new branch] swiftpm-0.5.0.20250215 -> origin/swiftpm-0.5.0.20250215 2025-06-05T23:12:47.4741386Z * [new branch] swiftpm-0.5.0.20250216 -> origin/swiftpm-0.5.0.20250216 2025-06-05T23:12:47.4742400Z * [new branch] swiftpm-0.5.0.20250217 -> origin/swiftpm-0.5.0.20250217 2025-06-05T23:12:47.4743449Z * [new branch] swiftpm-0.5.0.20250218 -> origin/swiftpm-0.5.0.20250218 2025-06-05T23:12:47.4744521Z * [new branch] swiftpm-0.5.0.20250219 -> origin/swiftpm-0.5.0.20250219 2025-06-05T23:12:47.4745537Z * [new branch] swiftpm-0.5.0.20250220 -> origin/swiftpm-0.5.0.20250220 2025-06-05T23:12:47.4746534Z * [new branch] swiftpm-0.5.0.20250221 -> origin/swiftpm-0.5.0.20250221 2025-06-05T23:12:47.4747569Z * [new branch] swiftpm-0.5.0.20250222 -> origin/swiftpm-0.5.0.20250222 2025-06-05T23:12:47.4748580Z * [new branch] swiftpm-0.5.0.20250223 -> origin/swiftpm-0.5.0.20250223 2025-06-05T23:12:47.4749567Z * [new branch] swiftpm-0.5.0.20250224 -> origin/swiftpm-0.5.0.20250224 2025-06-05T23:12:47.4750554Z * [new branch] swiftpm-0.5.0.20250225 -> origin/swiftpm-0.5.0.20250225 2025-06-05T23:12:47.4751586Z * [new branch] swiftpm-0.5.0.20250226 -> origin/swiftpm-0.5.0.20250226 2025-06-05T23:12:47.4752610Z * [new branch] swiftpm-0.5.0.20250227 -> origin/swiftpm-0.5.0.20250227 2025-06-05T23:12:47.4753644Z * [new branch] swiftpm-0.5.0.20250228 -> origin/swiftpm-0.5.0.20250228 2025-06-05T23:12:47.4754799Z * [new branch] swiftpm-0.5.0.20250301 -> origin/swiftpm-0.5.0.20250301 2025-06-05T23:12:47.4755834Z * [new branch] swiftpm-0.5.0.20250302 -> origin/swiftpm-0.5.0.20250302 2025-06-05T23:12:47.4756830Z * [new branch] swiftpm-0.5.0.20250303 -> origin/swiftpm-0.5.0.20250303 2025-06-05T23:12:47.4757889Z * [new branch] swiftpm-0.5.0.20250304 -> origin/swiftpm-0.5.0.20250304 2025-06-05T23:12:47.4758858Z * [new branch] swiftpm-0.5.0.20250306 -> origin/swiftpm-0.5.0.20250306 2025-06-05T23:12:47.4759836Z * [new branch] swiftpm-0.5.0.20250307 -> origin/swiftpm-0.5.0.20250307 2025-06-05T23:12:47.4760858Z * [new branch] swiftpm-0.5.0.20250308 -> origin/swiftpm-0.5.0.20250308 2025-06-05T23:12:47.4762079Z * [new branch] swiftpm-0.5.0.20250309 -> origin/swiftpm-0.5.0.20250309 2025-06-05T23:12:47.4763043Z * [new branch] swiftpm-0.5.0.20250310 -> origin/swiftpm-0.5.0.20250310 2025-06-05T23:12:47.4764103Z * [new branch] swiftpm-0.5.0.20250311 -> origin/swiftpm-0.5.0.20250311 2025-06-05T23:12:47.4765158Z * [new branch] swiftpm-0.5.0.20250313 -> origin/swiftpm-0.5.0.20250313 2025-06-05T23:12:47.4766209Z * [new branch] swiftpm-0.5.0.20250314 -> origin/swiftpm-0.5.0.20250314 2025-06-05T23:12:47.4767286Z * [new branch] swiftpm-0.5.0.20250315 -> origin/swiftpm-0.5.0.20250315 2025-06-05T23:12:47.4768220Z * [new branch] swiftpm-0.5.0.20250316 -> origin/swiftpm-0.5.0.20250316 2025-06-05T23:12:47.4769269Z * [new branch] swiftpm-0.5.0.20250317 -> origin/swiftpm-0.5.0.20250317 2025-06-05T23:12:47.4770305Z * [new branch] swiftpm-0.5.0.20250318 -> origin/swiftpm-0.5.0.20250318 2025-06-05T23:12:47.4771300Z * [new branch] swiftpm-0.5.0.20250319 -> origin/swiftpm-0.5.0.20250319 2025-06-05T23:12:47.4772544Z * [new branch] swiftpm-0.5.0.20250320 -> origin/swiftpm-0.5.0.20250320 2025-06-05T23:12:47.4773549Z * [new branch] swiftpm-0.5.0.20250321 -> origin/swiftpm-0.5.0.20250321 2025-06-05T23:12:47.4774424Z * [new branch] swiftpm-0.5.0.20250322 -> origin/swiftpm-0.5.0.20250322 2025-06-05T23:12:47.4775375Z * [new branch] swiftpm-0.5.0.20250323 -> origin/swiftpm-0.5.0.20250323 2025-06-05T23:12:47.4776398Z * [new branch] swiftpm-0.5.0.20250324 -> origin/swiftpm-0.5.0.20250324 2025-06-05T23:12:47.4777578Z * [new branch] swiftpm-0.5.0.20250325 -> origin/swiftpm-0.5.0.20250325 2025-06-05T23:12:47.4778488Z * [new branch] swiftpm-0.5.0.20250326 -> origin/swiftpm-0.5.0.20250326 2025-06-05T23:12:47.4779580Z * [new branch] swiftpm-0.5.0.20250327 -> origin/swiftpm-0.5.0.20250327 2025-06-05T23:12:47.4780740Z * [new branch] swiftpm-0.5.0.20250328 -> origin/swiftpm-0.5.0.20250328 2025-06-05T23:12:47.4781656Z * [new branch] swiftpm-0.5.0.20250329 -> origin/swiftpm-0.5.0.20250329 2025-06-05T23:12:47.4782615Z * [new branch] swiftpm-0.5.0.20250330 -> origin/swiftpm-0.5.0.20250330 2025-06-05T23:12:47.4783601Z * [new branch] swiftpm-0.5.0.20250331 -> origin/swiftpm-0.5.0.20250331 2025-06-05T23:12:47.4784783Z * [new branch] swiftpm-0.6.0 -> origin/swiftpm-0.6.0 2025-06-05T23:12:47.4785747Z * [new branch] swiftpm-0.7.0.20250401 -> origin/swiftpm-0.7.0.20250401 2025-06-05T23:12:47.4786719Z * [new branch] swiftpm-0.7.0.20250402 -> origin/swiftpm-0.7.0.20250402 2025-06-05T23:12:47.4787788Z * [new branch] swiftpm-0.7.0.20250403 -> origin/swiftpm-0.7.0.20250403 2025-06-05T23:12:47.4788843Z * [new branch] swiftpm-0.7.0.20250404 -> origin/swiftpm-0.7.0.20250404 2025-06-05T23:12:47.4789775Z * [new branch] swiftpm-0.7.0.20250408 -> origin/swiftpm-0.7.0.20250408 2025-06-05T23:12:47.4790796Z * [new branch] swiftpm-0.7.0.20250409 -> origin/swiftpm-0.7.0.20250409 2025-06-05T23:12:47.4792518Z * [new branch] swiftpm-0.7.0.20250410 -> origin/swiftpm-0.7.0.20250410 2025-06-05T23:12:47.4794160Z * [new branch] swiftpm-0.7.0.20250411 -> origin/swiftpm-0.7.0.20250411 2025-06-05T23:12:47.4795169Z * [new branch] swiftpm-0.7.0.20250412 -> origin/swiftpm-0.7.0.20250412 2025-06-05T23:12:47.4796158Z * [new branch] swiftpm-0.7.0.20250413 -> origin/swiftpm-0.7.0.20250413 2025-06-05T23:12:47.4797112Z * [new branch] swiftpm-0.7.0.20250414 -> origin/swiftpm-0.7.0.20250414 2025-06-05T23:12:47.4798185Z * [new branch] swiftpm-0.7.0.20250415 -> origin/swiftpm-0.7.0.20250415 2025-06-05T23:12:47.4799215Z * [new branch] swiftpm-0.7.0.20250416 -> origin/swiftpm-0.7.0.20250416 2025-06-05T23:12:47.4800212Z * [new branch] swiftpm-0.7.0.20250417 -> origin/swiftpm-0.7.0.20250417 2025-06-05T23:12:47.4801203Z * [new branch] swiftpm-0.7.0.20250418 -> origin/swiftpm-0.7.0.20250418 2025-06-05T23:12:47.4802798Z * [new branch] swiftpm-0.7.0.20250419 -> origin/swiftpm-0.7.0.20250419 2025-06-05T23:12:47.4803817Z * [new branch] swiftpm-0.7.0.20250420 -> origin/swiftpm-0.7.0.20250420 2025-06-05T23:12:47.4804813Z * [new branch] swiftpm-0.7.0.20250421 -> origin/swiftpm-0.7.0.20250421 2025-06-05T23:12:47.4805778Z * [new branch] swiftpm-0.7.0.20250422 -> origin/swiftpm-0.7.0.20250422 2025-06-05T23:12:47.4806860Z * [new branch] swiftpm-0.7.0.20250423 -> origin/swiftpm-0.7.0.20250423 2025-06-05T23:12:47.4807817Z * [new branch] swiftpm-0.7.0.20250424 -> origin/swiftpm-0.7.0.20250424 2025-06-05T23:12:47.4809018Z * [new branch] swiftpm-0.7.0.20250425 -> origin/swiftpm-0.7.0.20250425 2025-06-05T23:12:47.4810016Z * [new branch] swiftpm-0.7.0.20250426 -> origin/swiftpm-0.7.0.20250426 2025-06-05T23:12:47.4811044Z * [new branch] swiftpm-0.7.0.20250427 -> origin/swiftpm-0.7.0.20250427 2025-06-05T23:12:47.4812162Z * [new branch] swiftpm-0.7.0.20250428 -> origin/swiftpm-0.7.0.20250428 2025-06-05T23:12:47.4813071Z * [new branch] swiftpm-0.7.0.20250429 -> origin/swiftpm-0.7.0.20250429 2025-06-05T23:12:47.4814233Z * [new branch] swiftpm-0.7.0.20250430 -> origin/swiftpm-0.7.0.20250430 2025-06-05T23:12:47.4815189Z * [new branch] swiftpm-0.7.0.20250501 -> origin/swiftpm-0.7.0.20250501 2025-06-05T23:12:47.4816212Z * [new branch] swiftpm-0.7.0.20250502 -> origin/swiftpm-0.7.0.20250502 2025-06-05T23:12:47.4817227Z * [new branch] swiftpm-0.7.0.20250503 -> origin/swiftpm-0.7.0.20250503 2025-06-05T23:12:47.4818240Z * [new branch] swiftpm-0.7.0.20250504 -> origin/swiftpm-0.7.0.20250504 2025-06-05T23:12:47.4819418Z * [new branch] swiftpm-0.7.0.20250505 -> origin/swiftpm-0.7.0.20250505 2025-06-05T23:12:47.4820369Z * [new branch] swiftpm-0.7.0.20250506 -> origin/swiftpm-0.7.0.20250506 2025-06-05T23:12:47.4821381Z * [new branch] swiftpm-0.7.0.20250508 -> origin/swiftpm-0.7.0.20250508 2025-06-05T23:12:47.4822412Z * [new branch] swiftpm-0.7.0.20250509 -> origin/swiftpm-0.7.0.20250509 2025-06-05T23:12:47.4823639Z * [new branch] swiftpm-0.7.0.20250510 -> origin/swiftpm-0.7.0.20250510 2025-06-05T23:12:47.4824594Z * [new branch] swiftpm-0.7.0.20250511 -> origin/swiftpm-0.7.0.20250511 2025-06-05T23:12:47.4825599Z * [new branch] swiftpm-0.7.0.20250512 -> origin/swiftpm-0.7.0.20250512 2025-06-05T23:12:47.4826615Z * [new branch] swiftpm-0.7.0.20250513 -> origin/swiftpm-0.7.0.20250513 2025-06-05T23:12:47.4827651Z * [new branch] swiftpm-0.7.0.20250514 -> origin/swiftpm-0.7.0.20250514 2025-06-05T23:12:47.4828631Z * [new branch] swiftpm-0.7.0.20250515 -> origin/swiftpm-0.7.0.20250515 2025-06-05T23:12:47.4829637Z * [new branch] swiftpm-0.7.0.20250516 -> origin/swiftpm-0.7.0.20250516 2025-06-05T23:12:47.4830688Z * [new branch] swiftpm-0.7.0.20250517 -> origin/swiftpm-0.7.0.20250517 2025-06-05T23:12:47.4831693Z * [new branch] swiftpm-0.7.0.20250518 -> origin/swiftpm-0.7.0.20250518 2025-06-05T23:12:47.4832711Z * [new branch] swiftpm-0.7.0.20250519 -> origin/swiftpm-0.7.0.20250519 2025-06-05T23:12:47.4833724Z * [new branch] swiftpm-0.7.0.20250520 -> origin/swiftpm-0.7.0.20250520 2025-06-05T23:12:47.4834716Z * [new branch] swiftpm-0.7.0.20250521 -> origin/swiftpm-0.7.0.20250521 2025-06-05T23:12:47.4835774Z * [new branch] swiftpm-0.7.0.20250522 -> origin/swiftpm-0.7.0.20250522 2025-06-05T23:12:47.4836731Z * [new branch] swiftpm-0.7.0.20250523 -> origin/swiftpm-0.7.0.20250523 2025-06-05T23:12:47.4837801Z * [new branch] swiftpm-0.7.0.20250524 -> origin/swiftpm-0.7.0.20250524 2025-06-05T23:12:47.4838854Z * [new branch] swiftpm-0.7.0.20250525 -> origin/swiftpm-0.7.0.20250525 2025-06-05T23:12:47.4839926Z * [new branch] swiftpm-0.7.0.20250526 -> origin/swiftpm-0.7.0.20250526 2025-06-05T23:12:47.4840914Z * [new branch] swiftpm-0.7.0.20250527 -> origin/swiftpm-0.7.0.20250527 2025-06-05T23:12:47.4842059Z * [new branch] swiftpm-0.7.0.20250528 -> origin/swiftpm-0.7.0.20250528 2025-06-05T23:12:47.4843042Z * [new branch] swiftpm-0.7.0.20250529 -> origin/swiftpm-0.7.0.20250529 2025-06-05T23:12:47.4844126Z * [new branch] swiftpm-0.7.0.20250530 -> origin/swiftpm-0.7.0.20250530 2025-06-05T23:12:47.4845330Z * [new branch] swiftpm-0.7.0.20250531 -> origin/swiftpm-0.7.0.20250531 2025-06-05T23:12:47.4846214Z * [new branch] swiftpm-0.7.0.20250601 -> origin/swiftpm-0.7.0.20250601 2025-06-05T23:12:47.4847250Z * [new branch] swiftpm-0.7.0.20250602 -> origin/swiftpm-0.7.0.20250602 2025-06-05T23:12:47.4848347Z * [new branch] swiftpm-0.7.0.20250603 -> origin/swiftpm-0.7.0.20250603 2025-06-05T23:12:47.4849342Z * [new branch] swiftpm-0.7.0.20250604 -> origin/swiftpm-0.7.0.20250604 2025-06-05T23:12:47.4850366Z * [new branch] swiftpm-0.7.0.20250605 -> origin/swiftpm-0.7.0.20250605 2025-06-05T23:12:47.4851966Z * [new branch] switch-to-generic-apple-benchmark-app -> origin/switch-to-generic-apple-benchmark-app 2025-06-05T23:12:47.4852484Z * [new branch] test -> origin/test 2025-06-05T23:12:47.4853665Z * [new branch] test-0.6-upload -> origin/test-0.6-upload 2025-06-05T23:12:47.4854674Z * [new branch] test-docs-branch -> origin/test-docs-branch 2025-06-05T23:12:47.4855903Z * [new branch] test-google-gemma-2b -> origin/test-google-gemma-2b 2025-06-05T23:12:47.4856938Z * [new branch] test-miniconda-24.7.1 -> origin/test-miniconda-24.7.1 2025-06-05T23:12:47.4857954Z * [new branch] test-partial-upload -> origin/test-partial-upload 2025-06-05T23:12:47.4859119Z * [new branch] test-regression -> origin/test-regression 2025-06-05T23:12:47.4860335Z * [new branch] test-regression-2 -> origin/test-regression-2 2025-06-05T23:12:47.4861635Z * [new branch] test2 -> origin/test2 2025-06-05T23:12:47.4862861Z * [new branch] testAddSpec -> origin/testAddSpec 2025-06-05T23:12:47.4863800Z * [new branch] test_rm -> origin/test_rm 2025-06-05T23:12:47.4864984Z * [new branch] test_u55_mv2 -> origin/test_u55_mv2 2025-06-05T23:12:47.4866325Z * [new branch] tiktoken -> origin/tiktoken 2025-06-05T23:12:47.4867579Z * [new branch] tkaruturi/bundled_example_comment_change -> origin/tkaruturi/bundled_example_comment_change 2025-06-05T23:12:47.4868546Z * [new branch] tkaruturi/bundled_example_comment_fix -> origin/tkaruturi/bundled_example_comment_fix 2025-06-05T23:12:47.4869386Z * [new branch] tkaruturi/coreml_etdump_changes -> origin/tkaruturi/coreml_etdump_changes 2025-06-05T23:12:47.4870203Z * [new branch] tkaruturi/etdump_cmake -> origin/tkaruturi/etdump_cmake 2025-06-05T23:12:47.4871532Z * [new branch] tkaruturi/etdump_cmake_buck_docs -> origin/tkaruturi/etdump_cmake_buck_docs 2025-06-05T23:12:47.4872865Z * [new branch] tkaruturi/etdump_documentation -> origin/tkaruturi/etdump_documentation 2025-06-05T23:12:47.4874243Z * [new branch] tkaruturi/fix_cmake_schema_generation -> origin/tkaruturi/fix_cmake_schema_generation 2025-06-05T23:12:47.4875356Z * [new branch] tkaruturi/fix_linter_error -> origin/tkaruturi/fix_linter_error 2025-06-05T23:12:47.4876415Z * [new branch] tkaruturi/fix_sdk_example_runner -> origin/tkaruturi/fix_sdk_example_runner 2025-06-05T23:12:47.4877450Z * [new branch] tkaruturi/fix_time_scale_in_inspector -> origin/tkaruturi/fix_time_scale_in_inspector 2025-06-05T23:12:47.4878391Z * [new branch] tkaruturi/imporve_sdk_intro -> origin/tkaruturi/imporve_sdk_intro 2025-06-05T23:12:47.4879433Z * [new branch] tkaruturi/jarvis_cross_compile -> origin/tkaruturi/jarvis_cross_compile 2025-06-05T23:12:47.4880334Z * [new branch] tkaruturi/profiler_documentation -> origin/tkaruturi/profiler_documentation 2025-06-05T23:12:47.4881485Z * [new branch] tkaruturi/sdk_documentation_for_debugging -> origin/tkaruturi/sdk_documentation_for_debugging 2025-06-05T23:12:47.4882312Z * [new branch] tkaruturi/sdk_e2e_test -> origin/tkaruturi/sdk_e2e_test 2025-06-05T23:12:47.4883463Z * [new branch] tkaruturi/sdk_example_runner_e2e_script -> origin/tkaruturi/sdk_example_runner_e2e_script 2025-06-05T23:12:47.4884427Z * [new branch] tkaruturi/sdk_intro_documentation -> origin/tkaruturi/sdk_intro_documentation 2025-06-05T23:12:47.4885582Z * [new branch] tkaruturi/template_for_tutorial -> origin/tkaruturi/template_for_tutorial 2025-06-05T23:12:47.4886391Z * [new branch] tkaruturi/vision_encoder_et -> origin/tkaruturi/vision_encoder_et 2025-06-05T23:12:47.4887460Z * [new branch] tkaruturi/xtensa_cross_compile -> origin/tkaruturi/xtensa_cross_compile 2025-06-05T23:12:47.4888503Z * [new branch] tkaruturi/xtensa_cross_compile_doc -> origin/tkaruturi/xtensa_cross_compile_doc 2025-06-05T23:12:47.4889377Z * [new branch] tkaruturi/xtensa_full_demo -> origin/tkaruturi/xtensa_full_demo 2025-06-05T23:12:47.4890517Z * [new branch] tkaruturi/xtensa_linear_demo -> origin/tkaruturi/xtensa_linear_demo 2025-06-05T23:12:47.4891876Z * [new branch] token_ids -> origin/token_ids 2025-06-05T23:12:47.4892968Z * [new branch] tokenizer -> origin/tokenizer 2025-06-05T23:12:47.4894162Z * [new branch] tosa_ref_model_fix -> origin/tosa_ref_model_fix 2025-06-05T23:12:47.4895558Z * [new branch] tosa_ser_fix_on_0.5 -> origin/tosa_ser_fix_on_0.5 2025-06-05T23:12:47.4896608Z * [new branch] tosa_serialization_fix -> origin/tosa_serialization_fix 2025-06-05T23:12:47.4897596Z * [new branch] training_ir_migration -> origin/training_ir_migration 2025-06-05T23:12:47.4898734Z * [new branch] tugsbayasgalan-patch-1 -> origin/tugsbayasgalan-patch-1 2025-06-05T23:12:47.4899737Z * [new branch] update-ao-pinned-commit -> origin/update-ao-pinned-commit 2025-06-05T23:12:47.4900943Z * [new branch] update-cherry-pick-bot-command -> origin/update-cherry-pick-bot-command 2025-06-05T23:12:47.4901878Z * [new branch] update-install-reqs -> origin/update-install-reqs 2025-06-05T23:12:47.4903451Z * [new branch] update-pytorch-commit-hash/10001481831-208-1 -> origin/update-pytorch-commit-hash/10001481831-208-1 2025-06-05T23:12:47.4904660Z * [new branch] update-pytorch-commit-hash/10016779643-209-1 -> origin/update-pytorch-commit-hash/10016779643-209-1 2025-06-05T23:12:47.4905502Z * [new branch] update-pytorch-commit-hash/10294824671-229-1 -> origin/update-pytorch-commit-hash/10294824671-229-1 2025-06-05T23:12:47.4906390Z * [new branch] update-pytorch-commit-hash/15080763801-537-1 -> origin/update-pytorch-commit-hash/15080763801-537-1 2025-06-05T23:12:47.4907382Z * [new branch] update-pytorch-commit-hash/7535757395-1-4 -> origin/update-pytorch-commit-hash/7535757395-1-4 2025-06-05T23:12:47.4908251Z * [new branch] update-pytorch-commit-hash/7535757395-1-5 -> origin/update-pytorch-commit-hash/7535757395-1-5 2025-06-05T23:12:47.4909881Z * [new branch] update-pytorch-commit-hash/7535757395-1-8 -> origin/update-pytorch-commit-hash/7535757395-1-8 2025-06-05T23:12:47.4911064Z * [new branch] update-pytorch-commit-hash/7549495184-5-2 -> origin/update-pytorch-commit-hash/7549495184-5-2 2025-06-05T23:12:47.4912063Z * [new branch] update-pytorch-commit-hash/7549495184-5-5 -> origin/update-pytorch-commit-hash/7549495184-5-5 2025-06-05T23:12:47.4913103Z * [new branch] update-pytorch-commit-hash/7591486932-11-1 -> origin/update-pytorch-commit-hash/7591486932-11-1 2025-06-05T23:12:47.4914071Z * [new branch] update-pytorch-commit-hash/7705303192-21-1 -> origin/update-pytorch-commit-hash/7705303192-21-1 2025-06-05T23:12:47.4915026Z * [new branch] update-pytorch-commit-hash/8461430243-81-1 -> origin/update-pytorch-commit-hash/8461430243-81-1 2025-06-05T23:12:47.4915975Z * [new branch] update-pytorch-commit-hash/8532209109-90-1 -> origin/update-pytorch-commit-hash/8532209109-90-1 2025-06-05T23:12:47.4916955Z * [new branch] update-pytorch-commit-hash/8677863676-101-1 -> origin/update-pytorch-commit-hash/8677863676-101-1 2025-06-05T23:12:47.4917679Z * [new branch] update-symlink-0.6 -> origin/update-symlink-0.6 2025-06-05T23:12:47.4919046Z * [new branch] update-symlink-0.6v2 -> origin/update-symlink-0.6v2 2025-06-05T23:12:47.4919772Z * [new branch] update-symlink-revert -> origin/update-symlink-revert 2025-06-05T23:12:47.4920902Z * [new branch] update-symlink-revert-0.6 -> origin/update-symlink-revert-0.6 2025-06-05T23:12:47.4922063Z * [new branch] update-version-txt -> origin/update-version-txt 2025-06-05T23:12:47.4923122Z * [new branch] update_benchmark_infra_doc -> origin/update_benchmark_infra_doc 2025-06-05T23:12:47.4924259Z * [new branch] update_phi_3_tokenizer -> origin/update_phi_3_tokenizer 2025-06-05T23:12:47.4925394Z * [new branch] update_pin_20240118 -> origin/update_pin_20240118 2025-06-05T23:12:47.4926458Z * [new branch] update_pytorch_pin -> origin/update_pytorch_pin 2025-06-05T23:12:47.4927544Z * [new branch] update_readme -> origin/update_readme 2025-06-05T23:12:47.4928567Z * [new branch] update_upload_workflow -> origin/update_upload_workflow 2025-06-05T23:12:47.4929518Z * [new branch] upgrade-flatbuffer -> origin/upgrade-flatbuffer 2025-06-05T23:12:47.4930527Z * [new branch] upgrade-version -> origin/upgrade-version 2025-06-05T23:12:47.4931912Z * [new branch] upload-android-perf-results -> origin/upload-android-perf-results 2025-06-05T23:12:47.4932741Z * [new branch] upload-ios-perf-results -> origin/upload-ios-perf-results 2025-06-05T23:12:47.4933766Z * [new branch] upload-test-spec-s3 -> origin/upload-test-spec-s3 2025-06-05T23:12:47.4934767Z * [new branch] use-apple-perf-workflow -> origin/use-apple-perf-workflow 2025-06-05T23:12:47.4935877Z * [new branch] use-linux-runner-android-test -> origin/use-linux-runner-android-test 2025-06-05T23:12:47.4936692Z * [new branch] use-pytorch-runner -> origin/use-pytorch-runner 2025-06-05T23:12:47.4937690Z * [new branch] use-quantize_ -> origin/use-quantize_ 2025-06-05T23:12:47.4938799Z * [new branch] use_kv_cache -> origin/use_kv_cache 2025-06-05T23:12:47.4941075Z * [new branch] user/tkaruturi/export_recipes_integration_in_export_llama -> origin/user/tkaruturi/export_recipes_integration_in_export_llama 2025-06-05T23:12:47.4941398Z * [new branch] v0.6.0-android -> origin/v0.6.0-android 2025-06-05T23:12:47.4942453Z * [new branch] v0.6.0-rc3-android -> origin/v0.6.0-rc3-android 2025-06-05T23:12:47.4943421Z * [new branch] v0.6.0-rc4-android -> origin/v0.6.0-rc4-android 2025-06-05T23:12:47.4944377Z * [new branch] v0.6.0-rc6-android -> origin/v0.6.0-rc6-android 2025-06-05T23:12:47.4945826Z * [new branch] viable/strict -> origin/viable/strict 2025-06-05T23:12:47.4946730Z * [new branch] vision -> origin/vision 2025-06-05T23:12:47.4947918Z * [new branch] vulkan-without-executorch -> origin/vulkan-without-executorch 2025-06-05T23:12:47.4949290Z * [new branch] wdvr/increase-timeout -> origin/wdvr/increase-timeout 2025-06-05T23:12:47.4950219Z * [new branch] working -> origin/working 2025-06-05T23:12:47.4951307Z * [new branch] xcode -> origin/xcode 2025-06-05T23:12:47.4952538Z * [new branch] xcode-16-for-ios-18 -> origin/xcode-16-for-ios-18 2025-06-05T23:12:47.4953506Z * [new branch] xnnp_workspace_sharing -> origin/xnnp_workspace_sharing 2025-06-05T23:12:47.4954890Z * [new branch] zainr/demo -> origin/zainr/demo 2025-06-05T23:12:47.4955805Z * [new tag] android/release/test-1 -> android/release/test-1 2025-06-05T23:12:47.4956487Z * [new tag] android/release/test-2 -> android/release/test-2 2025-06-05T23:12:47.4957665Z * [new tag] ciflow/android/release/5588 -> ciflow/android/release/5588 2025-06-05T23:12:47.4958375Z * [new tag] ciflow/binaries/10741 -> ciflow/binaries/10741 2025-06-05T23:12:47.4958890Z * [new tag] ciflow/binaries/11159 -> ciflow/binaries/11159 2025-06-05T23:12:47.4959515Z * [new tag] ciflow/binaries/11285 -> ciflow/binaries/11285 2025-06-05T23:12:47.4960277Z * [new tag] ciflow/binaries/11432 -> ciflow/binaries/11432 2025-06-05T23:12:47.4961005Z * [new tag] ciflow/binaries/3049 -> ciflow/binaries/3049 2025-06-05T23:12:47.4961598Z * [new tag] ciflow/binaries/5343 -> ciflow/binaries/5343 2025-06-05T23:12:47.4962445Z * [new tag] ciflow/binaries/all/2053 -> ciflow/binaries/all/2053 2025-06-05T23:12:47.4963203Z * [new tag] ciflow/binaries/all/2363 -> ciflow/binaries/all/2363 2025-06-05T23:12:47.4964043Z * [new tag] ciflow/binaries/all/2969 -> ciflow/binaries/all/2969 2025-06-05T23:12:47.4964854Z * [new tag] ciflow/binaries/all/3049 -> ciflow/binaries/all/3049 2025-06-05T23:12:47.4965566Z * [new tag] ciflow/binaries/all/3789 -> ciflow/binaries/all/3789 2025-06-05T23:12:47.4966384Z * [new tag] ciflow/binaries/all/7017 -> ciflow/binaries/all/7017 2025-06-05T23:12:47.4967161Z * [new tag] ciflow/binaries/all/sdym -> ciflow/binaries/all/sdym 2025-06-05T23:12:47.4967754Z * [new tag] ciflow/binaries/sdym -> ciflow/binaries/sdym 2025-06-05T23:12:47.4968722Z * [new tag] ciflow/periodic/2367 -> ciflow/periodic/2367 2025-06-05T23:12:47.4969517Z * [new tag] ciflow/periodic/2368 -> ciflow/periodic/2368 2025-06-05T23:12:47.4970251Z * [new tag] ciflow/periodic/3737 -> ciflow/periodic/3737 2025-06-05T23:12:47.4970883Z * [new tag] ciflow/periodic/5343 -> ciflow/periodic/5343 2025-06-05T23:12:47.4971745Z * [new tag] ciflow/periodic/5743 -> ciflow/periodic/5743 2025-06-05T23:12:47.4972587Z * [new tag] ciflow/trunk/10282 -> ciflow/trunk/10282 2025-06-05T23:12:47.4973325Z * [new tag] ciflow/trunk/10617 -> ciflow/trunk/10617 2025-06-05T23:12:47.4973983Z * [new tag] ciflow/trunk/10741 -> ciflow/trunk/10741 2025-06-05T23:12:47.4974785Z * [new tag] ciflow/trunk/10874 -> ciflow/trunk/10874 2025-06-05T23:12:47.4975389Z * [new tag] ciflow/trunk/11064 -> ciflow/trunk/11064 2025-06-05T23:12:47.4976015Z * [new tag] ciflow/trunk/11162 -> ciflow/trunk/11162 2025-06-05T23:12:47.4976640Z * [new tag] ciflow/trunk/11285 -> ciflow/trunk/11285 2025-06-05T23:12:47.4977902Z * [new tag] ciflow/trunk/11310 -> ciflow/trunk/11310 2025-06-05T23:12:47.4978733Z * [new tag] ciflow/trunk/11351 -> ciflow/trunk/11351 2025-06-05T23:12:47.4979492Z * [new tag] ciflow/trunk/11396 -> ciflow/trunk/11396 2025-06-05T23:12:47.4980132Z * [new tag] ciflow/trunk/11432 -> ciflow/trunk/11432 2025-06-05T23:12:47.4980756Z * [new tag] ciflow/trunk/1574 -> ciflow/trunk/1574 2025-06-05T23:12:47.4981562Z * [new tag] ciflow/trunk/1986 -> ciflow/trunk/1986 2025-06-05T23:12:47.4982518Z * [new tag] ciflow/trunk/2576 -> ciflow/trunk/2576 2025-06-05T23:12:47.4983444Z * [new tag] ciflow/trunk/2659 -> ciflow/trunk/2659 2025-06-05T23:12:47.4984236Z * [new tag] ciflow/trunk/2720 -> ciflow/trunk/2720 2025-06-05T23:12:47.4985003Z * [new tag] ciflow/trunk/2730 -> ciflow/trunk/2730 2025-06-05T23:12:47.4985851Z * [new tag] ciflow/trunk/2767 -> ciflow/trunk/2767 2025-06-05T23:12:47.4986622Z * [new tag] ciflow/trunk/2818 -> ciflow/trunk/2818 2025-06-05T23:12:47.4987486Z * [new tag] ciflow/trunk/2862 -> ciflow/trunk/2862 2025-06-05T23:12:47.4988046Z * [new tag] ciflow/trunk/2900 -> ciflow/trunk/2900 2025-06-05T23:12:47.4988743Z * [new tag] ciflow/trunk/2937 -> ciflow/trunk/2937 2025-06-05T23:12:47.4989586Z * [new tag] ciflow/trunk/2995 -> ciflow/trunk/2995 2025-06-05T23:12:47.4990429Z * [new tag] ciflow/trunk/3005 -> ciflow/trunk/3005 2025-06-05T23:12:47.4991355Z * [new tag] ciflow/trunk/3018 -> ciflow/trunk/3018 2025-06-05T23:12:47.4993358Z * [new tag] ciflow/trunk/3020 -> ciflow/trunk/3020 2025-06-05T23:12:47.4994540Z * [new tag] ciflow/trunk/3025 -> ciflow/trunk/3025 2025-06-05T23:12:47.4995360Z * [new tag] ciflow/trunk/3049 -> ciflow/trunk/3049 2025-06-05T23:12:47.4996140Z * [new tag] ciflow/trunk/3056 -> ciflow/trunk/3056 2025-06-05T23:12:47.4997288Z * [new tag] ciflow/trunk/3134 -> ciflow/trunk/3134 2025-06-05T23:12:47.4997976Z * [new tag] ciflow/trunk/3199 -> ciflow/trunk/3199 2025-06-05T23:12:47.4998617Z * [new tag] ciflow/trunk/3248 -> ciflow/trunk/3248 2025-06-05T23:12:47.4999551Z * [new tag] ciflow/trunk/3295 -> ciflow/trunk/3295 2025-06-05T23:12:47.5000302Z * [new tag] ciflow/trunk/3369 -> ciflow/trunk/3369 2025-06-05T23:12:47.5001050Z * [new tag] ciflow/trunk/3441 -> ciflow/trunk/3441 2025-06-05T23:12:47.5001909Z * [new tag] ciflow/trunk/3442 -> ciflow/trunk/3442 2025-06-05T23:12:47.5003087Z * [new tag] ciflow/trunk/3786 -> ciflow/trunk/3786 2025-06-05T23:12:47.5003842Z * [new tag] ciflow/trunk/3789 -> ciflow/trunk/3789 2025-06-05T23:12:47.5004732Z * [new tag] ciflow/trunk/3947 -> ciflow/trunk/3947 2025-06-05T23:12:47.5005400Z * [new tag] ciflow/trunk/4076 -> ciflow/trunk/4076 2025-06-05T23:12:47.5006187Z * [new tag] ciflow/trunk/4257 -> ciflow/trunk/4257 2025-06-05T23:12:47.5006980Z * [new tag] ciflow/trunk/4683 -> ciflow/trunk/4683 2025-06-05T23:12:47.5007749Z * [new tag] ciflow/trunk/4710 -> ciflow/trunk/4710 2025-06-05T23:12:47.5008437Z * [new tag] ciflow/trunk/5343 -> ciflow/trunk/5343 2025-06-05T23:12:47.5009038Z * [new tag] ciflow/trunk/5743 -> ciflow/trunk/5743 2025-06-05T23:12:47.5009866Z * [new tag] ciflow/trunk/5838 -> ciflow/trunk/5838 2025-06-05T23:12:47.5010664Z * [new tag] ciflow/trunk/5987 -> ciflow/trunk/5987 2025-06-05T23:12:47.5011317Z * [new tag] ciflow/trunk/6003 -> ciflow/trunk/6003 2025-06-05T23:12:47.5012093Z * [new tag] ciflow/trunk/6562 -> ciflow/trunk/6562 2025-06-05T23:12:47.5012985Z * [new tag] ciflow/trunk/6818 -> ciflow/trunk/6818 2025-06-05T23:12:47.5013800Z * [new tag] ciflow/trunk/9357 -> ciflow/trunk/9357 2025-06-05T23:12:47.5014488Z * [new tag] ciflow/trunk/9830 -> ciflow/trunk/9830 2025-06-05T23:12:47.5015480Z * [new tag] stable-2023-08-01 -> stable-2023-08-01 2025-06-05T23:12:47.5016195Z * [new tag] stable-2023-08-15 -> stable-2023-08-15 2025-06-05T23:12:47.5017012Z * [new tag] stable-2023-08-29 -> stable-2023-08-29 2025-06-05T23:12:47.5017717Z * [new tag] stable-2023-09-12 -> stable-2023-09-12 2025-06-05T23:12:47.5018314Z * [new tag] stable-2023-09-19 -> stable-2023-09-19 2025-06-05T23:12:47.5019343Z * [new tag] v0.1.0 -> v0.1.0 2025-06-05T23:12:47.5020141Z * [new tag] v0.1.0-rc1 -> v0.1.0-rc1 2025-06-05T23:12:47.5021167Z * [new tag] v0.1.0-rc2 -> v0.1.0-rc2 2025-06-05T23:12:47.5021772Z * [new tag] v0.2.0 -> v0.2.0 2025-06-05T23:12:47.5022377Z * [new tag] v0.2.0-rc1 -> v0.2.0-rc1 2025-06-05T23:12:47.5023240Z * [new tag] v0.2.0-rc2 -> v0.2.0-rc2 2025-06-05T23:12:47.5024010Z * [new tag] v0.2.0-rc3 -> v0.2.0-rc3 2025-06-05T23:12:47.5024646Z * [new tag] v0.2.0-rc4 -> v0.2.0-rc4 2025-06-05T23:12:47.5025249Z * [new tag] v0.2.0-rc5 -> v0.2.0-rc5 2025-06-05T23:12:47.5025818Z * [new tag] v0.2.0-rc6 -> v0.2.0-rc6 2025-06-05T23:12:47.5026466Z * [new tag] v0.2.1 -> v0.2.1 2025-06-05T23:12:47.5027254Z * [new tag] v0.2.1-rc1 -> v0.2.1-rc1 2025-06-05T23:12:47.5028023Z * [new tag] v0.2.1-rc2 -> v0.2.1-rc2 2025-06-05T23:12:47.5028911Z * [new tag] v0.2.1-rc3 -> v0.2.1-rc3 2025-06-05T23:12:47.5029687Z * [new tag] v0.2.1-rc4 -> v0.2.1-rc4 2025-06-05T23:12:47.5030268Z * [new tag] v0.2.1-rc5 -> v0.2.1-rc5 2025-06-05T23:12:47.5031025Z * [new tag] v0.3.0 -> v0.3.0 2025-06-05T23:12:47.5031710Z * [new tag] v0.3.0-rc1 -> v0.3.0-rc1 2025-06-05T23:12:47.5032564Z * [new tag] v0.3.0-rc2 -> v0.3.0-rc2 2025-06-05T23:12:47.5033330Z * [new tag] v0.3.0-rc3 -> v0.3.0-rc3 2025-06-05T23:12:47.5034151Z * [new tag] v0.3.0-rc4 -> v0.3.0-rc4 2025-06-05T23:12:47.5034896Z * [new tag] v0.3.0-rc5 -> v0.3.0-rc5 2025-06-05T23:12:47.5035574Z * [new tag] v0.3.0-rc6 -> v0.3.0-rc6 2025-06-05T23:12:47.5036086Z * [new tag] v0.4.0 -> v0.4.0 2025-06-05T23:12:47.5036927Z * [new tag] v0.4.0-rc1 -> v0.4.0-rc1 2025-06-05T23:12:47.5037703Z * [new tag] v0.4.0-rc2 -> v0.4.0-rc2 2025-06-05T23:12:47.5038532Z * [new tag] v0.4.0-rc3 -> v0.4.0-rc3 2025-06-05T23:12:47.5039379Z * [new tag] v0.4.0-rc4 -> v0.4.0-rc4 2025-06-05T23:12:47.5039982Z * [new tag] v0.4.0-rc5 -> v0.4.0-rc5 2025-06-05T23:12:47.5040811Z * [new tag] v0.5.0 -> v0.5.0 2025-06-05T23:12:47.5041544Z * [new tag] v0.5.0-rc1 -> v0.5.0-rc1 2025-06-05T23:12:47.5042430Z * [new tag] v0.5.0-rc2 -> v0.5.0-rc2 2025-06-05T23:12:47.5043300Z * [new tag] v0.5.0-rc3 -> v0.5.0-rc3 2025-06-05T23:12:47.5043940Z * [new tag] v0.5.0-rc4 -> v0.5.0-rc4 2025-06-05T23:12:47.5044757Z * [new tag] v0.6.0 -> v0.6.0 2025-06-05T23:12:47.5045568Z * [new tag] v0.6.0-rc1 -> v0.6.0-rc1 2025-06-05T23:12:47.5046402Z * [new tag] v0.6.0-rc2 -> v0.6.0-rc2 2025-06-05T23:12:47.5047263Z * [new tag] v0.6.0-rc3 -> v0.6.0-rc3 2025-06-05T23:12:47.5048080Z * [new tag] v0.6.0-rc4 -> v0.6.0-rc4 2025-06-05T23:12:47.5049398Z * [new tag] v0.6.0-rc5 -> v0.6.0-rc5 2025-06-05T23:12:47.5050159Z * [new tag] v0.6.0-rc6 -> v0.6.0-rc6 2025-06-05T23:12:47.5050933Z * [new tag] v0.6.0-rc7 -> v0.6.0-rc7 2025-06-05T23:12:47.5051751Z * [new tag] v0.6.0-rc8 -> v0.6.0-rc8 2025-06-05T23:12:47.5052356Z * [new tag] v0.6.0-rc9 -> v0.6.0-rc9 2025-06-05T23:12:47.5504719Z [command]/usr/bin/git rev-parse --verify --quiet bd572346e4f196b36aaa03a1645d12b1618fe88b^{object} 2025-06-05T23:12:47.5529845Z bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:12:47.5533050Z ##[endgroup] 2025-06-05T23:12:47.5533496Z ##[group]Determining the checkout info 2025-06-05T23:12:47.5534087Z ##[endgroup] 2025-06-05T23:12:47.5537693Z [command]/usr/bin/git sparse-checkout disable 2025-06-05T23:12:47.5565723Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-06-05T23:12:47.5587141Z ##[group]Checking out the ref 2025-06-05T23:12:47.5590517Z [command]/usr/bin/git checkout --progress --force bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:12:48.0836803Z Note: switching to 'bd572346e4f196b36aaa03a1645d12b1618fe88b'. 2025-06-05T23:12:48.0837118Z 2025-06-05T23:12:48.0837353Z You are in 'detached HEAD' state. You can look around, make experimental 2025-06-05T23:12:48.0837877Z changes and commit them, and you can discard any commits you make in this 2025-06-05T23:12:48.0838411Z state without impacting any branches by switching back to a branch. 2025-06-05T23:12:48.0838721Z 2025-06-05T23:12:48.0838961Z If you want to create a new branch to retain commits you create, you may 2025-06-05T23:12:48.0839443Z do so (now or later) by using -c with the switch command. Example: 2025-06-05T23:12:48.0839720Z 2025-06-05T23:12:48.0839841Z git switch -c 2025-06-05T23:12:48.0840033Z 2025-06-05T23:12:48.0840135Z Or undo this operation with: 2025-06-05T23:12:48.0840319Z 2025-06-05T23:12:48.0840414Z git switch - 2025-06-05T23:12:48.0840541Z 2025-06-05T23:12:48.0840779Z Turn off this advice by setting config variable advice.detachedHead to false 2025-06-05T23:12:48.0841115Z 2025-06-05T23:12:48.0841378Z HEAD is now at bd572346e Qualcomm AI Engine Direct - QAIRT Visualizer Engagement (#10873) 2025-06-05T23:12:48.0872959Z ##[endgroup] 2025-06-05T23:12:48.0873358Z ##[group]Setting up auth for fetching submodules 2025-06-05T23:12:48.0878775Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:12:48.0917747Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-06-05T23:12:48.0941063Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-06-05T23:12:48.0964365Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-06-05T23:12:48.0989306Z ##[endgroup] 2025-06-05T23:12:48.0989751Z ##[group]Fetching submodules 2025-06-05T23:12:48.0993881Z [command]/usr/bin/git submodule sync --recursive 2025-06-05T23:12:48.1242286Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --recursive 2025-06-05T23:12:48.1484536Z 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:48.1753347Z 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:48.1756188Z Submodule 'backends/cadence/utils/FACTO' (https://github.com/pytorch-labs/FACTO.git) registered for path 'backends/cadence/utils/FACTO' 2025-06-05T23:12:48.1760705Z 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:48.1765353Z 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:48.1768920Z Submodule 'backends/vulkan/third-party/volk' (https://github.com/zeux/volk) registered for path 'backends/vulkan/third-party/volk' 2025-06-05T23:12:48.1773578Z Submodule 'backends/xnnpack/third-party/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'backends/xnnpack/third-party/FP16' 2025-06-05T23:12:48.1784086Z Submodule 'backends/xnnpack/third-party/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:12:48.1788591Z Submodule 'backends/xnnpack/third-party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:12:48.1794338Z Submodule 'backends/xnnpack/third-party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:12:48.1799411Z Submodule 'backends/xnnpack/third-party/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:12:48.1804047Z Submodule 'extension/llm/tokenizers' (https://github.com/pytorch-labs/tokenizers.git) registered for path 'extension/llm/tokenizers' 2025-06-05T23:12:48.1809655Z Submodule 'kernels/optimized/third-party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'kernels/optimized/third-party/eigen' 2025-06-05T23:12:48.1813677Z Submodule 'shim' (https://github.com/facebook/buck2-shims-meta) registered for path 'shim' 2025-06-05T23:12:48.1823119Z Submodule 'third-party/ao' (https://github.com/pytorch/ao.git) registered for path 'third-party/ao' 2025-06-05T23:12:48.1828421Z Submodule 'third-party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third-party/flatbuffers' 2025-06-05T23:12:48.1833537Z Submodule 'third-party/flatcc' (https://github.com/dvidelabs/flatcc.git) registered for path 'third-party/flatcc' 2025-06-05T23:12:48.1840296Z Submodule 'third-party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third-party/gflags' 2025-06-05T23:12:48.1845975Z Submodule 'third-party/googletest' (https://github.com/google/googletest.git) registered for path 'third-party/googletest' 2025-06-05T23:12:48.1851287Z Submodule 'third-party/ios-cmake' (https://github.com/leetal/ios-cmake) registered for path 'third-party/ios-cmake' 2025-06-05T23:12:48.1862372Z Submodule 'third-party/json' (https://github.com/nlohmann/json.git) registered for path 'third-party/json' 2025-06-05T23:12:48.1868082Z Submodule 'third-party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third-party/pocketfft' 2025-06-05T23:12:48.1873826Z Submodule 'third-party/prelude' (https://github.com/facebook/buck2-prelude.git) registered for path 'third-party/prelude' 2025-06-05T23:12:48.1879709Z Submodule 'third-party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third-party/pybind11' 2025-06-05T23:12:48.1906400Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/ethos-u-core-driver'... 2025-06-05T23:12:49.1428643Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/serialization_lib'... 2025-06-05T23:12:50.1509298Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/cadence/utils/FACTO'... 2025-06-05T23:12:50.4444999Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/Vulkan-Headers'... 2025-06-05T23:12:55.6700150Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/VulkanMemoryAllocator'... 2025-06-05T23:12:57.4689856Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/volk'... 2025-06-05T23:12:57.9465061Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/FP16'... 2025-06-05T23:12:58.2052447Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/FXdiv'... 2025-06-05T23:12:58.4002691Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/XNNPACK'... 2025-06-05T23:13:13.8722334Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/cpuinfo'... 2025-06-05T23:13:14.5180454Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/pthreadpool'... 2025-06-05T23:13:14.7681113Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers'... 2025-06-05T23:13:15.0610679Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/kernels/optimized/third-party/eigen'... 2025-06-05T23:13:20.7301041Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/shim'... 2025-06-05T23:13:21.0089311Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ao'... 2025-06-05T23:13:23.6455984Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/flatbuffers'... 2025-06-05T23:13:25.3486918Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/flatcc'... 2025-06-05T23:13:25.8973515Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/gflags'... 2025-06-05T23:13:26.2275726Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/googletest'... 2025-06-05T23:13:27.5442132Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ios-cmake'... 2025-06-05T23:13:27.8245528Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/json'... 2025-06-05T23:13:36.4758073Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/pocketfft'... 2025-06-05T23:13:36.7647009Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/prelude'... 2025-06-05T23:13:37.8972539Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/pybind11'... 2025-06-05T23:13:38.8259360Z Submodule path 'backends/arm/third-party/ethos-u-core-driver': checked out '7bf44c54527e718b99d588ce520cf2f96343adb1' 2025-06-05T23:13:38.8425245Z Submodule path 'backends/arm/third-party/serialization_lib': checked out '187af0d41fe75d08d2a7ec84c1b4d24b9b641ed2' 2025-06-05T23:13:38.8438808Z 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:13:38.8463244Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers'... 2025-06-05T23:13:40.7966872Z Submodule path 'backends/arm/third-party/serialization_lib/third_party/flatbuffers': checked out '0100f6a5779831fa7a651e4b67ef389a8752bd9b' 2025-06-05T23:13:40.8081976Z Submodule path 'backends/cadence/utils/FACTO': checked out '1db37fc79d0d59638cbb794fa49d878aafc24461' 2025-06-05T23:13:40.9486526Z Submodule path 'backends/vulkan/third-party/Vulkan-Headers': checked out '0c5928795a66e93f65e5e68a36d8daa79a209dc2' 2025-06-05T23:13:40.9883084Z Submodule path 'backends/vulkan/third-party/VulkanMemoryAllocator': checked out 'a6bfc237255a6bac1513f7c1ebde6d8aed6b5191' 2025-06-05T23:13:41.0004936Z Submodule path 'backends/vulkan/third-party/volk': checked out 'b3bc21e584f97400b6884cb2a541a56c6a5ddba3' 2025-06-05T23:13:41.0114121Z Submodule path 'backends/xnnpack/third-party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-06-05T23:13:41.0198488Z Submodule path 'backends/xnnpack/third-party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-06-05T23:13:41.7219871Z Submodule path 'backends/xnnpack/third-party/XNNPACK': checked out '4ea82e595b36106653175dcb04b2aa532660d0d8' 2025-06-05T23:13:41.8189515Z Submodule path 'backends/xnnpack/third-party/cpuinfo': checked out 'c61fe919607bbc534d7a5a5707bdd7041e72c5ff' 2025-06-05T23:13:41.8309659Z Submodule path 'backends/xnnpack/third-party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-06-05T23:13:41.8598303Z Submodule path 'extension/llm/tokenizers': checked out 'fc5962cd9e08019c5df6667eba3377e7d76441f7' 2025-06-05T23:13:41.8614578Z 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:13:41.8615694Z Submodule 'third-party/json' (https://github.com/nlohmann/json.git) registered for path 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:13:41.8618190Z Submodule 'third-party/pcre2' (https://github.com/PCRE2Project/pcre2.git) registered for path 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:13:41.8620894Z Submodule 'third-party/re2' (https://github.com/google/re2.git) registered for path 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:13:41.8623961Z Submodule 'third-party/sentencepiece' (https://github.com/google/sentencepiece.git) registered for path 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:13:41.8649049Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/abseil-cpp'... 2025-06-05T23:13:43.2176914Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/json'... 2025-06-05T23:13:51.8279573Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/pcre2'... 2025-06-05T23:13:54.6673234Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/re2'... 2025-06-05T23:13:55.1831363Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece'... 2025-06-05T23:13:56.9315026Z Submodule path 'extension/llm/tokenizers/third-party/abseil-cpp': checked out '7d96b2e93d9a84530748b68abd2f97595c51ecf4' 2025-06-05T23:13:57.0487017Z Submodule path 'extension/llm/tokenizers/third-party/json': checked out 'e6cafa573aac6ed9227f752a5371c0b3f436307d' 2025-06-05T23:13:57.1318169Z Submodule path 'extension/llm/tokenizers/third-party/pcre2': checked out '2e03e323339ab692640626f02f8d8d6f95bff9c6' 2025-06-05T23:13:57.1334259Z Submodule 'deps/sljit' (https://github.com/zherczeg/sljit.git) registered for path 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:13:57.1360982Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/pcre2/deps/sljit'... 2025-06-05T23:13:58.3081375Z Submodule path 'extension/llm/tokenizers/third-party/pcre2/deps/sljit': checked out '98802d939be3f0ccc2c538d611ec4c728564e8cf' 2025-06-05T23:13:58.3305437Z Submodule path 'extension/llm/tokenizers/third-party/re2': checked out '6dcd83d60f7944926bfd308cc13979fc53dd69ca' 2025-06-05T23:13:58.4900861Z Submodule path 'extension/llm/tokenizers/third-party/sentencepiece': checked out 'd8f741853847553169444afc12c00f4bbff3e9ce' 2025-06-05T23:13:58.6671571Z Submodule path 'kernels/optimized/third-party/eigen': checked out 'a39ade4ccf99df845ec85c580fbbb324f71952fa' 2025-06-05T23:13:58.6864101Z Submodule path 'shim': checked out 'cf6a954aae4bee7b4515e13475878460115027d1' 2025-06-05T23:13:58.8157974Z Submodule path 'third-party/ao': checked out 'bc68b11f1bf77be38721ca7dd2c477aeb5e6626e' 2025-06-05T23:13:58.8173951Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass) registered for path 'third-party/ao/third_party/cutlass' 2025-06-05T23:13:58.8199033Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ao/third_party/cutlass'... 2025-06-05T23:14:01.6203521Z Submodule path 'third-party/ao/third_party/cutlass': checked out 'ad7b2f5e84fcfa124cb02b91d5bd26d238c0459e' 2025-06-05T23:14:01.7591823Z Submodule path 'third-party/flatbuffers': checked out '595bf0007ab1929570c7671f091313c8fc20644e' 2025-06-05T23:14:01.7891025Z Submodule path 'third-party/flatcc': checked out '896db54787e8b730a6be482c69324751f3f5f117' 2025-06-05T23:14:01.8018689Z Submodule path 'third-party/gflags': checked out 'a738fdf9338412f83ab3f26f31ac11ed3f3ec4bd' 2025-06-05T23:14:01.8462207Z Submodule path 'third-party/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-06-05T23:14:01.8569425Z Submodule path 'third-party/ios-cmake': checked out '06465b27698424cf4a04a5ca4904d50a3c966c45' 2025-06-05T23:14:01.9603738Z Submodule path 'third-party/json': checked out 'ac0133ea89a8fd730a9cc9649c5226a9995dc3e1' 2025-06-05T23:14:01.9694330Z Submodule path 'third-party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-06-05T23:14:02.1211780Z Submodule path 'third-party/prelude': checked out '48c249f8c7b99ff501d6e857754760315072b306' 2025-06-05T23:14:02.1562378Z Submodule path 'third-party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-06-05T23:14:02.1591299Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-06-05T23:14:02.1840551Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:14:02.1878419Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:14:02.1916533Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:14:02.1958745Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:14:02.1996543Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:14:02.2034355Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:14:02.2071038Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:14:02.2108498Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:14:02.2145260Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:14:02.2182289Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:14:02.2235921Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:14:02.2273434Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:14:02.2310162Z Entering 'extension/llm/tokenizers' 2025-06-05T23:14:02.2347716Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:14:02.2387867Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:14:02.2426406Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:14:02.2462792Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:14:02.2501848Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:14:02.2539003Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:14:02.2576865Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:14:02.2617244Z Entering 'shim' 2025-06-05T23:14:02.2654490Z Entering 'third-party/ao' 2025-06-05T23:14:02.2692646Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:14:02.2740033Z Entering 'third-party/flatbuffers' 2025-06-05T23:14:02.2779228Z Entering 'third-party/flatcc' 2025-06-05T23:14:02.2820089Z Entering 'third-party/gflags' 2025-06-05T23:14:02.2856840Z Entering 'third-party/googletest' 2025-06-05T23:14:02.2893733Z Entering 'third-party/ios-cmake' 2025-06-05T23:14:02.2930033Z Entering 'third-party/json' 2025-06-05T23:14:02.2967997Z Entering 'third-party/pocketfft' 2025-06-05T23:14:02.3004180Z Entering 'third-party/prelude' 2025-06-05T23:14:02.3043873Z Entering 'third-party/pybind11' 2025-06-05T23:14:02.3088115Z ##[endgroup] 2025-06-05T23:14:02.3088533Z ##[group]Persisting credentials for submodules 2025-06-05T23:14:02.3096046Z [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:14:02.3344310Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:14:02.3392876Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:14:02.3441890Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:14:02.3494727Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:14:02.3543683Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:14:02.3594126Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:14:02.3644227Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:14:02.3692527Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:14:02.3740817Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:14:02.3789664Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:14:02.3854165Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:14:02.3906029Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:14:02.3954983Z Entering 'extension/llm/tokenizers' 2025-06-05T23:14:02.4004006Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:14:02.4055218Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:14:02.4105967Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:14:02.4154229Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:14:02.4204736Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:14:02.4253846Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:14:02.4305647Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:14:02.4357976Z Entering 'shim' 2025-06-05T23:14:02.4410672Z Entering 'third-party/ao' 2025-06-05T23:14:02.4459249Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:14:02.4519490Z Entering 'third-party/flatbuffers' 2025-06-05T23:14:02.4572183Z Entering 'third-party/flatcc' 2025-06-05T23:14:02.4621231Z Entering 'third-party/gflags' 2025-06-05T23:14:02.4669684Z Entering 'third-party/googletest' 2025-06-05T23:14:02.4719192Z Entering 'third-party/ios-cmake' 2025-06-05T23:14:02.4767373Z Entering 'third-party/json' 2025-06-05T23:14:02.4819535Z Entering 'third-party/pocketfft' 2025-06-05T23:14:02.4868050Z Entering 'third-party/prelude' 2025-06-05T23:14:02.4921171Z Entering 'third-party/pybind11' 2025-06-05T23:14:02.4982878Z [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:14:02.5232783Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:14:02.5279553Z 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:14:02.5294422Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:14:02.5340153Z 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:14:02.5353581Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:14:02.5400848Z 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:14:02.5418715Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:14:02.5464079Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/cadence/utils/FACTO/config remote.origin.url 2025-06-05T23:14:02.5478643Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:14:02.5525833Z 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:14:02.5540072Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:14:02.5586759Z 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:14:02.5601563Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:14:02.5647562Z 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:14:02.5661995Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:14:02.5709579Z 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:14:02.5724094Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:14:02.5770006Z 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:14:02.5784507Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:14:02.5830380Z 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:14:02.5864282Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:14:02.5910867Z 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:14:02.5925540Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:14:02.5970751Z 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:14:02.5984671Z Entering 'extension/llm/tokenizers' 2025-06-05T23:14:02.6032299Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/config remote.origin.url 2025-06-05T23:14:02.6045758Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:14:02.6094030Z 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:14:02.6107695Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:14:02.6153111Z 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:14:02.6169181Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:14:02.6215095Z 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:14:02.6228792Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:14:02.6274973Z 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:14:02.6290765Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:14:02.6336467Z 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:14:02.6350647Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:14:02.6398248Z 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:14:02.6414331Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:14:02.6460183Z 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:14:02.6476268Z Entering 'shim' 2025-06-05T23:14:02.6521257Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/shim/config remote.origin.url 2025-06-05T23:14:02.6535666Z Entering 'third-party/ao' 2025-06-05T23:14:02.6580955Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/ao/config remote.origin.url 2025-06-05T23:14:02.6595386Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:14:02.6641310Z 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:14:02.6666140Z Entering 'third-party/flatbuffers' 2025-06-05T23:14:02.6711426Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/flatbuffers/config remote.origin.url 2025-06-05T23:14:02.6727747Z Entering 'third-party/flatcc' 2025-06-05T23:14:02.6772033Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/flatcc/config remote.origin.url 2025-06-05T23:14:02.6785913Z Entering 'third-party/gflags' 2025-06-05T23:14:02.6831856Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/gflags/config remote.origin.url 2025-06-05T23:14:02.6845659Z Entering 'third-party/googletest' 2025-06-05T23:14:02.6890693Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/googletest/config remote.origin.url 2025-06-05T23:14:02.6904441Z Entering 'third-party/ios-cmake' 2025-06-05T23:14:02.6949064Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/ios-cmake/config remote.origin.url 2025-06-05T23:14:02.6962693Z Entering 'third-party/json' 2025-06-05T23:14:02.7008236Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/json/config remote.origin.url 2025-06-05T23:14:02.7024910Z Entering 'third-party/pocketfft' 2025-06-05T23:14:02.7069199Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/pocketfft/config remote.origin.url 2025-06-05T23:14:02.7083558Z Entering 'third-party/prelude' 2025-06-05T23:14:02.7130940Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/prelude/config remote.origin.url 2025-06-05T23:14:02.7147345Z Entering 'third-party/pybind11' 2025-06-05T23:14:02.7192783Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/pybind11/config remote.origin.url 2025-06-05T23:14:02.7434958Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-06-05T23:14:02.7689604Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:14:02.7727925Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:14:02.7766072Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:14:02.7809306Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:14:02.7846693Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:14:02.7883616Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:14:02.7921256Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:14:02.7958702Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:14:02.7995623Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:14:02.8033197Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:14:02.8085754Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:14:02.8125461Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:14:02.8162880Z Entering 'extension/llm/tokenizers' 2025-06-05T23:14:02.8200862Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:14:02.8239190Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:14:02.8277474Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:14:02.8315564Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:14:02.8354697Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:14:02.8391578Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:14:02.8430244Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:14:02.8470766Z Entering 'shim' 2025-06-05T23:14:02.8509200Z Entering 'third-party/ao' 2025-06-05T23:14:02.8546677Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:14:02.8595146Z Entering 'third-party/flatbuffers' 2025-06-05T23:14:02.8635345Z Entering 'third-party/flatcc' 2025-06-05T23:14:02.8672986Z Entering 'third-party/gflags' 2025-06-05T23:14:02.8710113Z Entering 'third-party/googletest' 2025-06-05T23:14:02.8746970Z Entering 'third-party/ios-cmake' 2025-06-05T23:14:02.8783343Z Entering 'third-party/json' 2025-06-05T23:14:02.8822079Z Entering 'third-party/pocketfft' 2025-06-05T23:14:02.8858964Z Entering 'third-party/prelude' 2025-06-05T23:14:02.8899374Z Entering 'third-party/pybind11' 2025-06-05T23:14:02.8947787Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-06-05T23:14:02.9195284Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:14:02.9232635Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:14:02.9270244Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:14:02.9311729Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:14:02.9349215Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:14:02.9386114Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:14:02.9423532Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:14:02.9461041Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:14:02.9500191Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:14:02.9536603Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:14:02.9588382Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:14:02.9625803Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:14:02.9662828Z Entering 'extension/llm/tokenizers' 2025-06-05T23:14:02.9699757Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:14:02.9739005Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:14:02.9777710Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:14:02.9815658Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:14:02.9855053Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:14:02.9893450Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:14:02.9932212Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:14:02.9974437Z Entering 'shim' 2025-06-05T23:14:03.0010108Z Entering 'third-party/ao' 2025-06-05T23:14:03.0047980Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:14:03.0095859Z Entering 'third-party/flatbuffers' 2025-06-05T23:14:03.0135267Z Entering 'third-party/flatcc' 2025-06-05T23:14:03.0172867Z Entering 'third-party/gflags' 2025-06-05T23:14:03.0210140Z Entering 'third-party/googletest' 2025-06-05T23:14:03.0247628Z Entering 'third-party/ios-cmake' 2025-06-05T23:14:03.0284825Z Entering 'third-party/json' 2025-06-05T23:14:03.0322214Z Entering 'third-party/pocketfft' 2025-06-05T23:14:03.0358986Z Entering 'third-party/prelude' 2025-06-05T23:14:03.0400665Z Entering 'third-party/pybind11' 2025-06-05T23:14:03.0445876Z ##[endgroup] 2025-06-05T23:14:03.0478726Z [command]/usr/bin/git log -1 --format=%H 2025-06-05T23:14:03.0499506Z bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:14:03.0702155Z Prepare all required actions 2025-06-05T23:14:03.0702730Z Getting action download info 2025-06-05T23:14:03.1721713Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-06-05T23:14:03.3183102Z ##[group]Run ./test-infra/.github/actions/calculate-docker-image 2025-06-05T23:14:03.3183478Z with: 2025-06-05T23:14:03.3183746Z docker-image-name: executorch-ubuntu-22.04-linter 2025-06-05T23:14:03.3184099Z docker-build-dir: .ci/docker 2025-06-05T23:14:03.3184414Z working-directory: pytorch/executorch 2025-06-05T23:14:03.3184735Z docker-build-script: ./build.sh 2025-06-05T23:14:03.3185099Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:14:03.3185484Z force-push: false 2025-06-05T23:14:03.3185689Z env: 2025-06-05T23:14:03.3185928Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:14:03.3186253Z REPOSITORY: pytorch/executorch 2025-06-05T23:14:03.3186522Z PR_NUMBER: 2025-06-05T23:14:03.3191760Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:14:03.3197161Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:14:03.3197745Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:14:03.3198267Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:14:03.3198641Z ##[endgroup] 2025-06-05T23:14:03.3466385Z ##[group]Run set -ex 2025-06-05T23:14:03.3466705Z set -ex 2025-06-05T23:14:03.3466910Z  2025-06-05T23:14:03.3467308Z # If the docker build directory or the build script doesn't exist, the action will 2025-06-05T23:14:03.3467940Z # gracefully return the docker image name as it is. Pulling docker image in Linux 2025-06-05T23:14:03.3468492Z # job could then download the pre-built image as usual 2025-06-05T23:14:03.3469033Z if [[ ! -d "${DOCKER_BUILD_DIR}" ]] || [[ ! -f "${DOCKER_BUILD_DIR}/${DOCKER_BUILD_SCRIPT}" ]]; then 2025-06-05T23:14:03.3469515Z  echo "skip=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:14:03.3470075Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:14:03.3470456Z  2025-06-05T23:14:03.3470805Z  echo "There is no Docker build script in ${REPO_NAME} repo, skipping..." 2025-06-05T23:14:03.3471220Z  exit 0 2025-06-05T23:14:03.3471442Z else 2025-06-05T23:14:03.3471697Z  echo "skip=false" >> "${GITHUB_OUTPUT}" 2025-06-05T23:14:03.3472000Z fi 2025-06-05T23:14:03.3472309Z  2025-06-05T23:14:03.3472625Z if [[ "${DOCKER_IMAGE_NAME}" == *"${DOCKER_REGISTRY}/${REPO_NAME}"* ]]; then 2025-06-05T23:14:03.3473206Z  # The docker image name already includes the ECR prefix and tag, so we can just 2025-06-05T23:14:03.3473709Z  # use it as it is, but first let's extract the tag 2025-06-05T23:14:03.3474176Z  DOCKER_TAG=$(echo "${DOCKER_IMAGE_NAME}" | awk -F '[:,]' '{print $2}') 2025-06-05T23:14:03.3474670Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:14:03.3475134Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:14:03.3475526Z else 2025-06-05T23:14:03.3475768Z  if [[ "${DOCKER_IMAGE_NAME}" == *:* ]]; then 2025-06-05T23:14:03.3476144Z  CUSTOM_TAG_PREFIX=${DOCKER_IMAGE_NAME#*:} 2025-06-05T23:14:03.3476511Z  DOCKER_IMAGE_NAME=${DOCKER_IMAGE_NAME%%:*} 2025-06-05T23:14:03.3476836Z  fi 2025-06-05T23:14:03.3477280Z  DOCKER_TAG=${CUSTOM_TAG_PREFIX:+${CUSTOM_TAG_PREFIX}-}$(git rev-parse HEAD:"${DOCKER_BUILD_DIR}") 2025-06-05T23:14:03.3477861Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:14:03.3478482Z  echo "docker-image=${DOCKER_REGISTRY}/${REPO_NAME}/${DOCKER_IMAGE_NAME}:${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:14:03.3479153Z  echo "custom-tag-prefix=${CUSTOM_TAG_PREFIX}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:14:03.3479570Z fi 2025-06-05T23:14:03.3485161Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:14:03.3485525Z env: 2025-06-05T23:14:03.3485773Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:14:03.3486107Z REPOSITORY: pytorch/executorch 2025-06-05T23:14:03.3486380Z PR_NUMBER: 2025-06-05T23:14:03.3491528Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:14:03.3496890Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:14:03.3497460Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:14:03.3498115Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:14:03.3498507Z REPO_NAME: executorch 2025-06-05T23:14:03.3498794Z DOCKER_IMAGE_NAME: executorch-ubuntu-22.04-linter 2025-06-05T23:14:03.3499156Z DOCKER_BUILD_DIR: .ci/docker 2025-06-05T23:14:03.3499426Z DOCKER_BUILD_SCRIPT: ./build.sh 2025-06-05T23:14:03.3499796Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:14:03.3500167Z CUSTOM_TAG_PREFIX: 2025-06-05T23:14:03.3500489Z ##[endgroup] 2025-06-05T23:14:03.3525404Z + [[ ! -d .ci/docker ]] 2025-06-05T23:14:03.3525892Z + [[ ! -f .ci/docker/./build.sh ]] 2025-06-05T23:14:03.3526305Z + echo skip=false 2025-06-05T23:14:03.3527126Z + [[ executorch-ubuntu-22.04-linter == *\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:14:03.3527686Z + [[ executorch-ubuntu-22.04-linter == *:* ]] 2025-06-05T23:14:03.3529622Z ++ git rev-parse HEAD:.ci/docker 2025-06-05T23:14:03.3545009Z + DOCKER_TAG=6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:14:03.3545808Z + echo docker-tag=6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:14:03.3546850Z + echo docker-image=308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-linter:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:14:03.3547876Z + echo custom-tag-prefix= 2025-06-05T23:14:03.3576646Z ##[group]Run set +e 2025-06-05T23:14:03.3576961Z set +e 2025-06-05T23:14:03.3577195Z set -x 2025-06-05T23:14:03.3577392Z  2025-06-05T23:14:03.3577593Z login() { 2025-06-05T23:14:03.3578044Z  aws ecr get-login-password --region us-east-1 | docker login -u AWS --password-stdin "$1" 2025-06-05T23:14:03.3578549Z } 2025-06-05T23:14:03.3578735Z  2025-06-05T23:14:03.3578935Z retry () { 2025-06-05T23:14:03.3579183Z  $* || (sleep 1 && $*) || (sleep 2 && $*) 2025-06-05T23:14:03.3579486Z } 2025-06-05T23:14:03.3579693Z  2025-06-05T23:14:03.3579908Z retry login "${DOCKER_REGISTRY}" 2025-06-05T23:14:03.3580206Z  2025-06-05T23:14:03.3580407Z START_TIME=$(date +%s) 2025-06-05T23:14:03.3580691Z # Wait up to 120 minutes 2025-06-05T23:14:03.3581027Z while [[ $(( $(date +%s) - 7200 )) -lt $START_TIME ]]; do 2025-06-05T23:14:03.3581501Z  # Check if image already exists, if it does then skip building it 2025-06-05T23:14:03.3581979Z  if docker manifest inspect "${DOCKER_IMAGE}"; then 2025-06-05T23:14:03.3582316Z  exit 0 2025-06-05T23:14:03.3582541Z  fi 2025-06-05T23:14:03.3582731Z  2025-06-05T23:14:03.3583099Z  # NB: This flag is used by Docker build workflow to push the image to ECR, so we can 2025-06-05T23:14:03.3583726Z  # use this to differentiate between the Docker build and regular build jobs. For the 2025-06-05T23:14:03.3584366Z  # latter, it will wait for the Docker images to become available before continuing 2025-06-05T23:14:03.3584868Z  if [ "${DOCKER_PUSH:-false}" == "true" ]; then 2025-06-05T23:14:03.3585243Z  # It's a Docker build job, let's build the image 2025-06-05T23:14:03.3585578Z  break 2025-06-05T23:14:03.3585788Z  else 2025-06-05T23:14:03.3586118Z  # It's a regular build job, wait for the image to become available 2025-06-05T23:14:03.3586511Z  sleep 300 2025-06-05T23:14:03.3586745Z  fi 2025-06-05T23:14:03.3586937Z done 2025-06-05T23:14:03.3587138Z  2025-06-05T23:14:03.3587471Z # NB: This part requires a full checkout. Otherwise, the merge base will 2025-06-05T23:14:03.3588008Z # be empty. The default action would be to continue rebuild the image 2025-06-05T23:14:03.3588506Z if [[ "$BASE_REVISION" = "$(git rev-parse HEAD)" ]]; then 2025-06-05T23:14:03.3588931Z  # if we're on the base branch then use the parent commit 2025-06-05T23:14:03.3589406Z  MERGE_BASE=$(git rev-parse HEAD~) 2025-06-05T23:14:03.3589712Z else 2025-06-05T23:14:03.3590013Z  # otherwise we're on a PR, so use the most recent base commit 2025-06-05T23:14:03.3590476Z  MERGE_BASE=$(git merge-base HEAD "$BASE_REVISION") 2025-06-05T23:14:03.3590813Z fi 2025-06-05T23:14:03.3591603Z  2025-06-05T23:14:03.3591934Z if [[ -z "${MERGE_BASE}" ]]; then 2025-06-05T23:14:03.3592283Z  echo "rebuild=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:14:03.3592590Z  2025-06-05T23:14:03.3593044Z  echo "Finding merge base only works with full checkout, please set fetch-depth to 0, continuing ..." 2025-06-05T23:14:03.3593578Z  exit 0 2025-06-05T23:14:03.3593780Z fi 2025-06-05T23:14:03.3593976Z  2025-06-05T23:14:03.3594256Z if ! git rev-parse "${MERGE_BASE}:${DOCKER_BUILD_DIR}"; then 2025-06-05T23:14:03.3594925Z  echo "Directory '${DOCKER_BUILD_DIR}' not found in commit $MERGE_BASE, you should rebase onto a more recent commit" 2025-06-05T23:14:03.3595477Z  exit 1 2025-06-05T23:14:03.3595689Z fi 2025-06-05T23:14:03.3595890Z  2025-06-05T23:14:03.3596222Z PREVIOUS_DOCKER_TAG=$(git rev-parse "${MERGE_BASE}:${DOCKER_BUILD_DIR}") 2025-06-05T23:14:03.3596857Z # If no image exists but the hash is the same as the previous hash then we should error out here 2025-06-05T23:14:03.3597413Z if [[ "${PREVIOUS_DOCKER_TAG}" == "${DOCKER_TAG}" ]]; then 2025-06-05T23:14:03.3598074Z  echo "WARNING: Something has gone wrong and the previous image isn't available for the merge-base of your branch" 2025-06-05T23:14:03.3598818Z  echo " Will re-build docker image to store in local cache, TTS may be longer" 2025-06-05T23:14:03.3599245Z fi 2025-06-05T23:14:03.3599448Z  2025-06-05T23:14:03.3599686Z echo "rebuild=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:14:03.3605961Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:14:03.3606313Z env: 2025-06-05T23:14:03.3606945Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-linter:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:14:03.3607667Z REPOSITORY: pytorch/executorch 2025-06-05T23:14:03.3607947Z PR_NUMBER: 2025-06-05T23:14:03.3612901Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:14:03.3618270Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:14:03.3618953Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:14:03.3619485Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:14:03.3619880Z DOCKER_BUILD_DIR: .ci/docker 2025-06-05T23:14:03.3620215Z BASE_REVISION: bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:14:03.3620611Z DOCKER_TAG: 6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:14:03.3621108Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:14:03.3621474Z DOCKER_PUSH: 2025-06-05T23:14:03.3621689Z ##[endgroup] 2025-06-05T23:14:03.3643376Z + retry login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:14:03.3644010Z + login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:14:03.3646178Z + aws ecr get-login-password --region us-east-1 2025-06-05T23:14:03.3647397Z + docker login -u AWS --password-stdin 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:14:03.8611664Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:14:03.8612272Z Configure a credential helper to remove this warning. See 2025-06-05T23:14:03.8613300Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:14:03.8613928Z 2025-06-05T23:14:03.8614034Z Login Succeeded 2025-06-05T23:14:03.8624241Z ++ date +%s 2025-06-05T23:14:03.8634393Z + START_TIME=1749165243 2025-06-05T23:14:03.8638801Z ++ date +%s 2025-06-05T23:14:03.8645536Z + [[ 1749158043 -lt 1749165243 ]] 2025-06-05T23:14:03.8646664Z + docker manifest inspect 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-linter:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:14:04.1015252Z { 2025-06-05T23:14:04.1015653Z "schemaVersion": 2, 2025-06-05T23:14:04.1016266Z "mediaType": "application/vnd.docker.distribution.manifest.v2+json", 2025-06-05T23:14:04.1016904Z "config": { 2025-06-05T23:14:04.1017322Z "mediaType": "application/vnd.docker.container.image.v1+json", 2025-06-05T23:14:04.1018003Z "size": 15114, 2025-06-05T23:14:04.1018586Z "digest": "sha256:6438c80acbe4e7801c0be512fdf963bb4a75bceb638dbe7d8383520b4e42e7d1" 2025-06-05T23:14:04.1019061Z }, 2025-06-05T23:14:04.1019241Z "layers": [ 2025-06-05T23:14:04.1019444Z { 2025-06-05T23:14:04.1019757Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1020169Z "size": 30438509, 2025-06-05T23:14:04.1020586Z "digest": "sha256:f557aa5ee22480ee9e1af0a094ce5174a8c3d83e1aa20dc8482e4e387546e0c3" 2025-06-05T23:14:04.1021058Z }, 2025-06-05T23:14:04.1021248Z { 2025-06-05T23:14:04.1021555Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1021966Z "size": 631, 2025-06-05T23:14:04.1022358Z "digest": "sha256:e9a71f6cf6a033cad973f94ad3269a9e3774b3a547f2d35c6337589ebab6aeac" 2025-06-05T23:14:04.1022824Z }, 2025-06-05T23:14:04.1022997Z { 2025-06-05T23:14:04.1023313Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1023716Z "size": 150104933, 2025-06-05T23:14:04.1024132Z "digest": "sha256:1a06b2cee6c9d9965fe4722e7c12d9833c37d3f37510871dd76f42fe77bfc2c7" 2025-06-05T23:14:04.1024587Z }, 2025-06-05T23:14:04.1024757Z { 2025-06-05T23:14:04.1025070Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1025458Z "size": 622, 2025-06-05T23:14:04.1025852Z "digest": "sha256:8f296761951c2477ba8d9546ac834b6cf17e772fbe388f9e3b2f4e822beb7713" 2025-06-05T23:14:04.1026355Z }, 2025-06-05T23:14:04.1026523Z { 2025-06-05T23:14:04.1026837Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1027226Z "size": 19308636, 2025-06-05T23:14:04.1027645Z "digest": "sha256:e91ae308bacba44729befb9e5d9c6d38f397da96a54160add2926be30d88e796" 2025-06-05T23:14:04.1028112Z }, 2025-06-05T23:14:04.1028280Z { 2025-06-05T23:14:04.1028592Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1029514Z "size": 736, 2025-06-05T23:14:04.1030245Z "digest": "sha256:4420b1e1a07f73643ce79401c2021c6970bc6e411c501a43b58d157e19090d5a" 2025-06-05T23:14:04.1030695Z }, 2025-06-05T23:14:04.1030879Z { 2025-06-05T23:14:04.1031178Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1031583Z "size": 131417914, 2025-06-05T23:14:04.1032114Z "digest": "sha256:c9ca39a751c232e67e9114c6469dfd2c34de96ca800bfd688e317bc953eb7421" 2025-06-05T23:14:04.1032560Z }, 2025-06-05T23:14:04.1032746Z { 2025-06-05T23:14:04.1033048Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1033448Z "size": 445, 2025-06-05T23:14:04.1033817Z "digest": "sha256:172401b941b1764c760147d40814402d1238a7f1c7287fd8c0c9dd4897f09610" 2025-06-05T23:14:04.1034264Z }, 2025-06-05T23:14:04.1034435Z { 2025-06-05T23:14:04.1034747Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1035139Z "size": 102, 2025-06-05T23:14:04.1035532Z "digest": "sha256:ce2f52f68b116e720abde65546540df0a7720710e328dbaae795184493a67547" 2025-06-05T23:14:04.1035984Z }, 2025-06-05T23:14:04.1036154Z { 2025-06-05T23:14:04.1036467Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1036857Z "size": 636, 2025-06-05T23:14:04.1037249Z "digest": "sha256:2d7e5abdd88dbf42ba6487b146573396d6f489b24623393763a4916452feeb69" 2025-06-05T23:14:04.1037694Z }, 2025-06-05T23:14:04.1037878Z { 2025-06-05T23:14:04.1038177Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1038578Z "size": 35165315, 2025-06-05T23:14:04.1038976Z "digest": "sha256:41e6f009b6aeabc0406e71dbf78ba3e52b4e23101a7332c42b8051e1e9fdd9c3" 2025-06-05T23:14:04.1039435Z }, 2025-06-05T23:14:04.1039616Z { 2025-06-05T23:14:04.1039916Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1040317Z "size": 318, 2025-06-05T23:14:04.1040705Z "digest": "sha256:380307a36ed2d54c982df9262fd1ec3b7fb61743ad1a24e7d1b691bc44edba7a" 2025-06-05T23:14:04.1041165Z }, 2025-06-05T23:14:04.1041334Z { 2025-06-05T23:14:04.1041644Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1042033Z "size": 252129628, 2025-06-05T23:14:04.1042444Z "digest": "sha256:6155eb0be0333222ec4fb3800c75940a7aaf2ca8ea0d01bf4a01fbe5b591d8e1" 2025-06-05T23:14:04.1042998Z }, 2025-06-05T23:14:04.1043177Z { 2025-06-05T23:14:04.1043491Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1043878Z "size": 475, 2025-06-05T23:14:04.1044279Z "digest": "sha256:3ec19c2849b3bf6807efe10c62465e3f4d91dfd9fc8c1ff5b3667814c740339d" 2025-06-05T23:14:04.1044725Z }, 2025-06-05T23:14:04.1044910Z { 2025-06-05T23:14:04.1045206Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1045603Z "size": 1043, 2025-06-05T23:14:04.1045988Z "digest": "sha256:981dc67b5251b8a26b31197aedc256dcaea9266620c887ef82f015b68758dda4" 2025-06-05T23:14:04.1046446Z }, 2025-06-05T23:14:04.1046627Z { 2025-06-05T23:14:04.1046925Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1047323Z "size": 613, 2025-06-05T23:14:04.1047714Z "digest": "sha256:5e70c61fded41a31ea65efce907d9dff9acbc03826fb949591a55cfdd3385730" 2025-06-05T23:14:04.1048182Z }, 2025-06-05T23:14:04.1048350Z { 2025-06-05T23:14:04.1048666Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1049056Z "size": 77568718, 2025-06-05T23:14:04.1049464Z "digest": "sha256:949b8eb6b0eb39f6046b2d5087618d44786a480e7693409fcdc6f58bfcdccb44" 2025-06-05T23:14:04.1049903Z }, 2025-06-05T23:14:04.1050085Z { 2025-06-05T23:14:04.1050398Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1050784Z "size": 572, 2025-06-05T23:14:04.1051169Z "digest": "sha256:45485d96ebf7a49622514cf0922180aa4d6c66ba9fe413b03e2d1388c2021075" 2025-06-05T23:14:04.1051730Z }, 2025-06-05T23:14:04.1051912Z { 2025-06-05T23:14:04.1052213Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1052612Z "size": 208, 2025-06-05T23:14:04.1053002Z "digest": "sha256:5f26c160d59a7a9acc84ca822ea1c08f82fbd6ae9d5ddb64361f4f59e7b95be0" 2025-06-05T23:14:04.1053468Z }, 2025-06-05T23:14:04.1053650Z { 2025-06-05T23:14:04.1054011Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1054411Z "size": 1190, 2025-06-05T23:14:04.1054793Z "digest": "sha256:5630a9397492da6fac00fcc2b54281af300c4762827878ad79bbf050d7f1388d" 2025-06-05T23:14:04.1055250Z }, 2025-06-05T23:14:04.1055423Z { 2025-06-05T23:14:04.1055740Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1056128Z "size": 679, 2025-06-05T23:14:04.1056532Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:14:04.1056990Z }, 2025-06-05T23:14:04.1057183Z { 2025-06-05T23:14:04.1057504Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1057897Z "size": 6857037148, 2025-06-05T23:14:04.1058316Z "digest": "sha256:0e838d866fbe91d532138e6c8911cde436ed030f0c3baae6fa86ca2152fece04" 2025-06-05T23:14:04.1058761Z }, 2025-06-05T23:14:04.1058952Z { 2025-06-05T23:14:04.1059254Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1059656Z "size": 1383, 2025-06-05T23:14:04.1060049Z "digest": "sha256:09dac94eaf912c1143008ab2c199dc2a0547cf68fe2b08e1b96af9c2895928ae" 2025-06-05T23:14:04.1060511Z }, 2025-06-05T23:14:04.1060680Z { 2025-06-05T23:14:04.1060995Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1061395Z "size": 679, 2025-06-05T23:14:04.1061780Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:14:04.1062238Z }, 2025-06-05T23:14:04.1062415Z { 2025-06-05T23:14:04.1062725Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1063112Z "size": 232891435, 2025-06-05T23:14:04.1063529Z "digest": "sha256:bff527f304610d78bbbca9cd0126c9ceb5b7dc8366765bdb62db9f73ade3f127" 2025-06-05T23:14:04.1063982Z }, 2025-06-05T23:14:04.1064162Z { 2025-06-05T23:14:04.1064474Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1064861Z "size": 827, 2025-06-05T23:14:04.1065271Z "digest": "sha256:dec0deaa1ed566de23b66dcd78ea8449250b56b611cab27ebb83b9504d48a46b" 2025-06-05T23:14:04.1065726Z }, 2025-06-05T23:14:04.1065911Z { 2025-06-05T23:14:04.1066215Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1066612Z "size": 679, 2025-06-05T23:14:04.1066999Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:14:04.1067463Z }, 2025-06-05T23:14:04.1067632Z { 2025-06-05T23:14:04.1067948Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1068347Z "size": 185012862, 2025-06-05T23:14:04.1068749Z "digest": "sha256:13583dfa66f164c5a932fdb1a15f1b1f7336faff3dbaaea1483718a7c7a00743" 2025-06-05T23:14:04.1069210Z }, 2025-06-05T23:14:04.1069378Z { 2025-06-05T23:14:04.1069691Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1070077Z "size": 530, 2025-06-05T23:14:04.1070479Z "digest": "sha256:e8c9ad02b5187f5d1cb1d0cce8e115dd9462726f44a685de71b4cbe4f70c67e6" 2025-06-05T23:14:04.1070931Z }, 2025-06-05T23:14:04.1071111Z { 2025-06-05T23:14:04.1071412Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1071813Z "size": 679, 2025-06-05T23:14:04.1072214Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:14:04.1072661Z }, 2025-06-05T23:14:04.1072844Z { 2025-06-05T23:14:04.1073141Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1073611Z "size": 355, 2025-06-05T23:14:04.1074000Z "digest": "sha256:8ab467cb1fa8d6e796637331dfce66b72ab5c3cf5798dc42d438d0c212ac60e0" 2025-06-05T23:14:04.1074468Z }, 2025-06-05T23:14:04.1074639Z { 2025-06-05T23:14:04.1074954Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1075357Z "size": 58848207, 2025-06-05T23:14:04.1075814Z "digest": "sha256:100d80a1d9a6d2322a3a1b683a0de17d66b8aa63a68c2e799ae3f10ae0652fb9" 2025-06-05T23:14:04.1076275Z }, 2025-06-05T23:14:04.1076444Z { 2025-06-05T23:14:04.1076761Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1077149Z "size": 165, 2025-06-05T23:14:04.1077544Z "digest": "sha256:7a286faf824a3cf91218f22778fc2f0b60061fd1679145632c00fc131ef4f2d7" 2025-06-05T23:14:04.1077984Z }, 2025-06-05T23:14:04.1078166Z { 2025-06-05T23:14:04.1078467Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1078873Z "size": 1109, 2025-06-05T23:14:04.1079275Z "digest": "sha256:c2b62aa0dc26b7dd48338aef7893ebaf56403579f42aa88a56bd416c04f43619" 2025-06-05T23:14:04.1079721Z }, 2025-06-05T23:14:04.1079902Z { 2025-06-05T23:14:04.1080199Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1080598Z "size": 32, 2025-06-05T23:14:04.1080980Z "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1" 2025-06-05T23:14:04.1081442Z }, 2025-06-05T23:14:04.1081610Z { 2025-06-05T23:14:04.1081922Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:14:04.1082306Z "size": 108, 2025-06-05T23:14:04.1082704Z "digest": "sha256:7fb51a2458b7ed34d3a07f853afd5d221dbc804e2f2ed844d179f656fcdc319b" 2025-06-05T23:14:04.1083266Z } 2025-06-05T23:14:04.1083436Z ] 2025-06-05T23:14:04.1083616Z } 2025-06-05T23:14:04.1083801Z + exit 0 2025-06-05T23:14:04.1126601Z ##[group]Run set -eux 2025-06-05T23:14:04.1127051Z set -eux 2025-06-05T23:14:04.1128445Z 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:14:04.1137967Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:14:04.1138606Z env: 2025-06-05T23:14:04.1139032Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:14:04.1139668Z REPOSITORY: pytorch/executorch 2025-06-05T23:14:04.1140144Z PR_NUMBER: 2025-06-05T23:14:04.1149740Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:14:04.1160262Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:14:04.1161301Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:14:04.1162201Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:14:04.1162808Z ##[endgroup] 2025-06-05T23:14:04.1194274Z + aws secretsmanager get-secret-value --secret-id docker_hub_readonly_token 2025-06-05T23:14:04.1194960Z + jq --raw-output .SecretString 2025-06-05T23:14:04.1196019Z + jq -r .docker_hub_readonly_token 2025-06-05T23:14:04.1197922Z + docker login --username pytorchbot --password-stdin 2025-06-05T23:14:04.6808077Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:14:04.6808679Z Configure a credential helper to remove this warning. See 2025-06-05T23:14:04.6809325Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:14:04.6810079Z 2025-06-05T23:14:04.6810252Z Login Succeeded 2025-06-05T23:14:04.6887153Z Prepare all required actions 2025-06-05T23:14:04.6920999Z ##[group]Run ./test-infra/.github/actions/pull-docker-image 2025-06-05T23:14:04.6921367Z with: 2025-06-05T23:14:04.6921996Z docker-image: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-linter:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:14:04.6922813Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:14:04.6923288Z env: 2025-06-05T23:14:04.6923535Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:14:04.6923868Z REPOSITORY: pytorch/executorch 2025-06-05T23:14:04.6924145Z PR_NUMBER: 2025-06-05T23:14:04.6929162Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:14:04.6934519Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:14:04.6935079Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:14:04.6935610Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:14:04.6935981Z ##[endgroup] 2025-06-05T23:14:04.6953302Z ##[group]Run set -x 2025-06-05T23:14:04.6953572Z set -x 2025-06-05T23:14:04.6953790Z set +e 2025-06-05T23:14:04.6953983Z  2025-06-05T23:14:04.6954190Z login() { 2025-06-05T23:14:04.6954635Z  aws ecr get-login-password --region us-east-1 | docker login -u AWS --password-stdin "$1" 2025-06-05T23:14:04.6955147Z } 2025-06-05T23:14:04.6955331Z  2025-06-05T23:14:04.6955660Z retry () { 2025-06-05T23:14:04.6955929Z  $* || (sleep 1 && $*) || (sleep 2 && $*) 2025-06-05T23:14:04.6956220Z } 2025-06-05T23:14:04.6956418Z  2025-06-05T23:14:04.6956631Z retry login "${DOCKER_REGISTRY}" 2025-06-05T23:14:04.6956929Z  2025-06-05T23:14:04.6957385Z IMAGE_SIZE=$(docker manifest inspect "${DOCKER_IMAGE}" | jq '[.layers[].size, .config.size] | add / 1024 / 1024') 2025-06-05T23:14:04.6958029Z echo "Compressed size of image in MB: ${IMAGE_SIZE}" 2025-06-05T23:14:04.6958375Z  2025-06-05T23:14:04.6958572Z set -e 2025-06-05T23:14:04.6958897Z # ignore output since only exit code is used for conditional 2025-06-05T23:14:04.6959359Z # only pull docker image if it's not available locally 2025-06-05T23:14:04.6959882Z if ! docker inspect --type=image "${DOCKER_IMAGE}" >/dev/null 2>/dev/null; then 2025-06-05T23:14:04.6960356Z  retry docker pull "${DOCKER_IMAGE}" 2025-06-05T23:14:04.6960664Z fi 2025-06-05T23:14:04.6966554Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:14:04.6966921Z env: 2025-06-05T23:14:04.6967544Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-linter:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:14:04.6983342Z REPOSITORY: pytorch/executorch 2025-06-05T23:14:04.6983645Z PR_NUMBER: 2025-06-05T23:14:04.6988622Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:14:04.6994180Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:14:04.6994764Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:14:04.6995286Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:14:04.6995760Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:14:04.6996134Z ##[endgroup] 2025-06-05T23:14:04.7019038Z + set +e 2025-06-05T23:14:04.7019665Z + retry login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:14:04.7020106Z + login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:14:04.7022345Z + aws ecr get-login-password --region us-east-1 2025-06-05T23:14:04.7023399Z + docker login -u AWS --password-stdin 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:14:05.2423745Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:14:05.2424354Z Configure a credential helper to remove this warning. See 2025-06-05T23:14:05.2425138Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:14:05.2425770Z 2025-06-05T23:14:05.2425866Z Login Succeeded 2025-06-05T23:14:05.2441834Z ++ docker manifest inspect 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-linter:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:14:05.2443375Z ++ jq '[.layers[].size, .config.size] | add / 1024 / 1024' 2025-06-05T23:14:05.4632539Z + IMAGE_SIZE=7657.960162162781 2025-06-05T23:14:05.4633179Z + echo 'Compressed size of image in MB: 7657.960162162781' 2025-06-05T23:14:05.4633767Z + set -e 2025-06-05T23:14:05.4634804Z + docker inspect --type=image 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-linter:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:14:05.4635628Z Compressed size of image in MB: 7657.960162162781 2025-06-05T23:14:05.4745683Z + retry docker pull 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-linter:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:14:05.7316943Z + docker pull 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-linter:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:14:05.7318995Z 6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa: Pulling from executorch/executorch-ubuntu-22.04-linter 2025-06-05T23:14:05.7320666Z f557aa5ee224: Pulling fs layer 2025-06-05T23:14:05.7321147Z e9a71f6cf6a0: Pulling fs layer 2025-06-05T23:14:05.7321579Z 1a06b2cee6c9: Pulling fs layer 2025-06-05T23:14:05.7321926Z 8f296761951c: Pulling fs layer 2025-06-05T23:14:05.7322185Z e91ae308bacb: Pulling fs layer 2025-06-05T23:14:05.7322458Z 4420b1e1a07f: Pulling fs layer 2025-06-05T23:14:05.7322713Z c9ca39a751c2: Pulling fs layer 2025-06-05T23:14:05.7323073Z 172401b941b1: Pulling fs layer 2025-06-05T23:14:05.7323333Z ce2f52f68b11: Pulling fs layer 2025-06-05T23:14:05.7323611Z 2d7e5abdd88d: Pulling fs layer 2025-06-05T23:14:05.7323870Z 41e6f009b6ae: Pulling fs layer 2025-06-05T23:14:05.7324143Z 380307a36ed2: Pulling fs layer 2025-06-05T23:14:05.7324421Z 6155eb0be033: Pulling fs layer 2025-06-05T23:14:05.7324685Z 3ec19c2849b3: Pulling fs layer 2025-06-05T23:14:05.7324952Z 981dc67b5251: Pulling fs layer 2025-06-05T23:14:05.7325204Z 5e70c61fded4: Pulling fs layer 2025-06-05T23:14:05.7325474Z 949b8eb6b0eb: Pulling fs layer 2025-06-05T23:14:05.7325719Z 4420b1e1a07f: Waiting 2025-06-05T23:14:05.7325956Z 45485d96ebf7: Pulling fs layer 2025-06-05T23:14:05.7326201Z ce2f52f68b11: Waiting 2025-06-05T23:14:05.7326439Z 5f26c160d59a: Pulling fs layer 2025-06-05T23:14:05.7326686Z 2d7e5abdd88d: Waiting 2025-06-05T23:14:05.7326920Z 5630a9397492: Pulling fs layer 2025-06-05T23:14:05.7327162Z 41e6f009b6ae: Waiting 2025-06-05T23:14:05.7327404Z 1fc2d9899ffb: Pulling fs layer 2025-06-05T23:14:05.7327660Z 0e838d866fbe: Pulling fs layer 2025-06-05T23:14:05.7327930Z 09dac94eaf91: Pulling fs layer 2025-06-05T23:14:05.7328201Z bff527f30461: Pulling fs layer 2025-06-05T23:14:05.7328462Z dec0deaa1ed5: Pulling fs layer 2025-06-05T23:14:05.7328739Z 13583dfa66f1: Pulling fs layer 2025-06-05T23:14:05.7328999Z e8c9ad02b518: Pulling fs layer 2025-06-05T23:14:05.7329270Z 8ab467cb1fa8: Pulling fs layer 2025-06-05T23:14:05.7329528Z 100d80a1d9a6: Pulling fs layer 2025-06-05T23:14:05.7329794Z 7a286faf824a: Pulling fs layer 2025-06-05T23:14:05.7330050Z c2b62aa0dc26: Pulling fs layer 2025-06-05T23:14:05.7330319Z 4f4fb700ef54: Pulling fs layer 2025-06-05T23:14:05.7330574Z 7fb51a2458b7: Pulling fs layer 2025-06-05T23:14:05.7330833Z c9ca39a751c2: Waiting 2025-06-05T23:14:05.7331060Z 8f296761951c: Waiting 2025-06-05T23:14:05.7331271Z 6155eb0be033: Waiting 2025-06-05T23:14:05.7331493Z 172401b941b1: Waiting 2025-06-05T23:14:05.7331704Z 3ec19c2849b3: Waiting 2025-06-05T23:14:05.7331930Z e91ae308bacb: Waiting 2025-06-05T23:14:05.7332143Z 100d80a1d9a6: Waiting 2025-06-05T23:14:05.7332367Z 981dc67b5251: Waiting 2025-06-05T23:14:05.7332583Z dec0deaa1ed5: Waiting 2025-06-05T23:14:05.7332811Z 1fc2d9899ffb: Waiting 2025-06-05T23:14:05.7333023Z 7a286faf824a: Waiting 2025-06-05T23:14:05.7333429Z 5e70c61fded4: Waiting 2025-06-05T23:14:05.7333645Z 5630a9397492: Waiting 2025-06-05T23:14:05.7333946Z 0e838d866fbe: Waiting 2025-06-05T23:14:05.7334174Z 5f26c160d59a: Waiting 2025-06-05T23:14:05.7334388Z 4f4fb700ef54: Waiting 2025-06-05T23:14:05.7334619Z 949b8eb6b0eb: Waiting 2025-06-05T23:14:05.7334835Z 09dac94eaf91: Waiting 2025-06-05T23:14:05.7335065Z 13583dfa66f1: Waiting 2025-06-05T23:14:05.7335278Z c2b62aa0dc26: Waiting 2025-06-05T23:14:05.7335512Z 8ab467cb1fa8: Waiting 2025-06-05T23:14:05.7335762Z 45485d96ebf7: Waiting 2025-06-05T23:14:05.7335986Z 7fb51a2458b7: Waiting 2025-06-05T23:14:05.7336197Z e8c9ad02b518: Waiting 2025-06-05T23:14:05.7336419Z 380307a36ed2: Waiting 2025-06-05T23:14:05.8217390Z e9a71f6cf6a0: Verifying Checksum 2025-06-05T23:14:05.8217783Z e9a71f6cf6a0: Download complete 2025-06-05T23:14:05.9169720Z 8f296761951c: Verifying Checksum 2025-06-05T23:14:05.9170063Z 8f296761951c: Download complete 2025-06-05T23:14:06.1031885Z f557aa5ee224: Verifying Checksum 2025-06-05T23:14:06.1032357Z f557aa5ee224: Download complete 2025-06-05T23:14:06.1762712Z e91ae308bacb: Verifying Checksum 2025-06-05T23:14:06.1763308Z e91ae308bacb: Download complete 2025-06-05T23:14:06.2115176Z 4420b1e1a07f: Verifying Checksum 2025-06-05T23:14:06.2115676Z 4420b1e1a07f: Download complete 2025-06-05T23:14:06.3071597Z 172401b941b1: Download complete 2025-06-05T23:14:06.4126783Z ce2f52f68b11: Verifying Checksum 2025-06-05T23:14:06.4127449Z ce2f52f68b11: Download complete 2025-06-05T23:14:06.5277930Z 2d7e5abdd88d: Verifying Checksum 2025-06-05T23:14:06.5278442Z 2d7e5abdd88d: Download complete 2025-06-05T23:14:06.9556055Z 41e6f009b6ae: Verifying Checksum 2025-06-05T23:14:06.9556635Z 41e6f009b6ae: Download complete 2025-06-05T23:14:07.0150445Z f557aa5ee224: Pull complete 2025-06-05T23:14:07.0254039Z e9a71f6cf6a0: Pull complete 2025-06-05T23:14:07.0553052Z 380307a36ed2: Verifying Checksum 2025-06-05T23:14:07.3674633Z 1a06b2cee6c9: Verifying Checksum 2025-06-05T23:14:07.3675009Z 1a06b2cee6c9: Download complete 2025-06-05T23:14:07.5014289Z 3ec19c2849b3: Verifying Checksum 2025-06-05T23:14:07.5014899Z 3ec19c2849b3: Download complete 2025-06-05T23:14:07.6104252Z 981dc67b5251: Verifying Checksum 2025-06-05T23:14:07.6104848Z 981dc67b5251: Download complete 2025-06-05T23:14:07.6135493Z c9ca39a751c2: Verifying Checksum 2025-06-05T23:14:07.6136073Z c9ca39a751c2: Download complete 2025-06-05T23:14:07.7255267Z 5e70c61fded4: Verifying Checksum 2025-06-05T23:14:07.7255814Z 5e70c61fded4: Download complete 2025-06-05T23:14:07.7917069Z 45485d96ebf7: Download complete 2025-06-05T23:14:07.9011475Z 5f26c160d59a: Download complete 2025-06-05T23:14:07.9818106Z 5630a9397492: Verifying Checksum 2025-06-05T23:14:07.9818662Z 5630a9397492: Download complete 2025-06-05T23:14:08.0654914Z 1fc2d9899ffb: Verifying Checksum 2025-06-05T23:14:08.0655451Z 1fc2d9899ffb: Download complete 2025-06-05T23:14:08.4535416Z 949b8eb6b0eb: Verifying Checksum 2025-06-05T23:14:08.4536096Z 949b8eb6b0eb: Download complete 2025-06-05T23:14:08.5348972Z 09dac94eaf91: Verifying Checksum 2025-06-05T23:14:08.5349584Z 09dac94eaf91: Download complete 2025-06-05T23:14:09.7419409Z 6155eb0be033: Verifying Checksum 2025-06-05T23:14:09.7419898Z 6155eb0be033: Download complete 2025-06-05T23:14:09.8331027Z dec0deaa1ed5: Verifying Checksum 2025-06-05T23:14:09.8331435Z dec0deaa1ed5: Download complete 2025-06-05T23:14:10.9351827Z bff527f30461: Verifying Checksum 2025-06-05T23:14:10.9352328Z bff527f30461: Download complete 2025-06-05T23:14:11.0131697Z e8c9ad02b518: Verifying Checksum 2025-06-05T23:14:11.0827854Z 8ab467cb1fa8: Verifying Checksum 2025-06-05T23:14:11.0828660Z 8ab467cb1fa8: Download complete 2025-06-05T23:14:11.4148016Z 1a06b2cee6c9: Pull complete 2025-06-05T23:14:11.6343521Z 8f296761951c: Pull complete 2025-06-05T23:14:11.7407918Z 100d80a1d9a6: Verifying Checksum 2025-06-05T23:14:11.7408433Z 100d80a1d9a6: Download complete 2025-06-05T23:14:11.7489504Z 13583dfa66f1: Verifying Checksum 2025-06-05T23:14:11.7490090Z 13583dfa66f1: Download complete 2025-06-05T23:14:11.8417130Z 7a286faf824a: Verifying Checksum 2025-06-05T23:14:11.8417743Z 7a286faf824a: Download complete 2025-06-05T23:14:11.8490290Z 4f4fb700ef54: Verifying Checksum 2025-06-05T23:14:11.8490723Z 4f4fb700ef54: Download complete 2025-06-05T23:14:11.8498352Z c2b62aa0dc26: Verifying Checksum 2025-06-05T23:14:11.8498905Z c2b62aa0dc26: Download complete 2025-06-05T23:14:11.9474470Z 7fb51a2458b7: Download complete 2025-06-05T23:14:12.0607398Z e91ae308bacb: Pull complete 2025-06-05T23:14:12.2713929Z 4420b1e1a07f: Pull complete 2025-06-05T23:14:14.8404637Z c9ca39a751c2: Pull complete 2025-06-05T23:14:14.9794988Z 172401b941b1: Pull complete 2025-06-05T23:14:15.1508412Z ce2f52f68b11: Pull complete 2025-06-05T23:14:15.2920597Z 2d7e5abdd88d: Pull complete 2025-06-05T23:14:16.0497656Z 41e6f009b6ae: Pull complete 2025-06-05T23:14:16.2649294Z 380307a36ed2: Pull complete 2025-06-05T23:14:23.2549363Z 6155eb0be033: Pull complete 2025-06-05T23:14:23.3583859Z 3ec19c2849b3: Pull complete 2025-06-05T23:14:23.4694307Z 981dc67b5251: Pull complete 2025-06-05T23:14:23.5649732Z 5e70c61fded4: Pull complete 2025-06-05T23:14:31.0602911Z 949b8eb6b0eb: Pull complete 2025-06-05T23:14:31.2891411Z 45485d96ebf7: Pull complete 2025-06-05T23:14:31.5106139Z 5f26c160d59a: Pull complete 2025-06-05T23:14:31.7256435Z 5630a9397492: Pull complete 2025-06-05T23:14:31.9779668Z 1fc2d9899ffb: Pull complete 2025-06-05T23:15:16.7037892Z 0e838d866fbe: Verifying Checksum 2025-06-05T23:15:16.7038262Z 0e838d866fbe: Download complete 2025-06-05T23:16:29.7497458Z 0e838d866fbe: Pull complete 2025-06-05T23:16:29.9026025Z 09dac94eaf91: Pull complete 2025-06-05T23:16:37.0325160Z bff527f30461: Pull complete 2025-06-05T23:16:37.0672458Z dec0deaa1ed5: Pull complete 2025-06-05T23:16:44.4403874Z 13583dfa66f1: Pull complete 2025-06-05T23:16:44.6046653Z e8c9ad02b518: Pull complete 2025-06-05T23:16:44.9438773Z 8ab467cb1fa8: Pull complete 2025-06-05T23:16:47.0457448Z 100d80a1d9a6: Pull complete 2025-06-05T23:16:47.0733030Z 7a286faf824a: Pull complete 2025-06-05T23:16:47.1025552Z c2b62aa0dc26: Pull complete 2025-06-05T23:16:47.1327354Z 4f4fb700ef54: Pull complete 2025-06-05T23:16:47.1628099Z 7fb51a2458b7: Pull complete 2025-06-05T23:16:47.1856437Z Digest: sha256:00373a0aa4547c13a0f23947267d1f3382534d033b156d50e9e3878a4b74341c 2025-06-05T23:16:47.2051400Z Status: Downloaded newer image for 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-linter:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:16:47.2233610Z 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-linter:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:16:47.2272556Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:16:47.2273483Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:16:47.2280876Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:16:47.2281247Z env: 2025-06-05T23:16:47.2281501Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:16:47.2281850Z REPOSITORY: pytorch/executorch 2025-06-05T23:16:47.2282117Z PR_NUMBER: 2025-06-05T23:16:47.2287199Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:16:47.2293131Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:16:47.2293707Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:16:47.2294230Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:16:47.2294612Z ##[endgroup] 2025-06-05T23:16:47.2476437Z ##[group]Run set -ex 2025-06-05T23:16:47.2476709Z set -ex 2025-06-05T23:16:47.2476908Z { 2025-06-05T23:16:47.2477130Z  echo "#!/usr/bin/env bash"; 2025-06-05T23:16:47.2477445Z  echo "set -eou pipefail"; 2025-06-05T23:16:47.2477742Z  # shellcheck disable=SC2016 2025-06-05T23:16:47.2478073Z  echo 'eval "$(conda shell.bash hook)"'; 2025-06-05T23:16:47.2478387Z  echo "set -x"; 2025-06-05T23:16:47.2478641Z  echo "${SCRIPT}"; 2025-06-05T23:16:47.2478910Z } > "${RUNNER_TEMP}/exec_script" 2025-06-05T23:16:47.2479239Z chmod +x "${RUNNER_TEMP}/exec_script" 2025-06-05T23:16:47.2479928Z python3 "/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py" "" 2025-06-05T23:16:47.2485585Z shell: /usr/bin/bash -e {0} 2025-06-05T23:16:47.2485832Z env: 2025-06-05T23:16:47.2486512Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-linter:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:16:47.2487324Z REPOSITORY: pytorch/executorch 2025-06-05T23:16:47.2487599Z PR_NUMBER: 2025-06-05T23:16:47.2492807Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:16:47.2498241Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:16:47.2498813Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:16:47.2499336Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:16:47.2500204Z ALL_SECRETS: { "github_token": "***" } 2025-06-05T23:16:47.2500513Z ##[endgroup] 2025-06-05T23:16:47.2522022Z + echo '#!/usr/bin/env bash' 2025-06-05T23:16:47.2522452Z + echo 'set -eou pipefail' 2025-06-05T23:16:47.2523506Z + echo 'eval "$(conda shell.bash hook)"' 2025-06-05T23:16:47.2523813Z + echo 'set -x' 2025-06-05T23:16:47.2524195Z + echo '# The generic Linux job chooses to use base env, not the one setup by the image 2025-06-05T23:16:47.2524712Z CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") 2025-06-05T23:16:47.2525080Z conda activate "${CONDA_ENV}" 2025-06-05T23:16:47.2525254Z 2025-06-05T23:16:47.2525449Z # For mypy linting, we need to first install executorch first so that 2025-06-05T23:16:47.2525880Z # it builds the python package information. 2025-06-05T23:16:47.2526189Z BUILD_TOOL="cmake" 2025-06-05T23:16:47.2526599Z PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" 2025-06-05T23:16:47.2526996Z 2025-06-05T23:16:47.2527271Z CACHE_DIRECTORY="/tmp/.lintbin" 2025-06-05T23:16:47.2527551Z # Try to recover the cached binaries 2025-06-05T23:16:47.2527855Z if [[ -d "${CACHE_DIRECTORY}" ]]; then 2025-06-05T23:16:47.2528236Z # It'\''s ok to fail this as lintrunner init would download these binaries 2025-06-05T23:16:47.2528635Z # again if they do not exist 2025-06-05T23:16:47.2528901Z cp -r "${CACHE_DIRECTORY}" . || true 2025-06-05T23:16:47.2529183Z fi 2025-06-05T23:16:47.2529285Z 2025-06-05T23:16:47.2529430Z # This has already been cached in the docker image 2025-06-05T23:16:47.2529760Z lintrunner init 2> /dev/null 2025-06-05T23:16:47.2529929Z 2025-06-05T23:16:47.2530015Z RC=0 2025-06-05T23:16:47.2530207Z # Run lintrunner on all files 2025-06-05T23:16:47.2530633Z if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then 2025-06-05T23:16:47.2531056Z echo "" 2025-06-05T23:16:47.2531897Z echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don'\''t get the same results, run \'\''lintrunner init\'\'' to update your local linter)\e[0m" 2025-06-05T23:16:47.2532923Z echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" 2025-06-05T23:16:47.2533443Z RC=1 2025-06-05T23:16:47.2533633Z fi 2025-06-05T23:16:47.2533733Z 2025-06-05T23:16:47.2533953Z # Use jq to massage the JSON lint output into GitHub Actions workflow commands. 2025-06-05T23:16:47.2534375Z jq --raw-output \ 2025-06-05T23:16:47.2535101Z '\''"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))'\'' \ 2025-06-05T23:16:47.2535875Z lint.json || true 2025-06-05T23:16:47.2536009Z 2025-06-05T23:16:47.2536101Z exit $RC 2025-06-05T23:16:47.2536279Z ' 2025-06-05T23:16:47.2536566Z + chmod +x /home/ec2-user/actions-runner/_work/_temp/exec_script 2025-06-05T23:16:47.2537292Z + python3 /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py '' 2025-06-05T23:17:08.1424873Z Running command: 2025-06-05T23:17:08.1431104Z 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_15475023412" `# 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_fe6766b0-c51e-4f99-9c8f-a4ca765191b5":"/home/ec2-user/actions-runner/_work/_temp/_runner_file_commands/step_summary_fe6766b0-c51e-4f99-9c8f-a4ca765191b5" -w /pytorch/executorch "308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-linter:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa" 2025-06-05T23:17:08.1437025Z 2025-06-05T23:17:08.1437412Z 4362b5353c1854829e274053d509442046f79ab8bbb3a84885d404bf244ff106 2025-06-05T23:17:08.1438151Z Running command: docker exec -t 4362b5353c1854829e274053d509442046f79ab8bbb3a84885d404bf244ff106 /exec 2025-06-05T23:17:08.1438854Z ++ conda env list --json 2025-06-05T23:17:08.1439115Z ++ local cmd=env 2025-06-05T23:17:08.1439337Z ++ case "$cmd" in 2025-06-05T23:17:08.1439559Z ++ __conda_exe env list --json 2025-06-05T23:17:08.1439834Z ++ jq -r '.envs | .[-1]' 2025-06-05T23:17:08.1440090Z ++ /opt/conda/bin/conda env list --json 2025-06-05T23:17:08.1440409Z + CONDA_ENV=/opt/conda/envs/py_3.10 2025-06-05T23:17:08.1440706Z + conda activate /opt/conda/envs/py_3.10 2025-06-05T23:17:08.1441010Z + local cmd=activate 2025-06-05T23:17:08.1441227Z + case "$cmd" in 2025-06-05T23:17:08.1441494Z + __conda_activate activate /opt/conda/envs/py_3.10 2025-06-05T23:17:08.1441810Z + '[' -n '' ']' 2025-06-05T23:17:08.1442029Z + local ask_conda 2025-06-05T23:17:08.1442245Z ++ PS1='(base) ' 2025-06-05T23:17:08.1442522Z ++ __conda_exe shell.posix activate /opt/conda/envs/py_3.10 2025-06-05T23:17:08.1442997Z ++ /opt/conda/bin/conda shell.posix activate /opt/conda/envs/py_3.10 2025-06-05T23:17:08.1443513Z + ask_conda='PS1='\''(py_3.10) '\'' 2025-06-05T23:17:08.1444440Z 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:17:08.1445436Z export CONDA_PREFIX='\''/opt/conda/envs/py_3.10'\'' 2025-06-05T23:17:08.1445783Z export CONDA_SHLVL='\''2'\'' 2025-06-05T23:17:08.1446070Z export CONDA_DEFAULT_ENV='\''py_3.10'\'' 2025-06-05T23:17:08.1446397Z export CONDA_PROMPT_MODIFIER='\''(py_3.10) '\'' 2025-06-05T23:17:08.1446748Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2025-06-05T23:17:08.1447068Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2025-06-05T23:17:08.1447381Z export _CE_M='\'''\'' 2025-06-05T23:17:08.1447614Z export _CE_CONDA='\'''\'' 2025-06-05T23:17:08.1447930Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2025-06-05T23:17:08.1448277Z + eval 'PS1='\''(py_3.10) '\'' 2025-06-05T23:17:08.1449104Z 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:17:08.1450001Z export CONDA_PREFIX='\''/opt/conda/envs/py_3.10'\'' 2025-06-05T23:17:08.1450337Z export CONDA_SHLVL='\''2'\'' 2025-06-05T23:17:08.1450621Z export CONDA_DEFAULT_ENV='\''py_3.10'\'' 2025-06-05T23:17:08.1450948Z export CONDA_PROMPT_MODIFIER='\''(py_3.10) '\'' 2025-06-05T23:17:08.1451289Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2025-06-05T23:17:08.1451610Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2025-06-05T23:17:08.1451923Z export _CE_M='\'''\'' 2025-06-05T23:17:08.1452150Z export _CE_CONDA='\'''\'' 2025-06-05T23:17:08.1452460Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2025-06-05T23:17:08.1452808Z ++ PS1='(py_3.10) ' 2025-06-05T23:17:08.1453569Z ++ 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:17:08.1455009Z ++ 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:17:08.1455836Z ++ export CONDA_PREFIX=/opt/conda/envs/py_3.10 2025-06-05T23:17:08.1456179Z ++ CONDA_PREFIX=/opt/conda/envs/py_3.10 2025-06-05T23:17:08.1456470Z ++ export CONDA_SHLVL=2 2025-06-05T23:17:08.1456711Z ++ CONDA_SHLVL=2 2025-06-05T23:17:08.1456950Z ++ export CONDA_DEFAULT_ENV=py_3.10 2025-06-05T23:17:08.1457231Z ++ CONDA_DEFAULT_ENV=py_3.10 2025-06-05T23:17:08.1457518Z ++ export 'CONDA_PROMPT_MODIFIER=(py_3.10) ' 2025-06-05T23:17:08.1457834Z ++ CONDA_PROMPT_MODIFIER='(py_3.10) ' 2025-06-05T23:17:08.1458135Z ++ export CONDA_PREFIX_1=/opt/conda 2025-06-05T23:17:08.1458412Z ++ CONDA_PREFIX_1=/opt/conda 2025-06-05T23:17:08.1458690Z ++ export CONDA_EXE=/opt/conda/bin/conda 2025-06-05T23:17:08.1458984Z ++ CONDA_EXE=/opt/conda/bin/conda 2025-06-05T23:17:08.1459256Z ++ export _CE_M= 2025-06-05T23:17:08.1459457Z ++ _CE_M= 2025-06-05T23:17:08.1459735Z ++ export _CE_CONDA= 2025-06-05T23:17:08.1459968Z ++ _CE_CONDA= 2025-06-05T23:17:08.1460207Z ++ export CONDA_PYTHON_EXE=/opt/conda/bin/python 2025-06-05T23:17:08.1460556Z ++ CONDA_PYTHON_EXE=/opt/conda/bin/python 2025-06-05T23:17:08.1460840Z + __conda_hashr 2025-06-05T23:17:08.1461055Z + '[' -n '' ']' 2025-06-05T23:17:08.1461246Z + '[' -n '' ']' 2025-06-05T23:17:08.1461448Z + hash -r 2025-06-05T23:17:08.1461632Z + BUILD_TOOL=cmake 2025-06-05T23:17:08.1461865Z + PYTHON_EXECUTABLE=python 2025-06-05T23:17:08.1462169Z + bash .ci/scripts/setup-linux.sh --build-tool cmake 2025-06-05T23:17:08.1462532Z ++ dirname .ci/scripts/setup-linux.sh 2025-06-05T23:17:08.1462835Z + source .ci/scripts/utils.sh 2025-06-05T23:17:08.1463106Z + read -r BUILD_TOOL BUILD_MODE EDITABLE 2025-06-05T23:17:08.1463420Z ++ parse_args --build-tool cmake 2025-06-05T23:17:08.1463691Z ++ args=('--build-tool' 'cmake') 2025-06-05T23:17:08.1463951Z ++ local args 2025-06-05T23:17:08.1464141Z ++ local i 2025-06-05T23:17:08.1464348Z ++ local BUILD_TOOL= 2025-06-05T23:17:08.1464570Z ++ local BUILD_MODE= 2025-06-05T23:17:08.1464797Z ++ local EDITABLE= 2025-06-05T23:17:08.1465001Z ++ (( i=0 )) 2025-06-05T23:17:08.1465209Z ++ (( i<2 )) 2025-06-05T23:17:08.1465405Z ++ case "${args[$i]}" in 2025-06-05T23:17:08.1465645Z ++ BUILD_TOOL=cmake 2025-06-05T23:17:08.1465858Z ++ i=1 2025-06-05T23:17:08.1466031Z ++ (( i++ )) 2025-06-05T23:17:08.1466225Z ++ (( i<2 )) 2025-06-05T23:17:08.1466414Z ++ '[' -z cmake ']' 2025-06-05T23:17:08.1466646Z ++ [[ cmake =~ ^(cmake|buck2)$ ]] 2025-06-05T23:17:08.1466907Z ++ BUILD_MODE=Release 2025-06-05T23:17:08.1467155Z ++ [[ Release =~ ^(Debug|Release)$ ]] 2025-06-05T23:17:08.1467425Z ++ EDITABLE=false 2025-06-05T23:17:08.1467653Z ++ [[ false =~ ^(true|false)$ ]] 2025-06-05T23:17:08.1467916Z ++ echo 'cmake Release false' 2025-06-05T23:17:08.1468182Z + [[ false == \t\r\u\e ]] 2025-06-05T23:17:08.1468454Z + install_executorch --use-pt-pinned-commit 2025-06-05T23:17:08.1468769Z + which pip 2025-06-05T23:17:08.1468997Z /opt/conda/envs/py_3.10/bin/pip 2025-06-05T23:17:08.1469303Z + ./install_executorch.sh --use-pt-pinned-commit 2025-06-05T23:17:08.1469758Z 2025-06-05 23:17:07,219 [ExecuTorch] INFO: All required submodules are present. 2025-06-05T23:17:08.1470394Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cpu 2025-06-05T23:17:08.1471197Z Requirement already satisfied: torch in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (2.8.0a0+git5616fa4) 2025-06-05T23:17:08.1472074Z Requirement already satisfied: torchvision in /var/lib/ci-user/.local/lib/python3.10/site-packages (0.22.0a0+966da7e) 2025-06-05T23:17:08.1472969Z Requirement already satisfied: torchaudio in /var/lib/ci-user/.local/lib/python3.10/site-packages (2.6.0a0+1a8f621) 2025-06-05T23:17:08.1473676Z Collecting timm==1.0.7 (from -r requirements-examples.txt (line 3)) 2025-06-05T23:17:08.1474158Z Downloading timm-1.0.7-py3-none-any.whl.metadata (47 kB) 2025-06-05T23:17:08.1474989Z 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:17:08.1475930Z Collecting torchtune>=0.6.1 (from -r requirements-examples.txt (line 5)) 2025-06-05T23:17:08.1476477Z Downloading torchtune-0.6.1-py3-none-any.whl.metadata (24 kB) 2025-06-05T23:17:08.1477355Z 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:17:08.1478223Z Collecting cmake<4.0.0,>=3.19 (from -r requirements-dev.txt (line 1)) 2025-06-05T23:17:08.1478856Z Downloading cmake-3.31.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.3 kB) 2025-06-05T23:17:08.1479762Z 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:17:08.1480921Z 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:17:08.1482053Z 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:17:08.1483237Z 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:17:08.1484330Z 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:17:08.1485414Z 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:17:08.1486596Z 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:17:08.1487880Z 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:17:08.1489167Z 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:17:08.1490482Z 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:17:10.9961779Z 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:17:10.9963290Z 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:17:10.9964692Z 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:17:10.9966073Z 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:17:10.9967398Z 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:17:10.9968758Z 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:17:10.9970217Z 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:17:10.9971646Z 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:17:10.9973007Z 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:17:10.9973898Z Requirement already satisfied: networkx in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (3.4.2) 2025-06-05T23:17:10.9974782Z Requirement already satisfied: jinja2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (3.1.6) 2025-06-05T23:17:10.9975715Z 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:17:10.9976532Z Collecting torchdata==0.11.0 (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:17:10.9977148Z Downloading torchdata-0.11.0-py3-none-any.whl.metadata (6.3 kB) 2025-06-05T23:17:10.9977824Z Collecting datasets (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:17:10.9978402Z Downloading datasets-3.6.0-py3-none-any.whl.metadata (19 kB) 2025-06-05T23:17:10.9978977Z Collecting kagglehub (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:17:10.9979552Z Downloading kagglehub-0.3.12-py3-none-any.whl.metadata (38 kB) 2025-06-05T23:17:10.9980156Z Collecting sentencepiece (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:17:10.9981110Z 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:17:10.9984105Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.3 MB ? eta -:--:-- 2025-06-05T23:17:10.9984847Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 108.4 MB/s eta 0:00:00 2025-06-05T23:17:10.9985547Z [?25hCollecting tiktoken (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:17:10.9986301Z Downloading tiktoken-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) 2025-06-05T23:17:10.9987016Z Collecting blobfile>=2 (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:17:10.9987734Z Downloading https://download.pytorch.org/whl/nightly/blobfile-3.0.0-py3-none-any.whl (75 kB) 2025-06-05T23:17:10.9988446Z Collecting omegaconf (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:17:10.9989148Z Downloading https://download.pytorch.org/whl/nightly/omegaconf-2.3.0-py3-none-any.whl (79 kB) 2025-06-05T23:17:10.9989848Z Collecting psutil (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:17:10.9990671Z 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:17:10.9992077Z 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:17:10.9993196Z Collecting pycryptodomex>=3.8 (from blobfile>=2->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:17:10.9994016Z Downloading pycryptodomex-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.4 kB) 2025-06-05T23:17:10.9995115Z 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:17:10.9996290Z 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:17:10.9997172Z Collecting pyarrow>=15.0.0 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:17:10.9997868Z Downloading pyarrow-20.0.0-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (3.3 kB) 2025-06-05T23:17:10.9998698Z Collecting dill<0.3.9,>=0.3.0 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:17:10.9999434Z Downloading https://download.pytorch.org/whl/nightly/dill-0.3.8-py3-none-any.whl (116 kB) 2025-06-05T23:17:11.0000466Z 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:17:11.0001489Z Collecting xxhash (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:17:11.0002397Z 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:17:11.0003409Z Collecting multiprocess<0.70.17 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:17:11.0004243Z Downloading https://download.pytorch.org/whl/nightly/multiprocess-0.70.16-py310-none-any.whl (134 kB) 2025-06-05T23:17:11.0005169Z Collecting fsspec>=2023.5.0 (from huggingface_hub->timm==1.0.7->-r requirements-examples.txt (line 3)) 2025-06-05T23:17:11.0005795Z Downloading fsspec-2025.3.0-py3-none-any.whl.metadata (11 kB) 2025-06-05T23:17:11.0006546Z 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:17:11.0007427Z Downloading aiohttp-3.12.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.6 kB) 2025-06-05T23:17:11.0008411Z 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:17:11.0009305Z Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl.metadata (5.9 kB) 2025-06-05T23:17:11.0010141Z 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:17:11.0010976Z Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) 2025-06-05T23:17:11.0011798Z 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:17:11.0012628Z Downloading async_timeout-5.0.1-py3-none-any.whl.metadata (5.1 kB) 2025-06-05T23:17:11.0013758Z 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:17:11.0015154Z 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:17:11.0016246Z 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:17:11.0017336Z 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:17:11.0018271Z Downloading multidict-6.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) 2025-06-05T23:17:11.0019222Z 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:17:11.0020156Z Downloading propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (10 kB) 2025-06-05T23:17:11.0021078Z 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:17:11.0021968Z Downloading yarl-1.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (72 kB) 2025-06-05T23:17:13.0334014Z 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:17:13.0335824Z 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:17:13.0337320Z 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:17:13.0338553Z Collecting hf-transfer>=0.1.4 (from huggingface_hub[hf_transfer]->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:17:13.0339418Z Downloading hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.7 kB) 2025-06-05T23:17:13.0340555Z 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:17:13.0341493Z Collecting antlr4-python3-runtime==4.9.* (from omegaconf->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:17:13.0342373Z Downloading https://download.pytorch.org/whl/nightly/antlr4_python3_runtime-4.9.3.tar.gz (117 kB) 2025-06-05T23:17:13.0343220Z Preparing metadata (setup.py) ... [?25l- done 2025-06-05T23:17:13.0344405Z [?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:17:13.0345996Z 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:17:13.0347487Z 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:17:13.0348998Z 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:17:13.0349980Z Downloading timm-1.0.7-py3-none-any.whl (2.3 MB) 2025-06-05T23:17:13.0350592Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:17:13.0351258Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 123.6 MB/s eta 0:00:00 2025-06-05T23:17:13.0351996Z [?25hDownloading cmake-3.31.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.8 MB) 2025-06-05T23:17:13.0352727Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/27.8 MB ? eta -:--:-- 2025-06-05T23:17:13.0353421Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 27.8/27.8 MB 160.9 MB/s eta 0:00:00 2025-06-05T23:17:13.0353977Z [?25hDownloading torchtune-0.6.1-py3-none-any.whl (910 kB) 2025-06-05T23:17:13.0354709Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/910.7 kB ? eta -:--:-- 2025-06-05T23:17:13.0355376Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 910.7/910.7 kB 95.9 MB/s eta 0:00:00 2025-06-05T23:17:13.0355954Z [?25hDownloading torchdata-0.11.0-py3-none-any.whl (61 kB) 2025-06-05T23:17:13.0356575Z Downloading pycryptodomex-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB) 2025-06-05T23:17:13.0357333Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:17:13.0357986Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 208.0 MB/s eta 0:00:00 2025-06-05T23:17:13.0358700Z [?25hDownloading datasets-3.6.0-py3-none-any.whl (491 kB) 2025-06-05T23:17:13.0359139Z Downloading fsspec-2025.3.0-py3-none-any.whl (193 kB) 2025-06-05T23:17:13.0359709Z Downloading aiohttp-3.12.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB) 2025-06-05T23:17:13.0360437Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.6 MB ? eta -:--:-- 2025-06-05T23:17:13.0361086Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 177.6 MB/s eta 0:00:00 2025-06-05T23:17:13.0361649Z [?25hDownloading async_timeout-5.0.1-py3-none-any.whl (6.2 kB) 2025-06-05T23:17:13.0362267Z Downloading multidict-6.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (219 kB) 2025-06-05T23:17:13.0362984Z Downloading yarl-1.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (333 kB) 2025-06-05T23:17:13.0363671Z Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl (15 kB) 2025-06-05T23:17:13.0364246Z Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) 2025-06-05T23:17:13.0364988Z 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:17:13.0365877Z Downloading propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206 kB) 2025-06-05T23:17:13.0366528Z Downloading pyarrow-20.0.0-cp310-cp310-manylinux_2_28_x86_64.whl (42.3 MB) 2025-06-05T23:17:13.0367219Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/42.3 MB ? eta -:--:-- 2025-06-05T23:17:13.0367887Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.3/42.3 MB 314.9 MB/s eta 0:00:00 2025-06-05T23:17:13.0368633Z [?25hDownloading hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB) 2025-06-05T23:17:13.0369389Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/3.6 MB ? eta -:--:-- 2025-06-05T23:17:13.0370044Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/3.6 MB 174.4 MB/s eta 0:00:00 2025-06-05T23:17:13.0370605Z [?25hDownloading kagglehub-0.3.12-py3-none-any.whl (67 kB) 2025-06-05T23:17:13.0371333Z 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:17:13.0372184Z Downloading tiktoken-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB) 2025-06-05T23:17:13.0372927Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.2 MB ? eta -:--:-- 2025-06-05T23:17:13.0373645Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 114.8 MB/s eta 0:00:00 2025-06-05T23:17:13.0374249Z [?25hBuilding wheels for collected packages: antlr4-python3-runtime 2025-06-05T23:17:13.0376782Z  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:17:13.0379084Z  Building wheel for antlr4-python3-runtime (setup.py) ... [?25l- done 2025-06-05T23:17:13.0380267Z [?25h Created wheel for antlr4-python3-runtime: filename=antlr4_python3_runtime-4.9.3-py3-none-any.whl size=144590 sha256=60a323b4f04fae4572f68451c39ff181089bf271904ca4beadf7b72256b782da 2025-06-05T23:17:13.0381471Z Stored in directory: /var/lib/ci-user/.cache/pip/wheels/8e/0c/ef/6e1004d7898c3e61c08b70be9a80232ee72e7c55c9a9bffa33 2025-06-05T23:17:13.0382128Z Successfully built antlr4-python3-runtime 2025-06-05T23:17:13.0383651Z 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:17:13.0385121Z [?25l 2025-06-05T23:17:21.7254132Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/27 [pycryptodomex] 2025-06-05T23:17:21.7254839Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/27 [pycryptodomex] 2025-06-05T23:17:21.7255465Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:17:21.7257625Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:17:21.7258357Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:17:21.7259064Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:17:21.7259644Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:17:21.7260239Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:17:21.7260832Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  5/27 [psutil] 2025-06-05T23:17:21.7261420Z  ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━  9/27 [hf-transfer] 2025-06-05T23:17:21.7261878Z  Attempting uninstall: fsspec 2025-06-05T23:17:21.7262369Z ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━  9/27 [hf-transfer] 2025-06-05T23:17:21.7262864Z  Found existing installation: fsspec 2025.5.1 2025-06-05T23:17:21.7263413Z ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━  9/27 [hf-transfer] 2025-06-05T23:17:21.7264727Z  Uninstalling fsspec-2025.5.1: 2025-06-05T23:17:21.7265236Z ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━  9/27 [hf-transfer] 2025-06-05T23:17:21.7265712Z  Successfully uninstalled fsspec-2025.5.1 2025-06-05T23:17:21.7266255Z ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━  9/27 [hf-transfer] 2025-06-05T23:17:21.7266826Z  ━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 12/27 [dill] 2025-06-05T23:17:21.7267406Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:17:21.7267982Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:17:21.7268543Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:17:21.7269111Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:17:21.7269813Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:17:21.7270415Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 18/27 [multiprocess] 2025-06-05T23:17:21.7271011Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 22/27 [torchdata] 2025-06-05T23:17:21.7271445Z  Attempting uninstall: timm 2025-06-05T23:17:21.7271924Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 22/27 [torchdata] 2025-06-05T23:17:21.7272378Z  Found existing installation: timm 0.6.13 2025-06-05T23:17:21.7272897Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 22/27 [torchdata] 2025-06-05T23:17:21.7273450Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:17:21.7273878Z  Uninstalling timm-0.6.13: 2025-06-05T23:17:21.7274392Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:17:21.7274831Z  Successfully uninstalled timm-0.6.13 2025-06-05T23:17:21.7275327Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:17:21.7275866Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:17:21.7276419Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:17:21.7276972Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:17:21.7277531Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 25/27 [datasets] 2025-06-05T23:17:21.7278109Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 25/27 [datasets] 2025-06-05T23:17:21.7278700Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 26/27 [torchtune] 2025-06-05T23:17:21.7279316Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 27/27 [torchtune] 2025-06-05T23:17:21.7279679Z [?25h 2025-06-05T23:17:21.7281851Z 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:17:21.7295657Z Processing ./third-party/ao 2025-06-05T23:17:21.7296300Z Preparing metadata (setup.py) ... [?25l- done 2025-06-05T23:17:21.7296736Z [?25hProcessing ./extension/llm/tokenizers 2025-06-05T23:17:21.7297200Z Preparing metadata (pyproject.toml) ... [?25l- \ done 2025-06-05T23:17:21.7298307Z [?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:17:21.7299393Z 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:17:21.7300492Z 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:17:21.7301639Z 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:17:21.7302801Z 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:17:21.7304085Z 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:17:21.7305394Z 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:17:29.3192065Z 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:17:29.3193533Z 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:17:29.3194941Z 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:17:29.3196547Z 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:17:29.3198308Z 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:17:29.3199814Z 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:17:29.3201279Z 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:17:29.3202737Z 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:17:29.3204599Z 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:17:29.3206149Z 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:17:29.3207213Z Building wheels for collected packages: torchao, pytorch_tokenizers 2025-06-05T23:17:29.3209933Z  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:17:29.3211995Z  Building wheel for torchao (setup.py) ... [?25l- \ | / - done 2025-06-05T23:17:29.3213162Z [?25h Created wheel for torchao: filename=torchao-0.12.0+gitbc68b11f-cp39-abi3-linux_x86_64.whl size=955958 sha256=1228ac59332bb3685ba0d26485c35a6b66ed15d7e9b0b0ea930a050516556952 2025-06-05T23:17:29.3214383Z Stored in directory: /tmp/pip-ephem-wheel-cache-zoo5o1yo/wheels/0b/23/ff/2261dc1c4a27252503fe159d9fc88676b133e0e8d621abf36f 2025-06-05T23:17:29.3215295Z Building wheel for pytorch_tokenizers (pyproject.toml) ... [?25l- \ done 2025-06-05T23:17:29.3216650Z [?25h Created wheel for pytorch_tokenizers: filename=pytorch_tokenizers-0.1.0-py3-none-any.whl size=10999 sha256=1c28a2fe3ce28fcf8be93d6ba89591c8632598a2c8d1ac987b0a5bce97eccbc6 2025-06-05T23:17:29.3217986Z Stored in directory: /tmp/pip-ephem-wheel-cache-zoo5o1yo/wheels/27/7b/a1/358699b32a468639d6f9ef263f9676280bc5ee318b0bd9a0b2 2025-06-05T23:17:29.3218742Z Successfully built torchao pytorch_tokenizers 2025-06-05T23:17:29.3219243Z Installing collected packages: torchao, pytorch_tokenizers 2025-06-05T23:17:29.3219792Z [?25l 2025-06-05T23:17:29.3220255Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:17:29.3220816Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:17:29.3221320Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:17:29.3221972Z  ━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 1/2 [pytorch_tokenizers] 2025-06-05T23:17:29.3222643Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2/2 [pytorch_tokenizers] 2025-06-05T23:17:29.3223082Z [?25h 2025-06-05T23:17:29.3223590Z Successfully installed pytorch_tokenizers-0.1.0 torchao-0.12.0+gitbc68b11f 2025-06-05T23:17:29.3224307Z Using pip 25.1 from /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pip (python 3.10) 2025-06-05T23:17:29.3225054Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cpu 2025-06-05T23:17:29.3225738Z Processing /pytorch/executorch 2025-06-05T23:17:29.3226156Z Running command Preparing metadata (pyproject.toml) 2025-06-05T23:17:29.3227166Z /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:17:29.3228102Z !! 2025-06-05T23:17:29.3228215Z 2025-06-05T23:17:29.3228347Z ******************************************************************************** 2025-06-05T23:17:29.3229210Z 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:17:29.3229896Z 2025-06-05T23:17:29.3230123Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-06-05T23:17:29.3230580Z or your builds will no longer be supported. 2025-06-05T23:17:29.3230824Z 2025-06-05T23:17:29.3231254Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:17:29.3231870Z ******************************************************************************** 2025-06-05T23:17:29.3232102Z 2025-06-05T23:17:29.3232179Z !! 2025-06-05T23:17:29.3232393Z corresp(dist, value, root_dir) 2025-06-05T23:17:29.3233216Z /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:17:29.3234048Z !! 2025-06-05T23:17:29.3234151Z 2025-06-05T23:17:29.3234266Z ******************************************************************************** 2025-06-05T23:17:29.3234803Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:17:29.3235270Z 2025-06-05T23:17:29.3235435Z License :: OSI Approved :: BSD License 2025-06-05T23:17:29.3235655Z 2025-06-05T23:17:29.3235996Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:17:29.3236568Z ******************************************************************************** 2025-06-05T23:17:29.3236796Z 2025-06-05T23:17:29.3236893Z !! 2025-06-05T23:17:29.3237098Z dist._finalize_license_expression() 2025-06-05T23:17:29.3237854Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:17:29.3238570Z !! 2025-06-05T23:17:29.3238686Z 2025-06-05T23:17:29.3238801Z ******************************************************************************** 2025-06-05T23:17:29.3239317Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:17:29.3239731Z 2025-06-05T23:17:29.3239850Z License :: OSI Approved :: BSD License 2025-06-05T23:17:29.3240068Z 2025-06-05T23:17:29.3240425Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:17:29.3240988Z ******************************************************************************** 2025-06-05T23:17:29.3241233Z 2025-06-05T23:17:29.3241312Z !! 2025-06-05T23:17:29.3241520Z self._finalize_license_expression() 2025-06-05T23:17:29.3241827Z running dist_info 2025-06-05T23:17:29.3242241Z creating /tmp/pip-modern-metadata-adgu3ykx/executorch.egg-info 2025-06-05T23:17:29.3242792Z writing /tmp/pip-modern-metadata-adgu3ykx/executorch.egg-info/PKG-INFO 2025-06-05T23:17:29.3243587Z writing dependency_links to /tmp/pip-modern-metadata-adgu3ykx/executorch.egg-info/dependency_links.txt 2025-06-05T23:17:29.3244372Z writing entry points to /tmp/pip-modern-metadata-adgu3ykx/executorch.egg-info/entry_points.txt 2025-06-05T23:17:29.3245126Z writing requirements to /tmp/pip-modern-metadata-adgu3ykx/executorch.egg-info/requires.txt 2025-06-05T23:17:29.3245858Z writing top-level names to /tmp/pip-modern-metadata-adgu3ykx/executorch.egg-info/top_level.txt 2025-06-05T23:17:29.3246684Z writing manifest file '/tmp/pip-modern-metadata-adgu3ykx/executorch.egg-info/SOURCES.txt' 2025-06-05T23:17:29.3247413Z reading manifest file '/tmp/pip-modern-metadata-adgu3ykx/executorch.egg-info/SOURCES.txt' 2025-06-05T23:17:29.3247923Z adding license file 'LICENSE' 2025-06-05T23:17:29.3248409Z writing manifest file '/tmp/pip-modern-metadata-adgu3ykx/executorch.egg-info/SOURCES.txt' 2025-06-05T23:17:29.3249098Z creating '/tmp/pip-modern-metadata-adgu3ykx/executorch-0.7.0a0+bd57234.dist-info' 2025-06-05T23:17:29.3249771Z Preparing metadata (pyproject.toml) ... [?25l[?25hdone 2025-06-05T23:17:29.3250528Z 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:17:29.3251306Z Collecting flatbuffers (from executorch==0.7.0a0+bd57234) 2025-06-05T23:17:29.3252592Z 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:17:29.3253873Z Downloading flatbuffers-25.2.10-py2.py3-none-any.whl.metadata (875 bytes) 2025-06-05T23:17:30.3356549Z 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:17:30.3358670Z 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:17:30.3360735Z 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:17:30.3362775Z 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:17:30.3364900Z 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:17:30.3367019Z 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:17:30.3369107Z 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:17:30.3370204Z Collecting pytest-xdist (from executorch==0.7.0a0+bd57234) 2025-06-05T23:17:30.3371425Z 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:17:30.3372662Z Downloading pytest_xdist-3.7.0-py3-none-any.whl.metadata (3.0 kB) 2025-06-05T23:17:30.3373188Z Collecting pytest-rerunfailures (from executorch==0.7.0a0+bd57234) 2025-06-05T23:17:30.3374479Z 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:17:30.3375788Z Downloading pytest_rerunfailures-15.1-py3-none-any.whl.metadata (20 kB) 2025-06-05T23:17:30.3376635Z 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:17:30.3377683Z 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:17:30.3378741Z 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:17:30.3379457Z Collecting tabulate (from executorch==0.7.0a0+bd57234) 2025-06-05T23:17:30.3380569Z 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:17:30.3382074Z Downloading tabulate-0.9.0-py3-none-any.whl.metadata (34 kB) 2025-06-05T23:17:30.3382914Z 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:17:30.3383747Z Collecting coremltools==8.3 (from executorch==0.7.0a0+bd57234) 2025-06-05T23:17:30.3384987Z 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:17:30.3386329Z Downloading coremltools-8.3.0-cp310-none-manylinux1_x86_64.whl.metadata (2.6 kB) 2025-06-05T23:17:30.3386939Z Collecting protobuf>=3.1.0 (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:17:30.3388348Z 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:17:30.3389659Z Downloading protobuf-6.31.1-cp39-abi3-manylinux2014_x86_64.whl.metadata (593 bytes) 2025-06-05T23:17:30.3390577Z 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:17:30.3391954Z 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:17:30.3392826Z Collecting cattrs (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:17:30.3393955Z 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:17:30.3395081Z Downloading cattrs-25.1.1-py3-none-any.whl.metadata (8.4 kB) 2025-06-05T23:17:30.3395600Z Collecting pyaml (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:17:30.3396703Z 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:17:30.3397801Z Downloading pyaml-25.5.0-py3-none-any.whl.metadata (12 kB) 2025-06-05T23:17:30.3398686Z 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:17:30.3399923Z 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:17:30.3401109Z 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:17:30.3402360Z 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:17:30.3403754Z 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:17:30.3405072Z 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:17:30.3406274Z 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:17:30.3407415Z 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:17:30.3408659Z 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:17:30.3409414Z Collecting pytest (from executorch==0.7.0a0+bd57234) 2025-06-05T23:17:30.3410508Z 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:17:30.3411625Z Downloading pytest-8.4.0-py3-none-any.whl.metadata (7.7 kB) 2025-06-05T23:17:30.3412451Z 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:17:30.3413305Z Collecting execnet>=2.1 (from pytest-xdist->executorch==0.7.0a0+bd57234) 2025-06-05T23:17:30.3414573Z 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:17:30.3415743Z Downloading execnet-2.1.1-py3-none-any.whl.metadata (2.9 kB) 2025-06-05T23:17:30.3416615Z 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:17:30.3417536Z Downloading coremltools-8.3.0-cp310-none-manylinux1_x86_64.whl (2.3 MB) 2025-06-05T23:17:30.3418423Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:17:30.3419078Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 88.2 MB/s eta 0:00:00 2025-06-05T23:17:30.3419737Z [?25hDownloading protobuf-6.31.1-cp39-abi3-manylinux2014_x86_64.whl (321 kB) 2025-06-05T23:17:30.3420235Z Downloading cattrs-25.1.1-py3-none-any.whl (69 kB) 2025-06-05T23:17:30.3420694Z Downloading flatbuffers-25.2.10-py2.py3-none-any.whl (30 kB) 2025-06-05T23:17:30.3421160Z Downloading pyaml-25.5.0-py3-none-any.whl (26 kB) 2025-06-05T23:17:30.3421594Z Downloading pytest_rerunfailures-15.1-py3-none-any.whl (13 kB) 2025-06-05T23:17:30.3422044Z Downloading pytest-8.4.0-py3-none-any.whl (363 kB) 2025-06-05T23:17:30.3422443Z Downloading pytest_xdist-3.7.0-py3-none-any.whl (46 kB) 2025-06-05T23:17:30.3422853Z Downloading execnet-2.1.1-py3-none-any.whl (40 kB) 2025-06-05T23:17:30.3423241Z Downloading tabulate-0.9.0-py3-none-any.whl (35 kB) 2025-06-05T23:17:30.3423633Z Building wheels for collected packages: executorch 2025-06-05T23:17:30.3424062Z Running command Building wheel for executorch (pyproject.toml) 2025-06-05T23:17:30.3425062Z /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:17:30.3425940Z !! 2025-06-05T23:17:30.3426046Z 2025-06-05T23:17:30.3426165Z ******************************************************************************** 2025-06-05T23:17:32.0024724Z 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:17:32.0025678Z 2025-06-05T23:17:32.0026038Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-06-05T23:17:32.0026519Z or your builds will no longer be supported. 2025-06-05T23:17:32.0026808Z 2025-06-05T23:17:32.0027219Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:17:32.0027842Z ******************************************************************************** 2025-06-05T23:17:32.0028131Z 2025-06-05T23:17:32.0028244Z !! 2025-06-05T23:17:32.0028535Z corresp(dist, value, root_dir) 2025-06-05T23:17:32.0029473Z /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:17:32.0030641Z !! 2025-06-05T23:17:32.0030808Z 2025-06-05T23:17:32.0030979Z ******************************************************************************** 2025-06-05T23:17:32.0031555Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:17:32.0032076Z 2025-06-05T23:17:32.0032266Z License :: OSI Approved :: BSD License 2025-06-05T23:17:32.0032536Z 2025-06-05T23:17:32.0032897Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:17:32.0033500Z ******************************************************************************** 2025-06-05T23:17:32.0033744Z 2025-06-05T23:17:32.0033819Z !! 2025-06-05T23:17:32.0034026Z dist._finalize_license_expression() 2025-06-05T23:17:32.0034788Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:17:32.0035679Z !! 2025-06-05T23:17:32.0035783Z 2025-06-05T23:17:32.0035898Z ******************************************************************************** 2025-06-05T23:17:32.0036431Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:17:32.0036836Z 2025-06-05T23:17:32.0036955Z License :: OSI Approved :: BSD License 2025-06-05T23:17:32.0037186Z 2025-06-05T23:17:32.0037527Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:17:32.0038098Z ******************************************************************************** 2025-06-05T23:17:32.0038327Z 2025-06-05T23:17:32.0038405Z !! 2025-06-05T23:17:32.0038623Z self._finalize_license_expression() 2025-06-05T23:17:32.0038918Z running bdist_wheel 2025-06-05T23:17:32.0039156Z running build 2025-06-05T23:17:32.0039382Z command options for 'CustomBuild': 2025-06-05T23:17:32.0039687Z build_base = pip-out 2025-06-05T23:17:32.0039936Z build_purelib = pip-out/lib 2025-06-05T23:17:32.0040268Z build_platlib = pip-out/lib.linux-x86_64-cpython-310 2025-06-05T23:17:32.0040663Z build_lib = pip-out/lib.linux-x86_64-cpython-310 2025-06-05T23:17:32.0041007Z build_scripts = pip-out/scripts-3.10 2025-06-05T23:17:32.0041360Z build_temp = pip-out/temp.linux-x86_64-cpython-310 2025-06-05T23:17:32.0041694Z plat_name = linux-x86_64 2025-06-05T23:17:32.0041955Z compiler = None 2025-06-05T23:17:32.0042173Z parallel = None 2025-06-05T23:17:32.0042394Z debug = None 2025-06-05T23:17:32.0042594Z force = None 2025-06-05T23:17:32.0042853Z executable = /opt/conda/envs/py_3.10/bin/python 2025-06-05T23:17:32.0043426Z creating /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:17:32.0044041Z clearing /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:17:32.0044502Z Preset CMake variables: 2025-06-05T23:17:32.0044672Z 2025-06-05T23:17:32.0044779Z CMAKE_OSX_DEPLOYMENT_TARGET="12.0" 2025-06-05T23:17:32.0045259Z EXECUTORCH_BUILD_PRESET_FILE="/pytorch/executorch/tools/cmake/preset/pybind.cmake" 2025-06-05T23:17:32.0045637Z 2025-06-05T23:17:32.0045772Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:17:32.0046160Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:17:32.0046500Z -- Detecting C compiler ABI info 2025-06-05T23:17:32.0046811Z -- Detecting C compiler ABI info - done 2025-06-05T23:17:32.0047208Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:17:32.0047578Z -- Detecting C compile features 2025-06-05T23:17:32.0047879Z -- Detecting C compile features - done 2025-06-05T23:17:32.0048184Z -- Detecting CXX compiler ABI info 2025-06-05T23:17:32.0048497Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:17:32.0048881Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:17:32.0049365Z -- Detecting CXX compile features 2025-06-05T23:17:32.0049666Z -- Detecting CXX compile features - done 2025-06-05T23:17:32.0050126Z -- Loading build preset: /pytorch/executorch/tools/cmake/preset/pybind.cmake 2025-06-05T23:17:32.0050584Z -- --- Configured Options --- 2025-06-05T23:17:32.0050767Z 2025-06-05T23:17:32.0050885Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:17:32.0051245Z -- CMAKE_SYSTEM_PROCESSOR : x86_64 2025-06-05T23:17:32.0051595Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:17:32.0052021Z -- PYTHON_EXECUTABLE : /opt/conda/envs/py_3.10/bin/python 2025-06-05T23:17:32.0052443Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-06-05T23:17:32.0052804Z -- CMAKE_TOOLCHAIN_FILE x (unset) 2025-06-05T23:17:32.0053144Z -- BUCK2 : 2025-06-05T23:17:32.0053624Z -- EXECUTORCH_BUILD_PRESET_FILE : /pytorch/executorch/tools/cmake/preset/pybind.cmake 2025-06-05T23:17:32.0054255Z -- EXECUTORCH_ENABLE_LOGGING : ON 2025-06-05T23:17:32.0054597Z -- EXECUTORCH_BUILD_COREML : ON 2025-06-05T23:17:32.0054960Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:17:32.0055324Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-06-05T23:17:32.0055866Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-06-05T23:17:32.0056410Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:17:32.0056767Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:17:32.0057136Z -- EXECUTORCH_ENABLE_EVENT_TRACER : OFF 2025-06-05T23:17:32.0057480Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-06-05T23:17:32.0057837Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-06-05T23:17:32.0058183Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : ON 2025-06-05T23:17:32.0058539Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : ON 2025-06-05T23:17:32.0058896Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : ON 2025-06-05T23:17:32.0059267Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : OFF 2025-06-05T23:17:32.0059629Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : ON 2025-06-05T23:17:32.0059980Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:17:32.0060339Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : OFF 2025-06-05T23:17:32.0060686Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : ON 2025-06-05T23:17:32.0061045Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : ON 2025-06-05T23:17:32.0061392Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : OFF 2025-06-05T23:17:32.0061755Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:17:32.0062109Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:17:32.0062444Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:17:32.0062797Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:17:32.0063134Z -- EXECUTORCH_BUILD_PYBIND : ON 2025-06-05T23:17:32.0063489Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:17:32.0063830Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : OFF 2025-06-05T23:17:32.0064195Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : ON 2025-06-05T23:17:32.0064544Z -- EXECUTORCH_BUILD_DEVTOOLS : OFF 2025-06-05T23:17:32.0064900Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:17:32.0065246Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:17:32.0065588Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:17:32.0065942Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:17:32.0066281Z -- EXECUTORCH_BUILD_XNNPACK : ON 2025-06-05T23:17:32.0066632Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:17:32.0066973Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:17:32.0067319Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:17:32.0067650Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:17:32.0068077Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:17:32.0068431Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:17:32.0068779Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:17:32.0069149Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-06-05T23:17:32.0069494Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-06-05T23:17:32.0069854Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:17:32.0070212Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:17:32.0070577Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:17:32.0070943Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:17:32.0071265Z -- -------------------------- 2025-06-05T23:17:32.0071694Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:17:32.0072368Z CMake Deprecation Warning at third-party/pybind11/CMakeLists.txt:13 (cmake_minimum_required): 2025-06-05T23:17:32.0073078Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:17:32.0073482Z CMake. 2025-06-05T23:17:32.0073606Z 2025-06-05T23:17:32.0073823Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:17:32.0074377Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:17:32.0074846Z to work with policies introduced by or earlier. 2025-06-05T23:17:32.0075098Z 2025-06-05T23:17:32.0075113Z 2025-06-05T23:17:32.0075202Z -- pybind11 v2.13.6 2025-06-05T23:17:32.0075747Z -- Found PythonInterp: /opt/conda/envs/py_3.10/bin/python (found suitable version "3.10.16", minimum required is "3.7") 2025-06-05T23:17:32.0076454Z -- Found PythonLibs: /opt/conda/envs/py_3.10/lib/libpython3.10.so 2025-06-05T23:17:32.0076865Z -- Performing Test HAS_FLTO_THIN 2025-06-05T23:17:32.0077169Z -- Performing Test HAS_FLTO_THIN - Success 2025-06-05T23:17:32.0077699Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:17:32.0078318Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:17:32.0078729Z CMake. 2025-06-05T23:17:32.0078840Z 2025-06-05T23:17:32.0079054Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:17:32.0079597Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:17:32.0080073Z to work with policies introduced by or earlier. 2025-06-05T23:17:32.0080323Z 2025-06-05T23:17:32.0080327Z 2025-06-05T23:17:32.0080491Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:17:32.0080937Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:17:32.0081315Z -- Setting Clang compiler options 2025-06-05T23:17:32.0082011Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:17:32.0082980Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:17:32.0083772Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:17:32.0084186Z CMake. 2025-06-05T23:17:32.0084300Z 2025-06-05T23:17:32.0084516Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:17:32.0085063Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:17:32.0085527Z to work with policies introduced by or earlier. 2025-06-05T23:17:32.0085788Z 2025-06-05T23:17:32.0085793Z 2025-06-05T23:17:45.8669829Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:17:45.8671146Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:17:45.8671950Z CMake. 2025-06-05T23:17:45.8672366Z 2025-06-05T23:17:45.8672618Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:17:45.8673161Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:17:45.8673644Z to work with policies introduced by or earlier. 2025-06-05T23:17:45.8673897Z 2025-06-05T23:17:45.8673901Z 2025-06-05T23:17:45.8674030Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-05T23:17:45.8674409Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-06-05T23:17:45.8674767Z -- Found Threads: TRUE 2025-06-05T23:17:45.8675328Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:17:45.8676066Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:17:45.8676462Z CMake. 2025-06-05T23:17:45.8676585Z 2025-06-05T23:17:45.8676803Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:17:45.8677435Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:17:45.8678191Z to work with policies introduced by or earlier. 2025-06-05T23:17:45.8678668Z 2025-06-05T23:17:45.8678676Z 2025-06-05T23:17:45.8678868Z -- Resolved buck2 as buck2. 2025-06-05T23:17:45.8679338Z -- Killing buck2 daemon 2025-06-05T23:17:45.8679767Z 'buck2 killall' 2025-06-05T23:17:45.8680176Z -- executorch: Generating source lists 2025-06-05T23:17:45.8681464Z -- executorch: Generating source file list /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/executorch_srcs.cmake 2025-06-05T23:17:45.8683483Z -- executorch: Using sources file /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/executorch_srcs.cmake 2025-06-05T23:17:45.8685365Z '/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:17:45.8686668Z -- Generating operator lib: 2025-06-05T23:17:45.8687214Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:17:45.8687981Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:17:45.8688766Z -- ROOT_OPS: 2025-06-05T23:17:45.8689174Z -- INCLUDE_ALL_OPS: 2025-06-05T23:17:45.8691900Z 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:17:45.8694292Z -- Generating kernel bindings: 2025-06-05T23:17:45.8694801Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:17:45.8695560Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:17:45.8696363Z -- CUSTOM_OPS_YAML: 2025-06-05T23:17:45.8696851Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:17:45.8700667Z 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:17:45.8704346Z -- Generating operator lib: 2025-06-05T23:17:45.8704870Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:17:45.8705408Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:17:45.8705942Z -- DEPS: executorch_core 2025-06-05T23:17:45.8706440Z -- Generating operator lib: 2025-06-05T23:17:45.8706911Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:17:45.8707643Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:17:45.8708395Z -- ROOT_OPS: 2025-06-05T23:17:45.8708765Z -- INCLUDE_ALL_OPS: 2025-06-05T23:17:45.8711031Z 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:17:45.8713376Z -- Generating kernel bindings: 2025-06-05T23:17:45.8713686Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:17:45.8714102Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:17:45.8714538Z -- CUSTOM_OPS_YAML: 2025-06-05T23:17:45.8714802Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:17:45.8716720Z 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:17:45.8718659Z -- Generating operator lib: 2025-06-05T23:17:45.8719061Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:17:45.8719350Z -- KERNEL_LIBS: optimized_kernels 2025-06-05T23:17:45.8719655Z -- DEPS: executorch_core 2025-06-05T23:17:45.8719918Z -- Merging kernel yaml files: 2025-06-05T23:17:45.8720407Z -- FUNCTIONS_YAML: /pytorch/executorch/configurations/../kernels/optimized/optimized.yaml 2025-06-05T23:17:45.8721553Z -- FALLBACK_YAML: /pytorch/executorch/configurations/../kernels/portable/functions.yaml 2025-06-05T23:17:45.8722860Z -- OUTPUT_DIR: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations 2025-06-05T23:17:45.8723893Z -- Generating operator lib: 2025-06-05T23:17:45.8724427Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:17:45.8725547Z -- OPS_SCHEMA_YAML: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/merged.yaml 2025-06-05T23:17:45.8726589Z -- ROOT_OPS: 2025-06-05T23:17:45.8726957Z -- INCLUDE_ALL_OPS: 2025-06-05T23:17:45.8729110Z 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:17:45.8730672Z -- Generating kernel bindings: 2025-06-05T23:17:45.8730985Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:17:45.8731591Z -- FUNCTIONS_YAML: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/merged.yaml 2025-06-05T23:17:45.8732192Z -- CUSTOM_OPS_YAML: 2025-06-05T23:17:45.8732440Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:17:45.8734448Z 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:17:45.8736906Z -- Generating operator lib: 2025-06-05T23:17:45.8737446Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:17:45.8738152Z -- KERNEL_LIBS: optimized_kernels;optimized_portable_kernels 2025-06-05T23:17:45.8738829Z -- DEPS: executorch_core 2025-06-05T23:17:45.8739743Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:17:45.8740963Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:17:45.8741724Z CMake. 2025-06-05T23:17:45.8741927Z 2025-06-05T23:17:45.8742339Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:17:45.8743350Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:17:45.8744413Z to work with policies introduced by or earlier. 2025-06-05T23:17:45.8744899Z 2025-06-05T23:17:45.8744908Z 2025-06-05T23:17:45.8745095Z -- Looking for C++ include unistd.h 2025-06-05T23:17:45.8745696Z -- Looking for C++ include unistd.h - found 2025-06-05T23:17:45.8746320Z -- Looking for C++ include stdint.h 2025-06-05T23:17:45.8746902Z -- Looking for C++ include stdint.h - found 2025-06-05T23:17:45.8747517Z -- Looking for C++ include inttypes.h 2025-06-05T23:17:45.8748118Z -- Looking for C++ include inttypes.h - found 2025-06-05T23:17:45.8748742Z -- Looking for C++ include sys/types.h 2025-06-05T23:17:45.8749322Z -- Looking for C++ include sys/types.h - found 2025-06-05T23:17:45.8749864Z -- Looking for C++ include sys/stat.h 2025-06-05T23:17:45.8750397Z -- Looking for C++ include sys/stat.h - found 2025-06-05T23:17:45.8750975Z -- Looking for C++ include fnmatch.h 2025-06-05T23:17:45.8751533Z -- Looking for C++ include fnmatch.h - found 2025-06-05T23:17:45.8752213Z -- Looking for C++ include stddef.h 2025-06-05T23:17:45.8752783Z -- Looking for C++ include stddef.h - found 2025-06-05T23:17:45.8753369Z -- Check size of uint32_t 2025-06-05T23:17:45.8753849Z -- Check size of uint32_t - done 2025-06-05T23:17:45.8754317Z -- Looking for strtoll 2025-06-05T23:17:45.8754759Z -- Looking for strtoll - found 2025-06-05T23:17:45.8755464Z -- The ASM compiler identification is Clang with GNU-like command-line 2025-06-05T23:17:45.8756291Z -- Found assembler: /opt/cache/bin/cc 2025-06-05T23:17:45.8756836Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-06-05T23:17:45.8757760Z -- Found Python: /opt/conda/envs/py_3.10/bin/python3.10 (found version "3.10.16") found components: Interpreter 2025-06-05T23:17:45.8758609Z -- Generating microkernels.cmake 2025-06-05T23:17:45.8759138Z No microkernel found in src/reference/binary-elementwise.cc 2025-06-05T23:17:45.8759738Z No microkernel found in src/reference/packing.cc 2025-06-05T23:17:45.8760381Z No microkernel found in src/reference/unary-elementwise.cc 2025-06-05T23:17:45.8761559Z '/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:17:45.8762271Z -- MKL_ARCH: None, set to ` intel64` by default 2025-06-05T23:17:45.8762603Z -- MKL_ROOT /opt/conda/envs/py_3.10 2025-06-05T23:17:45.8762930Z -- MKL_LINK: None, set to ` dynamic` by default 2025-06-05T23:17:45.8763387Z -- MKL_INTERFACE_FULL: None, set to ` intel_ilp64` by default 2025-06-05T23:17:45.8763822Z -- MKL_THREADING: None, set to ` intel_thread` by default 2025-06-05T23:17:45.8764197Z -- MKL_MPI: None, set to ` intelmpi` by default 2025-06-05T23:17:45.8764975Z 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:17:45.8765665Z static library kineto_LIBRARY-NOTFOUND not found. 2025-06-05T23:17:45.8766057Z Call Stack (most recent call first): 2025-06-05T23:17:45.8766797Z /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:17:45.8767508Z tools/cmake/Utils.cmake:267 (find_package) 2025-06-05T23:17:45.8767977Z CMakeLists.txt:610 (find_package_torch) 2025-06-05T23:17:45.8768291Z 2025-06-05T23:17:45.8768299Z 2025-06-05T23:17:46.6043927Z -- Found Torch: /opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/lib/libtorch.so 2025-06-05T23:17:46.6045845Z -- 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:17:46.6047427Z -- Generating operator lib: 2025-06-05T23:17:46.6047729Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:17:46.6048230Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:17:46.6048802Z -- ROOT_OPS: 2025-06-05T23:17:46.6049109Z -- INCLUDE_ALL_OPS: 2025-06-05T23:17:46.6051568Z 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:17:46.6053298Z -- Generating kernel bindings: 2025-06-05T23:17:46.6053587Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:17:46.6053877Z -- FUNCTIONS_YAML: 2025-06-05T23:17:46.6054310Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:17:46.6054746Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:17:46.6060339Z 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:17:46.6066346Z -- Generating operator lib: 2025-06-05T23:17:46.6066856Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:17:46.6067339Z -- OPS_SCHEMA_YAML: 2025-06-05T23:17:46.6070864Z -- 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:17:46.6074540Z -- INCLUDE_ALL_OPS: 2025-06-05T23:17:46.6081400Z 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:17:46.6087810Z -- Generating kernel bindings: 2025-06-05T23:17:46.6088300Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:17:46.6088809Z -- FUNCTIONS_YAML: 2025-06-05T23:17:46.6089435Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:17:46.6090197Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:17:46.6090841Z -- Generating custom ops aot lib: 2025-06-05T23:17:46.6091615Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:17:46.6092511Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/embeddingxb.cpp 2025-06-05T23:17:46.6093874Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_add.cpp 2025-06-05T23:17:46.6095284Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_choose_qparams.cpp 2025-06-05T23:17:46.6097500Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_dequantize.cpp 2025-06-05T23:17:46.6098856Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding.cpp 2025-06-05T23:17:46.6100276Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding2b.cpp 2025-06-05T23:17:46.6101670Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding4b.cpp 2025-06-05T23:17:46.6103157Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_mixed_linear.cpp 2025-06-05T23:17:46.6104138Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_mixed_mm.cpp 2025-06-05T23:17:46.6104988Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_quantize.cpp 2025-06-05T23:17:46.6105932Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/portable/cpu/util/reduce_util.cpp 2025-06-05T23:17:46.6106766Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../runtime/core/exec_aten/util/tensor_util_aten.cpp 2025-06-05T23:17:46.6107478Z -- Generating operator lib: 2025-06-05T23:17:46.6107767Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:17:46.6108257Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:17:46.6108944Z -- ROOT_OPS: 2025-06-05T23:17:46.6109289Z -- INCLUDE_ALL_OPS: 2025-06-05T23:17:46.6111339Z 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:17:46.6113712Z -- Generating kernel bindings: 2025-06-05T23:17:46.6114255Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:17:46.6114795Z -- FUNCTIONS_YAML: 2025-06-05T23:17:46.6115524Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:17:46.6117156Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:17:46.6117688Z -- Generating operator lib: 2025-06-05T23:17:46.6118177Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:17:46.6118773Z -- KERNEL_LIBS: quantized_pybind_kernels_lib 2025-06-05T23:17:46.6119353Z -- DEPS: portable_lib 2025-06-05T23:17:46.6119777Z -- Generating operator lib: 2025-06-05T23:17:46.6120255Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:17:46.6120739Z -- KERNEL_LIBS: quantized_kernels 2025-06-05T23:17:46.6121234Z -- DEPS: executorch_core 2025-06-05T23:17:46.6121714Z -- Configuring done (15.3s) 2025-06-05T23:17:46.6122165Z -- Generating done (0.4s) 2025-06-05T23:17:46.6123063Z -- Build files have been written to: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:17:46.6125429Z 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:17:46.6127441Z [ 0%] Creating directories for 'flatcc_external_project' 2025-06-05T23:17:46.6128261Z [ 0%] Creating directories for 'flatbuffers_external_project' 2025-06-05T23:17:46.6129351Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-06-05T23:17:46.6130868Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-06-05T23:17:46.6132386Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-06-05T23:17:46.6133783Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-06-05T23:17:46.6135777Z [ 0%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/single.cpp.o 2025-06-05T23:17:46.6137012Z [ 0%] No download step for 'flatcc_external_project' 2025-06-05T23:17:46.6137700Z [ 0%] No download step for 'flatbuffers_external_project' 2025-06-05T23:17:46.6138386Z [ 0%] No update step for 'flatcc_external_project' 2025-06-05T23:17:46.6139052Z [ 0%] No update step for 'flatbuffers_external_project' 2025-06-05T23:17:46.6139734Z [ 0%] No patch step for 'flatbuffers_external_project' 2025-06-05T23:17:46.6140404Z [ 0%] No patch step for 'flatcc_external_project' 2025-06-05T23:17:46.6141139Z [ 1%] Performing configure step for 'flatbuffers_external_project' 2025-06-05T23:17:46.6141956Z [ 1%] Performing configure step for 'flatcc_external_project' 2025-06-05T23:17:46.6142565Z CMake Warning: 2025-06-05T23:17:46.6143062Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:17:46.6143521Z 2025-06-05T23:17:46.6143528Z 2025-06-05T23:17:46.6143674Z CMake Warning: 2025-06-05T23:17:46.6144317Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:17:46.6144829Z 2025-06-05T23:17:46.6144835Z 2025-06-05T23:17:46.6145229Z CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:17:46.6146238Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:17:46.6146983Z CMake. 2025-06-05T23:17:46.6147192Z 2025-06-05T23:17:46.6147600Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:17:46.6148576Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:17:46.6149447Z to work with policies introduced by or earlier. 2025-06-05T23:17:46.6149904Z 2025-06-05T23:17:46.6149910Z 2025-06-05T23:17:46.6150114Z -- Proceeding with version: 24.3.25.0 2025-06-05T23:17:46.6151064Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-06-05T23:17:46.6152630Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-06-05T23:17:47.5774157Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/double.cpp.o 2025-06-05T23:17:47.5775830Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_single.cpp.o 2025-06-05T23:17:47.5776930Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:17:47.5777544Z -- Detecting C compiler ABI info 2025-06-05T23:17:47.5778562Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-06-05T23:17:47.5779745Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:17:47.5780399Z -- Detecting CXX compiler ABI info 2025-06-05T23:17:47.5781411Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o 2025-06-05T23:17:47.5782930Z [ 2%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-06-05T23:17:47.5784135Z -- Detecting C compiler ABI info - done 2025-06-05T23:17:47.5784841Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:17:47.5785563Z -- Detecting C compile features 2025-06-05T23:17:47.5786125Z -- Detecting C compile features - done 2025-06-05T23:17:47.5786823Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:17:47.5787661Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:17:47.5788344Z -- Setting Clang compiler options 2025-06-05T23:17:47.5789615Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:17:47.5791076Z -- Configuring done (0.3s) 2025-06-05T23:17:47.5791579Z -- Generating done (0.0s) 2025-06-05T23:17:47.5792517Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o 2025-06-05T23:17:47.5794563Z -- 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:17:47.5796956Z [ 2%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o 2025-06-05T23:17:47.5798043Z [ 2%] Performing build step for 'flatcc_external_project' 2025-06-05T23:17:47.5798881Z [ 3%] Building C object src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:17:47.5799796Z [ 6%] Building C object src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:17:47.5800909Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o 2025-06-05T23:17:47.5802343Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o 2025-06-05T23:17:47.5803838Z [ 2%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_double.cpp.o 2025-06-05T23:17:47.5805164Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:17:47.5805773Z [ 2%] Linking C static library libpthreadpool.a 2025-06-05T23:17:47.5806833Z [ 2%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/xerbla.cpp.o 2025-06-05T23:17:47.5807965Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:17:47.5808640Z -- Detecting CXX compile features 2025-06-05T23:17:47.5809191Z -- Detecting CXX compile features - done 2025-06-05T23:17:47.5809735Z [ 9%] Building C object src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:17:47.5810143Z [ 2%] Built target pthreadpool 2025-06-05T23:17:47.5810695Z [ 2%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotm.c.o 2025-06-05T23:17:47.5811576Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o 2025-06-05T23:17:47.5812120Z -- Looking for strtof_l 2025-06-05T23:17:47.5812653Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o 2025-06-05T23:17:47.5813417Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o 2025-06-05T23:17:47.5814067Z [ 12%] Building C object src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:17:47.5814728Z [ 2%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotmg.c.o 2025-06-05T23:17:47.5815536Z [ 2%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotm.c.o 2025-06-05T23:17:47.5816605Z [ 2%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotmg.c.o 2025-06-05T23:17:47.5818045Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o 2025-06-05T23:17:47.5819306Z [ 15%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:17:47.5820344Z [ 18%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:17:47.5821608Z [ 2%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/lsame.c.o 2025-06-05T23:17:47.5822920Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:17:47.5823527Z -- Looking for strtof_l - found 2025-06-05T23:17:47.5823825Z -- Looking for strtoull_l 2025-06-05T23:17:47.5824390Z [ 2%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-06-05T23:17:47.5825453Z [ 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:17:47.5826380Z [ 21%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:17:47.5827140Z [ 2%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-06-05T23:17:47.5828100Z [ 2%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dspmv.c.o 2025-06-05T23:17:47.5828643Z [ 21%] Built target flatccrt 2025-06-05T23:17:47.5829103Z [ 24%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/str_set.c.o 2025-06-05T23:17:47.5829882Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:17:47.5830796Z [ 2%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-06-05T23:17:47.5831651Z [ 2%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ssbmv.c.o 2025-06-05T23:17:47.5832197Z [ 2%] Built target indirection 2025-06-05T23:17:47.5832728Z [ 2%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chbmv.c.o 2025-06-05T23:17:47.5833592Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o 2025-06-05T23:17:47.5834345Z [ 27%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/ptr_set.c.o 2025-06-05T23:17:47.5835009Z [ 30%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/symbol_table.c.o 2025-06-05T23:17:47.5835725Z [ 2%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/sspmv.c.o 2025-06-05T23:17:47.5836585Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-06-05T23:17:47.5837195Z -- Looking for strtoull_l - found 2025-06-05T23:17:47.5837497Z -- Looking for realpath 2025-06-05T23:17:47.5838199Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9x-minmax-f16c-c8.c.o 2025-06-05T23:17:47.5839227Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:17:47.5839980Z [ 33%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/scope_table.c.o 2025-06-05T23:17:47.5840690Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhbmv.c.o 2025-06-05T23:17:47.5841508Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-06-05T23:17:47.5842227Z [ 36%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/name_table.c.o 2025-06-05T23:17:47.5842962Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-06-05T23:17:47.5843919Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-06-05T23:17:47.5844745Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chpmv.c.o 2025-06-05T23:17:47.5845793Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-fma3-acc2.c.o 2025-06-05T23:17:47.5846752Z [ 39%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/schema_table.c.o 2025-06-05T23:17:47.5847486Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-06-05T23:17:47.5848219Z [ 42%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/value_set.c.o 2025-06-05T23:17:47.5848899Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-06-05T23:17:47.5849900Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dsbmv.c.o 2025-06-05T23:17:47.5850454Z -- Looking for realpath - found 2025-06-05T23:17:47.5850905Z -- CMAKE_CXX_FLAGS: "-DFLATBUFFERS_MAX_ALIGNMENT=1024" 2025-06-05T23:17:47.5851456Z -- Configuring done (1.0s) 2025-06-05T23:17:47.5852044Z -- Generating done (0.0s) 2025-06-05T23:17:47.5853513Z -- 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:17:47.5855227Z [ 6%] Performing build step for 'flatbuffers_external_project' 2025-06-05T23:17:47.5856291Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhpmv.c.o 2025-06-05T23:17:47.5858066Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-fma3.c.o 2025-06-05T23:17:47.5859449Z [ 6%] Built target logging 2025-06-05T23:17:48.6168528Z [ 2%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o 2025-06-05T23:17:48.6169557Z [ 45%] Building C object src/compiler/CMakeFiles/flatcc.dir/fileio.c.o 2025-06-05T23:17:48.6171548Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-06-05T23:17:48.6172898Z [ 5%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o 2025-06-05T23:17:48.6173846Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o 2025-06-05T23:17:48.6175124Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dtbmv.c.o 2025-06-05T23:17:48.6176406Z [ 48%] Building C object src/compiler/CMakeFiles/flatcc.dir/parser.c.o 2025-06-05T23:17:48.6177741Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-06-05T23:17:48.6179377Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/stbmv.c.o 2025-06-05T23:17:48.6180497Z [ 6%] Linking C static library libcpuinfo.a 2025-06-05T23:17:48.6181327Z [ 51%] Building C object src/compiler/CMakeFiles/flatcc.dir/semantics.c.o 2025-06-05T23:17:48.6183061Z [ 6%] 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:17:48.6184577Z [ 6%] Built target cpuinfo 2025-06-05T23:17:48.6186020Z [ 6%] 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:17:48.6188011Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ctbmv.c.o 2025-06-05T23:17:48.6189577Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ztbmv.c.o 2025-06-05T23:17:48.6191515Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-06-05T23:17:48.6192980Z [ 54%] Building C object src/compiler/CMakeFiles/flatcc.dir/coerce.c.o 2025-06-05T23:17:48.6193901Z [ 10%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o 2025-06-05T23:17:48.6195525Z [ 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:17:48.6197591Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/complexdots.c.o 2025-06-05T23:17:48.6198741Z [ 6%] Built target microparams-init 2025-06-05T23:17:48.6199887Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-06-05T23:17:48.6201258Z [ 57%] Building C object src/compiler/CMakeFiles/flatcc.dir/flatcc.c.o 2025-06-05T23:17:48.6202238Z [ 60%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c.c.o 2025-06-05T23:17:48.6203099Z [ 6%] Linking CXX static library libeigen_blas.a 2025-06-05T23:17:48.6204107Z [ 63%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_reader.c.o 2025-06-05T23:17:48.6205892Z [ 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:17:48.6207589Z [ 6%] Built target normalization 2025-06-05T23:17:48.6208855Z [ 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:17:48.6211199Z [ 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:17:48.6212799Z [ 13%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_binary.cpp.o 2025-06-05T23:17:48.6213568Z [ 6%] Built target eigen_blas 2025-06-05T23:17:48.6214672Z [ 6%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-06-05T23:17:48.6216362Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-06-05T23:17:48.6217727Z [ 66%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sort.c.o 2025-06-05T23:17:48.6219033Z [ 69%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_builder.c.o 2025-06-05T23:17:48.6220809Z [ 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:17:48.6222563Z [ 72%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_verifier.c.o 2025-06-05T23:17:48.6223468Z [ 7%] Built target allocator 2025-06-05T23:17:48.6224255Z [ 75%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sorter.c.o 2025-06-05T23:17:48.6225111Z [ 7%] Built target packing 2025-06-05T23:17:48.6225821Z [ 15%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o 2025-06-05T23:17:48.6226999Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-06-05T23:17:48.6228210Z [ 18%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_csharp.cpp.o 2025-06-05T23:17:48.6232312Z [ 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:17:48.6235300Z [ 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:17:48.6237087Z [ 78%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_parser.c.o 2025-06-05T23:17:48.6238402Z [ 21%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o 2025-06-05T23:17:48.6239382Z [ 7%] Built target cache 2025-06-05T23:17:48.6241025Z [ 81%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_printer.c.o 2025-06-05T23:17:48.6242239Z [ 84%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/builder.c.o 2025-06-05T23:17:48.6244564Z [ 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:17:48.6247014Z [ 87%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/emitter.c.o 2025-06-05T23:17:48.6249168Z [ 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:17:48.6252129Z [ 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:17:48.6254114Z [ 90%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/refmap.c.o 2025-06-05T23:17:48.6255384Z [ 23%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin.cpp.o 2025-06-05T23:17:48.6257424Z [ 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:17:48.6259614Z [ 26%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin_kmp.cpp.o 2025-06-05T23:17:48.6260832Z [ 28%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o 2025-06-05T23:17:48.6262192Z [ 93%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatcc.a 2025-06-05T23:17:48.6264262Z [ 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:17:48.6265987Z [ 93%] Built target flatcc 2025-06-05T23:17:48.6266701Z [ 96%] Building C object src/cli/CMakeFiles/flatcc_cli.dir/flatcc_cli.c.o 2025-06-05T23:17:48.6268749Z [ 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:17:48.6271505Z [ 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:17:48.6273501Z [100%] Linking C executable /pytorch/executorch/third-party/flatcc/bin/flatcc 2025-06-05T23:17:48.6275781Z [ 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:17:48.6278368Z [ 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:17:48.6281043Z [ 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:17:48.6283734Z [ 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:17:48.6285456Z [100%] Built target flatcc_cli 2025-06-05T23:17:48.6288794Z [ 31%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_java.cpp.o 2025-06-05T23:17:48.6298379Z [ 7%] Performing install step for 'flatcc_external_project' 2025-06-05T23:17:48.6300578Z [ 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:17:48.6302417Z [ 21%] Built target flatccrt 2025-06-05T23:17:48.6303458Z [ 93%] Built target flatcc 2025-06-05T23:17:48.6304106Z [100%] Built target flatcc_cli 2025-06-05T23:17:48.6304779Z Install the project... 2025-06-05T23:17:48.6305646Z -- Install configuration: "" 2025-06-05T23:17:48.6307199Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc 2025-06-05T23:17:48.6310460Z -- 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:17:48.6313640Z -- 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:17:48.6317354Z -- 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:17:48.6321009Z -- 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:17:48.6324243Z -- 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:17:48.6327528Z -- 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:17:48.6331017Z -- 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:17:48.6334397Z -- 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:17:48.6338245Z -- 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:17:48.6341298Z -- 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:17:48.6343722Z -- 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:17:48.6346152Z -- 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:17:48.6348637Z -- 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:17:48.6351289Z -- 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:17:48.6353751Z -- 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:17:48.6356197Z -- 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:17:48.6358646Z -- 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:17:48.6361346Z -- 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:17:48.6363889Z -- 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:17:48.6366362Z -- 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:17:48.6368802Z -- 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:17:48.6371039Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable 2025-06-05T23:17:48.6373279Z -- 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:17:48.6375685Z -- 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:17:48.6378168Z -- 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:17:48.6380715Z -- 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:17:48.6383287Z -- 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:17:48.6385778Z -- 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:17:48.6388286Z -- 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:17:48.6390799Z -- 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:17:48.6393222Z -- 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:17:48.6394959Z -- 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:17:48.6397452Z -- 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:17:48.6400152Z -- 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:17:48.6402856Z -- 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:17:48.6405829Z -- 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:17:48.6408472Z -- 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:17:48.6411035Z -- 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:17:48.6413439Z -- 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:17:48.6415856Z -- 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:17:48.6418349Z -- 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:17:48.6420743Z -- 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:17:48.6423361Z -- 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:17:48.6425885Z -- 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:17:48.6428426Z -- 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:17:48.6430978Z -- 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:17:48.6433376Z -- 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:17:48.6435908Z -- 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:17:48.6438426Z -- 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:17:48.6440868Z -- 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:17:48.6443516Z -- 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:17:48.6445992Z -- 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:17:48.6448630Z -- 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:17:48.6451118Z -- 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:17:48.6453601Z -- 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:17:49.4018178Z -- 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:17:49.4020557Z -- 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:17:49.4023239Z -- 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:17:49.4025538Z -- 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:17:49.4027682Z -- 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:17:49.4029830Z -- 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:17:49.4031922Z -- 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:17:49.4034341Z -- 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:17:49.4036662Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection 2025-06-05T23:17:49.4038888Z -- 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:17:49.4041244Z -- 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:17:49.4042731Z -- 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:17:49.4044217Z -- 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:17:49.4045578Z -- 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:17:49.4046934Z -- 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:17:49.4048166Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/support 2025-06-05T23:17:49.4049693Z -- 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:17:49.4051836Z -- 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:17:49.4054132Z -- 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:17:49.4056621Z -- 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:17:49.4058869Z -- 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:17:49.4061097Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/lib/libflatccrt.a 2025-06-05T23:17:49.4063122Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/lib/libflatcc.a 2025-06-05T23:17:49.4065122Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/bin/flatcc 2025-06-05T23:17:49.4066546Z [ 34%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_ts.cpp.o 2025-06-05T23:17:49.4067451Z [ 7%] Completed 'flatcc_external_project' 2025-06-05T23:17:49.4068191Z [ 36%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o 2025-06-05T23:17:49.4068965Z [ 7%] Built target flatcc_external_project 2025-06-05T23:17:49.4069991Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-06-05T23:17:49.4071931Z [ 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:17:49.4073765Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-06-05T23:17:49.4075347Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-06-05T23:17:49.4076535Z [ 7%] Built target datatype 2025-06-05T23:17:49.4078114Z [ 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:17:49.4080430Z [ 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:17:49.4081939Z [ 39%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o 2025-06-05T23:17:49.4082695Z [ 8%] Built target memory 2025-06-05T23:17:49.4083183Z [ 8%] Built target microkernel-utils 2025-06-05T23:17:49.4084234Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-06-05T23:17:49.4085425Z [ 42%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o 2025-06-05T23:17:49.4086373Z [ 44%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o 2025-06-05T23:17:49.4087108Z [ 8%] Built target mutex 2025-06-05T23:17:49.4087749Z [ 47%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o 2025-06-05T23:17:49.4088664Z [ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o 2025-06-05T23:17:49.4090314Z [ 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:17:49.4093653Z [ 52%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o 2025-06-05T23:17:49.4094626Z [ 55%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_swift.cpp.o 2025-06-05T23:17:49.4096186Z [ 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:17:49.4097861Z [ 57%] Building CXX object CMakeFiles/flatc.dir/src/file_name_saving_file_manager.cpp.o 2025-06-05T23:17:49.4099616Z [ 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:17:49.4101888Z [ 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:17:49.4103758Z [ 60%] Building CXX object CMakeFiles/flatc.dir/src/file_binary_writer.cpp.o 2025-06-05T23:17:49.4105350Z [ 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:17:49.4107410Z [ 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:17:49.4108880Z [ 63%] Building CXX object CMakeFiles/flatc.dir/src/file_writer.cpp.o 2025-06-05T23:17:49.4109738Z [ 65%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o 2025-06-05T23:17:49.4110579Z [ 68%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o 2025-06-05T23:17:49.4112000Z [ 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:17:49.4114097Z [ 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:17:49.4116167Z [ 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:17:49.4118168Z [ 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:17:49.4120184Z [ 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:17:49.4122103Z [ 8%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-06-05T23:17:49.4123689Z [ 71%] Building CXX object CMakeFiles/flatc.dir/src/binary_annotator.cpp.o 2025-06-05T23:17:49.4125182Z [ 8%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-06-05T23:17:49.4127173Z [ 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:17:49.4128858Z [ 73%] Building CXX object CMakeFiles/flatc.dir/src/annotated_binary_text_gen.cpp.o 2025-06-05T23:17:49.4129592Z [ 76%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_lua.cpp.o 2025-06-05T23:17:50.6834998Z [ 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:17:50.6836614Z [ 78%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_nim.cpp.o 2025-06-05T23:17:50.6837356Z [ 8%] Built target reference-ukernels 2025-06-05T23:17:50.6838082Z [ 81%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o 2025-06-05T23:17:50.6839085Z [ 84%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o 2025-06-05T23:17:50.6840658Z [ 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:17:50.6845468Z [ 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:17:50.6846958Z [ 86%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o 2025-06-05T23:17:50.6848012Z [ 89%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o 2025-06-05T23:17:50.6849359Z [ 92%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/swift_generator.cc.o 2025-06-05T23:17:50.6864622Z [ 94%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/python_generator.cc.o 2025-06-05T23:17:50.6865730Z [ 97%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/ts_generator.cc.o 2025-06-05T23:17:50.6867056Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-06-05T23:17:50.6869250Z [ 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:17:50.6871112Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-06-05T23:17:50.6872930Z [ 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:17:50.6874264Z [ 9%] Built target operator-utils 2025-06-05T23:17:50.6875590Z [ 9%] 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:17:50.6877687Z [ 9%] 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:17:50.6879056Z [ 9%] Built target operator-run 2025-06-05T23:17:50.6880553Z [ 9%] 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:17:50.6882712Z [ 9%] 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:17:50.6884475Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:17:50.6885416Z [100%] Linking CXX executable flatc 2025-06-05T23:17:50.6886300Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:17:50.6887537Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:17:50.6888797Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:17:50.6890018Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:17:50.6891554Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:17:50.6893195Z [ 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:17:50.6895204Z [ 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:17:50.6897210Z [ 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:17:50.6899233Z [ 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:17:50.6901294Z [ 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:17:50.6902895Z [ 11%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:17:50.6903732Z [ 11%] Built target flatccrt 2025-06-05T23:17:50.6904915Z [ 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:17:50.6906767Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-06-05T23:17:50.6908438Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-06-05T23:17:50.6910108Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-06-05T23:17:50.6911919Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-06-05T23:17:50.6913989Z [ 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:17:50.6916340Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-06-05T23:17:50.6917596Z [ 11%] Built target hardware-config 2025-06-05T23:17:50.6918853Z [ 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:17:50.6920851Z [ 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:17:50.6922807Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-06-05T23:17:50.6924709Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-06-05T23:17:50.6926457Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-06-05T23:17:50.6928602Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndu-f16c-u16.c.o 2025-06-05T23:17:50.6930540Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-06-05T23:17:50.6932447Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndz-f16c-u16.c.o 2025-06-05T23:17:50.6934513Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrsqrt/gen/f16-vrsqrt-f16c-rsqrt-u32.c.o 2025-06-05T23:17:50.6936523Z [ 13%] 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:17:50.6938777Z [ 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:17:50.6940740Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-06-05T23:17:50.6942581Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-06-05T23:17:50.6944840Z [ 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:17:50.6947298Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-06-05T23:17:50.6949415Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-06-05T23:17:50.6951709Z [ 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:17:50.6953695Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-06-05T23:17:50.6955465Z [ 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:17:50.6957121Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-06-05T23:17:50.6958723Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-06-05T23:17:50.6960390Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-06-05T23:17:50.6962214Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-06-05T23:17:50.6964080Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-06-05T23:17:50.6966098Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-06-05T23:17:50.6968133Z [ 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:17:50.9260077Z [ 13%] 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:17:50.9262022Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-06-05T23:17:50.9263680Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-06-05T23:17:50.9265394Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-06-05T23:17:50.9267469Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-06-05T23:17:50.9269336Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-06-05T23:17:50.9271311Z [ 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:17:50.9272694Z [100%] Built target flatc 2025-06-05T23:17:50.9273349Z [ 14%] Performing install step for 'flatbuffers_external_project' 2025-06-05T23:17:50.9274851Z [ 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:17:50.9277061Z [ 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:17:50.9279284Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-sse2-c4.c.o 2025-06-05T23:17:50.9281499Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-06-05T23:17:50.9282863Z [ 14%] Built target operators 2025-06-05T23:17:50.9284242Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-sse2-c4.c.o 2025-06-05T23:17:50.9286431Z [ 16%] 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:17:50.9288693Z [ 16%] 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:17:50.9290049Z [100%] Built target flatc 2025-06-05T23:17:50.9293799Z [ 16%] 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:17:50.9296090Z [ 16%] 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:17:50.9297862Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-06-05T23:17:50.9298869Z Install the project... 2025-06-05T23:17:50.9299304Z -- Install configuration: "" 2025-06-05T23:17:50.9300561Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers 2025-06-05T23:17:50.9302784Z -- 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:17:50.9305115Z -- 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:17:50.9307659Z -- 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:17:50.9309903Z -- 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:17:50.9312275Z -- 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:17:50.9314673Z -- 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:17:50.9316962Z -- 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:17:50.9319590Z -- 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:17:50.9322022Z -- 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:17:50.9324470Z -- 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:17:50.9326837Z -- 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:17:50.9329137Z -- 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:17:50.9331380Z -- 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:17:50.9333657Z -- 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:17:50.9336009Z -- 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:17:50.9338483Z -- 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:17:50.9340710Z -- 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:17:50.9343039Z -- 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:17:50.9345496Z -- 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:17:50.9347821Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch 2025-06-05T23:17:50.9350148Z -- 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:17:50.9352534Z -- 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:17:50.9354571Z -- 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:17:50.9356958Z -- 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:17:50.9359414Z -- 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:17:50.9361750Z -- 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:17:50.9364159Z -- 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:17:50.9366474Z -- 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:17:50.9368715Z -- 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:17:50.9371132Z -- 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:17:50.9373429Z -- 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:17:50.9375803Z -- 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:17:50.9378150Z -- 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:17:50.9380741Z -- 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:17:51.9154418Z -- 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:17:51.9156407Z -- 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:17:51.9157876Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/bin/flatc 2025-06-05T23:17:51.9159157Z -- 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:17:51.9160880Z -- 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:17:51.9162571Z [ 16%] 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:17:51.9164136Z [ 16%] Completed 'flatbuffers_external_project' 2025-06-05T23:17:51.9165195Z [ 16%] 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:17:51.9166513Z [ 16%] Built target flatbuffers_external_project 2025-06-05T23:17:51.9167104Z [ 16%] Generating common_schema headers 2025-06-05T23:17:51.9167643Z [ 17%] Generating xnnpack_schema headers 2025-06-05T23:17:51.9168603Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-06-05T23:17:51.9169960Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-06-05T23:17:51.9171092Z [ 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:17:51.9172009Z [ 17%] Built target common_schema 2025-06-05T23:17:51.9173348Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-06-05T23:17:51.9174452Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-06-05T23:17:51.9175204Z [ 17%] Built target xnnpack_schema 2025-06-05T23:17:51.9176040Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-06-05T23:17:51.9177203Z [ 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:17:51.9178265Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-06-05T23:17:51.9179294Z [ 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:17:51.9180476Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-06-05T23:17:51.9181403Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-06-05T23:17:51.9182045Z [ 17%] Generating program_schema headers 2025-06-05T23:17:51.9182356Z [ 17%] Built target program_schema 2025-06-05T23:17:51.9183104Z [ 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:17:51.9184025Z [ 17%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-06-05T23:17:51.9184667Z [ 17%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-06-05T23:17:51.9185414Z [ 17%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-06-05T23:17:51.9186272Z [ 17%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-06-05T23:17:51.9187082Z [ 17%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-06-05T23:17:51.9187877Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-06-05T23:17:51.9188901Z [ 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:17:51.9189980Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-06-05T23:17:51.9191038Z [ 17%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-06-05T23:17:51.9192008Z [ 17%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-06-05T23:17:51.9193339Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-06-05T23:17:51.9194579Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-06-05T23:17:51.9195463Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-06-05T23:17:51.9196382Z [ 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:17:51.9197422Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-06-05T23:17:51.9198076Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-06-05T23:17:51.9198747Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-06-05T23:17:51.9199618Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-06-05T23:17:51.9200972Z [ 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:17:51.9202040Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-06-05T23:17:51.9202868Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-06-05T23:17:51.9203988Z [ 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:17:51.9205104Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-06-05T23:17:51.9206072Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-06-05T23:17:51.9207101Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-06-05T23:17:51.9207964Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-06-05T23:17:51.9208964Z [ 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:17:51.9210547Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-06-05T23:17:51.9211914Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-06-05T23:17:51.9213591Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-06-05T23:17:51.9215029Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-06-05T23:17:51.9216186Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-06-05T23:17:51.9217390Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-06-05T23:17:51.9219007Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-06-05T23:17:51.9220083Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-06-05T23:17:51.9221346Z [ 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:17:51.9222671Z [ 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:17:51.9223980Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-06-05T23:17:51.9224970Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-06-05T23:17:51.9226399Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-06-05T23:17:51.9227944Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-06-05T23:17:51.9228754Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-06-05T23:17:51.9229706Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-06-05T23:17:51.9230744Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-06-05T23:17:53.2741544Z [ 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:17:53.2743521Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.o 2025-06-05T23:17:53.2745616Z [ 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:17:53.2747705Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-06-05T23:17:53.2749750Z [ 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:17:53.2752182Z [ 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:17:53.2754323Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-06-05T23:17:53.2756381Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-06-05T23:17:53.2758516Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-fma3.c.o 2025-06-05T23:17:53.2760100Z [ 22%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:17:53.2761305Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-06-05T23:17:53.2762437Z [ 22%] Built target executorch_core 2025-06-05T23:17:53.2763698Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-06-05T23:17:53.2765254Z [ 22%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-06-05T23:17:53.2766494Z [ 23%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-06-05T23:17:53.2767855Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-06-05T23:17:53.2769314Z [ 23%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-06-05T23:17:53.2770692Z [ 23%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr.cpp.o 2025-06-05T23:17:53.2772108Z [ 23%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr_maker.cpp.o 2025-06-05T23:17:53.2774086Z [ 23%] 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:17:53.2775554Z [ 23%] Built target subgraph 2025-06-05T23:17:53.2776667Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-06-05T23:17:53.2778461Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-06-05T23:17:53.2780572Z [ 23%] 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:17:53.2782649Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-06-05T23:17:53.2784358Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-06-05T23:17:53.2785541Z [ 23%] Linking CXX static library libexecutorch.a 2025-06-05T23:17:53.2786173Z [ 23%] Built target executorch 2025-06-05T23:17:53.2787280Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-06-05T23:17:53.2789293Z [ 24%] 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:17:53.2790813Z [ 24%] Linking CXX static library libextension_tensor.a 2025-06-05T23:17:53.2792084Z [ 24%] Built target extension_tensor 2025-06-05T23:17:53.2793211Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-06-05T23:17:53.2795012Z [ 24%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-06-05T23:17:53.2797090Z [ 24%] 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:17:53.2799240Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-06-05T23:17:53.2800852Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-06-05T23:17:53.2802538Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-06-05T23:17:53.2804332Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-06-05T23:17:53.2805832Z [ 24%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-06-05T23:17:53.2806985Z [ 24%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-06-05T23:17:53.2808136Z [ 24%] 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:17:53.2809370Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-06-05T23:17:53.2810679Z [ 24%] 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:17:53.2812303Z [ 24%] 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:17:53.2813469Z [ 24%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-06-05T23:17:53.2814694Z [ 24%] 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:17:53.2816003Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-06-05T23:17:53.2817084Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-06-05T23:17:53.2818192Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-06-05T23:17:53.2820069Z [ 24%] 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:17:53.2821893Z [ 24%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/file_data_loader.cpp.o 2025-06-05T23:17:53.2822678Z [ 24%] Linking CXX static library libextension_threadpool.a 2025-06-05T23:17:53.2823240Z [ 24%] Built target extension_threadpool 2025-06-05T23:17:53.2823925Z [ 24%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/mmap_data_loader.cpp.o 2025-06-05T23:17:53.2824741Z [ 24%] Generating etdump headers 2025-06-05T23:17:53.2825399Z [ 24%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/etdump_flatcc.cpp.o 2025-06-05T23:17:53.2826526Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-06-05T23:17:53.2827242Z [ 24%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/emitter.cpp.o 2025-06-05T23:17:53.2827939Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-06-05T23:17:53.2828568Z [ 24%] Linking CXX static library libextension_data_loader.a 2025-06-05T23:17:53.2829387Z [ 25%] 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:17:53.2830273Z [ 25%] Built target extension_data_loader 2025-06-05T23:17:53.2830856Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-06-05T23:17:53.2831662Z [ 25%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/buffer_data_sink.cpp.o 2025-06-05T23:17:53.2832399Z [ 25%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/file_data_sink.cpp.o 2025-06-05T23:17:53.2832923Z [ 25%] Generating bundled_program headers 2025-06-05T23:17:53.2833724Z [ 25%] 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:17:53.2834745Z [ 25%] Building CXX object devtools/bundled_program/CMakeFiles/bundled_program.dir/bundled_program.cpp.o 2025-06-05T23:17:53.2835787Z [ 25%] 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:17:53.2836612Z [ 25%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:17:53.2836982Z [ 25%] Built target kernels_util_all_deps 2025-06-05T23:17:53.2837741Z [ 25%] 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:17:53.2839200Z [ 25%] Building CXX object CMakeFiles/util.dir/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:17:53.2840365Z [ 25%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:17:53.2841780Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:17:53.2842860Z [ 27%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/BlasKernel.cpp.o 2025-06-05T23:17:55.1594204Z [ 27%] 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:17:55.1595822Z [ 27%] Linking CXX static library libetdump.a 2025-06-05T23:17:55.1596343Z [ 27%] Built target etdump 2025-06-05T23:17:55.1597734Z [ 27%] 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:17:55.1599255Z [ 27%] Linking CXX static library libbundled_program.a 2025-06-05T23:17:55.1599844Z [ 27%] Built target bundled_program 2025-06-05T23:17:55.1601282Z [ 27%] 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:17:55.1603252Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:17:55.1604852Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:17:55.1606160Z [ 27%] Building CXX object CMakeFiles/util.dir/extension/aten_util/aten_bridge.cpp.o 2025-06-05T23:17:55.1607472Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:17:55.1609535Z [ 27%] 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:17:55.1612263Z [ 27%] 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:17:55.1614369Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:17:55.1616522Z [ 27%] 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:17:55.1619013Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:17:55.1620392Z [ 27%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/CPUBlas.cpp.o 2025-06-05T23:17:55.1621802Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:17:55.1623351Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:17:55.1625395Z [ 27%] 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:17:55.1627362Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:17:55.1628777Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:17:55.1629977Z [ 28%] Linking CXX static library libcpublas.a 2025-06-05T23:17:55.1631576Z [ 28%] 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:17:55.1633154Z [ 28%] Built target cpublas 2025-06-05T23:17:55.1634624Z [ 28%] 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:17:55.1637115Z [ 28%] 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:17:55.1639023Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:17:55.1640461Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:17:55.1641877Z [ 28%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/binary_ops.cpp.o 2025-06-05T23:17:55.1643882Z [ 28%] 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:17:55.1646417Z [ 28%] 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:17:55.1648924Z [ 29%] 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:17:55.1651191Z [ 29%] 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:17:55.1652521Z [ 29%] Linking CXX static library libutil.a 2025-06-05T23:17:55.1653037Z [ 29%] Built target util 2025-06-05T23:17:55.1653948Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:17:55.1655393Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:17:55.1656949Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:17:55.1658826Z [ 29%] 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:17:55.1660618Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:17:55.1662333Z [ 29%] 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:17:55.1664024Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:17:55.1665547Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:17:55.1666918Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:17:55.1668269Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:17:55.1669540Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:17:55.1670890Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:17:55.1672709Z [ 30%] 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:17:55.1674732Z [ 30%] 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:17:55.1676691Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:17:55.1678460Z [ 30%] 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:55.1680126Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:17:55.1681782Z [ 30%] 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:55.1683761Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:17:55.1685813Z [ 30%] 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:55.1688360Z [ 30%] 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:55.1690538Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:17:55.1692651Z [ 30%] 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:55.1694490Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:17:55.1695946Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:17:55.1697195Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:17:55.1698463Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_c2r.cpp.o 2025-06-05T23:17:55.1700240Z [ 30%] 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:55.1702158Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:17:55.1703606Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:17:55.1704992Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_r2c.cpp.o 2025-06-05T23:17:55.1706746Z [ 30%] 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:55.1708401Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:17:58.6327626Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:17:58.6329864Z [ 30%] 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:58.6332306Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:17:58.6334326Z [ 30%] 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:58.6336344Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_linear.cpp.o 2025-06-05T23:17:58.6338344Z [ 30%] 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:58.6341260Z [ 32%] 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:58.6343246Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:17:58.6345539Z [ 32%] 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:58.6347820Z [ 32%] 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:58.6349642Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:17:58.6351202Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:17:58.6352713Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:17:58.6354757Z [ 32%] 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:58.6357125Z [ 32%] 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:58.6359082Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:17:58.6360969Z [ 32%] 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:58.6362878Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:17:58.6364973Z [ 32%] 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:58.6366823Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:17:58.6368392Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:17:58.6370371Z [ 33%] 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:58.6372698Z [ 33%] 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:58.6374904Z [ 33%] 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:58.6377231Z [ 33%] 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:58.6379012Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:17:58.6380631Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:17:58.6382777Z [ 33%] 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:58.6385339Z [ 33%] 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:58.6387813Z [ 33%] 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:58.6389861Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:17:58.6392090Z [ 33%] 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:58.6394530Z [ 33%] 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:58.6397073Z [ 34%] 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:58.6399102Z [ 35%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:17:58.6400721Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:17:58.6402544Z [ 35%] 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:58.6405014Z [ 35%] 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:58.6407058Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:17:58.6409123Z [ 35%] 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:58.6411013Z [ 35%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:17:58.6412538Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:17:58.6414724Z [ 35%] 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:58.6416736Z [ 35%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:17:58.6418791Z [ 35%] 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:58.6420870Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:17:58.6422532Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:17:58.6424564Z [ 35%] 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:58.6426858Z [ 35%] 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:58.6428817Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:17:58.6430212Z [ 35%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:17:58.6432015Z [ 35%] 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:58.6434271Z [ 35%] 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:58.6436461Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:17:58.6438315Z [ 35%] 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:58.6440682Z [ 35%] 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:58.6442728Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:17:58.6444735Z [ 35%] 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:58.6447159Z [ 35%] 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:58.6449281Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:17:58.6451267Z [ 35%] 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:58.6453451Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-06-05T23:17:58.6455339Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:18:02.6407833Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2c4-minmax-sse.c.o 2025-06-05T23:18:02.6410297Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2025-06-05T23:18:02.6412509Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o 2025-06-05T23:18:02.6414342Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:18:02.6416243Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o 2025-06-05T23:18:02.6418568Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-sse-load1.c.o 2025-06-05T23:18:02.6420588Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:18:02.6422613Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-avx-broadcast.c.o 2025-06-05T23:18:02.6425180Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-fma3-broadcast-prfm.c.o 2025-06-05T23:18:02.6427401Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:18:02.6429562Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-7x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:18:02.6431682Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:18:02.6433733Z [ 38%] 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:18:02.6436170Z [ 38%] 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:18:02.6438184Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:18:02.6440232Z [ 38%] 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:18:02.6442973Z [ 38%] 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:18:02.6445563Z [ 38%] 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:18:02.6447995Z [ 38%] 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:18:02.6450523Z [ 38%] 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:18:02.6452672Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:18:02.6454979Z [ 39%] 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:18:02.6457071Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:18:02.6459277Z [ 39%] 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:18:02.6461452Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:18:02.6463505Z [ 39%] 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:18:02.6465583Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:18:02.6467671Z [ 39%] 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:18:02.6470258Z [ 39%] 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:18:02.6472431Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:18:02.6473963Z [ 39%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:18:02.6475996Z [ 39%] 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:18:02.6478188Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:18:02.6479772Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:18:02.6481932Z [ 39%] 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:18:02.6484193Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:18:02.6485704Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:18:02.6487704Z [ 39%] 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:18:02.6489756Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:18:02.6491440Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:18:02.6492993Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:18:02.6495314Z [ 39%] 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:18:02.6498008Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:18:02.6500838Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-7x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:18:02.6503045Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:18:02.6505198Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:18:02.6507498Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:18:02.6509166Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:18:02.6511390Z [ 40%] 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:18:02.6514114Z [ 40%] 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:18:02.6516783Z [ 40%] 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:18:02.6519014Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:18:02.6520600Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:18:02.6522676Z [ 40%] 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:18:02.6524823Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:18:02.6526866Z [ 41%] 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:18:02.6529429Z [ 41%] 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:18:02.6531539Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:18:02.6533244Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:18:02.6535433Z [ 41%] 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:18:04.6559131Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:18:04.6561380Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:18:04.6563896Z [ 41%] 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:18:04.6566820Z [ 41%] 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:18:04.6569121Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:18:04.6570895Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:18:04.6573534Z [ 41%] 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:18:04.6576454Z [ 41%] 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:18:04.6579238Z [ 41%] 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:18:04.6581316Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:18:04.6583249Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:18:04.6585246Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:18:04.6587511Z [ 41%] 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:18:04.6590055Z [ 41%] 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:18:04.6592738Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:18:04.6594507Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:18:04.6596311Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:18:04.6598573Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u1.c.o 2025-06-05T23:18:04.6601253Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:18:04.6603876Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:18:04.6606425Z [ 43%] 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:18:04.6608403Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:18:04.6610081Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:18:04.6611765Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:18:04.6613704Z [ 43%] 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:18:04.6616213Z [ 43%] 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:18:04.6618717Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:18:04.6620782Z [ 44%] 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:18:04.6623462Z [ 44%] 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:18:04.6624665Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:18:04.6625772Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u1.c.o 2025-06-05T23:18:04.6628169Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:18:04.6629536Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:18:04.6630550Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:18:04.6631527Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:18:04.6632668Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-u32.c.o 2025-06-05T23:18:04.6634151Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc2.c.o 2025-06-05T23:18:04.6635464Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:18:04.6636782Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc2.c.o 2025-06-05T23:18:04.6638338Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.o 2025-06-05T23:18:04.6639891Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc2.c.o 2025-06-05T23:18:04.6641088Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:18:04.6641901Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:18:04.6642694Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:18:04.6643575Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:18:04.6644603Z [ 44%] 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:18:04.6645837Z [ 44%] 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:18:04.6647054Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-scalar.c.o 2025-06-05T23:18:04.6648059Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:18:04.6649054Z [ 44%] 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:18:04.6650270Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:18:04.6651763Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:18:04.6653430Z [ 44%] 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:18:04.6655290Z [ 44%] 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:18:04.6657121Z [ 45%] 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:18:04.6658826Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:18:04.6660199Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:18:04.6661560Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:18:04.6663260Z [ 46%] 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:18:04.6664888Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:18:04.6666707Z [ 46%] 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:18:06.2794414Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:18:06.2796750Z [ 46%] 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:18:06.2798658Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:18:06.2800281Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:18:06.2801898Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:18:06.2803969Z [ 46%] 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:18:06.2806073Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:18:06.2807805Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:18:06.2809739Z [ 46%] 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:18:06.2811729Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:18:06.2813483Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:18:06.2815132Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:18:06.2817044Z [ 46%] 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:18:06.2818528Z [ 46%] Linking CXX static library liboptimized_kernels.a 2025-06-05T23:18:06.2820012Z [ 46%] 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:18:06.2821963Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:18:06.2823532Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:18:06.2825055Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:18:06.2826108Z [ 46%] Built target optimized_kernels 2025-06-05T23:18:06.2827199Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:18:06.2828880Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:18:06.2830603Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:18:06.2832526Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2025-06-05T23:18:06.2834874Z [ 48%] 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:18:06.2837037Z [ 48%] 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:18:06.2839094Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:18:06.2840731Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:18:06.2842580Z [ 48%] 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:18:06.2844714Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:18:06.2846894Z [ 48%] 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:18:06.2849167Z [ 48%] 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:18:06.2851140Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:18:06.2853049Z [ 48%] 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:18:06.2855065Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:18:06.2857114Z [ 48%] 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:18:06.2859310Z [ 49%] 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:18:06.2861317Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:18:06.2863122Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:18:06.2865122Z [ 49%] 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:18:06.2867014Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:18:06.2868717Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:18:06.2870600Z [ 49%] 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:18:06.2872534Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:18:06.2874479Z [ 49%] 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:18:06.2876388Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:18:06.2878249Z [ 49%] 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:18:06.2880474Z [ 49%] 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:18:06.2882335Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:18:06.2884061Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:18:06.2886162Z [ 49%] 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:18:06.2888083Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:18:06.2890014Z [ 50%] 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:18:06.2892348Z [ 50%] 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:18:06.2893969Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:18:06.2896611Z [ 50%] 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:18:06.2898964Z [ 50%] 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:18:06.2900843Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:18:06.2902835Z [ 50%] 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:18:06.2904855Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:18:06.2906843Z [ 50%] 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:18:06.2908727Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:18:06.2910371Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:18:06.2911929Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:18:06.2913456Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:18:06.2915376Z [ 50%] 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:18:06.2917470Z [ 50%] 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:18:06.2919369Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:18:07.7788089Z [ 50%] 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:18:07.7790443Z [ 51%] 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:18:07.7796168Z [ 51%] 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:18:07.7798370Z [ 51%] 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:18:07.7800624Z [ 51%] 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:18:07.7802896Z [ 51%] 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:18:07.7805219Z [ 51%] 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:18:07.7807451Z [ 51%] 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:18:07.7809686Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:18:07.7811702Z [ 51%] 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:18:07.7813977Z [ 51%] 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:18:07.7816182Z [ 51%] 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:18:07.7818005Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:18:07.7819574Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:18:07.7821732Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:18:07.7823491Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:18:07.7825140Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:18:07.7827131Z [ 51%] 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:18:07.7829395Z [ 51%] 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:18:07.7831364Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:18:07.7833305Z [ 51%] 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:18:07.7835563Z [ 51%] 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:18:07.7837791Z [ 53%] 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:18:07.7839689Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:18:07.7841264Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:18:07.7843224Z [ 53%] 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:18:07.7845597Z [ 54%] 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:18:07.7847444Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:18:07.7849045Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:18:07.7850525Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:18:07.7852343Z [ 54%] 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:18:07.7854499Z [ 54%] 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:18:07.7856753Z [ 54%] 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:18:07.7858645Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:18:07.7860384Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:18:07.7862065Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:18:07.7864053Z [ 54%] 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:18:07.7866247Z [ 54%] 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:18:07.7868140Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:18:07.7869697Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:18:07.7871271Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:18:07.7873382Z [ 54%] 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:18:07.7875371Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:18:07.7877124Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:18:07.7878951Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:18:07.7880844Z [ 54%] 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:18:07.7882262Z [ 54%] 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:18:07.7883568Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:18:07.7884556Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:18:07.7885723Z [ 55%] 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:18:07.7886910Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:18:07.7888189Z [ 55%] 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:18:07.7889343Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:18:07.7890638Z [ 55%] 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:18:07.7892506Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:18:07.7893760Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:18:07.7894757Z [ 55%] 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:18:07.7896180Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:18:07.7897819Z [ 55%] 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:18:07.7899610Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:18:07.7901469Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:18:07.7903268Z [ 55%] 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:18:07.7904417Z [ 56%] 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:18:07.7905559Z [ 56%] 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:18:08.9591118Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:18:08.9593227Z [ 56%] 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:18:08.9595330Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:18:08.9597602Z [ 56%] 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:18:08.9599878Z [ 56%] 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:18:08.9601817Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:18:08.9603910Z [ 56%] 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:18:08.9606134Z [ 56%] 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:18:08.9608288Z [ 56%] 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:18:08.9610256Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:18:08.9612148Z [ 56%] 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:18:08.9614119Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:18:08.9616062Z [ 56%] 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:18:08.9618402Z [ 56%] 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:18:08.9620633Z [ 56%] 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:18:08.9622567Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:18:08.9624226Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:18:08.9625869Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:18:08.9627705Z [ 56%] 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:18:08.9629805Z [ 56%] 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:18:08.9631762Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:18:08.9633454Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:18:08.9635679Z [ 58%] 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:18:08.9637866Z [ 58%] 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:18:08.9639932Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:18:08.9641763Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:18:08.9643609Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:18:08.9645548Z [ 59%] 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:18:08.9647637Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:18:08.9649385Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:18:08.9651063Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:18:08.9652994Z [ 59%] 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:18:08.9655176Z [ 59%] 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:18:08.9657065Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:18:08.9658803Z [ 59%] 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:18:08.9660930Z [ 59%] 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:18:08.9663018Z [ 59%] 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:18:08.9665023Z [ 59%] 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:18:08.9667092Z [ 59%] 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:18:08.9669180Z [ 59%] 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:18:08.9671368Z [ 59%] 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:18:08.9673460Z [ 59%] 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:18:08.9675518Z [ 59%] 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:18:08.9677627Z [ 59%] 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:18:08.9679226Z [ 59%] Linking CXX static library liboptimized_portable_kernels.a 2025-06-05T23:18:08.9680796Z [ 59%] 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:18:08.9683142Z [ 59%] 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:18:08.9685432Z [ 59%] 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:18:08.9687781Z [ 60%] 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:18:08.9689975Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2025-06-05T23:18:08.9692042Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-sse-u8.c.o 2025-06-05T23:18:08.9693857Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx.c.o 2025-06-05T23:18:08.9695901Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx512f.c.o 2025-06-05T23:18:08.9698195Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-06-05T23:18:08.9700163Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-sse2.c.o 2025-06-05T23:18:08.9701708Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx.c.o 2025-06-05T23:18:08.9703823Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx512f.c.o 2025-06-05T23:18:08.9705065Z [ 60%] Built target optimized_portable_kernels 2025-06-05T23:18:08.9706370Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-06-05T23:18:08.9708557Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-sse2.c.o 2025-06-05T23:18:08.9710782Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx.c.o 2025-06-05T23:18:08.9712130Z [ 60%] Merging kernel yaml files 2025-06-05T23:18:09.9929843Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx512f.c.o 2025-06-05T23:18:09.9932316Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-06-05T23:18:09.9934699Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-sse2.c.o 2025-06-05T23:18:09.9937128Z [ 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:18:09.9939594Z [ 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:18:09.9942094Z [ 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:18:09.9944509Z [ 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:18:09.9946297Z [ 61%] Generating selected_operators.yaml for optimized_native_cpu_ops_lib 2025-06-05T23:18:09.9948078Z [ 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:18:09.9950521Z [ 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:18:09.9952862Z [ 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:18:09.9955490Z [ 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:18:09.9958015Z [ 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:18:09.9960460Z [ 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:18:09.9962973Z [ 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:18:09.9965552Z [ 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:18:09.9967963Z [ 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:18:09.9970301Z [ 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:18:09.9972567Z [ 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:18:09.9974865Z [ 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:18:09.9977167Z [ 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:18:09.9978629Z [ 61%] Generating code for kernel registration 2025-06-05T23:18:09.9980075Z [ 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:18:09.9982555Z [ 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:18:09.9985016Z [ 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:18:09.9987466Z [ 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:18:09.9989929Z [ 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:18:09.9992462Z [ 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:18:09.9994742Z [ 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:18:09.9997053Z [ 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:18:09.9999280Z [ 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:18:10.0001516Z [ 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:18:10.0003995Z [ 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:18:10.0006425Z [ 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:18:10.0008817Z [ 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:18:10.0011180Z [ 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:18:10.0013373Z [ 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:18:10.0015625Z [ 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:18:10.0017952Z [ 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:18:10.0020126Z [ 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:18:10.0022428Z [ 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:18:10.0024630Z [ 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:18:10.0026885Z [ 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:18:10.0029168Z [ 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:18:10.0031506Z [ 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:18:10.0033758Z [ 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:18:10.0035883Z [ 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:18:10.0038089Z [ 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:18:10.0040246Z [ 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:18:10.0042396Z [ 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:18:10.0044746Z [ 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:18:10.0046908Z [ 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:18:10.0049063Z [ 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:18:10.0051256Z [ 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:18:10.0053466Z [ 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:18:10.0055761Z [ 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:18:10.0058090Z [ 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:18:10.0060339Z [ 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:18:11.1428010Z [ 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:18:11.1430327Z [ 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:18:11.1432476Z [ 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:18:11.1434603Z [ 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:18:11.1436456Z [ 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:18:11.1438766Z [ 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:18:11.1440911Z [ 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:18:11.1443046Z [ 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:18:11.1445342Z [ 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:18:11.1447548Z [ 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:18:11.1449790Z [ 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:18:11.1451831Z [ 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:18:11.1454202Z [ 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:18:11.1456396Z [ 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:18:11.1457876Z [ 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:18:11.1459161Z [ 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:18:11.1460438Z [ 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:18:11.1461766Z [ 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:18:11.1463042Z [ 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:18:11.1464439Z [ 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:18:11.1466404Z [ 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:18:11.1468048Z [ 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:18:11.1470203Z [ 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:18:11.1472277Z [ 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:18:11.1473968Z [ 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:18:11.1475049Z [ 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:18:11.1476128Z [ 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:18:11.1477221Z [ 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:18:11.1478363Z [ 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:18:11.1479450Z [ 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:18:11.1480593Z [ 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:18:11.1481656Z [ 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:18:11.1482729Z [ 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:18:11.1483881Z [ 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:18:11.1484957Z [ 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:18:11.1486163Z [ 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:18:11.1487556Z [ 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:18:11.1499556Z [ 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:18:11.1502057Z [ 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:18:11.1504218Z [ 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:18:11.1505823Z [ 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:18:11.1507981Z [ 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:18:11.1509452Z [ 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:18:11.1510850Z [ 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:18:11.1512239Z [ 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:18:11.1513584Z [ 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:18:11.1514990Z [ 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:18:11.1516551Z [ 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:18:11.1517982Z [ 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:18:11.1519360Z [ 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:18:11.1520787Z [ 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:18:11.1523424Z [ 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:18:11.1526036Z [ 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:18:12.0298671Z [ 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:18:12.0301565Z [ 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:18:12.0304438Z [ 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:18:12.0307438Z [ 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:18:12.0310254Z [ 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:18:12.0313009Z [ 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:18:12.0315828Z [ 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:18:12.0318690Z [ 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:18:12.0321526Z [ 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:18:12.0324453Z [ 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:18:12.0327317Z [ 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:18:12.0330197Z [ 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:18:12.0333191Z [ 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:18:12.0336177Z [ 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:18:12.0339406Z [ 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:18:12.0342374Z [ 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:18:12.0345179Z [ 70%] Building CXX object configurations/CMakeFiles/optimized_native_cpu_ops_lib.dir/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:18:12.0348000Z [ 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:18:12.0350880Z [ 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:18:12.0353945Z [ 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:18:12.0356745Z [ 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:18:12.0359590Z [ 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:18:12.0362319Z [ 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:18:12.0365094Z [ 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:18:12.0367805Z [ 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:18:12.0370573Z [ 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:18:12.0372477Z [ 71%] Linking CXX static library liboptimized_native_cpu_ops_lib.a 2025-06-05T23:18:12.0374360Z [ 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:18:12.0376149Z [ 71%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:18:12.0377850Z [ 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:18:12.0380675Z [ 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:18:12.0383657Z [ 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:18:12.0386663Z [ 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:18:12.0389658Z [ 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:18:12.0392612Z [ 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:18:12.0395650Z [ 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:18:12.0398674Z [ 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:18:12.0401570Z [ 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:18:12.0404442Z [ 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:18:12.0407198Z [ 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:18:12.0409966Z [ 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:18:12.0412913Z [ 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:18:12.0415802Z [ 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:18:12.0418629Z [ 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:18:12.0421482Z [ 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:18:12.0424387Z [ 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:18:12.0427179Z [ 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:18:12.0429915Z [ 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:18:12.0432693Z [ 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:18:12.8310248Z [ 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:18:12.8312958Z [ 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:18:12.8315529Z [ 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:18:12.8318022Z [ 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:18:12.8320613Z [ 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:18:12.8323073Z [ 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:18:12.8325622Z [ 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:18:12.8328093Z [ 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:18:12.8330665Z [ 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:18:12.8332958Z [ 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:18:12.8335086Z [ 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:18:12.8337224Z [ 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:18:12.8339461Z [ 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:18:12.8341805Z [ 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:18:12.8343829Z [ 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:18:12.8345947Z [ 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:18:12.8347952Z [ 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:18:12.8350067Z [ 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:18:12.8352068Z [ 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:18:12.8354083Z [ 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:18:12.8356190Z [ 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:18:12.8358328Z [ 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:18:12.8360717Z [ 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:18:12.8363274Z [ 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:18:12.8365916Z [ 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:18:12.8368456Z [ 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:18:12.8371013Z [ 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:18:12.8373554Z [ 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:18:12.8376055Z [ 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:18:12.8378717Z [ 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:18:12.8381600Z [ 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:18:12.8384294Z [ 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:18:12.8386916Z [ 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:18:12.8389582Z [ 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:18:12.8392732Z [ 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:18:12.8395379Z [ 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:18:12.8398013Z [ 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:18:12.8400581Z [ 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:18:12.8403140Z [ 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:18:12.8405758Z [ 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:18:12.8408354Z [ 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:18:12.8410948Z [ 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:18:12.8413537Z [ 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:18:12.8416124Z [ 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:18:12.8418668Z [ 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:18:12.8421294Z [ 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:18:12.8423898Z [ 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:18:12.8426511Z [ 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:18:12.8429090Z [ 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:18:13.7127465Z [ 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:18:13.7130615Z [ 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:18:13.7133150Z [ 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:18:13.7135459Z [ 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:18:13.7138015Z [ 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:18:13.7140509Z [ 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:18:13.7143381Z [ 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:18:13.7146176Z [ 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:18:13.7149006Z [ 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:18:13.7151571Z [ 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:18:13.7153959Z [ 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:18:13.7156408Z [ 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:18:13.7159033Z [ 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:18:13.7161688Z [ 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:18:13.7164326Z [ 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:18:13.7166955Z [ 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:18:13.7169608Z [ 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:18:13.7172342Z [ 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:18:13.7174928Z [ 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:18:13.7177680Z [ 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:18:13.7180329Z [ 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:18:13.7183084Z [ 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:18:13.7185992Z [ 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:18:13.7188695Z [ 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:18:13.7191528Z [ 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:18:13.7194130Z [ 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:18:13.7196791Z [ 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:18:13.7199702Z [ 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:18:13.7202468Z [ 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:18:13.7205361Z [ 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:18:13.7207869Z [ 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:18:13.7210433Z [ 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:18:13.7213092Z [ 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:18:13.7215699Z [ 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:18:13.7218061Z [ 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:18:13.7220349Z [ 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:18:13.7222716Z [ 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:18:13.7224948Z [ 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:18:13.7227222Z [ 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:18:13.7229621Z [ 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:18:13.7232104Z [ 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:18:13.7234661Z [ 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:18:13.7237164Z [ 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:18:13.7239531Z [ 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:18:13.7242116Z [ 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:18:13.7244716Z [ 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:18:13.7247264Z [ 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:18:13.7249827Z [ 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:18:13.7252487Z [ 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:18:13.7255137Z [ 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:18:13.7257540Z [ 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:18:14.5036397Z [ 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:18:14.5038552Z [ 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:18:14.5040607Z [ 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:18:14.5042474Z [ 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:18:14.5044586Z [ 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:18:14.5046639Z [ 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:18:14.5048752Z [ 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:18:14.5050896Z [ 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:18:14.5052949Z [ 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:18:14.5055034Z [ 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:18:14.5057150Z [ 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:18:14.5059221Z [ 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:18:14.5061456Z [ 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:18:14.5063586Z [ 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:18:14.5065529Z [ 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:18:14.5067576Z [ 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:18:14.5069845Z [ 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:18:14.5072537Z [ 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:18:14.5074860Z [ 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:18:14.5077226Z [ 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:18:14.5079632Z [ 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:18:14.5082020Z [ 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:18:14.5084761Z [ 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:18:14.5087254Z [ 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:18:14.5089697Z [ 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:18:14.5092476Z [ 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:18:14.5094829Z [ 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:18:14.5097186Z [ 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:18:14.5099634Z [ 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:18:14.5102008Z [ 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:18:14.5105996Z [ 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:18:14.5108538Z [ 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:18:14.5110983Z [ 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:18:14.5113497Z [ 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:18:14.5115937Z [ 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:18:14.5118322Z [ 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:18:14.5120659Z [ 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:18:14.5122941Z [ 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:18:14.5125372Z [ 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:18:14.5127941Z [ 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:18:14.5130264Z [ 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:18:14.5132628Z [ 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:18:14.5134984Z [ 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:18:14.5137453Z [ 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:18:14.5139583Z [ 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:18:14.5141580Z [ 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:18:14.5143624Z [ 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:18:14.5145655Z [ 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:18:14.5147671Z [ 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:18:14.5149773Z [ 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:18:14.5151883Z [ 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:18:14.5154147Z [ 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:18:14.5156497Z [ 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:18:15.4161069Z [ 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:18:15.4163773Z [ 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:18:15.4166286Z [ 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:18:15.4168802Z [ 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:18:15.4171270Z [ 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:18:15.4173792Z [ 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:18:15.4176344Z [ 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:18:15.4178920Z [ 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:18:15.4181708Z [ 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:18:15.4184283Z [ 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:18:15.4186777Z [ 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:18:15.4189912Z [ 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:18:15.4193464Z [ 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:18:15.4196342Z [ 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:18:15.4199024Z [ 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:18:15.4201540Z [ 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:18:15.4204146Z [ 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:18:15.4206717Z [ 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:18:15.4209186Z [ 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:18:15.4211649Z [ 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:18:15.4214172Z [ 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:18:15.4216750Z [ 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:18:15.4219232Z [ 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:18:15.4222123Z [ 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:18:15.4224732Z [ 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:18:15.4227288Z [ 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:18:15.4229763Z [ 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:18:15.4231946Z [ 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:18:15.4234057Z [ 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:18:15.4236193Z [ 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:18:15.4238548Z [ 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:18:15.4240759Z [ 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:18:15.4244973Z [ 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:18:15.4247592Z [ 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:18:15.4250105Z [ 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:18:15.4252322Z [ 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:18:15.4254683Z [ 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:18:15.4257167Z [ 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:18:15.4259587Z [ 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:18:15.4262138Z [ 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:18:15.4264792Z [ 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:18:15.4267336Z [ 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:18:15.4269735Z [ 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:18:15.4272218Z [ 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:18:15.4274780Z [ 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:18:15.4277146Z [ 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:18:15.4279303Z [ 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:18:15.4281517Z [ 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:18:15.4283822Z [ 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:18:15.4285980Z [ 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:18:15.4288178Z [ 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:18:15.4290371Z [ 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:18:15.4292440Z [ 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:18:15.4294703Z [ 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:18:16.1727903Z [ 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:18:16.1730348Z [ 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:18:16.1732703Z [ 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:18:16.1734935Z [ 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:18:16.1737206Z [ 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:18:16.1739923Z [ 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:18:16.1742484Z [ 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:18:16.1744970Z [ 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:18:16.1747582Z [ 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:18:16.1750243Z [ 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:18:16.1752823Z [ 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:18:16.1755429Z [ 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:18:16.1758023Z [ 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:18:16.1760501Z [ 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:18:16.1762762Z [ 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:18:16.1765154Z [ 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:18:16.1767494Z [ 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:18:16.1769859Z [ 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:18:16.1772212Z [ 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:18:16.1774622Z [ 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:18:16.1777087Z [ 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:18:16.1779414Z [ 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:18:16.1781699Z [ 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:18:16.1784124Z [ 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:18:16.1786293Z [ 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:18:16.1788406Z [ 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:18:16.1790573Z [ 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:18:16.1793002Z [ 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:18:16.1795520Z [ 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:18:16.1797881Z [ 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:18:16.1800090Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2025-06-05T23:18:16.1802447Z [ 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:18:16.1805361Z [ 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:18:16.1807627Z [ 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:18:16.1809731Z [ 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:18:16.1811847Z [ 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:18:16.1814074Z [ 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:18:16.1816308Z [ 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:18:16.1818469Z [ 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:18:16.1820835Z [ 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:18:16.1823303Z [ 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:18:16.1825878Z [ 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:18:16.1828519Z [ 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:18:16.1831045Z [ 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:18:16.1833602Z [ 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:18:16.1836025Z [ 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:18:16.1838418Z [ 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:18:16.1841071Z [ 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:18:16.1843629Z [ 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:18:16.1846152Z [ 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:18:16.1848687Z [ 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:18:16.1851257Z [ 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:18:16.1853960Z [ 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:18:16.1856486Z [ 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:18:16.1859008Z [ 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:18:17.4313969Z [ 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:18:17.4316252Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-06-05T23:18:17.4318319Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-sse2.c.o 2025-06-05T23:18:17.4320138Z [ 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:18:17.4321316Z [ 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:18:17.4322746Z [ 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:18:17.4324359Z [ 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:18:17.4325517Z [ 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:18:17.4326718Z [ 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:18:17.4328588Z [ 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:18:17.4330470Z [ 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:18:17.4332672Z [ 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:18:17.4335093Z [ 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:18:17.4337520Z [ 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:18:17.4339791Z [ 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:18:17.4342104Z [ 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:18:17.4344207Z [ 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:18:17.4346393Z [ 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:18:17.4348443Z [ 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:18:17.4350396Z [ 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:18:17.4352645Z [ 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:18:17.4355237Z [ 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:18:17.4357607Z [ 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:18:17.4359888Z [ 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:18:17.4362119Z [ 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:18:17.4364215Z [ 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:18:17.4365542Z [ 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:18:17.4366724Z [ 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:18:17.4367758Z [ 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:18:17.4368767Z [ 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:18:17.4369776Z [ 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:18:17.4370793Z [ 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:18:17.4371788Z [ 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:18:17.4372807Z [ 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:18:17.4373811Z [ 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:18:17.4374990Z [ 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:18:17.4376926Z [ 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:18:17.4378875Z [ 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:18:17.4380861Z [ 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:18:17.4382905Z [ 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:18:17.4385246Z [ 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:18:17.4387437Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-06-05T23:18:17.4389407Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-06-05T23:18:17.4391611Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-06-05T23:18:17.4393595Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-06-05T23:18:17.4395512Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-06-05T23:18:17.4397743Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-06-05T23:18:17.4399694Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-06-05T23:18:17.4401765Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-06-05T23:18:17.4403770Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-06-05T23:18:17.4405035Z [ 97%] Linking C static library libmicrokernels-prod.a 2025-06-05T23:18:17.4405715Z [ 97%] Built target microkernels-prod 2025-06-05T23:18:17.4406280Z [ 97%] Generating build_identifier.c 2025-06-05T23:18:17.4407416Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-06-05T23:18:17.4409173Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-06-05T23:18:17.4410896Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-06-05T23:18:17.4412277Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-06-05T23:18:17.4413309Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-06-05T23:18:17.4414247Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-06-05T23:18:17.4415183Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-06-05T23:18:17.4416127Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-06-05T23:18:17.4417052Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-06-05T23:18:17.4418176Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-06-05T23:18:27.1582160Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-06-05T23:18:27.1583924Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-06-05T23:18:27.1585763Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-06-05T23:18:27.1587616Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-06-05T23:18:27.1589526Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-06-05T23:18:27.1591789Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-06-05T23:18:27.1593571Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-06-05T23:18:27.1595407Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-06-05T23:18:27.1597222Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-06-05T23:18:27.1599079Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-06-05T23:18:27.1601102Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-06-05T23:18:27.1603270Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-06-05T23:18:27.1605259Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-06-05T23:18:27.1607167Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-06-05T23:18:27.1609085Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-06-05T23:18:27.1610931Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-06-05T23:18:27.1612761Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-06-05T23:18:27.1614404Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-06-05T23:18:27.1615943Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-06-05T23:18:27.1617568Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-06-05T23:18:27.1618756Z [100%] Linking CXX static library libXNNPACK.a 2025-06-05T23:18:27.1619403Z [100%] Built target XNNPACK 2025-06-05T23:18:27.1620426Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNCompiler.cpp.o 2025-06-05T23:18:27.1622045Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNExecutor.cpp.o 2025-06-05T23:18:27.1623627Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNHeader.cpp.o 2025-06-05T23:18:27.1625230Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNPACKBackend.cpp.o 2025-06-05T23:18:27.1626884Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNWeightsCache.cpp.o 2025-06-05T23:18:27.1628623Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/profiling/XNNProfiler.cpp.o 2025-06-05T23:18:27.1629939Z [100%] Linking CXX static library libxnnpack_backend.a 2025-06-05T23:18:27.1630633Z [100%] Built target xnnpack_backend 2025-06-05T23:18:27.1631617Z [100%] Building CXX object CMakeFiles/portable_lib.dir/extension/pybindings/pybindings.cpp.o 2025-06-05T23:18:27.1632904Z [100%] Linking CXX shared library _portable_lib.cpython-310-x86_64-linux-gnu.so 2025-06-05T23:18:27.1633775Z [100%] Built target portable_lib 2025-06-05T23:18:27.1634834Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_util.dir/runtime/util/json_util.cpp.o 2025-06-05T23:18:27.1636569Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/memory_stream.cpp.o 2025-06-05T23:18:27.1638500Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/inmemory_filesystem.cpp.o 2025-06-05T23:18:27.1640515Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/memory_buffer.cpp.o 2025-06-05T23:18:27.1642737Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/reversed_memory_stream.cpp.o 2025-06-05T23:18:27.1644212Z Linking CXX static library libcoreml_util.a 2025-06-05T23:18:27.1644814Z Built target coreml_util 2025-06-05T23:18:27.1645401Z Linking CXX static library libcoreml_inmemoryfs.a 2025-06-05T23:18:27.1646067Z Built target coreml_inmemoryfs 2025-06-05T23:18:27.1647336Z Building CXX object backends/apple/coreml/CMakeFiles/executorchcoreml.dir/runtime/inmemoryfs/inmemory_filesystem_py.cpp.o 2025-06-05T23:18:27.1648884Z Building CXX object backends/apple/coreml/CMakeFiles/executorchcoreml.dir/runtime/inmemoryfs/inmemory_filesystem_utils.cpp.o 2025-06-05T23:18:27.1650425Z Linking CXX shared library executorchcoreml.cpython-310-x86_64-linux-gnu.so 2025-06-05T23:18:27.1651255Z Built target executorchcoreml 2025-06-05T23:18:27.1651920Z [ 1%] Built target flatbuffers_external_project 2025-06-05T23:18:27.1652558Z [ 1%] Built target flatcc_external_project 2025-06-05T23:18:27.1653143Z [ 2%] Built target pthreadpool 2025-06-05T23:18:27.1653668Z [ 2%] Built target common_schema 2025-06-05T23:18:27.1654181Z [ 3%] Built target xnnpack_schema 2025-06-05T23:18:27.1654690Z [ 4%] Built target cpuinfo 2025-06-05T23:18:27.1655152Z [ 6%] Built target flatccrt 2025-06-05T23:18:27.1655469Z [ 7%] Built target logging 2025-06-05T23:18:27.1655834Z [ 7%] Built target microparams-init 2025-06-05T23:18:27.1656323Z [ 7%] Built target indirection 2025-06-05T23:18:27.1656609Z [ 8%] Built target eigen_blas 2025-06-05T23:18:27.1656872Z [ 8%] Built target datatype 2025-06-05T23:18:27.1657146Z [ 8%] Built target normalization 2025-06-05T23:18:27.1657433Z [ 8%] Built target reference-ukernels 2025-06-05T23:18:27.1657830Z [ 8%] Built target operator-utils 2025-06-05T23:18:27.1658129Z [ 8%] Built target program_schema 2025-06-05T23:18:27.1658429Z [ 8%] Built target operator-run 2025-06-05T23:18:27.1658721Z [ 8%] Built target hardware-config 2025-06-05T23:18:27.1659004Z [ 8%] Built target packing 2025-06-05T23:18:27.1659274Z [ 8%] Built target allocator 2025-06-05T23:18:27.1659527Z [ 8%] Built target cache 2025-06-05T23:18:27.1659800Z [ 8%] Built target microkernel-utils 2025-06-05T23:18:27.1660086Z [ 8%] Built target memory 2025-06-05T23:18:27.1660347Z [ 8%] Built target mutex 2025-06-05T23:18:27.1660592Z [ 11%] Built target operators 2025-06-05T23:18:27.1660876Z [ 12%] Built target executorch_core 2025-06-05T23:18:27.1661189Z [ 12%] Built target extension_data_loader 2025-06-05T23:18:27.1661502Z [ 12%] Built target extension_threadpool 2025-06-05T23:18:27.1661816Z [ 12%] Built target extension_tensor 2025-06-05T23:18:27.1662099Z [ 13%] Built target executorch 2025-06-05T23:18:27.1662374Z [ 16%] Built target subgraph 2025-06-05T23:18:27.1662775Z [ 16%] Built target bundled_program 2025-06-05T23:18:27.1663263Z [ 17%] Built target cpublas 2025-06-05T23:18:27.1663698Z [ 17%] Built target etdump 2025-06-05T23:18:27.1664192Z [ 18%] Built target kernels_util_all_deps 2025-06-05T23:18:27.1664709Z [ 18%] Built target util 2025-06-05T23:18:27.1665164Z [ 19%] Built target optimized_kernels 2025-06-05T23:18:27.1665747Z [ 34%] Built target optimized_portable_kernels 2025-06-05T23:18:27.1666389Z [ 34%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:18:27.1667024Z [ 97%] Built target microkernels-prod 2025-06-05T23:18:27.1667572Z [100%] Built target XNNPACK 2025-06-05T23:18:27.1668079Z [100%] Built target xnnpack_backend 2025-06-05T23:18:27.1668607Z [100%] Built target portable_lib 2025-06-05T23:18:27.1669570Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fallback.cpp.o 2025-06-05T23:18:27.1671202Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fast_hadamard_transform.cpp.o 2025-06-05T23:18:27.1672948Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_sdpa.cpp.o 2025-06-05T23:18:27.1674441Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_update_cache.cpp.o 2025-06-05T23:18:27.1676013Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/spinquant/fast_hadamard_transform.cpp.o 2025-06-05T23:18:27.1677765Z [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:18:27.1679386Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_sdpa_aot.cpp.o 2025-06-05T23:18:27.1680984Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fast_hadamard_transform_aten.cpp.o 2025-06-05T23:18:27.1682679Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_tile_crop.cpp.o 2025-06-05T23:18:27.1684321Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_tile_crop_aot.cpp.o 2025-06-05T23:18:27.1685444Z [100%] Linking CXX shared library libcustom_ops_aot_lib.so 2025-06-05T23:18:27.1686063Z [100%] Built target custom_ops_aot_lib 2025-06-05T23:18:27.1686619Z [ 1%] Built target flatbuffers_external_project 2025-06-05T23:18:27.1687246Z [ 1%] Built target flatcc_external_project 2025-06-05T23:18:27.1687800Z [ 2%] Built target pthreadpool 2025-06-05T23:18:27.1688248Z [ 3%] Built target cpuinfo 2025-06-05T23:18:27.1688683Z [ 4%] Built target eigen_blas 2025-06-05T23:18:27.1689200Z [ 4%] Built target common_schema 2025-06-05T23:18:27.1689735Z [ 6%] Built target xnnpack_schema 2025-06-05T23:18:27.1690249Z [ 7%] Built target flatccrt 2025-06-05T23:18:27.1690720Z [ 8%] Built target logging 2025-06-05T23:18:27.1692107Z [ 8%] Built target indirection 2025-06-05T23:18:27.1692573Z [ 8%] Built target microparams-init 2025-06-05T23:18:27.1693039Z [ 8%] Built target datatype 2025-06-05T23:18:27.1693387Z [ 8%] Built target normalization 2025-06-05T23:18:27.1693674Z [ 8%] Built target program_schema 2025-06-05T23:18:27.1693984Z [ 8%] Built target reference-ukernels 2025-06-05T23:18:27.1694287Z [ 8%] Built target hardware-config 2025-06-05T23:18:27.1694584Z [ 8%] Built target packing 2025-06-05T23:18:27.1694842Z [ 8%] Built target allocator 2025-06-05T23:18:27.1695108Z [ 8%] Built target cache 2025-06-05T23:18:27.1695356Z [ 8%] Built target memory 2025-06-05T23:18:27.1695629Z [ 8%] Built target microkernel-utils 2025-06-05T23:18:27.1695927Z [ 8%] Built target mutex 2025-06-05T23:18:27.1696183Z [ 8%] Built target operator-utils 2025-06-05T23:18:27.1696474Z [ 8%] Built target operator-run 2025-06-05T23:18:27.1696771Z [ 9%] Built target executorch_core 2025-06-05T23:18:27.1697070Z [ 12%] Built target operators 2025-06-05T23:18:32.8863156Z [ 12%] Built target extension_data_loader 2025-06-05T23:18:32.8863600Z [ 12%] Built target extension_tensor 2025-06-05T23:18:32.8864004Z [ 12%] Built target extension_threadpool 2025-06-05T23:18:32.8864325Z [ 13%] Built target executorch 2025-06-05T23:18:32.8864670Z [ 15%] Built target subgraph 2025-06-05T23:18:32.8865114Z [ 16%] Built target kernels_util_all_deps 2025-06-05T23:18:32.8865600Z [ 16%] Built target etdump 2025-06-05T23:18:32.8866053Z [ 18%] Built target cpublas 2025-06-05T23:18:32.8866501Z [ 18%] Built target bundled_program 2025-06-05T23:18:32.8867001Z [ 19%] Built target optimized_kernels 2025-06-05T23:18:32.8867479Z [ 19%] Built target util 2025-06-05T23:18:32.8867957Z [ 33%] Built target optimized_portable_kernels 2025-06-05T23:18:32.8868316Z [ 33%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:18:32.8868653Z [ 95%] Built target microkernels-prod 2025-06-05T23:18:32.8868962Z [ 97%] Built target XNNPACK 2025-06-05T23:18:32.8869297Z [ 97%] Built target xnnpack_backend 2025-06-05T23:18:32.8869595Z [ 97%] Built target portable_lib 2025-06-05T23:18:32.8870367Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:18:32.8871210Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_add.cpp.o 2025-06-05T23:18:32.8872054Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:18:32.8872936Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:18:32.8873823Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding.cpp.o 2025-06-05T23:18:32.8875280Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:18:32.8876856Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:18:32.8878057Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:18:32.8878988Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:18:32.8879842Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_quantize.cpp.o 2025-06-05T23:18:32.8880507Z [ 98%] Linking CXX static library libquantized_pybind_kernels_lib.a 2025-06-05T23:18:32.8880937Z [ 98%] Built target quantized_pybind_kernels_lib 2025-06-05T23:18:32.8881383Z [ 98%] Generating selected_operators.yaml for quantized_ops_pybind_lib 2025-06-05T23:18:32.8881811Z [ 98%] Generating code for kernel registration 2025-06-05T23:18:32.8882835Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_pybind_lib.dir/quantized_ops_pybind_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:18:32.8884530Z [ 98%] Linking CXX static library libquantized_ops_pybind_lib.a 2025-06-05T23:18:32.8885312Z [ 98%] Built target quantized_ops_pybind_lib 2025-06-05T23:18:32.8886087Z [ 98%] Generating selected_operators.yaml for quantized_ops_aot_lib 2025-06-05T23:18:32.8890848Z 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:18:32.8893667Z [ 98%] Generating code for kernel registration 2025-06-05T23:18:32.8894398Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/quantized_ops_aot_lib/RegisterCPUCustomOps.cpp.o 2025-06-05T23:18:32.8895431Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/quantized_ops_aot_lib/RegisterSchema.cpp.o 2025-06-05T23:18:32.8896313Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:18:32.8897095Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_add.cpp.o 2025-06-05T23:18:32.8898267Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:18:32.8899797Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:18:32.8900894Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding.cpp.o 2025-06-05T23:18:32.8901714Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:18:32.8902698Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:18:32.8903520Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:18:32.8904344Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:18:32.8905146Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_quantize.cpp.o 2025-06-05T23:18:32.8906000Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/__/portable/cpu/util/reduce_util.cpp.o 2025-06-05T23:18:32.8907025Z [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:18:32.8908335Z [100%] Linking CXX shared library libquantized_ops_aot_lib.so 2025-06-05T23:18:32.8909026Z [100%] Built target quantized_ops_aot_lib 2025-06-05T23:18:32.8909712Z running build_py 2025-06-05T23:18:32.8910102Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:18:32.8910752Z copying src/executorch/codegen/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:18:32.8911502Z copying src/executorch/codegen/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:18:32.8912253Z copying src/executorch/codegen/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:18:32.8913002Z copying src/executorch/codegen/parse.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:18:32.8913638Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools 2025-06-05T23:18:32.8914287Z copying src/executorch/devtools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools 2025-06-05T23:18:32.8914910Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8915513Z copying src/executorch/exir/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8916489Z copying src/executorch/exir/_warnings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8917801Z copying src/executorch/exir/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8918961Z copying src/executorch/exir/control_flow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8919718Z copying src/executorch/exir/delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8920482Z copying src/executorch/exir/dim_order_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8921253Z copying src/executorch/exir/dynamic_shape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8922009Z copying src/executorch/exir/error.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8922741Z copying src/executorch/exir/graph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8923467Z copying src/executorch/exir/graph_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8924638Z copying src/executorch/exir/lowered_backend_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8926051Z copying src/executorch/exir/memory.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8927156Z copying src/executorch/exir/memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8927946Z copying src/executorch/exir/pass_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8928689Z copying src/executorch/exir/pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8929465Z copying src/executorch/exir/print_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8930339Z copying src/executorch/exir/scalar_type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8931077Z copying src/executorch/exir/schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8931801Z copying src/executorch/exir/sym_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8932541Z copying src/executorch/exir/tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8933796Z copying src/executorch/exir/tracer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8935056Z copying src/executorch/exir/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8935932Z copying src/executorch/exir/version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8936658Z copying src/executorch/exir/wrap.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:32.8937379Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime 2025-06-05T23:18:32.8938025Z copying src/executorch/runtime/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime 2025-06-05T23:18:32.8938646Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:18:32.9340854Z copying src/executorch/util/activation_memory_profiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:18:32.9341895Z copying src/executorch/util/collect_env.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:18:32.9342677Z copying src/executorch/util/python_profiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:18:32.9343583Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:18:32.9344864Z copying src/executorch/backends/arm/arm_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:18:32.9346350Z copying src/executorch/backends/arm/arm_vela.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:18:32.9347296Z copying src/executorch/backends/arm/ethosu_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:18:32.9348473Z copying src/executorch/backends/arm/ethosu_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:18:32.9349505Z copying src/executorch/backends/arm/process_node.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:18:32.9350436Z copying src/executorch/backends/arm/tosa_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:18:32.9351342Z copying src/executorch/backends/arm/tosa_mapping.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:18:32.9352282Z copying src/executorch/backends/arm/tosa_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:18:32.9353940Z copying src/executorch/backends/arm/tosa_quant_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:18:32.9355725Z copying src/executorch/backends/arm/tosa_specification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:18:32.9357440Z copying src/executorch/backends/arm/tosa_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:18:32.9358608Z copying src/executorch/backends/arm/vgf_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:18:32.9359675Z copying src/executorch/backends/arm/vgf_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:18:32.9360547Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:18:32.9361382Z copying src/executorch/backends/example/example_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:18:32.9362452Z copying src/executorch/backends/example/example_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:18:32.9363762Z copying src/executorch/backends/example/example_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:18:32.9365219Z copying src/executorch/backends/example/test_example_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:18:32.9366701Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:18:32.9367748Z copying src/executorch/backends/mediatek/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:18:32.9368837Z copying src/executorch/backends/mediatek/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:18:32.9369991Z copying src/executorch/backends/mediatek/preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:18:32.9370943Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:18:32.9371734Z copying src/executorch/backends/nxp/neutron_node_extraction.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:18:32.9372842Z copying src/executorch/backends/nxp/neutron_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:18:32.9374645Z copying src/executorch/backends/nxp/neutron_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:18:32.9376467Z copying src/executorch/backends/nxp/nxp_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:18:32.9377789Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:18:32.9379177Z copying src/executorch/backends/openvino/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:18:32.9380581Z copying src/executorch/backends/openvino/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:18:32.9381877Z copying src/executorch/backends/openvino/preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:18:32.9382729Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm 2025-06-05T23:18:32.9383543Z copying src/executorch/backends/qualcomm/qnn_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm 2025-06-05T23:18:32.9384352Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:18:32.9385135Z copying src/executorch/backends/transforms/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:18:32.9386737Z copying src/executorch/backends/transforms/addmm_mm_to_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:18:32.9388644Z copying src/executorch/backends/transforms/convert_dtype_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:18:32.9389918Z copying src/executorch/backends/transforms/decompose_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:18:32.9391399Z copying src/executorch/backends/transforms/duplicate_dynamic_quant_chain.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:18:32.9392574Z 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:18:32.9393701Z copying src/executorch/backends/transforms/fuse_conv_with_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:18:32.9395268Z copying src/executorch/backends/transforms/fuse_view_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:18:32.9397255Z copying src/executorch/backends/transforms/mean_to_sum_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:18:32.9399498Z 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:18:32.9401554Z copying src/executorch/backends/transforms/remove_clone_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:18:32.9403503Z copying src/executorch/backends/transforms/remove_getitem_op.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:18:32.9405649Z copying src/executorch/backends/transforms/replace_scalar_with_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:18:32.9406853Z copying src/executorch/backends/transforms/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:18:32.9408096Z 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:18:32.9409140Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:18:32.9409876Z copying src/executorch/backends/vulkan/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:18:32.9410837Z copying src/executorch/backends/vulkan/custom_ops_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:18:32.9412310Z copying src/executorch/backends/vulkan/op_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:18:32.9414069Z copying src/executorch/backends/vulkan/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:18:32.9415970Z copying src/executorch/backends/vulkan/vulkan_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:18:32.9417558Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:18:32.9418982Z copying src/executorch/backends/xnnpack/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:18:32.9420759Z copying src/executorch/backends/xnnpack/xnnpack_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:18:32.9422056Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-06-05T23:18:32.9422861Z copying src/executorch/backends/apple/mps/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-06-05T23:18:32.9424025Z copying src/executorch/backends/apple/mps/mps_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-06-05T23:18:32.9424900Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler 2025-06-05T23:18:32.9425840Z 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:18:32.9427133Z 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:18:32.9780662Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition 2025-06-05T23:18:32.9781674Z 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:18:32.9783082Z 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:18:32.9784886Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer 2025-06-05T23:18:32.9786296Z 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:18:32.9787816Z 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:18:32.9789043Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test 2025-06-05T23:18:32.9790009Z 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:18:32.9792111Z 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:18:32.9793761Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/runtime/test 2025-06-05T23:18:32.9795026Z 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:18:32.9796164Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:18:32.9797219Z 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:18:32.9798591Z 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:18:32.9800815Z 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:18:32.9802309Z 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:18:32.9803782Z 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:18:32.9805043Z 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:18:32.9806415Z 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:18:32.9808673Z 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:18:32.9810247Z 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:18:32.9811668Z 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:18:32.9812930Z 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:18:32.9814126Z 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:18:32.9815591Z 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:18:32.9817771Z 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:18:32.9819214Z 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:18:32.9820561Z 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:18:32.9821773Z 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:18:32.9823167Z 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:18:32.9824700Z 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:18:32.9826862Z 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:18:32.9827925Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition 2025-06-05T23:18:32.9828966Z 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:18:32.9830223Z 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:18:32.9831334Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization 2025-06-05T23:18:32.9832746Z 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:18:32.9835172Z 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:18:32.9836478Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:18:32.9837415Z 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:18:32.9838543Z 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:18:32.9839750Z 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:18:32.9841080Z 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:18:32.9843120Z 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:18:32.9844638Z 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:18:32.9846046Z 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:18:32.9846936Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils 2025-06-05T23:18:32.9847834Z 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:18:32.9848969Z 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:18:32.9850463Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:18:32.9851860Z copying src/executorch/backends/arm/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:18:32.9852922Z copying src/executorch/backends/arm/_passes/_debug_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:18:32.9854272Z 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:18:32.9855486Z 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:18:32.9856685Z copying src/executorch/backends/arm/_passes/arm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:18:32.9857701Z 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:18:32.9859511Z 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:18:32.9861102Z 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:18:32.9862371Z 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:18:33.0212150Z 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:18:33.0213483Z 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:18:33.0214804Z 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:18:33.0216836Z 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:18:33.0219145Z 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:18:33.0221416Z 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:18:33.0223575Z 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:18:33.0225518Z 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:18:33.0227368Z 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:18:33.0228618Z 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:18:33.0229997Z 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:18:33.0231128Z 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:18:33.0232228Z 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:18:33.0234144Z 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:18:33.0236105Z 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:18:33.0237403Z 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:18:33.0238697Z 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:18:33.0239857Z 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:18:33.0240972Z 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:18:33.0242208Z 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:18:33.0243278Z copying src/executorch/backends/arm/_passes/decompose_select.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:18:33.0245166Z 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:18:33.0246896Z 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:18:33.0248272Z 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:18:33.0249598Z 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:18:33.0250695Z 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:18:33.0251780Z 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:18:33.0252913Z 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:18:33.0254442Z 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:18:33.0256423Z 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:18:33.0257635Z 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:18:33.0259101Z 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:18:33.0260249Z 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:18:33.0261318Z 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:18:33.0262894Z 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:18:33.0264850Z 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:18:33.0266110Z 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:18:33.0267314Z 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:18:33.0268401Z 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:18:33.0269541Z 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:18:33.0271375Z 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:18:33.0273095Z 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:18:33.0274502Z 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:18:33.0275824Z 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:18:33.0276780Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:18:33.0277700Z 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:18:33.0279179Z 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:18:33.0281466Z 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:18:33.0283013Z 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:18:33.0284451Z 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:18:33.0285701Z 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:18:33.0286959Z 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:18:33.0288486Z 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:18:33.0290722Z 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:18:33.0292422Z 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:18:33.0698582Z 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:18:33.0699593Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0700909Z copying src/executorch/backends/arm/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0702937Z copying src/executorch/backends/arm/operators/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0704873Z copying src/executorch/backends/arm/operators/op_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0706416Z copying src/executorch/backends/arm/operators/op_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0707477Z copying src/executorch/backends/arm/operators/op_amax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0708525Z copying src/executorch/backends/arm/operators/op_amin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0709576Z copying src/executorch/backends/arm/operators/op_any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0710654Z 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:18:33.0711770Z copying src/executorch/backends/arm/operators/op_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0713663Z copying src/executorch/backends/arm/operators/op_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0715304Z copying src/executorch/backends/arm/operators/op_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0716424Z 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:18:33.0717569Z copying src/executorch/backends/arm/operators/op_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0718641Z copying src/executorch/backends/arm/operators/op_cos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0719677Z copying src/executorch/backends/arm/operators/op_eq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0721215Z copying src/executorch/backends/arm/operators/op_erf.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0723126Z copying src/executorch/backends/arm/operators/op_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0736286Z copying src/executorch/backends/arm/operators/op_ge.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0737363Z copying src/executorch/backends/arm/operators/op_gt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0738396Z copying src/executorch/backends/arm/operators/op_le.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0739525Z copying src/executorch/backends/arm/operators/op_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0741351Z copying src/executorch/backends/arm/operators/op_lt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0743405Z 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:18:33.0745385Z copying src/executorch/backends/arm/operators/op_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0746969Z copying src/executorch/backends/arm/operators/op_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0748042Z copying src/executorch/backends/arm/operators/op_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0749091Z copying src/executorch/backends/arm/operators/op_neg.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0750147Z copying src/executorch/backends/arm/operators/op_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0751232Z copying src/executorch/backends/arm/operators/op_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0752320Z copying src/executorch/backends/arm/operators/op_reciprocal.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0753732Z copying src/executorch/backends/arm/operators/op_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0755792Z copying src/executorch/backends/arm/operators/op_rescale.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0757817Z 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:18:33.0759771Z copying src/executorch/backends/arm/operators/op_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0760887Z copying src/executorch/backends/arm/operators/op_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0762308Z copying src/executorch/backends/arm/operators/op_sin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0763372Z copying src/executorch/backends/arm/operators/op_slice.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0764527Z copying src/executorch/backends/arm/operators/op_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0765562Z copying src/executorch/backends/arm/operators/op_sum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0766763Z copying src/executorch/backends/arm/operators/op_table.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0768661Z copying src/executorch/backends/arm/operators/op_tanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0770233Z 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:18:33.0771501Z 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:18:33.0772620Z copying src/executorch/backends/arm/operators/op_transpose.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0773780Z 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:18:33.0774972Z 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:18:33.0776548Z copying src/executorch/backends/arm/operators/op_view.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0778480Z copying src/executorch/backends/arm/operators/op_where.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0779669Z 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:18:33.0780959Z copying src/executorch/backends/arm/operators/ops_binary.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0782072Z copying src/executorch/backends/arm/operators/ops_identity.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0783160Z copying src/executorch/backends/arm/operators/ops_unary.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:18:33.0784006Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:18:33.0785067Z copying src/executorch/backends/arm/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:18:33.0787005Z copying src/executorch/backends/arm/quantizer/arm_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:18:33.0788431Z 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:18:33.0789759Z copying src/executorch/backends/arm/quantizer/quantization_annotator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:18:33.0791225Z copying src/executorch/backends/arm/quantizer/quantization_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:18:33.0792136Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/scripts 2025-06-05T23:18:33.1170335Z 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:18:33.1171396Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:18:33.1172607Z copying src/executorch/backends/arm/test/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:18:33.1174355Z copying src/executorch/backends/arm/test/conftest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:18:33.1175596Z copying src/executorch/backends/arm/test/runner_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:18:33.1176757Z copying src/executorch/backends/arm/test/test_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:18:33.1177535Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/util 2025-06-05T23:18:33.1178369Z 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:18:33.1179359Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:18:33.1180651Z 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:18:33.1182790Z 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:18:33.1184008Z 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:18:33.1185273Z 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:18:33.1186421Z 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:18:33.1187650Z 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:18:33.1189756Z 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:18:33.1191527Z 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:18:33.1192893Z 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:18:33.1194182Z 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:18:33.1195399Z 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:18:33.1196850Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:18:33.1198445Z 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:18:33.1199694Z 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:18:33.1201002Z 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:18:33.1202121Z 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:18:33.1203258Z 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:18:33.1205444Z 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:18:33.1207178Z 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:18:33.1208527Z 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:18:33.1209701Z 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:18:33.1210886Z 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:18:33.1212057Z 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:18:33.1213619Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:18:33.1215097Z 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:18:33.1216219Z 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:18:33.1217432Z 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:18:33.1218509Z 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:18:33.1219551Z 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:18:33.1220615Z 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:18:33.1221973Z 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:18:33.1223848Z 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:18:33.1225131Z 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:18:33.1226377Z 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:18:33.1227463Z 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:18:33.1228547Z 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:18:33.1229579Z 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:18:33.1231251Z 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:18:33.1233088Z 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:18:33.1234463Z 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:18:33.1235573Z 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:18:33.1236653Z 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:18:33.1237841Z 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:18:33.1238937Z 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:18:33.1240769Z 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:18:33.1242490Z 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:18:33.1243810Z 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:18:33.1244901Z 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:18:33.1246086Z 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:18:33.1247112Z 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:18:33.1248184Z 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:18:33.1639364Z 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:18:33.1640490Z 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:18:33.1641534Z 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:18:33.1643356Z 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:18:33.1645059Z 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:18:33.1646281Z 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:18:33.1647413Z 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:18:33.1648482Z 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:18:33.1649598Z 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:18:33.1650890Z 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:18:33.1652861Z 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:18:33.1654231Z 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:18:33.1655589Z 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:18:33.1656713Z 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:18:33.1657835Z 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:18:33.1659044Z 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:18:33.1661099Z 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:18:33.1663282Z 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:18:33.1665226Z 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:18:33.1667110Z 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:18:33.1668324Z 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:18:33.1669391Z 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:18:33.1670634Z 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:18:33.1671716Z 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:18:33.1672790Z 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:18:33.1674326Z 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:18:33.1676143Z 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:18:33.1677208Z 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:18:33.1678253Z 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:18:33.1679289Z 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:18:33.1680357Z 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:18:33.1681420Z 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:18:33.1682833Z 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:18:33.1684880Z 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:18:33.1685991Z 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:18:33.1687070Z 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:18:33.1688139Z 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:18:33.1689218Z 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:18:33.1690318Z 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:18:33.1691956Z 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:18:33.1693884Z 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:18:33.1695217Z 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:18:33.1696318Z 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:18:33.1697446Z 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:18:33.1698530Z 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:18:33.1699571Z 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:18:33.1700984Z 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:18:33.1703131Z 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:18:33.1704551Z 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:18:33.1705616Z 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:18:33.1706673Z 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:18:33.1707734Z 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:18:33.1708770Z 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:18:33.1710144Z 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:18:33.1712049Z 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:18:33.1713290Z 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:18:33.1714525Z 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:18:33.1715672Z 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:18:33.1716843Z 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:18:33.1717962Z 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:18:33.2029061Z 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:18:33.2030159Z 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:18:33.2031473Z 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:18:33.2032973Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:18:33.2034400Z 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:18:33.2035725Z 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:18:33.2037133Z 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:18:33.2038419Z 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:18:33.2039949Z 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:18:33.2042166Z 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:18:33.2043552Z 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:18:33.2045175Z 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:18:33.2046430Z 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:18:33.2047997Z 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:18:33.2050362Z 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:18:33.2051712Z 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:18:33.2053034Z 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:18:33.2054250Z 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:18:33.2055448Z 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:18:33.2057498Z 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:18:33.2059372Z 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:18:33.2060771Z 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:18:33.2062046Z 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:18:33.2063273Z 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:18:33.2064476Z 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:18:33.2066646Z 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:18:33.2068103Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/quantizer 2025-06-05T23:18:33.2069157Z 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:18:33.2070258Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-06-05T23:18:33.2071126Z 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:18:33.2072289Z 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:18:33.2073476Z 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:18:33.2075519Z 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:18:33.2076881Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tosautil 2025-06-05T23:18:33.2077965Z 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:18:33.2078942Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib 2025-06-05T23:18:33.2080042Z 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:18:33.2081226Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:18:33.2083058Z 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:18:33.2085833Z 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:18:33.2087293Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:18:33.2088724Z 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:18:33.2090521Z 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:18:33.2092628Z 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:18:33.2095664Z 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:18:33.2097530Z 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:18:33.2099274Z 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:18:33.2101019Z 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:18:33.2103173Z 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:18:33.2105746Z 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:18:33.2107812Z 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:18:33.2323644Z 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:18:33.2325591Z 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:18:33.2327482Z 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:18:33.2329339Z 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:18:33.2332270Z 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:18:33.2334024Z 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:18:33.2335731Z 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:18:33.2337763Z 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:18:33.2340604Z 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:18:33.2342365Z 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:18:33.2344085Z 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:18:33.2345827Z 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:18:33.2348263Z 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:18:33.2350684Z 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:18:33.2352417Z 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:18:33.2354128Z 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:18:33.2355977Z 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:18:33.2358998Z 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:18:33.2360714Z 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:18:33.2362511Z 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:18:33.2364985Z 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:18:33.2368396Z 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:18:33.2371775Z 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:18:33.2374905Z 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:18:33.2376379Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts 2025-06-05T23:18:33.2377722Z 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:18:33.2379077Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit 2025-06-05T23:18:33.2380436Z 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:18:33.2382114Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:18:33.2383576Z 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:18:33.2385049Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan 2025-06-05T23:18:33.2386561Z 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:18:33.2388127Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:18:33.2390186Z 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:18:33.2393700Z 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:18:33.2395432Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:18:33.2396968Z 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:18:33.2398933Z 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:18:33.2400655Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:18:33.2402405Z 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:18:33.2404053Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:18:33.2598308Z 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:18:33.2600840Z 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:18:33.2604752Z 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:18:33.2607538Z 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:18:33.2609684Z 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:18:33.2611200Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:18:33.2613753Z 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:18:33.2617825Z 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:18:33.2621512Z 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:18:33.2623116Z 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:18:33.2624849Z 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:18:33.2626695Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp 2025-06-05T23:18:33.2629151Z 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:18:33.2632376Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp 2025-06-05T23:18:33.2635668Z 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:18:33.2639496Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart 2025-06-05T23:18:33.2642121Z 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:18:33.2643875Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go 2025-06-05T23:18:33.2645479Z 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:18:33.2647134Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java 2025-06-05T23:18:33.2650111Z 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:18:33.2651827Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin 2025-06-05T23:18:33.2653501Z 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:18:33.2655398Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster 2025-06-05T23:18:33.2658574Z 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:18:33.2661418Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua 2025-06-05T23:18:33.2663050Z 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:18:33.2664674Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim 2025-06-05T23:18:33.2666303Z 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:18:33.2668946Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php 2025-06-05T23:18:33.2671097Z 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:18:33.2672727Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:18:33.2674311Z 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:18:33.2676987Z 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:18:33.2680906Z 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:18:33.2683217Z 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:18:33.2684932Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust 2025-06-05T23:18:33.2686586Z 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:18:33.2689487Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift 2025-06-05T23:18:33.2824604Z 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:18:33.2826294Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts 2025-06-05T23:18:33.2828318Z 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:18:33.2831051Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests 2025-06-05T23:18:33.2832685Z 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:18:33.2834362Z 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:18:33.2836232Z 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:18:33.2839913Z 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:18:33.2842161Z 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:18:33.2844249Z 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:18:33.2847520Z 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:18:33.2851145Z 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:18:33.2853741Z 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:18:33.2856943Z 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:18:33.2859025Z 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:18:33.2861501Z 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:18:33.2864765Z 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:18:33.2867169Z 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:18:33.2869114Z 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:18:33.2871620Z 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:18:33.2874402Z 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:18:33.2876907Z 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:18:33.2878831Z 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:18:33.2881305Z 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:18:33.2885050Z 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:18:33.2887080Z 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:18:33.2889052Z 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:18:33.2892257Z 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:18:33.2895987Z 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:18:33.2897914Z 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:18:33.2899857Z 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:18:33.2903444Z 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:18:33.2906492Z 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:18:33.3042615Z 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:18:33.3046610Z 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:18:33.3051580Z 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:18:33.3055411Z 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:18:33.3057960Z 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:18:33.3061758Z 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:18:33.3064714Z 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:18:33.3067312Z 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:18:33.3071315Z 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:18:33.3073916Z 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:18:33.3076979Z 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:18:33.3080693Z 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:18:33.3083339Z 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:18:33.3087779Z 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:18:33.3093183Z 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:18:33.3098530Z 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:18:33.3103768Z 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:18:33.3108757Z 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:18:33.3113992Z 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:18:33.3117914Z 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:18:33.3121792Z 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:18:33.3126954Z 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:18:33.3131036Z 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:18:33.3135242Z 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:18:33.3140776Z 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:18:33.3146419Z 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:18:33.3151840Z 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:18:33.3154859Z 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:18:33.3323330Z 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:18:33.3327097Z 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:18:33.3329973Z 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:18:33.3332089Z 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:18:33.3336432Z 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:18:33.3341945Z 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:18:33.3347535Z 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:18:33.3352999Z 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:18:33.3356638Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:18:33.3359802Z 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:18:33.3364074Z 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:18:33.3368289Z 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:18:33.3370715Z 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:18:33.3372947Z 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:18:33.3376247Z 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:18:33.3380883Z 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:18:33.3384652Z 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:18:33.3387052Z 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:18:33.3389268Z 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:18:33.3391296Z 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:18:33.3394506Z 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:18:33.3397071Z 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:18:33.3399540Z 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:18:33.3403334Z 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:18:33.3405909Z 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:18:33.3408646Z 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:18:33.3412208Z 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:18:33.3414703Z 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:18:33.3417458Z 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:18:33.3421141Z 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:18:33.3506259Z 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:18:33.3511114Z 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:18:33.3515795Z 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:18:33.3519178Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:18:33.3522367Z 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:18:33.3526681Z 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:18:33.3530762Z 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:18:33.3533904Z 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:18:33.3537295Z 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:18:33.3540657Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:18:33.3543847Z 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:18:33.3547863Z 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:18:33.3552024Z 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:18:33.3556075Z 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:18:33.3560267Z 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:18:33.3564354Z 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:18:33.3567487Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim 2025-06-05T23:18:33.3570711Z 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:18:33.3573965Z 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:18:33.3577499Z 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:18:33.3582129Z 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:18:33.3586689Z 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:18:33.3589754Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:18:33.3592883Z 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:18:33.3595977Z 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:18:33.3599255Z 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:18:33.3603517Z 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:18:33.3608012Z 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:18:33.3612755Z 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:18:33.3617214Z 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:18:33.3621876Z 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:18:33.3626253Z 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:18:33.3630912Z 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:18:33.3635445Z 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:18:33.3640065Z 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:18:33.3644694Z 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:18:33.3649223Z 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:18:33.3653716Z 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:18:33.3658315Z 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:18:33.3663167Z 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:18:33.3667857Z 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:18:33.3672176Z 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:18:33.3675396Z 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:18:33.3677946Z 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:18:33.3680781Z 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:18:33.3683906Z 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:18:33.3686337Z 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:18:33.3688139Z 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:18:33.3691278Z 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:18:33.3693827Z 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:18:33.3695632Z 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:18:33.3697817Z 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:18:33.3701367Z 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:18:33.3703947Z 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:18:33.3707592Z 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:18:33.3710361Z 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:18:33.3712972Z 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:18:33.3716577Z 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:18:33.3718718Z 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:18:33.3720652Z 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:18:33.3723231Z 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:18:33.3726087Z 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:18:33.3728554Z 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:18:33.3730417Z 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:18:33.3733014Z 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:18:33.4067744Z 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:18:33.4069705Z 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:18:33.4073401Z 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:18:33.4077601Z 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:18:33.4080401Z 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:18:33.4084625Z 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:18:33.4087666Z 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:18:33.4089480Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4091082Z copying src/executorch/backends/cadence/aot/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4092621Z copying src/executorch/backends/cadence/aot/compiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4093809Z copying src/executorch/backends/cadence/aot/compiler_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4095040Z copying src/executorch/backends/cadence/aot/decompose_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4096169Z copying src/executorch/backends/cadence/aot/export_example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4097282Z copying src/executorch/backends/cadence/aot/fuse_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4099191Z copying src/executorch/backends/cadence/aot/graph_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4101175Z copying src/executorch/backends/cadence/aot/memory_constraints.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4103243Z copying src/executorch/backends/cadence/aot/memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4105387Z copying src/executorch/backends/cadence/aot/ops_registrations.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4107363Z copying src/executorch/backends/cadence/aot/pass_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4109287Z copying src/executorch/backends/cadence/aot/passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4111311Z copying src/executorch/backends/cadence/aot/ref_implementations.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4113307Z copying src/executorch/backends/cadence/aot/remove_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4114408Z copying src/executorch/backends/cadence/aot/reorder_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4115473Z copying src/executorch/backends/cadence/aot/replace_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4116546Z copying src/executorch/backends/cadence/aot/simplify_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4117602Z copying src/executorch/backends/cadence/aot/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:33.4118404Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:18:33.4119269Z copying src/executorch/backends/cadence/runtime/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:18:33.4120689Z copying src/executorch/backends/cadence/runtime/executor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:18:33.4121802Z copying src/executorch/backends/cadence/runtime/runtime.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:18:33.4122912Z copying src/executorch/backends/cadence/runtime/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:18:33.4123961Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:18:33.4124820Z copying src/executorch/backends/cadence/utils/facto_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:18:33.4125911Z copying src/executorch/backends/cadence/utils/gen_header.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:18:33.4127060Z copying src/executorch/backends/cadence/utils/post_compilation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:18:33.4128477Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-06-05T23:18:33.4130192Z 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:18:33.4132082Z 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:18:33.4133367Z 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:18:33.4134601Z 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:18:33.4135537Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:18:33.4136506Z 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:18:33.4138568Z 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:18:33.4140370Z 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:18:33.4141617Z 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:18:33.4142821Z 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:18:33.4144050Z 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:18:33.4145327Z 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:18:33.4147641Z 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:18:33.4149153Z 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:18:33.4150113Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO 2025-06-05T23:18:33.4151031Z 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:18:33.4151996Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:18:33.4350138Z 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:18:33.4351578Z 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:18:33.4353240Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:18:33.4355148Z 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:18:33.4356675Z 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:18:33.4358214Z 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:18:33.4359284Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto 2025-06-05T23:18:33.4360295Z 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:18:33.4361627Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-06-05T23:18:33.4363766Z 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:18:33.4365129Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:18:33.4366231Z 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:18:33.4367673Z 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:18:33.4369175Z 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:18:33.4371800Z 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:18:33.4373181Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:18:33.4374462Z 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:18:33.4376153Z 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:18:33.4378142Z 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:18:33.4380409Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:18:33.4381719Z 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:18:33.4383420Z 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:18:33.4385094Z 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:18:33.4387731Z 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:18:33.4389502Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:18:33.4390809Z 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:18:33.4392724Z 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:18:33.4394918Z 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:18:33.4397500Z 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:18:33.4398941Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:18:33.4400202Z 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:18:33.4401806Z 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:18:33.4403518Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:18:33.4405748Z 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:18:33.4407425Z 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:18:33.4408733Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:18:33.4410012Z 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:18:33.4412298Z 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:18:33.4414781Z 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:18:33.4416467Z 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:18:33.4418164Z 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:18:33.4419855Z 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:18:33.4422564Z 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:18:33.4424100Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:18:33.4425315Z 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:18:33.4427030Z 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:18:33.4428836Z 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:18:33.4431788Z 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:18:33.4434401Z 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:18:33.4729621Z 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:18:33.4731439Z 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:18:33.4733760Z 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:18:33.4735913Z 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:18:33.4737447Z 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:18:33.4738995Z 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:18:33.4741055Z 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:18:33.4743606Z 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:18:33.4745195Z 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:18:33.4746775Z 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:18:33.4747869Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops 2025-06-05T23:18:33.4749157Z 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:18:33.4750662Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-06-05T23:18:33.4751705Z 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:18:33.4752614Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test 2025-06-05T23:18:33.4753517Z 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:18:33.4754527Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:18:33.4755889Z 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:18:33.4758429Z 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:18:33.4760002Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:18:33.4761072Z 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:18:33.4762398Z 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:18:33.4763852Z 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:18:33.4765588Z 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:18:33.4767709Z 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:18:33.4769022Z 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:18:33.4770311Z 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:18:33.4771587Z 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:18:33.4772846Z 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:18:33.4775022Z 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:18:33.4776313Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes 2025-06-05T23:18:33.4777199Z copying src/executorch/backends/mediatek/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes 2025-06-05T23:18:33.4778408Z 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:18:33.4779412Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:18:33.4780328Z copying src/executorch/backends/mediatek/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:18:33.4781492Z copying src/executorch/backends/mediatek/quantizer/annotator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:18:33.4783455Z copying src/executorch/backends/mediatek/quantizer/qconfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:18:33.4785648Z copying src/executorch/backends/mediatek/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:18:33.4787325Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-06-05T23:18:33.4788319Z 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:18:33.4789664Z 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:18:33.4791223Z 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:18:33.4792152Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-06-05T23:18:33.4792974Z copying src/executorch/backends/nxp/backend/edge_helper.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-06-05T23:18:33.4794096Z 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:18:33.4796198Z 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:18:33.4797881Z 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:18:33.4798784Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:18:33.4799673Z copying src/executorch/backends/nxp/quantizer/neutron_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:18:33.4800812Z copying src/executorch/backends/nxp/quantizer/patterns.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:18:33.4801897Z copying src/executorch/backends/nxp/quantizer/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:18:33.4802718Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:18:33.4803643Z copying src/executorch/backends/nxp/tests/executorch_pipeline.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:18:33.4805647Z copying src/executorch/backends/nxp/tests/executors.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:18:33.4807122Z 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:18:33.4808211Z copying src/executorch/backends/nxp/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:18:33.5055789Z 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:18:33.5056977Z 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:18:33.5058339Z 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:18:33.5060432Z 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:18:33.5061885Z 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:18:33.5063009Z 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:18:33.5064092Z copying src/executorch/backends/nxp/tests/test_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:18:33.5064930Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-06-05T23:18:33.5065832Z 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:18:33.5067719Z 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:18:33.5069626Z 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:18:33.5070868Z 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:18:33.5071818Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:18:33.5072816Z 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:18:33.5074117Z 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:18:33.5075638Z 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:18:33.5077014Z 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:18:33.5078494Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib 2025-06-05T23:18:33.5080104Z 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:18:33.5081188Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:18:33.5082273Z 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:18:33.5083765Z 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:18:33.5084866Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:18:33.5085944Z 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:18:33.5087334Z 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:18:33.5089740Z 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:18:33.5091780Z 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:18:33.5093237Z 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:18:33.5094688Z 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:18:33.5095804Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:18:33.5097760Z 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:18:33.5100597Z 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:18:33.5103591Z 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:18:33.5105523Z 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:18:33.5106774Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:18:33.5107945Z 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:18:33.5109488Z 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:18:33.5112348Z 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:18:33.5114088Z 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:18:33.5115303Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters 2025-06-05T23:18:33.5116532Z 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:18:33.5117811Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:18:33.5119732Z 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:18:33.5122721Z 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:18:33.5124767Z 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:18:33.5126753Z 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:18:33.5129491Z 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:18:33.5133423Z 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:18:33.5137287Z 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:18:33.5141236Z 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:18:33.5428596Z 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:18:33.5431459Z 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:18:33.5434101Z 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:18:33.5436041Z 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:18:33.5438175Z 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:18:33.5440817Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:18:33.5442221Z 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:18:33.5444073Z 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:18:33.5445845Z 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:18:33.5448931Z 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:18:33.5450322Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:18:33.5451505Z 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:18:33.5452905Z 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:18:33.5454349Z 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:18:33.5456978Z 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:18:33.5458604Z 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:18:33.5460074Z 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:18:33.5461481Z 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:18:33.5463490Z 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:18:33.5465772Z 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:18:33.5467351Z 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:18:33.5469049Z 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:18:33.5471108Z 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:18:33.5473574Z 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:18:33.5475131Z 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:18:33.5476795Z 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:18:33.5478421Z 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:18:33.5480918Z 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:18:33.5482374Z 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:18:33.5483977Z 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:18:33.5485430Z 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:18:33.5487560Z 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:18:33.5489615Z 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:18:33.5491242Z 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:18:33.5492650Z 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:18:33.5494122Z 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:18:33.5496060Z 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:18:33.5498465Z 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:18:33.5499951Z 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:18:33.5501347Z 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:18:33.5502740Z 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:18:33.5504320Z 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:18:33.5507095Z 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:18:33.5508657Z 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:18:33.5510115Z 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:18:33.5511634Z 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:18:33.5513900Z 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:18:33.5806255Z 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:18:33.5807727Z 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:18:33.5809557Z 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:18:33.5811904Z 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:18:33.5813482Z 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:18:33.5815122Z 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:18:33.5816620Z 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:18:33.5818419Z 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:18:33.5820735Z 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:18:33.5822283Z 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:18:33.5823716Z 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:18:33.5825120Z 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:18:33.5827010Z 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:18:33.5829370Z 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:18:33.5831047Z 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:18:33.5832635Z 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:18:33.5834191Z 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:18:33.5836438Z 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:18:33.5838379Z 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:18:33.5839900Z 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:18:33.5841450Z 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:18:33.5842944Z 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:18:33.5845403Z 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:18:33.5847424Z 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:18:33.5849000Z 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:18:33.5850536Z 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:18:33.5851918Z 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:18:33.5854360Z 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:18:33.5856138Z 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:18:33.5857790Z 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:18:33.5859244Z 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:18:33.5860644Z 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:18:33.5863085Z 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:18:33.5864898Z 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:18:33.5866433Z 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:18:33.5867969Z 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:18:33.5869776Z 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:18:33.5872481Z 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:18:33.5874034Z 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:18:33.5875487Z 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:18:33.5876947Z 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:18:33.5879212Z 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:18:33.5881363Z 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:18:33.5883006Z 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:18:33.5884467Z 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:18:33.5885996Z 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:18:33.5888486Z 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:18:33.5890012Z 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:18:33.5891580Z 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:18:33.6200552Z 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:18:33.6202187Z 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:18:33.6203770Z 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:18:33.6205213Z 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:18:33.6206598Z 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:18:33.6208118Z 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:18:33.6209508Z 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:18:33.6210875Z 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:18:33.6212266Z 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:18:33.6213772Z 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:18:33.6215266Z 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:18:33.6216658Z 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:18:33.6218085Z 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:18:33.6219683Z 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:18:33.6221171Z 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:18:33.6222728Z 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:18:33.6224104Z 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:18:33.6225502Z 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:18:33.6226893Z 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:18:33.6228327Z 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:18:33.6229859Z 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:18:33.6231448Z 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:18:33.6232893Z 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:18:33.6234306Z 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:18:33.6235779Z 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:18:33.6237406Z 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:18:33.6239058Z 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:18:33.6240534Z 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:18:33.6241961Z 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:18:33.6243405Z 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:18:33.6244965Z 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:18:33.6246488Z 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:18:33.6247906Z 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:18:33.6249343Z 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:18:33.6250833Z 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:18:33.6252260Z 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:18:33.6253851Z 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:18:33.6255289Z 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:18:33.6256685Z 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:18:33.6258058Z 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:18:33.6259481Z 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:18:33.6261012Z 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:18:33.6262419Z 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:18:33.6263893Z 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:18:33.6265395Z 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:18:33.6266879Z 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:18:33.6268521Z 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:18:33.6270007Z 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:18:33.6271448Z 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:18:33.6583053Z 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:18:33.6584476Z 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:18:33.6586112Z 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:18:33.6587610Z 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:18:33.6589181Z 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:18:33.6591054Z 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:18:33.6592734Z 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:18:33.6594549Z 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:18:33.6596261Z 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:18:33.6598057Z 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:18:33.6612696Z 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:18:33.6614413Z 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:18:33.6616033Z 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:18:33.6617740Z 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:18:33.6619307Z 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:18:33.6620809Z 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:18:33.6622328Z 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:18:33.6623875Z 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:18:33.6625584Z 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:18:33.6627487Z 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:18:33.6629097Z 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:18:33.6630636Z 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:18:33.6632323Z 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:18:33.6634103Z 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:18:33.6635655Z 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:18:33.6637153Z 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:18:33.6638576Z 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:18:33.6640037Z 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:18:33.6641531Z 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:18:33.6642884Z 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:18:33.6644321Z 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:18:33.6645714Z 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:18:33.6647119Z 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:18:33.6648799Z 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:18:33.6650287Z 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:18:33.6651709Z 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:18:33.6653081Z 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:18:33.6654615Z 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:18:33.6656387Z 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:18:33.6657780Z 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:18:33.6659286Z 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:18:33.6660842Z 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:18:33.6662688Z 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:18:33.6664367Z 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:18:33.6665862Z 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:18:33.6667303Z 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:18:33.6668726Z 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:18:33.6670126Z 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:18:33.6872502Z 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:18:33.6873909Z 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:18:33.6875028Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:18:33.6876324Z 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:18:33.6879287Z 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:18:33.6881181Z 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:18:33.6882907Z 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:18:33.6884699Z 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:18:33.6887335Z 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:18:33.6889570Z 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:18:33.6891613Z 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:18:33.6893637Z 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:18:33.6896761Z 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:18:33.6898757Z 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:18:33.6900731Z 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:18:33.6903143Z 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:18:33.6905620Z 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:18:33.6907586Z 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:18:33.6909341Z 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:18:33.6911449Z 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:18:33.6914151Z 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:18:33.6916071Z 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:18:33.6917902Z 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:18:33.6920246Z 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:18:33.6922673Z 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:18:33.6924575Z 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:18:33.6926326Z 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:18:33.6929030Z 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:18:33.6931289Z 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:18:33.6933058Z 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:18:33.6934791Z 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:18:33.6937795Z 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:18:33.6939772Z 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:18:33.6941521Z 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:18:33.6943421Z 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:18:33.6946450Z 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:18:33.6948295Z 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:18:33.6950050Z 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:18:33.6951832Z 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:18:33.7175523Z 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:18:33.7177585Z 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:18:33.7180432Z 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:18:33.7182368Z 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:18:33.7184120Z 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:18:33.7186508Z 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:18:33.7188963Z 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:18:33.7191064Z 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:18:33.7192856Z 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:18:33.7195670Z 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:18:33.7197829Z 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:18:33.7199844Z 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:18:33.7201588Z 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:18:33.7204830Z 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:18:33.7206714Z 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:18:33.7208519Z 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:18:33.7210600Z 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:18:33.7213311Z 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:18:33.7215177Z 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:18:33.7216926Z 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:18:33.7218880Z 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:18:33.7221781Z 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:18:33.7223627Z 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:18:33.7225420Z 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:18:33.7227498Z 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:18:33.7230406Z 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:18:33.7232423Z 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:18:33.7234194Z 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:18:33.7235970Z 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:18:33.7239107Z 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:18:33.7242203Z 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:18:33.7244258Z 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:18:33.7246059Z 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:18:33.7248421Z 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:18:33.7251630Z 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:18:33.7254896Z 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:18:33.7256768Z 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:18:33.7258583Z 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:18:33.7471380Z 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:18:33.7473312Z 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:18:33.7475324Z 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:18:33.7478195Z 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:18:33.7479978Z 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:18:33.7481922Z 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:18:33.7483864Z 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:18:33.7486799Z 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:18:33.7489488Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-06-05T23:18:33.7492153Z 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:18:33.7493613Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:18:33.7494840Z 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:18:33.7496308Z 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:18:33.7497767Z 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:18:33.7499653Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:18:33.7502010Z 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:18:33.7504287Z 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:18:33.7506143Z 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:18:33.7508022Z 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:18:33.7510693Z 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:18:33.7514256Z 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:18:33.7516583Z 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:18:33.7518404Z 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:18:33.7520196Z 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:18:33.7523450Z 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:18:33.7525470Z 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:18:33.7527280Z 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:18:33.7529311Z 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:18:33.7532238Z 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:18:33.7534115Z 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:18:33.7536061Z 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:18:33.7537603Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:18:33.7539904Z 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:18:33.7541617Z 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:18:33.7543260Z 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:18:33.7544883Z 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:18:33.7547306Z 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:18:33.7549388Z 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:18:33.7551044Z 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:18:33.7552668Z 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:18:33.7554504Z 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:18:33.7880563Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:18:33.7881533Z copying src/executorch/backends/openvino/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:18:33.7882722Z copying src/executorch/backends/openvino/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:18:33.7883809Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests 2025-06-05T23:18:33.7885343Z copying src/executorch/backends/openvino/tests/test_runner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests 2025-06-05T23:18:33.7887075Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/models 2025-06-05T23:18:33.7889055Z 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:18:33.7891387Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:18:33.7893293Z 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:18:33.7895751Z 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:18:33.7898107Z 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:18:33.7900213Z 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:18:33.7902188Z 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:18:33.7903717Z 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:18:33.7904998Z 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:18:33.7906195Z 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:18:33.7907394Z 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:18:33.7909436Z 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:18:33.7911095Z 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:18:33.7912107Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:18:33.7912984Z copying src/executorch/backends/qualcomm/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:18:33.7914147Z 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:18:33.7915380Z 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:18:33.7916556Z copying src/executorch/backends/qualcomm/_passes/annotate_stack.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:18:33.7918437Z copying src/executorch/backends/qualcomm/_passes/annotate_unbind.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:18:33.7920475Z 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:18:33.7921703Z 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:18:33.7922911Z 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:18:33.7924203Z 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:18:33.7925370Z copying src/executorch/backends/qualcomm/_passes/decompose_any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:18:33.7926890Z copying src/executorch/backends/qualcomm/_passes/decompose_cdist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:18:33.7929008Z copying src/executorch/backends/qualcomm/_passes/decompose_einsum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:18:33.7930190Z copying src/executorch/backends/qualcomm/_passes/decompose_expm1.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:18:33.7931498Z 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:18:33.7932713Z copying src/executorch/backends/qualcomm/_passes/decompose_roll.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:18:33.7933856Z copying src/executorch/backends/qualcomm/_passes/decompose_silu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:18:33.7935526Z 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:18:33.7937507Z 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:18:33.7938726Z copying src/executorch/backends/qualcomm/_passes/fold_qdq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:18:33.7939881Z 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:18:33.7941095Z 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:18:33.7942269Z 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:18:33.7944010Z 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:18:33.7945715Z copying src/executorch/backends/qualcomm/_passes/insert_requantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:18:33.7946990Z copying src/executorch/backends/qualcomm/_passes/layout_transform.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:18:33.7948201Z 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:18:33.7949415Z 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:18:33.7950624Z 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:18:33.7952750Z 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:18:33.7954355Z 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:18:33.7955603Z 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:18:33.7956761Z copying src/executorch/backends/qualcomm/_passes/remove_redundancy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:18:33.7957947Z 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:18:33.7959244Z 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:18:33.7961188Z 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:18:33.7962800Z 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:18:33.8327862Z copying src/executorch/backends/qualcomm/_passes/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:18:33.8328743Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8329648Z copying src/executorch/backends/qualcomm/builders/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8331079Z copying src/executorch/backends/qualcomm/builders/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8333157Z copying src/executorch/backends/qualcomm/builders/op_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8334408Z 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:18:33.8335773Z copying src/executorch/backends/qualcomm/builders/op_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8336888Z copying src/executorch/backends/qualcomm/builders/op_amax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8338009Z copying src/executorch/backends/qualcomm/builders/op_and.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8339140Z copying src/executorch/backends/qualcomm/builders/op_arange.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8341000Z copying src/executorch/backends/qualcomm/builders/op_argmin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8342706Z 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:18:33.8344001Z 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:18:33.8345154Z copying src/executorch/backends/qualcomm/builders/op_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8346273Z copying src/executorch/backends/qualcomm/builders/op_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8347399Z copying src/executorch/backends/qualcomm/builders/op_ceil.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8349586Z copying src/executorch/backends/qualcomm/builders/op_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8351064Z copying src/executorch/backends/qualcomm/builders/op_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8352255Z copying src/executorch/backends/qualcomm/builders/op_cos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8353388Z 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:18:33.8354545Z 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:18:33.8355863Z copying src/executorch/backends/qualcomm/builders/op_dequantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8357941Z copying src/executorch/backends/qualcomm/builders/op_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8359345Z copying src/executorch/backends/qualcomm/builders/op_elu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8360583Z copying src/executorch/backends/qualcomm/builders/op_embedding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8361722Z copying src/executorch/backends/qualcomm/builders/op_eq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8362822Z copying src/executorch/backends/qualcomm/builders/op_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8364129Z copying src/executorch/backends/qualcomm/builders/op_expand.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8366170Z copying src/executorch/backends/qualcomm/builders/op_full.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8367544Z 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:18:33.8368770Z copying src/executorch/backends/qualcomm/builders/op_gather.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8369890Z copying src/executorch/backends/qualcomm/builders/op_ge.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8371011Z copying src/executorch/backends/qualcomm/builders/op_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8372190Z 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:18:33.8374230Z copying src/executorch/backends/qualcomm/builders/op_gt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8375677Z copying src/executorch/backends/qualcomm/builders/op_hardsigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8376953Z copying src/executorch/backends/qualcomm/builders/op_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8378131Z copying src/executorch/backends/qualcomm/builders/op_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8379285Z copying src/executorch/backends/qualcomm/builders/op_index.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8380647Z 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:18:33.8382890Z 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:18:33.8384115Z 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:18:33.8385314Z copying src/executorch/backends/qualcomm/builders/op_le.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8386441Z copying src/executorch/backends/qualcomm/builders/op_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8387565Z copying src/executorch/backends/qualcomm/builders/op_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8388836Z 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:18:33.8391139Z 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:18:33.8392696Z copying src/executorch/backends/qualcomm/builders/op_lt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8393920Z copying src/executorch/backends/qualcomm/builders/op_matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8395059Z copying src/executorch/backends/qualcomm/builders/op_max.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8396197Z 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:18:33.8397373Z 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:18:33.8399145Z copying src/executorch/backends/qualcomm/builders/op_min.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8400862Z copying src/executorch/backends/qualcomm/builders/op_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8402050Z copying src/executorch/backends/qualcomm/builders/op_ne.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8403153Z copying src/executorch/backends/qualcomm/builders/op_neg.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8404361Z copying src/executorch/backends/qualcomm/builders/op_or.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8798453Z copying src/executorch/backends/qualcomm/builders/op_pad.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8799618Z copying src/executorch/backends/qualcomm/builders/op_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8800757Z copying src/executorch/backends/qualcomm/builders/op_prelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8802661Z copying src/executorch/backends/qualcomm/builders/op_quantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8804941Z copying src/executorch/backends/qualcomm/builders/op_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8807166Z copying src/executorch/backends/qualcomm/builders/op_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8809589Z copying src/executorch/backends/qualcomm/builders/op_reshape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8811641Z copying src/executorch/backends/qualcomm/builders/op_resize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8813451Z 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:18:33.8814759Z copying src/executorch/backends/qualcomm/builders/op_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8815939Z 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:18:33.8817142Z 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:18:33.8818448Z copying src/executorch/backends/qualcomm/builders/op_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8820206Z copying src/executorch/backends/qualcomm/builders/op_sin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8822032Z 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:18:33.8823262Z 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:18:33.8824433Z copying src/executorch/backends/qualcomm/builders/op_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8825599Z 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:18:33.8826822Z 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:18:33.8828545Z copying src/executorch/backends/qualcomm/builders/op_sqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8830347Z copying src/executorch/backends/qualcomm/builders/op_squeeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8831707Z copying src/executorch/backends/qualcomm/builders/op_stack.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8832839Z copying src/executorch/backends/qualcomm/builders/op_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8833986Z 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:18:33.8835143Z copying src/executorch/backends/qualcomm/builders/op_tanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8836817Z copying src/executorch/backends/qualcomm/builders/op_to.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8838981Z copying src/executorch/backends/qualcomm/builders/op_topk.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8841031Z copying src/executorch/backends/qualcomm/builders/op_transpose.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8842631Z copying src/executorch/backends/qualcomm/builders/op_unbind.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8844058Z copying src/executorch/backends/qualcomm/builders/op_unsqueeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8845395Z 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:18:33.8846643Z 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:18:33.8847977Z copying src/executorch/backends/qualcomm/builders/op_where.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8850060Z copying src/executorch/backends/qualcomm/builders/qnn_constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8851449Z copying src/executorch/backends/qualcomm/builders/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:18:33.8852400Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/debugger 2025-06-05T23:18:33.8853390Z copying src/executorch/backends/qualcomm/debugger/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/debugger 2025-06-05T23:18:33.8854289Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:18:33.8855227Z copying src/executorch/backends/qualcomm/partition/common_defs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:18:33.8856524Z copying src/executorch/backends/qualcomm/partition/qnn_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:18:33.8858697Z copying src/executorch/backends/qualcomm/partition/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:18:33.8859768Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:18:33.8860800Z copying src/executorch/backends/qualcomm/quantizer/annotators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:18:33.8862045Z copying src/executorch/backends/qualcomm/quantizer/custom_annotation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:18:33.8863256Z copying src/executorch/backends/qualcomm/quantizer/qconfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:18:33.8864687Z copying src/executorch/backends/qualcomm/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:18:33.8866391Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-06-05T23:18:33.8867592Z copying src/executorch/backends/qualcomm/serialization/qc_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-06-05T23:18:33.8868970Z 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:18:33.8869948Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:18:33.8870811Z copying src/executorch/backends/qualcomm/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:18:33.8871942Z 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:18:33.8873741Z copying src/executorch/backends/qualcomm/tests/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:18:33.8875111Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:18:33.8875990Z copying src/executorch/backends/qualcomm/utils/constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:18:33.8877193Z copying src/executorch/backends/qualcomm/utils/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:18:33.8878232Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:18:33.8879353Z 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:18:33.9238949Z 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:18:33.9240188Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test 2025-06-05T23:18:33.9241192Z 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:18:33.9243112Z 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:18:33.9245338Z 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:18:33.9246311Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:18:33.9247315Z copying src/executorch/backends/vulkan/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:18:33.9248421Z 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:18:33.9249570Z 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:18:33.9250751Z 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:18:33.9252178Z copying src/executorch/backends/vulkan/_passes/remove_asserts.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:18:33.9254261Z 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:18:33.9255667Z 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:18:33.9257007Z 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:18:33.9258186Z 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:18:33.9259092Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/partitioner 2025-06-05T23:18:33.9260077Z copying src/executorch/backends/vulkan/partitioner/vulkan_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/partitioner 2025-06-05T23:18:33.9261492Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/quantizer 2025-06-05T23:18:33.9263144Z copying src/executorch/backends/vulkan/quantizer/vulkan_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/quantizer 2025-06-05T23:18:33.9264117Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime 2025-06-05T23:18:33.9265182Z 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:18:33.9266141Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:18:33.9267137Z 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:18:33.9268586Z 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:18:33.9270631Z 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:18:33.9272145Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-06-05T23:18:33.9273083Z copying src/executorch/backends/vulkan/test/test_serialization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-06-05T23:18:33.9274400Z 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:18:33.9275648Z 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:18:33.9276798Z 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:18:33.9277976Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests 2025-06-05T23:18:33.9279605Z 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:18:33.9281195Z 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:18:33.9282701Z 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:18:33.9283834Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:18:33.9284861Z 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:18:33.9286818Z 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:18:33.9288789Z 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:18:33.9290304Z 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:18:33.9291994Z 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:18:33.9293325Z 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:18:33.9294878Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/volk 2025-06-05T23:18:33.9296569Z 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:18:33.9297726Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:18:33.9299166Z 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:18:33.9300854Z 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:18:33.9303040Z 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:18:33.9305536Z 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:18:33.9307287Z 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:18:33.9308863Z 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:18:33.9310669Z 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:18:33.9313071Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-06-05T23:18:33.9314727Z 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:18:33.9316137Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-06-05T23:18:33.9317717Z 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:18:33.9675744Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:18:33.9676629Z copying src/executorch/backends/xnnpack/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:18:33.9677815Z 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:18:33.9679458Z 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:18:33.9681465Z 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:18:33.9682700Z 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:18:33.9684090Z 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:18:33.9685299Z copying src/executorch/backends/xnnpack/_passes/decompose_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:18:33.9686460Z 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:18:33.9688303Z 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:18:33.9690070Z 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:18:33.9691573Z 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:18:33.9692878Z copying src/executorch/backends/xnnpack/_passes/xnnpack_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:18:33.9693769Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9694656Z copying src/executorch/backends/xnnpack/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9696516Z copying src/executorch/backends/xnnpack/operators/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9698247Z copying src/executorch/backends/xnnpack/operators/op_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9699448Z copying src/executorch/backends/xnnpack/operators/op_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9700793Z copying src/executorch/backends/xnnpack/operators/op_addmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9701990Z 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:18:33.9703152Z copying src/executorch/backends/xnnpack/operators/op_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9704505Z copying src/executorch/backends/xnnpack/operators/op_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9706558Z copying src/executorch/backends/xnnpack/operators/op_ceiling.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9707806Z copying src/executorch/backends/xnnpack/operators/op_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9709102Z copying src/executorch/backends/xnnpack/operators/op_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9710238Z copying src/executorch/backends/xnnpack/operators/op_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9711437Z 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:18:33.9713345Z 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:18:33.9715127Z copying src/executorch/backends/xnnpack/operators/op_elu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9716329Z copying src/executorch/backends/xnnpack/operators/op_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9717552Z copying src/executorch/backends/xnnpack/operators/op_floor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9718684Z copying src/executorch/backends/xnnpack/operators/op_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9719844Z copying src/executorch/backends/xnnpack/operators/op_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9721197Z copying src/executorch/backends/xnnpack/operators/op_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9723359Z 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:18:33.9725554Z copying src/executorch/backends/xnnpack/operators/op_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9727263Z copying src/executorch/backends/xnnpack/operators/op_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9728527Z 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:18:33.9729816Z 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:18:33.9730971Z 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:18:33.9732142Z copying src/executorch/backends/xnnpack/operators/op_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9733460Z 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:18:33.9735665Z copying src/executorch/backends/xnnpack/operators/op_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9736973Z copying src/executorch/backends/xnnpack/operators/op_multiply.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9738258Z copying src/executorch/backends/xnnpack/operators/op_negate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9739425Z copying src/executorch/backends/xnnpack/operators/op_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9740582Z copying src/executorch/backends/xnnpack/operators/op_prelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9741758Z 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:18:33.9742937Z copying src/executorch/backends/xnnpack/operators/op_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9744921Z copying src/executorch/backends/xnnpack/operators/op_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9746963Z copying src/executorch/backends/xnnpack/operators/op_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9748979Z copying src/executorch/backends/xnnpack/operators/op_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9750213Z 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:18:33.9751517Z 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:18:33.9752706Z copying src/executorch/backends/xnnpack/operators/op_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9753859Z copying src/executorch/backends/xnnpack/operators/op_square.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:33.9755037Z 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:18:34.0088501Z copying src/executorch/backends/xnnpack/operators/op_squeeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:34.0089768Z 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:18:34.0091359Z 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:18:34.0093701Z copying src/executorch/backends/xnnpack/operators/op_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:34.0095029Z 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:18:34.0096274Z copying src/executorch/backends/xnnpack/operators/quant_params.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:18:34.0097249Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-06-05T23:18:34.0098163Z copying src/executorch/backends/xnnpack/partition/configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-06-05T23:18:34.0099526Z copying src/executorch/backends/xnnpack/partition/xnnpack_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-06-05T23:18:34.0101222Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer 2025-06-05T23:18:34.0102685Z copying src/executorch/backends/xnnpack/quantizer/xnnpack_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer 2025-06-05T23:18:34.0104041Z 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:18:34.0105083Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:18:34.0106102Z 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:18:34.0107447Z 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:18:34.0108451Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test 2025-06-05T23:18:34.0109787Z 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:18:34.0111839Z 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:18:34.0112793Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party 2025-06-05T23:18:34.0113878Z 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:18:34.0114910Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:18:34.0115777Z copying src/executorch/backends/xnnpack/utils/configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:18:34.0116871Z copying src/executorch/backends/xnnpack/utils/quant_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:18:34.0117951Z copying src/executorch/backends/xnnpack/utils/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:18:34.0119736Z copying src/executorch/backends/xnnpack/utils/xnnpack_constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:18:34.0121243Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:18:34.0122260Z 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:18:34.0123771Z 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:18:34.0125277Z 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:18:34.0127082Z 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:18:34.0129303Z 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:18:34.0130771Z 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:18:34.0131882Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs 2025-06-05T23:18:34.0133009Z 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:18:34.0134328Z 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:18:34.0135745Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:18:34.0137412Z 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:18:34.0138634Z 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:18:34.0139960Z 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:18:34.0141210Z 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:18:34.0142448Z 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:18:34.0144251Z 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:18:34.0146144Z 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:18:34.0147445Z 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:18:34.0148741Z 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:18:34.0149962Z 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:18:34.0151177Z 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:18:34.0153355Z 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:18:34.0154849Z 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:18:34.0155799Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:18:34.0156757Z 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:18:34.0157882Z 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:18:34.0159145Z 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:18:34.0160884Z 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:18:34.0162735Z 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:18:34.0163992Z 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:18:34.0165218Z 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:18:34.0166529Z 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:18:34.0522050Z 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:18:34.0523370Z 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:18:34.0524611Z 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:18:34.0525933Z 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:18:34.0527978Z 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:18:34.0530076Z 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:18:34.0532151Z 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:18:34.0533313Z 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:18:34.0534486Z 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:18:34.0535673Z 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:18:34.0536841Z 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:18:34.0538026Z 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:18:34.0539633Z 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:18:34.0541797Z 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:18:34.0544025Z 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:18:34.0546246Z 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:18:34.0548352Z 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:18:34.0550538Z 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:18:34.0552467Z 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:18:34.0553654Z 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:18:34.0554874Z 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:18:34.0556038Z 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:18:34.0557186Z 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:18:34.0558435Z 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:18:34.0560590Z 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:18:34.0562118Z 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:18:34.0563403Z 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:18:34.0564640Z 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:18:34.0565783Z 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:18:34.0566973Z 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:18:34.0569093Z 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:18:34.0571130Z 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:18:34.0573055Z 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:18:34.0574282Z 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:18:34.0575465Z 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:18:34.0576375Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:18:34.0577357Z 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:18:34.0578659Z 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:18:34.0581108Z 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:18:34.0583729Z 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:18:34.0586265Z 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:18:34.0588958Z 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:18:34.0591725Z 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:18:34.0593659Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:18:34.0595468Z 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:18:34.0597556Z 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:18:34.0599065Z 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:18:34.0600115Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization 2025-06-05T23:18:34.0601211Z 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:18:34.0602638Z 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:18:34.0604157Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester 2025-06-05T23:18:34.0605799Z 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:18:34.0607137Z 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:18:34.0608090Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:18:34.0609111Z 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:18:34.0610112Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:18:34.0611135Z 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:18:34.1105756Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:18:34.1107079Z 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:18:34.1108174Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:18:34.1109296Z 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:18:34.1110425Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:18:34.1112120Z 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:18:34.1115004Z 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:18:34.1117909Z 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:18:34.1120375Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-06-05T23:18:34.1122654Z 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:18:34.1125026Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:18:34.1127310Z 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:18:34.1130348Z 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:18:34.1133741Z 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:18:34.1136954Z 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:18:34.1139234Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:18:34.1141608Z 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:18:34.1144772Z 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:18:34.1147944Z 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:18:34.1151221Z 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:18:34.1154423Z 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:18:34.1157405Z 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:18:34.1160404Z 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:18:34.1163396Z 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:18:34.1166626Z 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:18:34.1169569Z 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:18:34.1171223Z 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:18:34.1172820Z 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:18:34.1174586Z 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:18:34.1176457Z 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:18:34.1179172Z 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:18:34.1180782Z 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:18:34.1182447Z 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:18:34.1184002Z 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:18:34.1185749Z 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:18:34.1188456Z 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:18:34.1190123Z 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:18:34.1192031Z 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:18:34.1193880Z 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:18:34.1196349Z 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:18:34.1197882Z 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:18:34.1199370Z 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:18:34.1200832Z 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:18:34.1201981Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:18:34.1204066Z 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:18:34.1206125Z 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:18:34.1207761Z 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:18:34.1532903Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:18:34.1534607Z 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:18:34.1535781Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:18:34.1536964Z copying src/executorch/codegen/api/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:18:34.1538472Z copying src/executorch/codegen/api/custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:18:34.1539389Z copying src/executorch/codegen/api/et_cpp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:18:34.1540366Z copying src/executorch/codegen/api/unboxing.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:18:34.1541216Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:18:34.1542024Z copying src/executorch/codegen/test/test_executorch_custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:18:34.1543015Z copying src/executorch/codegen/test/test_executorch_gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:18:34.1544070Z copying src/executorch/codegen/test/test_executorch_signatures.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:18:34.1545873Z copying src/executorch/codegen/test/test_executorch_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:18:34.1547321Z copying src/executorch/codegen/test/test_executorch_unboxing.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:18:34.1548411Z copying src/executorch/codegen/test/test_selective_build.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:18:34.1549223Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:18:34.1549944Z copying src/executorch/codegen/tools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:18:34.1550849Z copying src/executorch/codegen/tools/gen_all_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:18:34.1552142Z copying src/executorch/codegen/tools/gen_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:18:34.1553790Z copying src/executorch/codegen/tools/gen_ops_def.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:18:34.1555510Z copying src/executorch/codegen/tools/gen_selected_op_variants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:18:34.1557063Z copying src/executorch/codegen/tools/merge_yaml.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:18:34.1558068Z copying src/executorch/codegen/tools/yaml_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:18:34.1558820Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:18:34.1559583Z copying src/executorch/codegen/api/types/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:18:34.1560560Z copying src/executorch/codegen/api/types/signatures.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:18:34.1561551Z copying src/executorch/codegen/api/types/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:18:34.1562728Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-06-05T23:18:34.1564316Z 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:18:34.1566247Z 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:18:34.1567799Z 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:18:34.1568946Z 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:18:34.1569834Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-06-05T23:18:34.1570648Z copying src/executorch/devtools/backend_debug/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-06-05T23:18:34.1571719Z copying src/executorch/devtools/backend_debug/delegation_info.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-06-05T23:18:34.1572986Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:18:34.1574647Z copying src/executorch/devtools/bundled_program/config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:18:34.1576600Z copying src/executorch/devtools/bundled_program/core.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:18:34.1578037Z copying src/executorch/devtools/bundled_program/version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:18:34.1578892Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-06-05T23:18:34.1579787Z copying src/executorch/devtools/debug_format/base_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-06-05T23:18:34.1580820Z copying src/executorch/devtools/debug_format/et_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-06-05T23:18:34.1581612Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:18:34.1582388Z copying src/executorch/devtools/etdump/schema_flatcc.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:18:34.1583807Z copying src/executorch/devtools/etdump/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:18:34.1585215Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:18:34.1586608Z copying src/executorch/devtools/etrecord/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:18:34.1588359Z copying src/executorch/devtools/etrecord/_etrecord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:18:34.1589351Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:18:34.1590147Z copying src/executorch/devtools/inspector/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:18:34.1591420Z copying src/executorch/devtools/inspector/_inspector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:18:34.1592470Z copying src/executorch/devtools/inspector/_inspector_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:18:34.1593586Z copying src/executorch/devtools/inspector/_intermediate_output_capturer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:18:34.1594696Z copying src/executorch/devtools/inspector/inspector_cli.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:18:34.1596014Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/size_analysis_tool 2025-06-05T23:18:34.1597722Z 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:18:34.1599895Z 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:18:34.1601411Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:18:34.1602259Z copying src/executorch/devtools/visualization/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:18:34.1603396Z copying src/executorch/devtools/visualization/visualization_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:18:34.1604713Z copying src/executorch/devtools/visualization/visualization_utils_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:18:34.1605644Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug/tests 2025-06-05T23:18:34.1606597Z 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:18:34.1608329Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-06-05T23:18:34.1610092Z 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:18:34.1612342Z 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:18:34.1613476Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-06-05T23:18:34.1614466Z 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:18:34.1615417Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test 2025-06-05T23:18:34.1933358Z 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:18:34.1934750Z 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:18:34.1935953Z 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:18:34.1937458Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/util 2025-06-05T23:18:34.1939088Z 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:18:34.1940070Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/test 2025-06-05T23:18:34.1941216Z 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:18:34.1942280Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/test 2025-06-05T23:18:34.1943361Z 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:18:34.1944368Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/tests 2025-06-05T23:18:34.1945233Z copying src/executorch/devtools/etdump/tests/serialize_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/tests 2025-06-05T23:18:34.1946653Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/tests 2025-06-05T23:18:34.1948237Z copying src/executorch/devtools/etrecord/tests/etrecord_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/tests 2025-06-05T23:18:34.1949163Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:18:34.1950201Z 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:18:34.1951532Z copying src/executorch/devtools/inspector/tests/inspector_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:18:34.1952724Z 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:18:34.1953954Z 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:18:34.1956247Z 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:18:34.1957501Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:18:34.1958602Z 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:18:34.1959766Z 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:18:34.1960944Z 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:18:34.1962093Z 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:18:34.1963641Z 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:18:34.1965255Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:18:34.1966162Z copying src/executorch/examples/models/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:18:34.1967134Z copying src/executorch/examples/models/checkpoint.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:18:34.1968236Z copying src/executorch/examples/models/model_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:18:34.1969199Z copying src/executorch/examples/models/model_factory.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:18:34.1970022Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-06-05T23:18:34.1970928Z 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:18:34.1972776Z 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:18:34.1974598Z 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:18:34.1975803Z 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:18:34.1977014Z 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:18:34.1977928Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-06-05T23:18:34.1978884Z 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:18:34.1980122Z 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:18:34.1981662Z 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:18:34.1983068Z 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:18:34.1984351Z 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:18:34.1985307Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts 2025-06-05T23:18:34.1986235Z 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:18:34.1987447Z 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:18:34.1989035Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3 2025-06-05T23:18:34.1990568Z 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:18:34.1991851Z 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:18:34.1992837Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:18:34.1993648Z copying src/executorch/examples/models/edsr/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:18:34.1994650Z copying src/executorch/examples/models/edsr/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:18:34.1995487Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam 2025-06-05T23:18:34.1996709Z 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:18:34.1998803Z 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:18:34.1999750Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt 2025-06-05T23:18:34.2000783Z 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:18:34.2001959Z 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:18:34.2002866Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3 2025-06-05T23:18:34.2003847Z 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:18:34.2005553Z 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:18:34.2007131Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4 2025-06-05T23:18:34.2008169Z 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:18:34.2009439Z 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:18:34.2348571Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:18:34.2349681Z copying src/executorch/examples/models/llama/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:18:34.2350750Z copying src/executorch/examples/models/llama/attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:18:34.2352521Z copying src/executorch/examples/models/llama/eval_llama.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:18:34.2354502Z 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:18:34.2356477Z copying src/executorch/examples/models/llama/export_llama.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:18:34.2357685Z 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:18:34.2358792Z copying src/executorch/examples/models/llama/fairseq2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:18:34.2359862Z copying src/executorch/examples/models/llama/hf_download.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:18:34.2361179Z 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:18:34.2363034Z copying src/executorch/examples/models/llama/llama_transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:18:34.2364778Z copying src/executorch/examples/models/llama/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:18:34.2365845Z copying src/executorch/examples/models/llama/model_args.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:18:34.2366895Z copying src/executorch/examples/models/llama/norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:18:34.2367902Z copying src/executorch/examples/models/llama/rope.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:18:34.2368990Z copying src/executorch/examples/models/llama/static_attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:18:34.2369894Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision 2025-06-05T23:18:34.2371449Z 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:18:34.2373148Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:18:34.2374577Z copying src/executorch/examples/models/llava/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:18:34.2376319Z copying src/executorch/examples/models/llava/export_llava.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:18:34.2377385Z copying src/executorch/examples/models/llava/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:18:34.2378270Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:18:34.2379076Z copying src/executorch/examples/models/lstm/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:18:34.2380073Z copying src/executorch/examples/models/lstm/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:18:34.2380898Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:18:34.2382387Z copying src/executorch/examples/models/mobilebert/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:18:34.2384164Z copying src/executorch/examples/models/mobilebert/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:18:34.2385101Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2 2025-06-05T23:18:34.2386054Z 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:18:34.2387306Z 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:18:34.2388205Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3 2025-06-05T23:18:34.2389088Z 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:18:34.2390638Z 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:18:34.2392443Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini-lora 2025-06-05T23:18:34.2393728Z 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:18:34.2394756Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:18:34.2395625Z 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:18:34.2396730Z 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:18:34.2397868Z 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:18:34.2399036Z 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:18:34.2401079Z 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:18:34.2402366Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini 2025-06-05T23:18:34.2403333Z 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:18:34.2404560Z 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:18:34.2405450Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5 2025-06-05T23:18:34.2406292Z 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:18:34.2407373Z 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:18:34.2408244Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-06-05T23:18:34.2409073Z copying src/executorch/examples/models/qwen3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-06-05T23:18:34.2410142Z copying src/executorch/examples/models/qwen3/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-06-05T23:18:34.2411015Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:18:34.2411835Z copying src/executorch/examples/models/resnet/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:18:34.2413703Z copying src/executorch/examples/models/resnet/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:18:34.2415017Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-06-05T23:18:34.2415864Z copying src/executorch/examples/models/smollm2/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-06-05T23:18:34.2417201Z copying src/executorch/examples/models/smollm2/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-06-05T23:18:34.2418072Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-06-05T23:18:34.2418882Z copying src/executorch/examples/models/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-06-05T23:18:34.2419925Z copying src/executorch/examples/models/test/test_export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-06-05T23:18:34.2420783Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit 2025-06-05T23:18:34.2421739Z 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:18:34.2423009Z 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:18:34.2424329Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model 2025-06-05T23:18:34.2425879Z 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:18:34.2713079Z 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:18:34.2713976Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:18:34.2715381Z copying src/executorch/examples/models/wav2letter/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:18:34.2717522Z copying src/executorch/examples/models/wav2letter/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:18:34.2719466Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:18:34.2721721Z 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:18:34.2724903Z 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:18:34.2726753Z 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:18:34.2728388Z 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:18:34.2729942Z 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:18:34.2731948Z 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:18:34.2734054Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate 2025-06-05T23:18:34.2735214Z 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:18:34.2736543Z 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:18:34.2737594Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-06-05T23:18:34.2738897Z 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:18:34.2741285Z 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:18:34.2743029Z 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:18:34.2744567Z 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:18:34.2745644Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner 2025-06-05T23:18:34.2746727Z 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:18:34.2748176Z 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:18:34.2750163Z 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:18:34.2752120Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:18:34.2770789Z 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:18:34.2772544Z 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:18:34.2774088Z 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:18:34.2775593Z 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:18:34.2777749Z 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:18:34.2779867Z 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:18:34.2781428Z 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:18:34.2782940Z 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:18:34.2784425Z 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:18:34.2785884Z 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:18:34.2788475Z 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:18:34.2791288Z 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:18:34.2792971Z 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:18:34.2794661Z 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:18:34.2796222Z 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:18:34.2797766Z 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:18:34.2800628Z 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:18:34.2803554Z 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:18:34.2804854Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:18:34.2805903Z 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:18:34.2807228Z 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:18:34.2808534Z 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:18:34.2810700Z 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:18:34.2812374Z 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:18:34.2813728Z 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:18:34.2814980Z 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:18:34.2815954Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tokenizer 2025-06-05T23:18:34.3134113Z 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:18:34.3135186Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:18:34.3136293Z 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:18:34.3137910Z 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:18:34.3140478Z 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:18:34.3142045Z 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:18:34.3143238Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:18:34.3144285Z 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:18:34.3145734Z 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:18:34.3147865Z 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:18:34.3149725Z 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:18:34.3150890Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder 2025-06-05T23:18:34.3152035Z 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:18:34.3153270Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:18:34.3154548Z 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:18:34.3157102Z 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:18:34.3158292Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:18:34.3159566Z 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:18:34.3161130Z 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:18:34.3162350Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:18:34.3164360Z 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:18:34.3166525Z 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:18:34.3167809Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test 2025-06-05T23:18:34.3168730Z 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:18:34.3169895Z 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:18:34.3170879Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/moshi/mimi 2025-06-05T23:18:34.3172512Z 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:18:34.3173803Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:18:34.3174544Z copying src/executorch/exir/_serialize/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:18:34.3175522Z copying src/executorch/exir/_serialize/_cord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:18:34.3176429Z copying src/executorch/exir/_serialize/_dataclass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:18:34.3177362Z copying src/executorch/exir/_serialize/_flatbuffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:18:34.3178401Z copying src/executorch/exir/_serialize/_named_data_store.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:18:34.3179721Z copying src/executorch/exir/_serialize/_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:18:34.3181350Z copying src/executorch/exir/_serialize/_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:18:34.3182388Z copying src/executorch/exir/_serialize/data_serializer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:18:34.3183412Z copying src/executorch/exir/_serialize/padding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:18:34.3184177Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:18:34.3185009Z copying src/executorch/exir/backend/backend_api.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:18:34.3185957Z copying src/executorch/exir/backend/backend_details.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:18:34.3187102Z copying src/executorch/exir/backend/compile_spec_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:18:34.3188852Z copying src/executorch/exir/backend/operator_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:18:34.3190061Z copying src/executorch/exir/backend/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:18:34.3191232Z copying src/executorch/exir/backend/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:18:34.3192008Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:18:34.3192708Z copying src/executorch/exir/capture/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:18:34.3193585Z copying src/executorch/exir/capture/_capture.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:18:34.3194437Z copying src/executorch/exir/capture/_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:18:34.3195298Z copying src/executorch/exir/capture/_unlift.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:18:34.3196002Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:18:34.3196769Z copying src/executorch/exir/dialects/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:18:34.3198277Z copying src/executorch/exir/dialects/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:18:34.3199454Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:18:34.3200153Z copying src/executorch/exir/emit/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:18:34.3201210Z copying src/executorch/exir/emit/_emit_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:18:34.3202106Z copying src/executorch/exir/emit/_emitter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:18:34.3202790Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:18:34.3203512Z copying src/executorch/exir/operator/convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:18:34.3204490Z copying src/executorch/exir/operator/manip.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:18:34.3205369Z copying src/executorch/exir/operator/util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:18:34.3206061Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3206986Z copying src/executorch/exir/passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3208808Z copying src/executorch/exir/passes/_quant_patterns_and_replacements.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3210079Z copying src/executorch/exir/passes/const_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3675354Z copying src/executorch/exir/passes/constant_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3676523Z copying src/executorch/exir/passes/debug_handle_generator_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3677534Z copying src/executorch/exir/passes/dim_order_ops_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3678552Z copying src/executorch/exir/passes/dynamic_shape_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3680565Z copying src/executorch/exir/passes/executorch_prim_ops_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3682078Z copying src/executorch/exir/passes/external_constants_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3683153Z copying src/executorch/exir/passes/init_mutable_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3684381Z 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:18:34.3685418Z copying src/executorch/exir/passes/memory_format_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3686388Z copying src/executorch/exir/passes/memory_planning_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3687400Z copying src/executorch/exir/passes/normalize_transpose_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3688596Z 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:18:34.3690324Z copying src/executorch/exir/passes/pass_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3691834Z copying src/executorch/exir/passes/prune_empty_tensors_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3692828Z copying src/executorch/exir/passes/quant_fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3693954Z copying src/executorch/exir/passes/quantize_io_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3694943Z copying src/executorch/exir/passes/remove_graph_asserts_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3695969Z copying src/executorch/exir/passes/remove_mixed_type_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3696967Z copying src/executorch/exir/passes/remove_noop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3698702Z copying src/executorch/exir/passes/remove_unused_parameters_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3700270Z 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:18:34.3701416Z 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:18:34.3702622Z 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:18:34.3703648Z 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:18:34.3704807Z 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:18:34.3705827Z copying src/executorch/exir/passes/scalar_to_tensor_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3707204Z copying src/executorch/exir/passes/spec_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3708877Z copying src/executorch/exir/passes/sym_shape_eval_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3709943Z copying src/executorch/exir/passes/sym_to_tensor_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3711116Z copying src/executorch/exir/passes/weights_to_outputs_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:18:34.3712022Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:18:34.3712723Z copying src/executorch/exir/program/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:18:34.3713619Z copying src/executorch/exir/program/_fake_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:18:34.3714506Z copying src/executorch/exir/program/_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:18:34.3715236Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:18:34.3716367Z copying src/executorch/exir/serde/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:18:34.3717904Z copying src/executorch/exir/serde/export_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:18:34.3718860Z copying src/executorch/exir/serde/schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:18:34.3719872Z copying src/executorch/exir/serde/schema_check.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:18:34.3720769Z copying src/executorch/exir/serde/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:18:34.3721612Z copying src/executorch/exir/serde/union.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:18:34.3722271Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3722960Z copying src/executorch/exir/tests/asr_joiner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3723877Z copying src/executorch/exir/tests/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3725390Z copying src/executorch/exir/tests/control_flow_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3726983Z copying src/executorch/exir/tests/dynamic_shape_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3727886Z copying src/executorch/exir/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3728856Z copying src/executorch/exir/tests/test_arg_validator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3729744Z copying src/executorch/exir/tests/test_capture.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3730611Z copying src/executorch/exir/tests/test_common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3731490Z copying src/executorch/exir/tests/test_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3732384Z copying src/executorch/exir/tests/test_dim_order_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3733842Z copying src/executorch/exir/tests/test_dynamic_shape_propagation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3735709Z copying src/executorch/exir/tests/test_error.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3737280Z copying src/executorch/exir/tests/test_joint_graph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3738854Z 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:18:34.3739895Z 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:18:34.3740981Z 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:18:34.3741969Z copying src/executorch/exir/tests/test_memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3742978Z copying src/executorch/exir/tests/test_op_convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3743879Z copying src/executorch/exir/tests/test_pass_infra.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3745000Z copying src/executorch/exir/tests/test_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3746618Z copying src/executorch/exir/tests/test_print_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3747853Z 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:18:34.3748997Z copying src/executorch/exir/tests/test_quant_fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3749942Z copying src/executorch/exir/tests/test_quantization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3750880Z copying src/executorch/exir/tests/test_quantize_io_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.3751885Z 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:18:34.4135480Z copying src/executorch/exir/tests/test_remove_view_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.4136591Z copying src/executorch/exir/tests/test_serde.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.4137461Z copying src/executorch/exir/tests/test_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.4138709Z copying src/executorch/exir/tests/test_tracer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.4140309Z copying src/executorch/exir/tests/test_verification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.4141435Z copying src/executorch/exir/tests/test_warnings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.4142488Z copying src/executorch/exir/tests/transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:18:34.4143237Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:18:34.4144049Z copying src/executorch/exir/verification/arg_validator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:18:34.4145044Z copying src/executorch/exir/verification/dev_html.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:18:34.4146057Z copying src/executorch/exir/verification/interpreter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:18:34.4147717Z copying src/executorch/exir/verification/verifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:18:34.4149220Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:18:34.4150020Z copying src/executorch/exir/_serialize/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:18:34.4151071Z copying src/executorch/exir/_serialize/test/test_cord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:18:34.4152097Z copying src/executorch/exir/_serialize/test/test_flatbuffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:18:34.4153164Z 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:18:34.4154206Z copying src/executorch/exir/_serialize/test/test_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:18:34.4155554Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-06-05T23:18:34.4157513Z 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:18:34.4160040Z 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:18:34.4161559Z 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:18:34.4163032Z 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:18:34.4164561Z 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:18:34.4165569Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:18:34.4166914Z 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:18:34.4168853Z 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:18:34.4170099Z 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:18:34.4171241Z 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:18:34.4172370Z 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:18:34.4173448Z 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:18:34.4174501Z 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:18:34.4175603Z 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:18:34.4176923Z copying src/executorch/exir/backend/test/test_backends.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:18:34.4177975Z 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:18:34.4179047Z 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:18:34.4180112Z copying src/executorch/exir/backend/test/test_compatibility.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:18:34.4181278Z 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:18:34.4182594Z 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:18:34.4184606Z 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:18:34.4186594Z 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:18:34.4188047Z copying src/executorch/exir/backend/test/test_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:18:34.4189185Z copying src/executorch/exir/backend/test/test_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:18:34.4190268Z 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:18:34.4191524Z copying src/executorch/exir/backend/test/test_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:18:34.4192333Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos 2025-06-05T23:18:34.4193240Z 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:18:34.4194727Z 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:18:34.4196385Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc 2025-06-05T23:18:34.4197727Z 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:18:34.4199095Z 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:18:34.4200346Z 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:18:34.4201235Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend 2025-06-05T23:18:34.4202044Z copying src/executorch/exir/dialects/backend/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend 2025-06-05T23:18:34.4202820Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:18:34.4203580Z copying src/executorch/exir/dialects/edge/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:18:34.4204783Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/test 2025-06-05T23:18:34.4206318Z 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:18:34.4207855Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend/test 2025-06-05T23:18:34.4209388Z 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:18:34.4210315Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg 2025-06-05T23:18:34.4211218Z 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:18:34.4212271Z 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:18:34.4213243Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype 2025-06-05T23:18:34.4585026Z 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:18:34.4586193Z 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:18:34.4587334Z 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:18:34.4588169Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op 2025-06-05T23:18:34.4589316Z 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:18:34.4591330Z 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:18:34.4592509Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec 2025-06-05T23:18:34.4593442Z 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:18:34.4594501Z 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:18:34.4595348Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/test 2025-06-05T23:18:34.4596211Z 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:18:34.4597665Z 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:18:34.4599304Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op/test 2025-06-05T23:18:34.4601002Z 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:18:34.4602519Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/test 2025-06-05T23:18:34.4603937Z copying src/executorch/exir/emit/test/test_emit.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/test 2025-06-05T23:18:34.4605320Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/test 2025-06-05T23:18:34.4606805Z copying src/executorch/exir/operator/test/test_operator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/test 2025-06-05T23:18:34.4608264Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:18:34.4609326Z copying src/executorch/exir/program/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:18:34.4610353Z 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:18:34.4611380Z copying src/executorch/exir/program/test/test_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:18:34.4612191Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/test 2025-06-05T23:18:34.4613053Z copying src/executorch/exir/verification/test/test_verifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/test 2025-06-05T23:18:34.4613918Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:18:34.4614723Z copying src/executorch/extension/export_util/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:18:34.4616139Z copying src/executorch/extension/export_util/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:18:34.4617625Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor 2025-06-05T23:18:34.4619392Z copying src/executorch/extension/flat_tensor/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor 2025-06-05T23:18:34.4620803Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:18:34.4622259Z copying src/executorch/extension/gguf_util/convert_main.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:18:34.4623676Z copying src/executorch/extension/gguf_util/converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:18:34.4624678Z copying src/executorch/extension/gguf_util/load_gguf.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:18:34.4625472Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:18:34.4626309Z copying src/executorch/extension/pybindings/portable_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:18:34.4627266Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree 2025-06-05T23:18:34.4628029Z copying src/executorch/extension/pytree/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree 2025-06-05T23:18:34.4628793Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training 2025-06-05T23:18:34.4629607Z copying src/executorch/extension/training/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training 2025-06-05T23:18:34.4631058Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-06-05T23:18:34.4632580Z 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:18:34.4633822Z 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:18:34.4635093Z 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:18:34.4636014Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/test 2025-06-05T23:18:34.4636919Z 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:18:34.4637818Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/converters 2025-06-05T23:18:34.4638786Z 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:18:34.4640058Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:18:34.4641598Z 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:18:34.4643612Z 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:18:34.4645756Z 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:18:34.4647850Z 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:18:34.4649084Z 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:18:34.4650291Z 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:18:34.4651502Z 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:18:34.4652785Z 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:18:34.4653965Z 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:18:34.4655525Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:18:34.4657021Z copying src/executorch/extension/llm/export/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:18:34.4658878Z copying src/executorch/extension/llm/export/builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:18:34.4660848Z copying src/executorch/extension/llm/export/export_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:18:34.4662372Z copying src/executorch/extension/llm/export/partitioner_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:18:34.4663484Z copying src/executorch/extension/llm/export/quantizer_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:18:34.4664590Z 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:18:34.4665433Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:18:34.4666255Z copying src/executorch/extension/llm/modules/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:18:34.4667329Z copying src/executorch/extension/llm/modules/_position_embeddings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:18:34.4877377Z copying src/executorch/extension/llm/modules/attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:18:34.4879336Z copying src/executorch/extension/llm/modules/kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:18:34.4880165Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers 2025-06-05T23:18:34.4881082Z copying src/executorch/extension/llm/tokenizers/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers 2025-06-05T23:18:34.4882155Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant 2025-06-05T23:18:34.4883259Z 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:18:34.4884626Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:18:34.4886037Z 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:18:34.4887789Z 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:18:34.4888944Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test 2025-06-05T23:18:34.4889974Z 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:18:34.4891298Z 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:18:34.4892205Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-06-05T23:18:34.4893083Z 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:18:34.4894409Z 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:18:34.4895587Z 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:18:34.4896820Z 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:18:34.4897875Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:18:34.4899014Z 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:18:34.4900557Z 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:18:34.4902056Z 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:18:34.4903518Z 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:18:34.4905052Z 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:18:34.4906330Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test 2025-06-05T23:18:34.4907476Z 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:18:34.4908599Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-06-05T23:18:34.4909813Z 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:18:34.4911228Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:18:34.4912879Z 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:18:34.4914767Z 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:18:34.4916161Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:18:34.4917441Z 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:18:34.4919007Z 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:18:34.4920573Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:18:34.4922132Z 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:18:34.4923659Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:18:34.4925317Z 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:18:34.4927246Z 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:18:34.4928702Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-06-05T23:18:34.4929789Z 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:18:34.4930326Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-06-05T23:18:34.4931422Z 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:18:34.4931852Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-06-05T23:18:34.4932710Z 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:18:34.4933161Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:18:34.4934086Z 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:18:34.4934525Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-06-05T23:18:34.4935431Z 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:18:34.4935852Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-06-05T23:18:34.4936760Z 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:18:34.4937210Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:18:34.4937995Z 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:18:34.5034206Z 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:18:34.5035000Z 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:18:34.5035812Z 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:18:34.5036612Z 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:18:34.5037612Z 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:18:34.5038366Z 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:18:34.5039136Z 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:18:34.5039530Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-06-05T23:18:34.5040353Z 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:18:34.5040722Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:18:34.5041434Z 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:18:34.5042149Z 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:18:34.5042858Z 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:18:34.5043224Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:18:34.5044035Z 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:18:34.5044769Z 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:18:34.5045474Z 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:18:34.5045953Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-06-05T23:18:34.5046929Z 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:18:34.5047413Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-06-05T23:18:34.5048355Z 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:18:34.5048811Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:18:34.5049671Z 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:18:34.5050603Z 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:18:34.5051122Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:18:34.5052262Z 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:18:34.5053264Z 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:18:34.5054358Z 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:18:34.5055468Z 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:18:34.5055923Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:18:34.5056891Z 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:18:34.5057728Z 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:18:34.5058714Z 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:18:34.5059499Z 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:18:34.5060285Z 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:18:34.5060722Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools 2025-06-05T23:18:34.5061544Z 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:18:34.5062001Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:18:34.5062996Z 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:18:34.5063922Z 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:18:34.5064214Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/module/test/resources 2025-06-05T23:18:34.5064831Z 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:18:34.5065092Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-06-05T23:18:34.5065627Z copying src/executorch/extension/pybindings/test/make_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-06-05T23:18:34.5066515Z 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:18:34.5067081Z copying src/executorch/extension/pybindings/test/test_pybindings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-06-05T23:18:34.5067340Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/test 2025-06-05T23:18:35.7621627Z copying src/executorch/extension/pytree/test/test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/test 2025-06-05T23:18:35.7622570Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-06-05T23:18:35.7623541Z copying src/executorch/extension/training/pybindings/_training_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-06-05T23:18:35.7624964Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR 2025-06-05T23:18:35.7626054Z 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:18:35.7627504Z 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:18:35.7628491Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR/test 2025-06-05T23:18:35.7629553Z 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:18:35.7630591Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/test 2025-06-05T23:18:35.7631790Z 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:18:35.7632777Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:18:35.7633549Z copying src/executorch/kernels/quantized/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:18:35.7634417Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test 2025-06-05T23:18:35.7635327Z 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:18:35.7636512Z 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:18:35.7637382Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test 2025-06-05T23:18:35.7638194Z copying src/executorch/runtime/test/test_runtime.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test 2025-06-05T23:18:35.7638909Z running egg_info 2025-06-05T23:18:35.7639148Z creating executorch.egg-info 2025-06-05T23:18:35.7639447Z writing executorch.egg-info/PKG-INFO 2025-06-05T23:18:35.7639906Z writing dependency_links to executorch.egg-info/dependency_links.txt 2025-06-05T23:18:35.7640427Z writing entry points to executorch.egg-info/entry_points.txt 2025-06-05T23:18:35.7640913Z writing requirements to executorch.egg-info/requires.txt 2025-06-05T23:18:35.7641504Z writing top-level names to executorch.egg-info/top_level.txt 2025-06-05T23:18:35.7641965Z writing manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:18:35.7642390Z reading manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:18:35.7642765Z adding license file 'LICENSE' 2025-06-05T23:18:35.7643098Z writing manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:18:35.7643769Z copying src/executorch/exir/delegate.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:18:35.7644399Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:18:35.7645193Z copying src/executorch/schema/program.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:18:35.7646190Z copying src/executorch/schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:18:35.7647190Z copying src/executorch/backends/apple/coreml/executorchcoreml.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml 2025-06-05T23:18:35.7648537Z 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:18:35.7649701Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/schema 2025-06-05T23:18:35.7650906Z 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:18:35.7652702Z 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:18:35.7654362Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:18:35.7656100Z 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:18:35.7658167Z 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:18:35.7660148Z 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:18:35.7661897Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection 2025-06-05T23:18:35.7663708Z 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:18:35.7665776Z 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:18:35.7668083Z 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:18:35.7669762Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap 2025-06-05T23:18:35.7671442Z 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:18:35.7673458Z 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:18:35.7675577Z 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:18:35.7677836Z 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:18:35.7679993Z 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:18:35.7682039Z 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:18:35.7684467Z 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:18:35.7686692Z 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:18:35.7688707Z 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:18:35.7691101Z 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:18:35.7845872Z 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:18:35.7847990Z 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:18:35.7850447Z 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:18:35.7852678Z 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:18:35.7854865Z 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:18:35.7857048Z 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:18:35.7859354Z 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:18:35.7861487Z 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:18:35.7863817Z 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:18:35.7865799Z 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:18:35.7867805Z 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:18:35.7870304Z 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:18:35.7872513Z 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:18:35.7874624Z 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:18:35.7876255Z 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:18:35.7878264Z 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:18:35.7880130Z 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:18:35.7882023Z 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:18:35.7883910Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:18:35.7885514Z 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:18:35.7887804Z 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:18:35.7889987Z 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:18:35.7891840Z 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:18:35.7893501Z 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:18:35.7895960Z 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:18:35.7897833Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema 2025-06-05T23:18:35.7899624Z 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:18:35.7902010Z 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:18:35.7903860Z 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:18:35.7905827Z 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:18:35.7907664Z 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:18:35.7909694Z 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:18:35.7911569Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit 2025-06-05T23:18:35.7913186Z 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:18:35.7915857Z 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:18:35.8082452Z 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:18:35.8084377Z 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:18:35.8086131Z 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:18:35.8088638Z 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:18:35.8091226Z 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:18:35.8093564Z 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:18:35.8095855Z 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:18:35.8097553Z 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:18:35.8099348Z 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:18:35.8101772Z 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:18:35.8103664Z 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:18:35.8105340Z 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:18:35.8107145Z 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:18:35.8109008Z 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:18:35.8110724Z 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:18:35.8112667Z 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:18:35.8115086Z 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:18:35.8117531Z 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:18:35.8120015Z 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:18:35.8122375Z 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:18:35.8124937Z 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:18:35.8126978Z 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:18:35.8129143Z 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:18:35.8132060Z 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:18:35.8134846Z 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:18:35.8136880Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:18:35.8138774Z 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:18:35.8140989Z 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:18:35.8143237Z 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:18:35.8145813Z 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:18:35.8148118Z 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:18:35.8150394Z 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:18:35.8152741Z 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:18:35.8291565Z 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:18:35.8293927Z 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:18:35.8296425Z 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:18:35.8298751Z 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:18:35.8301286Z 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:18:35.8303670Z 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:18:35.8305349Z 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:18:35.8307120Z 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:18:35.8308939Z 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:18:35.8310748Z 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:18:35.8312993Z 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:18:35.8314675Z 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:18:35.8316330Z 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:18:35.8318630Z 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:18:35.8320807Z 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:18:35.8322484Z 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:18:35.8324250Z 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:18:35.8326617Z 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:18:35.8328424Z 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:18:35.8330200Z 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:18:35.8332495Z 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:18:35.8334529Z 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:18:35.8336546Z 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:18:35.8339214Z 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:18:35.8341326Z 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:18:35.8343463Z 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:18:35.8345472Z 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:18:35.8347329Z 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:18:35.8349304Z 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:18:35.8351245Z 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:18:35.8353711Z 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:18:35.8356179Z 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:18:35.8358066Z 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:18:35.8360017Z 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:18:35.8671522Z 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:18:35.8673068Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/schemas 2025-06-05T23:18:35.8674168Z 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:18:35.8675456Z 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:18:35.8676639Z copying src/executorch/backends/cadence/aot/functions.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:35.8677946Z 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:18:35.8679158Z copying src/executorch/backends/cadence/aot/functions_hifi.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:18:35.8680264Z 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:18:35.8681498Z 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:18:35.8682648Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/aot/ir 2025-06-05T23:18:35.8683526Z 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:18:35.8684790Z copying src/executorch/backends/vulkan/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:18:35.8685915Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:18:35.8687113Z 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:18:35.8688614Z 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:18:35.8690323Z 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:18:35.8691990Z 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:18:35.8693419Z 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:18:35.8695064Z 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:18:35.8696495Z 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:18:35.8698015Z 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:18:35.8699882Z 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:18:35.8701394Z 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:18:35.8703026Z 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:18:35.8704432Z 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:18:35.8705826Z 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:18:35.8707535Z 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:18:35.8709065Z 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:18:35.8710703Z 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:18:35.8712342Z 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:18:35.8713891Z 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:18:35.8715555Z 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:18:35.8717051Z 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:18:35.8718534Z 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:18:35.8720256Z 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:18:35.8721822Z 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:18:35.8723492Z 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:18:35.8725033Z 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:18:35.8726588Z 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:18:35.8728195Z 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:18:35.8729583Z 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:18:35.8731276Z 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:18:35.8732711Z 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:18:35.8734231Z 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:18:35.8735918Z 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:18:35.8737400Z 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:18:35.8738930Z 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:18:35.8740612Z 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:18:35.8742151Z 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:18:35.9038922Z 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:18:35.9040475Z 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:18:35.9041969Z 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:18:35.9044710Z 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:18:35.9046302Z 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:18:35.9047831Z 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:18:35.9049282Z 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:18:35.9051670Z 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:18:35.9053497Z 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:18:35.9055104Z 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:18:35.9056574Z 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:18:35.9058572Z 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:18:35.9060756Z 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:18:35.9062244Z 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:18:35.9063679Z 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:18:35.9065485Z 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:18:35.9067866Z 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:18:35.9069623Z 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:18:35.9071142Z 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:18:35.9073123Z 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:18:35.9075162Z 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:18:35.9076752Z 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:18:35.9078224Z 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:18:35.9079818Z 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:18:35.9082253Z 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:18:35.9083821Z 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:18:35.9085255Z 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:18:35.9086673Z 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:18:35.9087844Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl 2025-06-05T23:18:35.9089548Z 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:18:35.9091188Z 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:18:35.9092474Z 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:18:35.9093478Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:18:35.9094531Z 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:18:35.9096560Z 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:18:35.9098711Z 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:18:35.9100138Z 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:18:35.9101550Z 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:18:35.9103101Z 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:18:35.9105547Z copying src/executorch/backends/xnnpack/serialization/runtime_schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:18:35.9106981Z copying src/executorch/backends/xnnpack/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:18:35.9108299Z 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:18:35.9109615Z 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:18:35.9111640Z 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:18:35.9113375Z 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:18:35.9114820Z 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:18:35.9116369Z 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:18:35.9118647Z 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:18:35.9120325Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:18:35.9410263Z 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:18:35.9411851Z 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:18:35.9413363Z 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:18:35.9414909Z 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:18:35.9416687Z 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:18:35.9419291Z 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:18:35.9421060Z 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:18:35.9422560Z 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:18:35.9424263Z 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:18:35.9426841Z 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:18:35.9428561Z 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:18:35.9430148Z 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:18:35.9432025Z 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:18:35.9434348Z 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:18:35.9436788Z 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:18:35.9439015Z 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:18:35.9440647Z 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:18:35.9442227Z 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:18:35.9443855Z 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:18:35.9445335Z 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:18:35.9446843Z 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:18:35.9448360Z 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:18:35.9449917Z 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:18:35.9451443Z 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:18:35.9452934Z 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:18:35.9454483Z 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:18:35.9455971Z 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:18:35.9457502Z 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:18:35.9459045Z 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:18:35.9460604Z 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:18:35.9462098Z 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:18:35.9463572Z 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:18:35.9465057Z 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:18:35.9466577Z 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:18:35.9468160Z 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:18:35.9469699Z 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:18:35.9471195Z 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:18:35.9472711Z 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:18:35.9474237Z 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:18:35.9475793Z 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:18:35.9477370Z 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:18:35.9478825Z 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:18:35.9480252Z 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:18:35.9481706Z 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:18:35.9483170Z 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:18:35.9718676Z 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:18:35.9721340Z 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:18:35.9724153Z 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:18:35.9726999Z 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:18:35.9730082Z 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:18:35.9733019Z 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:18:35.9735760Z 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:18:35.9738416Z 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:18:35.9740757Z 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:18:35.9743496Z 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:18:35.9746251Z 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:18:35.9748871Z 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:18:35.9750476Z 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:18:35.9752077Z 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:18:35.9753681Z 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:18:35.9755564Z 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:18:35.9758643Z 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:18:35.9761409Z 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:18:35.9764362Z 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:18:35.9766704Z 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:18:35.9768288Z 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:18:35.9769853Z 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:18:35.9771378Z 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:18:35.9773854Z 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:18:35.9775420Z 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:18:35.9776918Z 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:18:35.9778400Z 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:18:35.9779960Z 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:18:35.9782316Z 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:18:35.9783861Z 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:18:35.9785456Z 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:18:35.9787070Z 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:18:35.9788939Z 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:18:35.9791622Z 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:18:35.9793282Z 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:18:35.9794871Z 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:18:35.9796448Z 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:18:35.9799501Z 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:18:35.9801842Z 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:18:35.9803397Z 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:18:35.9805103Z 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:18:35.9806756Z 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:18:35.9808537Z 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:18:36.0804710Z 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:18:36.0806811Z 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:18:36.0808652Z 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:18:36.0810482Z 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:18:36.0812376Z 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:18:36.0814268Z 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:18:36.0816075Z 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:18:36.0817753Z 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:18:36.0819368Z 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:18:36.0820930Z 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:18:36.0822513Z 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:18:36.0824150Z 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:18:36.0825765Z 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:18:36.0827334Z 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:18:36.0829036Z copying src/executorch/devtools/etdump/etdump_schema_flatcc.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:18:36.0830168Z copying src/executorch/devtools/etdump/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:18:36.0831334Z 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:18:36.0832610Z 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:18:36.0833825Z 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:18:36.0835155Z 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:18:36.0836451Z 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:18:36.0837868Z 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:18:36.0839268Z 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:18:36.0840636Z copying src/executorch/exir/dialects/edge/edge.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:18:36.0841798Z copying src/executorch/extension/pybindings/pybindings.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:18:36.0843047Z 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:18:36.0844497Z 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:18:36.0846162Z 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:18:36.0848219Z 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:18:36.0850254Z copying src/executorch/extension/training/pybindings/_training_lib.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-06-05T23:18:36.0851520Z copying src/executorch/kernels/quantized/quantized.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:18:36.0852759Z 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:18:36.0853817Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/kernel/test 2025-06-05T23:18:36.0854649Z copying src/executorch/runtime/kernel/test/functions.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/kernel/test 2025-06-05T23:18:36.0855624Z copying schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:18:36.0856422Z copying schema/program.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:18:36.0857471Z 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:18:36.0858847Z copying devtools/bundled_program/schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-06-05T23:18:36.0859861Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/share/cmake 2025-06-05T23:18:36.0860686Z copying tools/cmake/executorch-wheel-config.cmake -> pip-out/lib.linux-x86_64-cpython-310/executorch/share/cmake/executorch-config.cmake 2025-06-05T23:18:36.0861793Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0862583Z copying runtime/core/array_ref.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0863631Z copying runtime/core/data_loader.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0864631Z copying runtime/core/defines.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0865659Z copying runtime/core/error.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0866564Z copying runtime/core/evalue.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0867688Z copying runtime/core/event_tracer.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0868702Z copying runtime/core/event_tracer_hooks.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0869934Z copying runtime/core/event_tracer_hooks_delegate.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0870964Z copying runtime/core/freeable_buffer.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0872117Z copying runtime/core/function_ref.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0873232Z copying runtime/core/hierarchical_allocator.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0874335Z copying runtime/core/memory_allocator.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0875483Z copying runtime/core/named_data_map.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0876455Z copying runtime/core/result.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0937604Z copying runtime/core/span.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0939115Z copying runtime/core/tag.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0940206Z copying runtime/core/tensor_layout.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0941201Z copying runtime/core/tensor_shape_dynamism.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.0942184Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten 2025-06-05T23:18:36.0943141Z 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:18:36.0944237Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:18:36.0945410Z 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:18:36.0946890Z 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:18:36.0948355Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:18:36.0949358Z 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:18:36.0950993Z 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:18:36.0952512Z 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:18:36.0953930Z 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:18:36.0955284Z 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:18:36.0956295Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:18:36.0957273Z 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:18:36.0958592Z 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:18:36.0959837Z 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:18:36.0961318Z 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:18:36.0962658Z 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:18:36.0963922Z 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:18:36.0965170Z 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:18:36.0978581Z 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:18:36.0979889Z 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:18:36.0981050Z 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:18:36.0982232Z 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:18:36.0983373Z 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:18:36.0984663Z 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:18:36.0986025Z 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:18:36.0987303Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:18:36.0988651Z 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:18:36.0990635Z 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:18:36.0992066Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:18:36.0993503Z 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:18:36.0995103Z 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:18:36.0996627Z 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:18:36.0998146Z 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:18:36.0999506Z 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:18:36.1000932Z 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:18:36.1002366Z 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:18:36.1003800Z 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:18:36.1005215Z 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:18:36.1006627Z 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:18:36.1008081Z 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:18:36.1009511Z 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:18:36.1010538Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:18:36.1011391Z copying runtime/kernel/kernel_includes.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:18:36.1012413Z copying runtime/kernel/kernel_runtime_context.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:18:36.1013428Z copying runtime/kernel/operator_registry.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:18:36.1014476Z copying runtime/kernel/thread_parallel_interface.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:18:36.1015372Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/test 2025-06-05T23:18:36.1016259Z copying runtime/kernel/test/test_util.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/test 2025-06-05T23:18:36.1017140Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:18:36.1018266Z copying runtime/platform/abort.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:18:36.1019760Z copying runtime/platform/assert.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:18:36.1021275Z copying runtime/platform/clock.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:18:36.1697501Z copying runtime/platform/compat_unistd.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:18:36.1699242Z copying runtime/platform/compiler.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:18:36.1700189Z copying runtime/platform/log.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:18:36.1701144Z copying runtime/platform/platform.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:18:36.1702408Z copying runtime/platform/profiler.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:18:36.1703578Z copying runtime/platform/runtime.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:18:36.1704684Z copying runtime/platform/system.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:18:36.1705862Z copying runtime/platform/types.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:18:36.1706915Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-06-05T23:18:36.1707870Z copying runtime/platform/test/pal_spy.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-06-05T23:18:36.1709222Z copying runtime/platform/test/stub_platform.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-06-05T23:18:36.1710409Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-06-05T23:18:36.1711653Z 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:18:36.1712915Z copying extension/kernel_util/meta_programming.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-06-05T23:18:36.1714223Z copying extension/kernel_util/type_list.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-06-05T23:18:36.1715311Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:18:36.1716191Z copying extension/tensor/tensor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:18:36.1717279Z copying extension/tensor/tensor_accessor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:18:36.1718483Z copying extension/tensor/tensor_ptr.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:18:36.1719690Z copying extension/tensor/tensor_ptr_maker.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:18:36.1720661Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:18:36.1721803Z copying extension/threadpool/cpuinfo_utils.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:18:36.1722940Z copying extension/threadpool/threadpool.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:18:36.1724353Z copying extension/threadpool/threadpool_guard.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:18:36.1725254Z running build_ext 2025-06-05T23:18:36.1725896Z creating /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin 2025-06-05T23:18:36.1727323Z 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:18:36.1728994Z 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:18:36.1730504Z 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:18:36.1732369Z 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:18:36.1734659Z 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:18:36.1736788Z 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:18:36.1737925Z installing to pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:18:36.1738326Z running install 2025-06-05T23:18:36.1738544Z running install_lib 2025-06-05T23:18:36.1738819Z creating pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:18:36.1739258Z creating pip-out/bdist.linux-x86_64/wheel/executorch 2025-06-05T23:18:36.1739787Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen 2025-06-05T23:18:36.1740702Z 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:18:36.1741764Z 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:18:36.1742988Z 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:18:36.1744145Z 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:18:36.1744912Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/api 2025-06-05T23:18:36.1745981Z 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:18:36.1747303Z 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:18:36.1748720Z 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:18:36.1750084Z 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:18:36.1751187Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/api/types 2025-06-05T23:18:36.1752376Z 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:18:36.1753824Z 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:18:36.1755250Z 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:18:36.1756195Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/test 2025-06-05T23:18:36.1757411Z 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:18:36.1758671Z 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:18:36.1760225Z 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:18:36.1761620Z 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:18:36.1763016Z 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:18:36.1764626Z 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:18:36.1765708Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/tools 2025-06-05T23:18:36.1766623Z 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:18:36.1767906Z 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:18:36.1769203Z 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:18:36.1770525Z 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:18:36.1771934Z 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:18:36.1788060Z 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:18:36.1789309Z 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:18:36.1790448Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/tools/test 2025-06-05T23:18:36.1791765Z 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:18:36.1793310Z 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:18:36.1794896Z 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:18:36.1796498Z 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:18:36.1797480Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools 2025-06-05T23:18:36.1798438Z 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:18:36.1799366Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/backend_debug 2025-06-05T23:18:36.1800372Z 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:18:36.1801886Z 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:18:36.1803217Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/backend_debug/tests 2025-06-05T23:18:36.1804553Z 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:18:36.1805788Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program 2025-06-05T23:18:36.1806799Z 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:18:36.1808238Z 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:18:36.1809813Z 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:18:36.1810991Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/schema 2025-06-05T23:18:36.1812216Z 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:18:36.1813906Z 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:18:36.1815212Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/schema/test 2025-06-05T23:18:36.1816529Z 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:18:36.1818300Z 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:18:36.1820006Z 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:18:36.1821263Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/serialize 2025-06-05T23:18:36.1822543Z 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:18:36.1823799Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/serialize/test 2025-06-05T23:18:36.1825095Z 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:18:36.1827114Z 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:18:36.1828966Z 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:18:36.1830238Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/test 2025-06-05T23:18:36.1831741Z 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:18:36.1833575Z 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:18:36.1835536Z 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:18:36.1836750Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/util 2025-06-05T23:18:36.1837946Z 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:18:36.1839085Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/debug_format 2025-06-05T23:18:36.1840066Z 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:18:36.1841481Z 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:18:36.1842653Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etdump 2025-06-05T23:18:36.1843649Z 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:18:36.1845078Z 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:18:36.1846234Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etdump/tests 2025-06-05T23:18:36.1847427Z 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:18:36.1849013Z 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:18:36.1850470Z 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:18:36.1851443Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etrecord 2025-06-05T23:18:36.1852423Z 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:18:36.1853843Z 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:18:36.1854881Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etrecord/tests 2025-06-05T23:18:36.1856060Z 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:18:36.1857197Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/inspector 2025-06-05T23:18:36.1858234Z 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:18:36.1859696Z 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:18:36.1861103Z 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:18:36.1879569Z 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:18:36.1881319Z 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:18:36.1882469Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/inspector/tests 2025-06-05T23:18:36.1883953Z 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:18:36.1885619Z 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:18:36.1887294Z 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:18:36.1888922Z 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:18:36.1890738Z 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:18:36.1892150Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/size_analysis_tool 2025-06-05T23:18:36.1893346Z 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:18:36.1894963Z 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:18:36.1896096Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/visualization 2025-06-05T23:18:36.1897252Z 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:18:36.1898892Z 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:18:36.1900783Z 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:18:36.1901879Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir 2025-06-05T23:18:36.1902860Z 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:18:36.1903911Z 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:18:36.1905032Z 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:18:36.1906307Z 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:18:36.1907562Z 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:18:36.1908704Z 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:18:36.1909920Z 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:18:36.1911171Z 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:18:36.1912363Z 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:18:36.1913521Z 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:18:36.1914728Z 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:18:36.1916116Z 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:18:36.1917355Z 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:18:36.1918509Z 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:18:36.1919771Z 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:18:36.1920968Z 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:18:36.1922393Z 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:18:36.1923496Z 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:18:36.1924830Z 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:18:36.1926105Z 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:18:36.1927214Z 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:18:36.1928416Z 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:18:36.1929596Z 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:18:36.1930660Z 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:18:36.1931727Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/_serialize 2025-06-05T23:18:36.1933119Z 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:18:36.1935200Z 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:18:36.1937426Z 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:18:36.1939727Z 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:18:36.1942081Z 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:18:36.1944495Z 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:18:36.1946757Z 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:18:36.1949083Z 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:18:36.1951393Z 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:18:36.1953056Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/_serialize/test 2025-06-05T23:18:36.1954786Z 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:18:36.1957289Z 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:18:36.1959757Z 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:18:36.1962325Z 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:18:36.1964912Z 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:18:36.1967411Z 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:18:36.1971132Z 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:18:36.1972748Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend 2025-06-05T23:18:36.1974342Z 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:18:36.1976597Z 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:18:36.1978960Z 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:18:36.1981332Z 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:18:36.1983672Z 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:18:36.1985907Z 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:18:36.1987624Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/canonical_partitioners 2025-06-05T23:18:36.1989905Z 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:18:36.1993322Z 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:18:36.1996683Z 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:18:36.2000036Z 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:18:36.2003331Z 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:18:36.2005537Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test 2025-06-05T23:18:36.2007400Z 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:18:36.2010138Z 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:18:36.2013052Z 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:18:36.2015825Z 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:18:36.2018496Z 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:18:36.2021048Z 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:18:36.2023754Z 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:18:36.2026379Z 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:18:36.2028982Z 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:18:36.2031492Z 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:18:36.2034088Z 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:18:36.2036643Z 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:18:36.2039216Z 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:18:36.2041848Z 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:18:36.2044546Z 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:18:36.2047210Z 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:18:36.2049814Z 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:18:36.2052304Z 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:18:36.2054877Z 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:18:36.2057408Z 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:18:36.2059181Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test/demos 2025-06-05T23:18:36.2061156Z 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:18:36.2063984Z 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:18:36.2066135Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test/demos/rpc 2025-06-05T23:18:36.2068307Z 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:18:36.2071442Z 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:18:36.2074358Z 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:18:36.2076219Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/capture 2025-06-05T23:18:36.2077854Z 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:18:36.2080019Z 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:18:36.2082164Z 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:18:36.2084397Z 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:18:36.2085957Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects 2025-06-05T23:18:36.2087514Z 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:18:36.2089677Z 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:18:36.2091401Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/backend 2025-06-05T23:18:36.2093153Z 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:18:36.2094954Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/backend/test 2025-06-05T23:18:36.2096977Z 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:18:36.2098939Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge 2025-06-05T23:18:36.2100608Z 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:18:36.2102316Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/arg 2025-06-05T23:18:36.2104133Z 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:18:36.2106651Z 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:18:36.2108454Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/dtype 2025-06-05T23:18:36.2110334Z 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:18:36.2112993Z 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:18:36.2115664Z 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:18:36.2117692Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/op 2025-06-05T23:18:36.2119438Z 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:18:36.2121941Z 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:18:36.2123890Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/op/test 2025-06-05T23:18:36.2125806Z 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:18:36.2127726Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/spec 2025-06-05T23:18:36.2129721Z 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:18:36.2132243Z 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:18:36.2134085Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/test 2025-06-05T23:18:36.2135970Z 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:18:36.2138641Z 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:18:36.2141194Z 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:18:36.2142927Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/test 2025-06-05T23:18:36.2144761Z 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:18:36.2146533Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/emit 2025-06-05T23:18:36.2147973Z 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:18:36.2150029Z 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:18:36.2152088Z 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:18:36.2153610Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/emit/test 2025-06-05T23:18:36.2155253Z 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:18:36.2156872Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/operator 2025-06-05T23:18:36.2158485Z 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:18:36.2160671Z 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:18:36.2162848Z 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:18:36.2164529Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/operator/test 2025-06-05T23:18:36.2166307Z 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:18:36.2168183Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/passes 2025-06-05T23:18:36.2169711Z 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:18:36.2171986Z 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:18:36.2174389Z 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:18:36.2176693Z 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:18:36.2179223Z 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:18:36.2181658Z 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:18:36.2184047Z 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:18:36.2186510Z 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:18:36.2188995Z 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:18:36.2191516Z 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:18:36.2193961Z 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:18:36.2196432Z 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:18:36.2198813Z 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:18:36.2201214Z 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:18:36.2203733Z 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:18:36.2206136Z 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:18:36.2208476Z 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:18:36.2210808Z 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:18:36.2213124Z 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:18:36.2215474Z 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:18:36.2217902Z 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:18:36.2220535Z 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:18:36.2222937Z 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:18:36.2225418Z 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:18:36.2228017Z 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:18:36.2230605Z 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:18:36.2233260Z 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:18:36.2235740Z 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:18:36.2238198Z 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:18:36.2240510Z 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:18:36.2242776Z 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:18:36.2245122Z 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:18:36.2247501Z 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:18:36.2249202Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/program 2025-06-05T23:18:36.2250732Z 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:18:36.2252928Z 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:18:36.2255149Z 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:18:36.2256735Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/program/test 2025-06-05T23:18:36.2258426Z 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:18:36.2260865Z 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:18:36.2263350Z 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:18:36.2265059Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/serde 2025-06-05T23:18:36.2266542Z 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:18:36.2268656Z 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:18:36.2270828Z 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:18:36.2273133Z 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:18:36.2275285Z 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:18:36.2277405Z 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:18:36.2278905Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/tests 2025-06-05T23:18:36.2280408Z 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:18:36.2282506Z 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:18:36.2284894Z 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:18:36.2287204Z 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:18:36.2289409Z 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:18:36.2291717Z 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:18:36.2293932Z 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:18:36.2296093Z 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:18:36.2298270Z 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:18:36.2300511Z 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:18:36.2302880Z 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:18:36.2305168Z 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:18:36.2307344Z 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:18:36.2309658Z 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:18:36.2312090Z 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:18:36.2314577Z 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:18:36.2316981Z 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:18:36.2319238Z 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:18:36.2321440Z 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:18:36.2323892Z 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:18:36.2326113Z 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:18:36.2328471Z 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:18:36.2330826Z 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:18:36.2333124Z 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:18:36.2335569Z 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:18:36.2337964Z 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:18:36.2340379Z 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:18:36.2342639Z 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:18:36.2344765Z 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:18:36.2346910Z 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:18:36.2349111Z 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:18:36.2351344Z 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:18:36.2353551Z 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:18:36.2355173Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/verification 2025-06-05T23:18:36.2356944Z 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:18:36.2359398Z 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:18:36.2361837Z 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:18:36.2364365Z 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:18:36.2366130Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/verification/test 2025-06-05T23:18:36.2368023Z 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:18:36.2370328Z 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:18:36.2371730Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime 2025-06-05T23:18:36.2373141Z 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:18:36.2374751Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/test 2025-06-05T23:18:36.2376353Z 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:18:36.2377974Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/kernel 2025-06-05T23:18:36.2378976Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/kernel/test 2025-06-05T23:18:36.2380787Z 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:18:36.2382487Z creating pip-out/bdist.linux-x86_64/wheel/executorch/util 2025-06-05T23:18:36.2384034Z 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:18:36.2386228Z 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:18:36.2388203Z 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:18:36.2389700Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends 2025-06-05T23:18:36.2390602Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm 2025-06-05T23:18:36.2392316Z 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:18:36.2394522Z 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:18:36.2396760Z 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:18:36.2399126Z 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:18:36.2401459Z 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:18:36.2403782Z 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:18:36.2406052Z 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:18:36.2408339Z 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:18:36.2410634Z 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:18:36.2412990Z 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:18:36.2415281Z 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:18:36.2417498Z 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:18:36.2419769Z 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:18:36.2421463Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/_passes 2025-06-05T23:18:36.2423190Z 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:18:36.2425615Z 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:18:36.2428459Z 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:18:36.2431256Z 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:18:36.2433834Z 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:18:36.2436293Z 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:18:36.2439020Z 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:18:36.2441561Z 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:18:36.2444213Z 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:18:36.2446771Z 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:18:36.2449332Z 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:18:36.2452064Z 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:18:36.2454834Z 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:18:36.2457579Z 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:18:36.2460243Z 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:18:36.2462866Z 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:18:36.2465515Z 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:18:36.2468189Z 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:18:36.2470786Z 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:18:36.2473482Z 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:18:36.2476200Z 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:18:36.2478814Z 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:18:36.2481582Z 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:18:36.2484365Z 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:18:36.2487064Z 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:18:36.2489833Z 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:18:36.2492884Z 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:18:36.2495573Z 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:18:36.2498168Z 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:18:36.2500741Z 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:18:36.2503347Z 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:18:36.2505966Z 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:18:36.2508721Z 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:18:36.2511428Z 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:18:36.2514030Z 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:18:36.2516605Z 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:18:36.2519361Z 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:18:36.2522079Z 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:18:36.2524789Z 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:18:36.2527487Z 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:18:36.2530246Z 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:18:36.2532980Z 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:18:36.2535729Z 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:18:36.2538321Z 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:18:36.2540982Z 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:18:36.2543583Z 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:18:36.2546211Z 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:18:36.2548841Z 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:18:36.2551534Z 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:18:36.2554289Z 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:18:36.2556932Z 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:18:36.2559622Z 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:18:36.2562456Z 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:18:36.2564566Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/operator_support 2025-06-05T23:18:36.2566528Z 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:18:36.2569394Z 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:18:36.2572329Z 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:18:36.2575252Z 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:18:36.2578127Z 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:18:36.2581031Z 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:18:36.2583997Z 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:18:36.2586903Z 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:18:36.2589985Z 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:18:36.2593079Z 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:18:36.2596039Z 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:18:36.2598116Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/operators 2025-06-05T23:18:36.2600113Z 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:18:36.2602733Z 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:18:36.2605374Z 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:18:36.2607892Z 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:18:36.2610426Z 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:18:36.2612908Z 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:18:36.2615453Z 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:18:36.2618004Z 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:18:36.2620571Z 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:18:36.2623097Z 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:18:36.2625599Z 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:18:36.2628237Z 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:18:36.2630850Z 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:18:36.2633370Z 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:18:36.2635891Z 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:18:36.2638379Z 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:18:36.2640898Z 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:18:36.2643607Z 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:18:36.2646201Z 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:18:36.2648696Z 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:18:36.2651187Z 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:18:36.2653814Z 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:18:36.2656378Z 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:18:36.2658965Z 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:18:36.2661548Z 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:18:36.2664089Z 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:18:36.2666606Z 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:18:36.2669165Z 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:18:36.2671707Z 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:18:36.2674308Z 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:18:36.2676898Z 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:18:36.2679501Z 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:18:36.2682143Z 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:18:36.2684830Z 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:18:36.2687414Z 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:18:36.2689963Z 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:18:36.2692665Z 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:18:36.2695202Z 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:18:36.2697883Z 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:18:36.2700428Z 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:18:36.2702942Z 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:18:36.2705487Z 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:18:36.2708281Z 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:18:36.2710970Z 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:18:36.2713685Z 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:18:36.2716555Z 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:18:36.2719221Z 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:18:36.2721766Z 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:18:36.2724594Z 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:18:36.2727336Z 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:18:36.2729973Z 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:18:36.2732582Z 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:18:36.2734446Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/quantizer 2025-06-05T23:18:36.2736271Z 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:18:36.2738888Z 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:18:36.2741595Z 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:18:36.2744406Z 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:18:36.2747252Z 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:18:36.2749202Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/scripts 2025-06-05T23:18:36.2751193Z 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:18:36.2753034Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test 2025-06-05T23:18:36.2754720Z 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:18:36.2757105Z 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:18:36.2759549Z 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:18:36.2761948Z 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:18:36.2763921Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/misc 2025-06-05T23:18:36.2765855Z 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:18:36.2768626Z 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:18:36.2771332Z 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:18:36.2774049Z 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:18:36.2776766Z 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:18:36.2779513Z 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:18:36.2782269Z 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:18:36.2785082Z 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:18:36.2787894Z 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:18:36.2791184Z 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:18:36.2794008Z 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:18:36.2795904Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/models 2025-06-05T23:18:36.2797832Z 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:18:36.2800601Z 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:18:36.2803323Z 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:18:36.2806232Z 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:18:36.2808922Z 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:18:36.2811685Z 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:18:36.2814511Z 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:18:36.2817490Z 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:18:36.2820271Z 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:18:36.2823035Z 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:18:36.2825815Z 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:18:36.2827688Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/ops 2025-06-05T23:18:36.2829497Z 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:18:36.2832008Z 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:18:36.2834572Z 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:18:36.2837152Z 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:18:36.2839676Z 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:18:36.2842196Z 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:18:36.2844822Z 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:18:36.2847360Z 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:18:36.2849919Z 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:18:36.2852537Z 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:18:36.2855152Z 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:18:36.2857710Z 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:18:36.2860374Z 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:18:36.2862903Z 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:18:36.2865415Z 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:18:36.2868036Z 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:18:36.2870654Z 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:18:36.2873331Z 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:18:36.2875918Z 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:18:36.2878498Z 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:18:36.2881216Z 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:18:36.2883924Z 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:18:36.2886523Z 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:18:36.2889143Z 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:18:36.2891799Z 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:18:36.2894289Z 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:18:36.2896804Z 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:18:36.2899312Z 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:18:36.2901863Z 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:18:36.2904402Z 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:18:36.2906872Z 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:18:36.2909382Z 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:18:36.2911980Z 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:18:36.2914718Z 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:18:36.2917319Z 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:18:36.2919956Z 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:18:36.2922578Z 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:18:36.2925259Z 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:18:36.2927984Z 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:18:36.2930551Z 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:18:36.2933221Z 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:18:36.2935884Z 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:18:36.2938402Z 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:18:36.2940936Z 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:18:36.2943555Z 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:18:36.2946164Z 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:18:36.2948697Z 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:18:36.2951227Z 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:18:36.2953812Z 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:18:36.2956420Z 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:18:36.2959021Z 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:18:36.2961604Z 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:18:36.2964241Z 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:18:36.2966731Z 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:18:36.2969419Z 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:18:36.2971931Z 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:18:36.2974453Z 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:18:36.2976990Z 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:18:36.2979559Z 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:18:36.2982278Z 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:18:36.2984866Z 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:18:36.2987437Z 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:18:36.2990007Z 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:18:36.2992688Z 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:18:36.2995320Z 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:18:36.2997938Z 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:18:36.3000510Z 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:18:36.3003054Z 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:18:36.3005667Z 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:18:36.3008320Z 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:18:36.3010996Z 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:18:36.3013577Z 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:18:36.3016117Z 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:18:36.3018642Z 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:18:36.3021208Z 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:18:36.3023971Z 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:18:36.3026491Z 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:18:36.3029049Z 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:18:36.3031605Z 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:18:36.3034091Z 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:18:36.3036820Z 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:18:36.3039373Z 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:18:36.3041901Z 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:18:36.3044575Z 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:18:36.3047300Z 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:18:36.3050104Z 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:18:36.3052728Z 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:18:36.3055237Z 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:18:36.3057767Z 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:18:36.3060341Z 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:18:36.3062206Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/passes 2025-06-05T23:18:36.3064223Z 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:18:36.3067074Z 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:18:36.3070004Z 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:18:36.3072979Z 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:18:36.3075930Z 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:18:36.3078917Z 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:18:36.3081924Z 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:18:36.3085006Z 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:18:36.3087955Z 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:18:36.3091343Z 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:18:36.3094367Z 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:18:36.3097343Z 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:18:36.3100270Z 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:18:36.3103127Z 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:18:36.3105963Z 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:18:36.3108884Z 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:18:36.3111867Z 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:18:36.3114873Z 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:18:36.3117805Z 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:18:36.3120718Z 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:18:36.3123533Z 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:18:36.3126526Z 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:18:36.3128658Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/quantizer 2025-06-05T23:18:36.3130744Z 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:18:36.3132986Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/tester 2025-06-05T23:18:36.3134825Z 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:18:36.3137551Z 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:18:36.3140300Z 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:18:36.3143004Z 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:18:36.3145071Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/tosautil 2025-06-05T23:18:36.3147006Z 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:18:36.3148841Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/util 2025-06-05T23:18:36.3150646Z 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:18:36.3152497Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party 2025-06-05T23:18:36.3153781Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib 2025-06-05T23:18:36.3156126Z 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:18:36.3158541Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python 2025-06-05T23:18:36.3160260Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:18:36.3163105Z 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:18:36.3167185Z 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:18:36.3170095Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:18:36.3173073Z 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:18:36.3177087Z 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:18:36.3180876Z 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:18:36.3184754Z 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:18:36.3188768Z 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:18:36.3192823Z 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:18:36.3196716Z 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:18:36.3200491Z 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:18:36.3204472Z 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:18:36.3208440Z 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:18:36.3212424Z 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:18:36.3216279Z 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:18:36.3220170Z 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:18:36.3223932Z 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:18:36.3227638Z 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:18:36.3231467Z 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:18:36.3235325Z 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:18:36.3239200Z 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:18:36.3243110Z 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:18:36.3247130Z 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:18:36.3251137Z 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:18:36.3254964Z 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:18:36.3258829Z 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:18:36.3262824Z 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:18:36.3266660Z 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:18:36.3270470Z 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:18:36.3274257Z 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:18:36.3278048Z 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:18:36.3281835Z 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:18:36.3285799Z 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:18:36.3289797Z 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:18:36.3293838Z 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:18:36.3297692Z 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:18:36.3301518Z 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:18:36.3304083Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test 2025-06-05T23:18:36.3305734Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test/scripts 2025-06-05T23:18:36.3308507Z 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:18:36.3311515Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit 2025-06-05T23:18:36.3314402Z 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:18:36.3317201Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party 2025-06-05T23:18:36.3319011Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:18:36.3322213Z 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:18:36.3325365Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan 2025-06-05T23:18:36.3328550Z 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:18:36.3331844Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package 2025-06-05T23:18:36.3335380Z 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:18:36.3338840Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:18:36.3342162Z 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:18:36.3346692Z 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:18:36.3350028Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp 2025-06-05T23:18:36.3353399Z 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:18:36.3356805Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp 2025-06-05T23:18:36.3360300Z 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:18:36.3363832Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart 2025-06-05T23:18:36.3367244Z 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:18:36.3370765Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go 2025-06-05T23:18:36.3374115Z 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:18:36.3377474Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java 2025-06-05T23:18:36.3381025Z 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:18:36.3384494Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin 2025-06-05T23:18:36.3387950Z 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:18:36.3391577Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster 2025-06-05T23:18:36.3395063Z 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:18:36.3398543Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua 2025-06-05T23:18:36.3401928Z 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:18:36.3405402Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim 2025-06-05T23:18:36.3408790Z 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:18:36.3412183Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php 2025-06-05T23:18:36.3415582Z 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:18:36.3418978Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:18:36.3422296Z 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:18:36.3426878Z 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:18:36.3431571Z 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:18:36.3436092Z 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:18:36.3439486Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust 2025-06-05T23:18:36.3443131Z 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:18:36.3446769Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift 2025-06-05T23:18:36.3450207Z 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:18:36.3453613Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts 2025-06-05T23:18:36.3456968Z 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:18:36.3460346Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema 2025-06-05T23:18:36.3463794Z 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:18:36.3467140Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:18:36.3470348Z 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:18:36.3474682Z 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:18:36.3478003Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:18:36.3481568Z 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:18:36.3486467Z 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:18:36.3491609Z 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:18:36.3496478Z 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:18:36.3501487Z 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:18:36.3506393Z 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:18:36.3511359Z 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:18:36.3516234Z 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:18:36.3521089Z 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:18:36.3525981Z 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:18:36.3529630Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:18:36.3533610Z 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:18:36.3539043Z 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:18:36.3544340Z 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:18:36.3549635Z 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:18:36.3555121Z 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:18:36.3560405Z 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:18:36.3565894Z 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:18:36.3571211Z 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:18:36.3576529Z 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:18:36.3581867Z 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:18:36.3587229Z 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:18:36.3592676Z 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:18:36.3597934Z 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:18:36.3602730Z 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:18:36.3606016Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:18:36.3609315Z 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:18:36.3613779Z 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:18:36.3617235Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:18:36.3620569Z 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:18:36.3625139Z 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:18:36.3629845Z 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:18:36.3634368Z 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:18:36.3638923Z 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:18:36.3642319Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:18:36.3645697Z 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:18:36.3650232Z 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:18:36.3654652Z 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:18:36.3657853Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:18:36.3661396Z 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:18:36.3666207Z 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:18:36.3670837Z 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:18:36.3699971Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:18:36.3703798Z 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:18:36.3708682Z 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:18:36.3713970Z 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:18:36.3719211Z 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:18:36.3724411Z 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:18:36.3729468Z 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:18:36.3734450Z 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:18:36.3739391Z 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:18:36.3744341Z 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:18:36.3749376Z 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:18:36.3754363Z 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:18:36.3759317Z 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:18:36.3764332Z 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:18:36.3769490Z 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:18:36.3774769Z 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:18:36.3780010Z 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:18:36.3784936Z 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:18:36.3790105Z 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:18:36.3795513Z 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:18:36.3800498Z 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:18:36.3805475Z 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:18:36.3810480Z 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:18:36.3814318Z 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:18:36.3818255Z 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:18:36.3823623Z 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:18:36.3829347Z 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:18:36.3834849Z 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:18:36.3840453Z 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:18:36.3846357Z 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:18:36.3851744Z 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:18:36.3855580Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2 2025-06-05T23:18:36.3859267Z 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:18:36.3864220Z 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:18:36.3867856Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:18:36.3871625Z 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:18:36.3876822Z 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:18:36.3881997Z 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:18:36.3885739Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:18:36.3889179Z 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:18:36.3894166Z 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:18:36.3898908Z 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:18:36.3903771Z 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:18:36.3908434Z 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:18:36.3913022Z 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:18:36.3917686Z 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:18:36.3922345Z 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:18:36.3926982Z 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:18:36.3930418Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:18:36.3933849Z 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:18:36.3938604Z 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:18:36.3943311Z 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:18:36.3946834Z 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:18:36.3950408Z 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:18:36.3955446Z 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:18:36.3958982Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim 2025-06-05T23:18:36.3962288Z 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:18:36.3965913Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:18:36.3969647Z 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:18:36.3974709Z 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:18:36.3979720Z 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:18:36.3983235Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:18:36.3986591Z 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:18:36.3991436Z 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:18:36.3995009Z 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:18:36.3998922Z 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:18:36.4002882Z 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:18:36.4006860Z 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:18:36.4012216Z 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:18:36.4017693Z 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:18:36.4021477Z 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:18:36.4025092Z 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:18:36.4030324Z 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:18:36.4034054Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test 2025-06-05T23:18:36.4036488Z 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:18:36.4040470Z 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:18:36.4045951Z 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:18:36.4051368Z 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:18:36.4056739Z 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:18:36.4060735Z 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:18:36.4065064Z 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:18:36.4071020Z 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:18:36.4077113Z 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:18:36.4083062Z 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:18:36.4089080Z 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:18:36.4093357Z 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:18:36.4097280Z 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:18:36.4102561Z 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:18:36.4107729Z 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:18:36.4112784Z 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:18:36.4117572Z 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:18:36.4122051Z 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:18:36.4126572Z 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:18:36.4131047Z 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:18:36.4135557Z 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:18:36.4140218Z 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:18:36.4144687Z 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:18:36.4149137Z 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:18:36.4153729Z 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:18:36.4158202Z 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:18:36.4162631Z 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:18:36.4167232Z 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:18:36.4171767Z 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:18:36.4176282Z 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:18:36.4180795Z 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:18:36.4185385Z 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:18:36.4189968Z 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:18:36.4194609Z 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:18:36.4199014Z 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:18:36.4203619Z 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:18:36.4208285Z 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:18:36.4213073Z 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:18:36.4217578Z 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:18:36.4218562Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit 2025-06-05T23:18:36.4220769Z 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:18:36.4221809Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution 2025-06-05T23:18:36.4224164Z 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:18:36.4226510Z 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:18:36.4227556Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test 2025-06-05T23:18:36.4229957Z 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:18:36.4232335Z 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:18:36.4233374Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test 2025-06-05T23:18:36.4235713Z 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:18:36.4237997Z 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:18:36.4239224Z 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:18:36.4241604Z 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:18:36.4244181Z 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:18:36.4245213Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field 2025-06-05T23:18:36.4247489Z 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:18:36.4248567Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums 2025-06-05T23:18:36.4250882Z 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:18:36.4251966Z 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:18:36.4254366Z 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:18:36.4256737Z 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:18:36.4259133Z 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:18:36.4261517Z 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:18:36.4262610Z 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:18:36.4265201Z 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:18:36.4267876Z 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:18:36.4270469Z 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:18:36.4271463Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:18:36.4273866Z 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:18:36.4276199Z 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:18:36.4278549Z 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:18:36.4280948Z 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:18:36.4283316Z 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:18:36.4285750Z 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:18:36.4288117Z 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:18:36.4290483Z 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:18:36.4293011Z 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:18:36.4295432Z 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:18:36.4298040Z 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:18:36.4300454Z 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:18:36.4301485Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector 2025-06-05T23:18:36.4303968Z 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:18:36.4304937Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift 2025-06-05T23:18:36.4305961Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests 2025-06-05T23:18:36.4307167Z 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:18:36.4309927Z 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:18:36.4312749Z 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:18:36.4313827Z 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:18:36.4315088Z 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:18:36.4317924Z 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:18:36.4318847Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc 2025-06-05T23:18:36.4319780Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests 2025-06-05T23:18:36.4321986Z 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:18:36.4322963Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples 2025-06-05T23:18:36.4324112Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python 2025-06-05T23:18:36.4325340Z 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:18:36.4327863Z 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:18:36.4330388Z 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:18:36.4331748Z 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:18:36.4334469Z 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:18:36.4337230Z 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:18:36.4339866Z 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:18:36.4342626Z 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:18:36.4344872Z 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:18:36.4345873Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples 2025-06-05T23:18:36.4346927Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter 2025-06-05T23:18:36.4349324Z 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:18:36.4350225Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java 2025-06-05T23:18:36.4351161Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src 2025-06-05T23:18:36.4352127Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test 2025-06-05T23:18:36.4353174Z 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:18:36.4354356Z 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:18:36.4356959Z 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:18:36.4359491Z 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:18:36.4362015Z 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:18:36.4363188Z 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:18:36.4365914Z 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:18:36.4368490Z 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:18:36.4371316Z 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:18:36.4374059Z 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:18:36.4376774Z 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:18:36.4379439Z 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:18:36.4382072Z 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:18:36.4384685Z 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:18:36.4387440Z 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:18:36.4390143Z 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:18:36.4393019Z 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:18:36.4395516Z 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:18:36.4398112Z 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:18:36.4400856Z 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:18:36.4404004Z 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:18:36.4406592Z 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:18:36.4409279Z 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:18:36.4412121Z 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:18:36.4414834Z 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:18:36.4417428Z 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:18:36.4420211Z 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:18:36.4422916Z 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:18:36.4424303Z 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:18:36.4427181Z 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:18:36.4430048Z 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:18:36.4433089Z 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:18:36.4435958Z 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:18:36.4439074Z 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:18:36.4441966Z 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:18:36.4444914Z 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:18:36.4446108Z 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:18:36.4448776Z 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:18:36.4451506Z 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:18:36.4452638Z 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:18:36.4455359Z 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:18:36.4457949Z 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:18:36.4460578Z 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:18:36.4463099Z 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:18:36.4464340Z 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:18:36.4467222Z 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:18:36.4470130Z 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:18:36.4473030Z 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:18:36.4475934Z 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:18:36.4478700Z 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:18:36.4479975Z 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:18:36.4482513Z 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:18:36.4485070Z 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:18:36.4486379Z 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:18:36.4489082Z 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:18:36.4491894Z 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:18:36.4494512Z 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:18:36.4495651Z 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:18:36.4498257Z 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:18:36.4500237Z 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:18:36.4501155Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:18:36.4503296Z 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:18:36.4505373Z 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:18:36.4506343Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:18:36.4508527Z 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:18:36.4510876Z 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:18:36.4513033Z 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:18:36.4513987Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection 2025-06-05T23:18:36.4516401Z 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:18:36.4517320Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap 2025-06-05T23:18:36.4519395Z 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:18:36.4520351Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android 2025-06-05T23:18:36.4521300Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app 2025-06-05T23:18:36.4522324Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src 2025-06-05T23:18:36.4523365Z 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:18:36.4524510Z 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:18:36.4526939Z 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:18:36.4527917Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks 2025-06-05T23:18:36.4528907Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp 2025-06-05T23:18:36.4530034Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers 2025-06-05T23:18:36.4532482Z 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:18:36.4533429Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples 2025-06-05T23:18:36.4534436Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo 2025-06-05T23:18:36.4536682Z 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:18:36.4539035Z 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:18:36.4539739Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/schema 2025-06-05T23:18:36.4541361Z 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:18:36.4541789Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/tosa 2025-06-05T23:18:36.4542351Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/tosa/schemas 2025-06-05T23:18:36.4543573Z 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:18:36.4544826Z 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:18:36.4545212Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example 2025-06-05T23:18:36.4546361Z 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:18:36.4547548Z 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:18:36.4548734Z 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:18:36.4549909Z 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:18:36.4550607Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:18:36.4552263Z 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:18:36.4554029Z 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:18:36.4554598Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example/example_operators 2025-06-05T23:18:36.4556079Z 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:18:36.4557411Z 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:18:36.4558779Z 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:18:36.4560138Z 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:18:36.4561655Z 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:18:36.4563035Z 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:18:36.4564479Z 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:18:36.4565855Z 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:18:36.4567207Z 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:18:36.4568673Z 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:18:36.4569116Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek 2025-06-05T23:18:36.4570150Z 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:18:36.4571295Z 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:18:36.4572436Z 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:18:36.4572905Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek/_passes 2025-06-05T23:18:36.4574092Z 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:18:36.4575548Z 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:18:36.4576042Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek/quantizer 2025-06-05T23:18:36.4577275Z 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:18:36.4578605Z 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:18:36.4579895Z 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:18:36.4581196Z 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:18:36.4581594Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp 2025-06-05T23:18:36.4582694Z 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:18:36.4583800Z 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:18:36.4584889Z 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:18:36.4585918Z 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:18:36.4586484Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/aten_passes 2025-06-05T23:18:36.4587834Z 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:18:36.4589174Z 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:18:36.4590475Z 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:18:36.4591084Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend 2025-06-05T23:18:36.4592386Z 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:18:36.4593670Z 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:18:36.4594954Z 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:18:36.4596184Z 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:18:36.4596653Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir 2025-06-05T23:18:36.4597941Z 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:18:36.4599255Z 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:18:36.4600437Z 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:18:36.4601702Z 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:18:36.4602244Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:18:36.4603607Z 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:18:36.4605112Z 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:18:36.4606635Z 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:18:36.4608075Z 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:18:36.4608689Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:18:36.4610208Z 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:18:36.4612126Z 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:18:36.4613725Z 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:18:36.4615479Z 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:18:36.4616124Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:18:36.4617813Z 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:18:36.4619516Z 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:18:36.4621124Z 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:18:36.4622786Z 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:18:36.4623493Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters 2025-06-05T23:18:36.4625155Z 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:18:36.4625985Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:18:36.4627919Z 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:18:36.4629926Z 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:18:36.4631985Z 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:18:36.4634075Z 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:18:36.4636144Z 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:18:36.4638180Z 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:18:36.4640277Z 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:18:36.4642362Z 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:18:36.4644506Z 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:18:36.4646674Z 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:18:36.4648697Z 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:18:36.4650719Z 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:18:36.4652770Z 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:18:36.4653563Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:18:36.4655342Z 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:18:36.4657206Z 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:18:36.4659048Z 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:18:36.4660998Z 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:18:36.4661510Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/lib 2025-06-05T23:18:36.4662747Z 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:18:36.4663287Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:18:36.4664768Z 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:18:36.4666215Z 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:18:36.4667970Z 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:18:36.4669444Z 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:18:36.4670900Z 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:18:36.4672424Z 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:18:36.4674015Z 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:18:36.4675628Z 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:18:36.4677196Z 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:18:36.4678800Z 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:18:36.4680557Z 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:18:36.4682336Z 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:18:36.4683929Z 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:18:36.4685484Z 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:18:36.4687060Z 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:18:36.4688606Z 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:18:36.4690023Z 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:18:36.4691689Z 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:18:36.4693199Z 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:18:36.4694741Z 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:18:36.4696467Z 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:18:36.4697945Z 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:18:36.4699400Z 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:18:36.4700876Z 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:18:36.4702668Z 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:18:36.4704264Z 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:18:36.4705759Z 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:18:36.4707276Z 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:18:36.4708733Z 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:18:36.4710226Z 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:18:36.4711821Z 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:18:36.4713385Z 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:18:36.4714909Z 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:18:36.4716513Z 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:18:36.4718140Z 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:18:36.4719705Z 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:18:36.4721181Z 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:18:36.4722726Z 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:18:36.4724355Z 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:18:36.4725948Z 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:18:36.4727636Z 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:18:36.4729338Z 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:18:36.4730927Z 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:18:36.4732407Z 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:18:36.4733949Z 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:18:36.4735475Z 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:18:36.4736948Z 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:18:36.4738482Z 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:18:36.4740021Z 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:18:36.4741635Z 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:18:36.4743415Z 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:18:36.4744965Z 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:18:36.4746460Z 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:18:36.4747932Z 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:18:36.4749528Z 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:18:36.4751033Z 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:18:36.4752571Z 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:18:36.4754287Z 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:18:36.4755909Z 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:18:36.4757463Z 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:18:36.4759148Z 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:18:36.4760617Z 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:18:36.4762089Z 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:18:36.4763562Z 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:18:36.4765226Z 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:18:36.4766799Z 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:18:36.4768324Z 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:18:36.4769805Z 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:18:36.4771353Z 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:18:36.4772883Z 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:18:36.4774382Z 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:18:36.4776164Z 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:18:36.4777720Z 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:18:36.4779299Z 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:18:36.4780864Z 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:18:36.4782566Z 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:18:36.4784129Z 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:18:36.4785706Z 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:18:36.4787409Z 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:18:36.4788877Z 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:18:36.4790384Z 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:18:36.4792084Z 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:18:36.4793462Z 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:18:36.4794927Z 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:18:36.4796409Z 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:18:36.4798097Z 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:18:36.4799782Z 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:18:36.4801331Z 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:18:36.4802839Z 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:18:36.4804351Z 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:18:36.4805833Z 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:18:36.4807311Z 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:18:36.4808801Z 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:18:36.4810447Z 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:18:36.4811852Z 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:18:36.4813365Z 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:18:36.4814828Z 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:18:36.4816602Z 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:18:36.4818246Z 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:18:36.4819762Z 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:18:36.4821220Z 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:18:36.4822726Z 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:18:36.4824208Z 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:18:36.4825699Z 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:18:36.4827270Z 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:18:36.4828864Z 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:18:36.4830465Z 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:18:36.4831985Z 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:18:36.4833511Z 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:18:36.4835130Z 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:18:36.4836843Z 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:18:36.4838612Z 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:18:36.4840148Z 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:18:36.4841634Z 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:18:36.4843189Z 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:18:36.4844836Z 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:18:36.4846339Z 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:18:36.4847893Z 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:18:36.4849441Z 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:18:36.4850945Z 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:18:36.4852475Z 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:18:36.4854038Z 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:18:36.4855548Z 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:18:36.4857026Z 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:18:36.4858503Z 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:18:36.4860049Z 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:18:36.4861536Z 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:18:36.4863059Z 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:18:36.4864678Z 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:18:36.4866391Z 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:18:36.4867965Z 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:18:36.4869552Z 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:18:36.4871114Z 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:18:36.4872708Z 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:18:36.4874208Z 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:18:36.4875702Z 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:18:36.4877369Z 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:18:36.4878894Z 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:18:36.4880651Z 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:18:36.4882282Z 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:18:36.4884051Z 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:18:36.4885691Z 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:18:36.4887383Z 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:18:36.4889074Z 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:18:36.4890765Z 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:18:36.4892567Z 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:18:36.4894303Z 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:18:36.4896083Z 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:18:36.4897677Z 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:18:36.4899281Z 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:18:36.4900925Z 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:18:36.4902689Z 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:18:36.4904407Z 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:18:36.4906156Z 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:18:36.4907807Z 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:18:36.4909418Z 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:18:36.4911006Z 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:18:36.4912649Z 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:18:36.4914246Z 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:18:36.4915840Z 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:18:36.4917293Z 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:18:36.4918744Z 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:18:36.4920127Z 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:18:36.4921589Z 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:18:36.4923058Z 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:18:36.4924711Z 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:18:36.4926191Z 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:18:36.4927783Z 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:18:36.4929326Z 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:18:36.4930954Z 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:18:36.4932435Z 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:18:36.4934211Z 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:18:36.4935700Z 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:18:36.4937206Z 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:18:36.4938867Z 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:18:36.4940524Z 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:18:36.4942201Z 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:18:36.4943858Z 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:18:36.4945426Z 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:18:36.4946954Z 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:18:36.4948432Z 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:18:36.4949907Z 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:18:36.4951475Z 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:18:36.4952959Z 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:18:36.4953580Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:18:36.4955024Z 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:18:36.4956526Z 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:18:36.4957305Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:18:36.4959158Z 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:18:36.4960953Z 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:18:36.4962768Z 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:18:36.4964627Z 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:18:36.4966471Z 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:18:36.4968287Z 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:18:36.4970168Z 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:18:36.4972057Z 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:18:36.4974083Z 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:18:36.4976084Z 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:18:36.4977964Z 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:18:36.4979856Z 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:18:36.4981787Z 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:18:36.4983693Z 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:18:36.4985522Z 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:18:36.4987472Z 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:18:36.4989295Z 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:18:36.4991374Z 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:18:36.4993289Z 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:18:36.4995170Z 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:18:36.4996985Z 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:18:36.4998802Z 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:18:36.5000600Z 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:18:36.5002443Z 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:18:36.5004411Z 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:18:36.5006279Z 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:18:36.5008119Z 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:18:36.5010119Z 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:18:36.5012005Z 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:18:36.5013842Z 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:18:36.5015854Z 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:18:36.5017708Z 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:18:36.5019563Z 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:18:36.5021385Z 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:18:36.5023257Z 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:18:36.5025145Z 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:18:36.5027011Z 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:18:36.5028877Z 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:18:36.5030691Z 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:18:36.5032497Z 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:18:36.5034373Z 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:18:36.5036222Z 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:18:36.5038154Z 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:18:36.5040008Z 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:18:36.5041867Z 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:18:36.5043908Z 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:18:36.5045813Z 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:18:36.5047604Z 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:18:36.5049448Z 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:18:36.5051301Z 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:18:36.5053104Z 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:18:36.5054927Z 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:18:36.5056729Z 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:18:36.5058588Z 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:18:36.5060426Z 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:18:36.5062277Z 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:18:36.5064138Z 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:18:36.5066134Z 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:18:36.5067976Z 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:18:36.5069898Z 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:18:36.5071970Z 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:18:36.5073886Z 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:18:36.5075758Z 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:18:36.5077601Z 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:18:36.5079447Z 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:18:36.5081248Z 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:18:36.5083062Z 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:18:36.5084989Z 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:18:36.5086887Z 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:18:36.5088705Z 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:18:36.5090531Z 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:18:36.5092482Z 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:18:36.5094624Z 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:18:36.5096468Z 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:18:36.5098343Z 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:18:36.5100296Z 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:18:36.5102098Z 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:18:36.5103920Z 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:18:36.5105819Z 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:18:36.5107691Z 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:18:36.5109745Z 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:18:36.5111757Z 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:18:36.5112517Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-06-05T23:18:36.5114396Z 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:18:36.5115067Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:18:36.5116621Z 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:18:36.5118158Z 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:18:36.5119712Z 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:18:36.5120355Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:18:36.5121902Z 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:18:36.5123402Z 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:18:36.5125007Z 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:18:36.5126523Z 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:18:36.5128193Z 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:18:36.5129679Z 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:18:36.5130440Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:18:36.5132186Z 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:18:36.5134046Z 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:18:36.5136056Z 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:18:36.5137982Z 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:18:36.5139906Z 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:18:36.5141923Z 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:18:36.5143884Z 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:18:36.5145735Z 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:18:36.5147629Z 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:18:36.5149850Z 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:18:36.5151732Z 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:18:36.5153634Z 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:18:36.5155631Z 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:18:36.5157568Z 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:18:36.5159515Z 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:18:36.5161633Z 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:18:36.5162097Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/quantizer 2025-06-05T23:18:36.5163376Z 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:18:36.5164653Z 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:18:36.5165795Z 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:18:36.5166222Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests 2025-06-05T23:18:36.5167451Z 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:18:36.5168598Z 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:18:36.5169870Z 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:18:36.5170965Z 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:18:36.5172189Z 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:18:36.5173382Z 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:18:36.5174680Z 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:18:36.5176060Z 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:18:36.5177276Z 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:18:36.5178475Z 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:18:36.5179643Z 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:18:36.5180070Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir 2025-06-05T23:18:36.5180695Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir/converter 2025-06-05T23:18:36.5181382Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:18:36.5183115Z 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:18:36.5184903Z 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:18:36.5186597Z 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:18:36.5188330Z 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:18:36.5190067Z 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:18:36.5191960Z 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:18:36.5193678Z 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:18:36.5195407Z 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:18:36.5197159Z 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:18:36.5199563Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino 2025-06-05T23:18:36.5201267Z 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:18:36.5203759Z 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:18:36.5206257Z 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:18:36.5208341Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/quantizer 2025-06-05T23:18:36.5210288Z 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:18:36.5213088Z 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:18:36.5215086Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests 2025-06-05T23:18:36.5216970Z 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:18:36.5218916Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests/models 2025-06-05T23:18:36.5221230Z 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:18:36.5223384Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests/ops 2025-06-05T23:18:36.5225466Z 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:18:36.5228313Z 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:18:36.5231100Z 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:18:36.5233910Z 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:18:36.5236760Z 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:18:36.5239636Z 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:18:36.5242647Z 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:18:36.5245535Z 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:18:36.5248395Z 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:18:36.5251255Z 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:18:36.5254058Z 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:18:36.5255988Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm 2025-06-05T23:18:36.5257770Z 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:18:36.5259584Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/_passes 2025-06-05T23:18:36.5261650Z 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:18:36.5264401Z 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:18:36.5267293Z 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:18:36.5270071Z 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:18:36.5272787Z 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:18:36.5275670Z 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:18:36.5278419Z 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:18:36.5281245Z 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:18:36.5284154Z 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:18:36.5286911Z 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:18:36.5289661Z 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:18:36.5292564Z 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:18:36.5295339Z 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:18:36.5298176Z 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:18:36.5301041Z 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:18:36.5303785Z 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:18:36.5306649Z 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:18:36.5309544Z 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:18:36.5312265Z 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:18:36.5314976Z 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:18:36.5318078Z 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:18:36.5320839Z 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:18:36.5323506Z 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:18:36.5326298Z 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:18:36.5329233Z 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:18:36.5332114Z 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:18:36.5334983Z 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:18:36.5337810Z 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:18:36.5340668Z 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:18:36.5343492Z 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:18:36.5346266Z 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:18:36.5349041Z 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:18:36.5351834Z 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:18:36.5354636Z 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:18:36.5357481Z 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:18:36.5360214Z 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:18:36.5362828Z 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:18:36.5364777Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/builders 2025-06-05T23:18:36.5366697Z 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:18:36.5369416Z 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:18:36.5372300Z 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:18:36.5375070Z 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:18:36.5377888Z 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:18:36.5380564Z 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:18:36.5383349Z 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:18:36.5386043Z 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:18:36.5388796Z 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:18:36.5391707Z 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:18:36.5394500Z 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:18:36.5397224Z 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:18:36.5399899Z 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:18:36.5402566Z 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:18:36.5405345Z 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:18:36.5408054Z 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:18:36.5410748Z 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:18:36.5413471Z 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:18:36.5416219Z 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:18:36.5419062Z 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:18:36.5421796Z 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:18:36.5424473Z 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:18:36.5427363Z 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:18:36.5430093Z 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:18:36.5432741Z 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:18:36.5435471Z 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:18:36.5438163Z 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:18:36.5441066Z 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:18:36.5443868Z 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:18:36.5446542Z 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:18:36.5449219Z 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:18:36.5451945Z 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:18:36.5454680Z 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:18:36.5457424Z 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:18:36.5460257Z 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:18:36.5463009Z 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:18:36.5465776Z 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:18:36.5468531Z 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:18:36.5471336Z 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:18:36.5474142Z 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:18:36.5476876Z 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:18:36.5479538Z 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:18:36.5482387Z 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:18:36.5485164Z 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:18:36.5487982Z 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:18:36.5490693Z 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:18:36.5493511Z 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:18:36.5496400Z 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:18:36.5499108Z 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:18:36.5501856Z 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:18:36.5504542Z 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:18:36.5507246Z 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:18:36.5509918Z 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:18:36.5512582Z 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:18:36.5515230Z 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:18:36.5517893Z 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:18:36.5520557Z 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:18:36.5523270Z 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:18:36.5526039Z 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:18:36.5528791Z 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:18:36.5531487Z 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:18:36.5534228Z 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:18:36.5536973Z 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:18:36.5539892Z 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:18:36.5542593Z 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:18:36.5545386Z 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:18:36.5548193Z 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:18:36.5551071Z 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:18:36.5553787Z 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:18:36.5556493Z 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:18:36.5559251Z 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:18:36.5562007Z 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:18:36.5564896Z 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:18:36.5567716Z 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:18:36.5570513Z 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:18:36.5573201Z 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:18:36.5575945Z 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:18:36.5578633Z 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:18:36.5581358Z 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:18:36.5584073Z 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:18:36.5586753Z 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:18:36.5589381Z 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:18:36.5592293Z 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:18:36.5595219Z 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:18:36.5597976Z 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:18:36.5600842Z 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:18:36.5603877Z 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:18:36.5606841Z 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:18:36.5609620Z 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:18:36.5612380Z 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:18:36.5614303Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/debugger 2025-06-05T23:18:36.5616232Z 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:18:36.5618167Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/partition 2025-06-05T23:18:36.5620207Z 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:18:36.5623070Z 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:18:36.5625894Z 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:18:36.5627862Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/quantizer 2025-06-05T23:18:36.5629883Z 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:18:36.5632811Z 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:18:36.5635689Z 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:18:36.5638507Z 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:18:36.5640596Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:18:36.5642996Z 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:18:36.5646527Z 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:18:36.5649024Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/serialization 2025-06-05T23:18:36.5651126Z 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:18:36.5654098Z 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:18:36.5657173Z 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:18:36.5659265Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/tests 2025-06-05T23:18:36.5661229Z 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:18:36.5663928Z 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:18:36.5666572Z 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:18:36.5668406Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/utils 2025-06-05T23:18:36.5670299Z 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:18:36.5672907Z 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:18:36.5674762Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/aot 2025-06-05T23:18:36.5675859Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/aot/ir 2025-06-05T23:18:36.5677701Z 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:18:36.5679531Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/transforms 2025-06-05T23:18:36.5681263Z 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:18:36.5683867Z 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:18:36.5686494Z 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:18:36.5689099Z 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:18:36.5691980Z 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:18:36.5694743Z 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:18:36.5697425Z 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:18:36.5700016Z 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:18:36.5702774Z 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:18:36.5705295Z 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:18:36.5707882Z 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:18:36.5710489Z 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:18:36.5713172Z 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:18:36.5715942Z 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:18:36.5718577Z 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:18:36.5720542Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/transforms/test 2025-06-05T23:18:36.5722698Z 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:18:36.5725858Z 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:18:36.5728816Z 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:18:36.5730738Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan 2025-06-05T23:18:36.5732376Z 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:18:36.5734704Z 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:18:36.5737096Z 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:18:36.5739425Z 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:18:36.5741838Z 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:18:36.5743643Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/_passes 2025-06-05T23:18:36.5745468Z 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:18:36.5748057Z 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:18:36.5750781Z 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:18:36.5753570Z 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:18:36.5756461Z 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:18:36.5759187Z 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:18:36.5761997Z 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:18:36.5764827Z 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:18:36.5767719Z 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:18:36.5769689Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/partitioner 2025-06-05T23:18:36.5771783Z 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:18:36.5773834Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/quantizer 2025-06-05T23:18:36.5775810Z 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:18:36.5777785Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime 2025-06-05T23:18:36.5779693Z 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:18:36.5781681Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph 2025-06-05T23:18:36.5782920Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph/ops 2025-06-05T23:18:36.5784271Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:18:36.5786640Z 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:18:36.5790083Z 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:18:36.5793635Z 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:18:36.5796919Z 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:18:36.5800163Z 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:18:36.5803437Z 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:18:36.5806773Z 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:18:36.5810215Z 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:18:36.5813880Z 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:18:36.5817180Z 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:18:36.5820441Z 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:18:36.5823815Z 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:18:36.5827043Z 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:18:36.5830258Z 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:18:36.5833601Z 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:18:36.5837060Z 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:18:36.5840585Z 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:18:36.5844135Z 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:18:36.5847510Z 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:18:36.5850788Z 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:18:36.5854144Z 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:18:36.5857660Z 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:18:36.5861148Z 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:18:36.5864474Z 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:18:36.5867857Z 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:18:36.5871339Z 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:18:36.5874592Z 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:18:36.5877771Z 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:18:36.5880975Z 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:18:36.5884446Z 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:18:36.5887757Z 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:18:36.5891264Z 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:18:36.5894655Z 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:18:36.5897977Z 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:18:36.5901304Z 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:18:36.5904694Z 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:18:36.5908067Z 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:18:36.5911434Z 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:18:36.5914760Z 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:18:36.5918085Z 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:18:36.5921571Z 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:18:36.5925102Z 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:18:36.5928612Z 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:18:36.5931800Z 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:18:36.5935297Z 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:18:36.5938888Z 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:18:36.5942347Z 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:18:36.5945653Z 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:18:36.5948892Z 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:18:36.5952098Z 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:18:36.5955351Z 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:18:36.5958723Z 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:18:36.5962107Z 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:18:36.5965637Z 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:18:36.5969053Z 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:18:36.5972266Z 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:18:36.5975528Z 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:18:36.5978900Z 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:18:36.5982201Z 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:18:36.5985482Z 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:18:36.5988880Z 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:18:36.5992305Z 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:18:36.5995537Z 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:18:36.5998712Z 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:18:36.6001104Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/serialization 2025-06-05T23:18:36.6003261Z 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:18:36.6006359Z 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:18:36.6009415Z 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:18:36.6012413Z 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:18:36.6014402Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test 2025-06-05T23:18:36.6016278Z 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:18:36.6018958Z 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:18:36.6021727Z 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:18:36.6024421Z 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:18:36.6026382Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/op_tests 2025-06-05T23:18:36.6028372Z 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:18:36.6031231Z 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:18:36.6034301Z 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:18:36.6036498Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:18:36.6038661Z 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:18:36.6041731Z 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:18:36.6045041Z 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:18:36.6048187Z 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:18:36.6051351Z 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:18:36.6054515Z 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:18:36.6056605Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/glsl 2025-06-05T23:18:36.6058556Z 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:18:36.6061388Z 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:18:36.6064374Z 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:18:36.6066487Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party 2025-06-05T23:18:36.6067712Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/volk 2025-06-05T23:18:36.6069816Z 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:18:36.6072003Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers 2025-06-05T23:18:36.6073565Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:18:36.6076285Z 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:18:36.6080008Z 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:18:36.6083788Z 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:18:36.6087462Z 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:18:36.6091208Z 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:18:36.6094728Z 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:18:36.6098366Z 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:18:36.6101331Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-06-05T23:18:36.6104240Z 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:18:36.6107024Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator 2025-06-05T23:18:36.6108672Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools 2025-06-05T23:18:36.6110766Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-06-05T23:18:36.6114064Z 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:18:36.6116905Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools 2025-06-05T23:18:36.6118057Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools/gpuinfo 2025-06-05T23:18:36.6119302Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:18:36.6121552Z 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:18:36.6124823Z 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:18:36.6127995Z 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:18:36.6131112Z 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:18:36.6134328Z 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:18:36.6137488Z 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:18:36.6139587Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack 2025-06-05T23:18:36.6141264Z 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:18:36.6143706Z 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:18:36.6145563Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/_passes 2025-06-05T23:18:36.6147387Z 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:18:36.6150143Z 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:18:36.6153073Z 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:18:36.6155935Z 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:18:36.6158650Z 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:18:36.6161461Z 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:18:36.6164324Z 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:18:36.6167186Z 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:18:36.6169983Z 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:18:36.6172750Z 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:18:36.6175490Z 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:18:36.6178209Z 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:18:36.6180118Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/operators 2025-06-05T23:18:36.6182024Z 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:18:36.6184761Z 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:18:36.6187512Z 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:18:36.6190186Z 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:18:36.6193056Z 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:18:36.6195844Z 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:18:36.6198612Z 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:18:36.6201275Z 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:18:36.6204068Z 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:18:36.6206826Z 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:18:36.6209690Z 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:18:36.6212401Z 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:18:36.6215218Z 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:18:36.6218188Z 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:18:36.6221156Z 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:18:36.6223839Z 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:18:36.6226541Z 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:18:36.6229237Z 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:18:36.6231997Z 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:18:36.6234776Z 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:18:36.6237582Z 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:18:36.6240300Z 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:18:36.6243016Z 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:18:36.6245953Z 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:18:36.6248835Z 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:18:36.6251595Z 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:18:36.6254381Z 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:18:36.6257122Z 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:18:36.6289828Z 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:18:36.6292889Z 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:18:36.6295982Z 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:18:36.6298746Z 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:18:36.6301478Z 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:18:36.6304266Z 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:18:36.6307200Z 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:18:36.6309899Z 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:18:36.6312611Z 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:18:36.6315334Z 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:18:36.6318078Z 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:18:36.6320845Z 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:18:36.6323640Z 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:18:36.6326433Z 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:18:36.6329217Z 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:18:36.6331983Z 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:18:36.6334836Z 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:18:36.6337814Z 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:18:36.6340680Z 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:18:36.6343358Z 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:18:36.6346141Z 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:18:36.6348117Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition 2025-06-05T23:18:36.6350209Z 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:18:36.6353102Z 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:18:36.6355216Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition/config 2025-06-05T23:18:36.6357340Z 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:18:36.6360371Z 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:18:36.6363642Z 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:18:36.6366885Z 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:18:36.6370046Z 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:18:36.6373212Z 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:18:36.6375436Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition/graphs 2025-06-05T23:18:36.6377645Z 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:18:36.6380671Z 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:18:36.6382735Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/quantizer 2025-06-05T23:18:36.6384776Z 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:18:36.6387738Z 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:18:36.6389871Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/serialization 2025-06-05T23:18:36.6392184Z 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:18:36.6395327Z 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:18:36.6398415Z 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:18:36.6401385Z 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:18:36.6403402Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test 2025-06-05T23:18:36.6405541Z 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:18:36.6408305Z 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:18:36.6410314Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/models 2025-06-05T23:18:36.6412344Z 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:18:36.6415127Z 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:18:36.6418485Z 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:18:36.6421424Z 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:18:36.6424327Z 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:18:36.6427241Z 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:18:36.6430174Z 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:18:36.6433082Z 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:18:36.6436002Z 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:18:36.6438795Z 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:18:36.6441688Z 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:18:36.6444689Z 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:18:36.6447479Z 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:18:36.6449430Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/ops 2025-06-05T23:18:36.6451309Z 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:18:36.6453943Z 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:18:36.6456687Z 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:18:36.6459489Z 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:18:36.6462356Z 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:18:36.6465012Z 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:18:36.6467708Z 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:18:36.6470476Z 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:18:36.6473404Z 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:18:36.6476109Z 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:18:36.6478858Z 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:18:36.6481547Z 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:18:36.6484274Z 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:18:36.6486928Z 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:18:36.6489655Z 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:18:36.6492467Z 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:18:36.6495226Z 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:18:36.6497979Z 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:18:36.6500752Z 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:18:36.6503524Z 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:18:36.6506228Z 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:18:36.6508882Z 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:18:36.6511602Z 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:18:36.6514342Z 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:18:36.6517318Z 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:18:36.6520083Z 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:18:36.6522808Z 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:18:36.6525637Z 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:18:36.6528423Z 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:18:36.6531331Z 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:18:36.6534074Z 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:18:36.6536750Z 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:18:36.6539567Z 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:18:36.6542372Z 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:18:36.6545099Z 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:18:36.6547780Z 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:18:36.6550533Z 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:18:36.6553301Z 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:18:36.6556285Z 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:18:36.6559035Z 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:18:36.6561735Z 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:18:36.6564632Z 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:18:36.6567426Z 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:18:36.6569377Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/passes 2025-06-05T23:18:36.6571503Z 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:18:36.6574648Z 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:18:36.6577759Z 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:18:36.6580865Z 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:18:36.6583899Z 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:18:36.6587054Z 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:18:36.6590134Z 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:18:36.6592433Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:18:36.6594635Z 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:18:36.6596076Z 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:18:36.6597591Z 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:18:36.6598137Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/serialization 2025-06-05T23:18:36.6599667Z 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:18:36.6601187Z 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:18:36.6601667Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/tester 2025-06-05T23:18:36.6602946Z 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:18:36.6604297Z 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:18:36.6604805Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party 2025-06-05T23:18:36.6605321Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:18:36.6606732Z 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:18:36.6607338Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/include 2025-06-05T23:18:36.6608006Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:18:36.6609760Z 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:18:36.6611319Z 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:18:36.6612884Z 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:18:36.6613497Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/test 2025-06-05T23:18:36.6614164Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-06-05T23:18:36.6615869Z 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:18:36.6617251Z 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:18:36.6617806Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:18:36.6619180Z 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:18:36.6620577Z 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:18:36.6621164Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:18:36.6622617Z 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:18:36.6623294Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:18:36.6624970Z 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:18:36.6626724Z 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:18:36.6628411Z 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:18:36.6629049Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/deps 2025-06-05T23:18:36.6629708Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:18:36.6631346Z 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:18:36.6632970Z 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:18:36.6634409Z 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:18:36.6635124Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:18:36.6636654Z 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:18:36.6638169Z 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:18:36.6638731Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK 2025-06-05T23:18:36.6639373Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:18:36.6641086Z 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:18:36.6642758Z 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:18:36.6644573Z 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:18:36.6646228Z 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:18:36.6646860Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:18:36.6648405Z 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:18:36.6649915Z 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:18:36.6651486Z 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:18:36.6653206Z 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:18:36.6654876Z 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:18:36.6656592Z 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:18:36.6658375Z 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:18:36.6660114Z 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:18:36.6661845Z 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:18:36.6663585Z 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:18:36.6665306Z 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:18:36.6667015Z 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:18:36.6668795Z 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:18:36.6670415Z 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:18:36.6672193Z 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:18:36.6673901Z 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:18:36.6675752Z 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:18:36.6677458Z 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:18:36.6679100Z 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:18:36.6680770Z 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:18:36.6682419Z 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:18:36.6684171Z 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:18:36.6685864Z 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:18:36.6687637Z 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:18:36.6689370Z 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:18:36.6691318Z 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:18:36.6692961Z 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:18:36.6693611Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:18:36.6695179Z 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:18:36.6696939Z 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:18:36.6698553Z 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:18:36.6700205Z 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:18:36.6701887Z 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:18:36.6703493Z 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:18:36.6705089Z 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:18:36.6706700Z 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:18:36.6708308Z 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:18:36.6709878Z 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:18:36.6711508Z 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:18:36.6713212Z 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:18:36.6714743Z 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:18:36.6716272Z 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:18:36.6717843Z 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:18:36.6719540Z 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:18:36.6721129Z 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:18:36.6722774Z 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:18:36.6724545Z 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:18:36.6726093Z 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:18:36.6727683Z 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:18:36.6729243Z 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:18:36.6730863Z 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:18:36.6732485Z 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:18:36.6734056Z 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:18:36.6735571Z 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:18:36.6737204Z 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:18:36.6738818Z 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:18:36.6740404Z 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:18:36.6742011Z 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:18:36.6743586Z 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:18:36.6745153Z 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:18:36.6746866Z 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:18:36.6748504Z 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:18:36.6750149Z 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:18:36.6751851Z 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:18:36.6753437Z 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:18:36.6755080Z 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:18:36.6756662Z 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:18:36.6758384Z 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:18:36.6759924Z 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:18:36.6761452Z 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:18:36.6762995Z 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:18:36.6764636Z 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:18:36.6766193Z 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:18:36.6767791Z 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:18:36.6769429Z 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:18:36.6771114Z 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:18:36.6772739Z 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:18:36.6774517Z 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:18:36.6776206Z 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:18:36.6777873Z 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:18:36.6779656Z 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:18:36.6781336Z 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:18:36.6782998Z 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:18:36.6784676Z 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:18:36.6786358Z 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:18:36.6788039Z 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:18:36.6789703Z 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:18:36.6791559Z 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:18:36.6793267Z 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:18:36.6794922Z 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:18:36.6796441Z 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:18:36.6798079Z 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:18:36.6799723Z 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:18:36.6801574Z 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:18:36.6803231Z 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:18:36.6804820Z 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:18:36.6806356Z 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:18:36.6808073Z 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:18:36.6809663Z 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:18:36.6811209Z 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:18:36.6812738Z 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:18:36.6814250Z 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:18:36.6815734Z 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:18:36.6816175Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/utils 2025-06-05T23:18:36.6817367Z 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:18:36.6818569Z 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:18:36.6819718Z 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:18:36.6821015Z 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:18:36.6821408Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple 2025-06-05T23:18:36.6821820Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps 2025-06-05T23:18:36.6822900Z 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:18:36.6824064Z 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:18:36.6824555Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/operators 2025-06-05T23:18:36.6825821Z 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:18:36.6827311Z 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:18:36.6828627Z 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:18:36.6829932Z 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:18:36.6831288Z 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:18:36.6832765Z 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:18:36.6834109Z 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:18:36.6835503Z 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:18:36.6836828Z 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:18:36.6838263Z 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:18:36.6839548Z 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:18:36.6840844Z 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:18:36.6842198Z 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:18:36.6843499Z 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:18:36.6844896Z 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:18:36.6846249Z 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:18:36.6847544Z 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:18:36.6848859Z 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:18:36.6850184Z 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:18:36.6851483Z 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:18:36.6852090Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/partition 2025-06-05T23:18:36.6853373Z 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:18:36.6854727Z 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:18:36.6855251Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/serialization 2025-06-05T23:18:36.6856687Z 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:18:36.6858241Z 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:18:36.6859635Z 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:18:36.6860089Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/test 2025-06-05T23:18:36.6861257Z 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:18:36.6862533Z 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:18:36.6863822Z 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:18:36.6865075Z 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:18:36.6866319Z 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:18:36.6867572Z 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:18:36.6868808Z 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:18:36.6869255Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/utils 2025-06-05T23:18:36.6870480Z 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:18:36.6871717Z 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:18:36.6872169Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml 2025-06-05T23:18:36.6872658Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/compiler 2025-06-05T23:18:36.6873966Z 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:18:36.6875396Z 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:18:36.6875899Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/partition 2025-06-05T23:18:36.6877411Z 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:18:36.6878860Z 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:18:36.6879358Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/quantizer 2025-06-05T23:18:36.6880681Z 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:18:36.6882123Z 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:18:36.6882707Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/test 2025-06-05T23:18:36.6884195Z 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:18:36.6885553Z 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:18:36.6886053Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/runtime 2025-06-05T23:18:36.6886592Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/runtime/test 2025-06-05T23:18:36.6888109Z 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:18:36.6889423Z 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:18:36.6891099Z 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:18:36.6891503Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence 2025-06-05T23:18:36.6891925Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot 2025-06-05T23:18:36.6893059Z 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:18:36.6894200Z 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:18:36.6895398Z 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:18:36.6896614Z 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:18:36.6897815Z 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:18:36.6898926Z 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:18:36.6900113Z 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:18:36.6901360Z 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:18:36.6902707Z 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:18:36.6903911Z 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:18:36.6905071Z 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:18:36.6906202Z 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:18:36.6907446Z 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:18:36.6908739Z 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:18:36.6909921Z 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:18:36.6911067Z 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:18:36.6912241Z 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:18:36.6913380Z 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:18:36.6913883Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot/quantizer 2025-06-05T23:18:36.6915250Z 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:18:36.6916605Z 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:18:36.6917950Z 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:18:36.6919252Z 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:18:36.6919744Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot/tests 2025-06-05T23:18:36.6921127Z 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:18:36.6922476Z 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:18:36.6923882Z 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:18:36.6925205Z 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:18:36.6926503Z 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:18:36.6927972Z 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:18:36.6929329Z 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:18:36.6930692Z 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:18:36.6932074Z 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:18:36.6933345Z 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:18:36.6934615Z 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:18:36.6935835Z 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:18:36.6936289Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/runtime 2025-06-05T23:18:36.6937492Z 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:18:36.6938701Z 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:18:36.6939917Z 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:18:36.6941121Z 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:18:36.6941563Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils 2025-06-05T23:18:36.6942750Z 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:18:36.6943955Z 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:18:36.6945200Z 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:18:36.6945705Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO 2025-06-05T23:18:36.6946970Z 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:18:36.6947563Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:18:36.6949030Z 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:18:36.6950534Z 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:18:36.6951107Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:18:36.6952702Z 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:18:36.6954253Z 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:18:36.6955743Z 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:18:36.6956280Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto 2025-06-05T23:18:36.6957658Z 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:18:36.6958382Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-06-05T23:18:36.6959954Z 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:18:36.6960684Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:18:36.6962421Z 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:18:36.6964306Z 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:18:36.6966056Z 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:18:36.6966778Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:18:36.6968534Z 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:18:36.6970304Z 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:18:36.6972047Z 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:18:36.6973816Z 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:18:36.6974568Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:18:36.6976351Z 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:18:36.6978149Z 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:18:36.6980056Z 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:18:36.6981861Z 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:18:36.6982545Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:18:36.6984212Z 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:18:36.6986038Z 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:18:36.6986754Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:18:36.6988409Z 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:18:36.6990181Z 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:18:36.6991036Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:18:36.6992798Z 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:18:36.6993940Z 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:18:36.6994832Z 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:18:36.6995747Z 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:18:36.6996751Z 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:18:36.6997656Z 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:18:36.6998669Z 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:18:36.6998994Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:18:36.6999766Z 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:18:36.7000562Z 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:18:36.7001766Z 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:18:36.7003216Z 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:18:36.7003770Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/test 2025-06-05T23:18:36.7004128Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:18:36.7005197Z 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:18:36.7006072Z 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:18:36.7006934Z 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:18:36.7007867Z 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:18:36.7008709Z 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:18:36.7009573Z 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:18:36.7010418Z 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:18:36.7011338Z 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:18:36.7012181Z 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:18:36.7012989Z 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:18:36.7013835Z 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:18:36.7014703Z 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:18:36.7015614Z 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:18:36.7016584Z 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:18:36.7017420Z 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:18:36.7017643Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m 2025-06-05T23:18:36.7017887Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/ops 2025-06-05T23:18:36.7018478Z 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:18:36.7019165Z 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:18:36.7019476Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/passes 2025-06-05T23:18:36.7020148Z 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:18:36.7020383Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/test 2025-06-05T23:18:36.7021042Z 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:18:36.7021230Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples 2025-06-05T23:18:36.7021486Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/llm_pte_finetuning 2025-06-05T23:18:36.7022232Z 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:18:36.7022886Z 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:18:36.7023542Z 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:18:36.7024168Z 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:18:36.7024875Z 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:18:36.7025547Z 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:18:36.7026250Z 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:18:36.7026892Z 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:18:36.7027544Z 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:18:36.7027866Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models 2025-06-05T23:18:36.7028402Z 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:18:36.7029022Z 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:18:36.7029578Z 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:18:36.7030138Z 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:18:36.7030387Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/deeplab_v3 2025-06-05T23:18:36.7031114Z 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:18:36.7031735Z 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:18:36.7032017Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/edsr 2025-06-05T23:18:36.7032604Z 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:18:36.7033175Z 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:18:36.7033434Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/efficient_sam 2025-06-05T23:18:36.7034208Z 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:18:36.7034851Z 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:18:36.7035227Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:18:36.7036089Z 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:18:36.7037007Z 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:18:36.7037888Z 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:18:36.7038752Z 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:18:36.7039570Z 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:18:36.7040525Z 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:18:36.7040787Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/emformer_rnnt 2025-06-05T23:18:36.7041433Z 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:18:36.7042088Z 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:18:36.7042415Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/inception_v3 2025-06-05T23:18:36.7043139Z 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:18:36.7043885Z 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:18:36.7044147Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/inception_v4 2025-06-05T23:18:36.7044791Z 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:18:36.7045482Z 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:18:36.7045720Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama 2025-06-05T23:18:36.7046426Z 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:18:36.7047039Z 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:18:36.7047633Z 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:18:36.7048251Z 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:18:36.7048869Z 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:18:36.7049533Z 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:18:36.7050189Z 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:18:36.7050788Z 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:18:36.7051462Z 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:18:36.7052113Z 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:18:36.7052757Z 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:18:36.7053393Z 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:18:36.7053977Z 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:18:36.7054543Z 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:18:36.7055178Z 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:18:36.7055515Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/evaluate 2025-06-05T23:18:36.7056177Z 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:18:36.7056952Z 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:18:36.7057251Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/experimental 2025-06-05T23:18:36.7057986Z 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:18:36.7058790Z 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:18:36.7059528Z 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:18:36.7060385Z 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:18:36.7060654Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/runner 2025-06-05T23:18:36.7061304Z 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:18:36.7061984Z 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:18:36.7062655Z 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:18:36.7062984Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/source_transformation 2025-06-05T23:18:36.7063850Z 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:18:36.7064692Z 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:18:36.7065485Z 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:18:36.7066386Z 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:18:36.7067212Z 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:18:36.7067974Z 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:18:36.7068806Z 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:18:36.7069746Z 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:18:36.7070580Z 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:18:36.7071368Z 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:18:36.7072177Z 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:18:36.7073067Z 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:18:36.7073869Z 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:18:36.7074692Z 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:18:36.7075581Z 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:18:36.7076461Z 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:18:36.7077336Z 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:18:36.7078142Z 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:18:36.7078482Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/tests 2025-06-05T23:18:36.7079191Z 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:18:36.7079955Z 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:18:36.7080652Z 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:18:36.7081346Z 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:18:36.7082116Z 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:18:36.7082793Z 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:18:36.7083562Z 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:18:36.7083915Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/tokenizer 2025-06-05T23:18:36.7084729Z 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:18:36.7085007Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision 2025-06-05T23:18:36.7085659Z 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:18:36.7086045Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:18:36.7086815Z 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:18:36.7087712Z 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:18:36.7088462Z 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:18:36.7089267Z 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:18:36.7089578Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:18:36.7090292Z 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:18:36.7091380Z 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:18:36.7092127Z 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:18:36.7092852Z 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:18:36.7093193Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/text_decoder 2025-06-05T23:18:36.7093950Z 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:18:36.7094317Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:18:36.7095175Z 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:18:36.7096081Z 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:18:36.7096434Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:18:36.7097334Z 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:18:36.7098156Z 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:18:36.7098534Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:18:36.7099410Z 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:18:36.7100353Z 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:18:36.7100597Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llava 2025-06-05T23:18:36.7101223Z 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:18:36.7102021Z 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:18:36.7103048Z 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:18:36.7103519Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llava/test 2025-06-05T23:18:36.7104732Z 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:18:36.7105997Z 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:18:36.7106405Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/lstm 2025-06-05T23:18:36.7107534Z 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:18:36.7108626Z 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:18:36.7109107Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilebert 2025-06-05T23:18:36.7110148Z 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:18:36.7111049Z 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:18:36.7111530Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilenet_v2 2025-06-05T23:18:36.7112659Z 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:18:36.7113361Z 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:18:36.7113833Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilenet_v3 2025-06-05T23:18:36.7115087Z 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:18:36.7116201Z 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:18:36.7116720Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi-3-mini-lora 2025-06-05T23:18:36.7117801Z 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:18:36.7118228Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi-3-mini 2025-06-05T23:18:36.7119424Z 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:18:36.7120343Z 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:18:36.7121301Z 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:18:36.7122538Z 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:18:36.7123660Z 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:18:36.7124225Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi_4_mini 2025-06-05T23:18:36.7125226Z 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:18:36.7126520Z 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:18:36.7126950Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/qwen2_5 2025-06-05T23:18:36.7127826Z 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:18:36.7129066Z 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:18:36.7129350Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/qwen3 2025-06-05T23:18:36.7130404Z 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:18:36.7131536Z 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:18:36.7131781Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/resnet 2025-06-05T23:18:36.7132377Z 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:18:36.7132983Z 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:18:36.7133218Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/smollm2 2025-06-05T23:18:36.7133852Z 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:18:36.7135226Z 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:18:36.7135645Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/test 2025-06-05T23:18:36.7136312Z 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:18:36.7137171Z 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:18:36.7137683Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/torchvision_vit 2025-06-05T23:18:36.7138895Z 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:18:36.7139591Z 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:18:36.7139834Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/toy_model 2025-06-05T23:18:36.7140457Z 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:18:36.7141056Z 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:18:36.7141304Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/wav2letter 2025-06-05T23:18:36.7142158Z 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:18:36.7143384Z 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:18:36.7143778Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/moshi 2025-06-05T23:18:36.7144043Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/moshi/mimi 2025-06-05T23:18:36.7144736Z 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:18:36.7145102Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple 2025-06-05T23:18:36.7145536Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml 2025-06-05T23:18:36.7146021Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml/llama 2025-06-05T23:18:36.7146984Z 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:18:36.7147855Z 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:18:36.7149078Z 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:18:36.7149995Z 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:18:36.7150727Z 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:18:36.7151004Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml/scripts 2025-06-05T23:18:36.7152311Z 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:18:36.7153501Z 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:18:36.7154472Z 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:18:36.7155831Z 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:18:36.7156902Z 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:18:36.7157147Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/mps 2025-06-05T23:18:36.7157399Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/mps/scripts 2025-06-05T23:18:36.7158080Z 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:18:36.7158737Z 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:18:36.7158929Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension 2025-06-05T23:18:36.7159173Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/export_util 2025-06-05T23:18:36.7159753Z 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:18:36.7160324Z 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:18:36.7160569Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor 2025-06-05T23:18:36.7161457Z 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:18:36.7161956Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor/serialize 2025-06-05T23:18:36.7163056Z 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:18:36.7163847Z 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:18:36.7164717Z 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:18:36.7166050Z 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:18:36.7166884Z 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:18:36.7167349Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor/test 2025-06-05T23:18:36.7168611Z 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:18:36.7169031Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/gguf_util 2025-06-05T23:18:36.7169895Z 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:18:36.7170995Z 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:18:36.7171782Z 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:18:36.7172071Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/gguf_util/converters 2025-06-05T23:18:36.7173217Z 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:18:36.7173658Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pybindings 2025-06-05T23:18:36.7174814Z 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:18:36.7175272Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pybindings/test 2025-06-05T23:18:36.7176499Z 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:18:36.7177622Z 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:18:36.7178841Z 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:18:36.7179920Z 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:18:36.7181306Z 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:18:36.7181716Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pytree 2025-06-05T23:18:36.7182764Z 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:18:36.7183197Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pytree/test 2025-06-05T23:18:36.7184322Z 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:18:36.7184744Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training 2025-06-05T23:18:36.7185829Z 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:18:36.7186327Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/pybindings 2025-06-05T23:18:36.7187216Z 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:18:36.7187757Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/pybindings/test 2025-06-05T23:18:36.7189122Z 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:18:36.7190055Z 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:18:36.7190671Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples 2025-06-05T23:18:36.7191314Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples/XOR 2025-06-05T23:18:36.7192297Z 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:18:36.7193227Z 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:18:36.7193787Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples/XOR/test 2025-06-05T23:18:36.7195385Z 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:18:36.7195807Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm 2025-06-05T23:18:36.7196250Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops 2025-06-05T23:18:36.7197353Z 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:18:36.7198556Z 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:18:36.7199324Z 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:18:36.7200553Z 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:18:36.7201581Z 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:18:36.7202909Z 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:18:36.7204098Z 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:18:36.7205383Z 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:18:36.7206592Z 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:18:36.7207151Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant 2025-06-05T23:18:36.7208228Z 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:18:36.7208894Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant/third-party 2025-06-05T23:18:36.7209615Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:18:36.7210906Z 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:18:36.7212454Z 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:18:36.7213494Z 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:18:36.7213935Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/export 2025-06-05T23:18:36.7214893Z 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:18:36.7216000Z 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:18:36.7217148Z 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:18:36.7217806Z 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:18:36.7218980Z 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:18:36.7220007Z 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:18:36.7220264Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/export/test 2025-06-05T23:18:36.7221239Z 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:18:36.7222483Z 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:18:36.7222755Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/modules 2025-06-05T23:18:36.7223890Z 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:18:36.7224896Z 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:18:36.7225899Z 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:18:36.7227042Z 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:18:36.7227306Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/modules/test 2025-06-05T23:18:36.7228303Z 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:18:36.7229546Z 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:18:36.7230481Z 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:18:36.7231875Z 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:18:36.7232316Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers 2025-06-05T23:18:36.7233014Z 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:18:36.7233364Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:18:36.7234146Z 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:18:36.7234946Z 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:18:36.7235886Z 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:18:36.7236682Z 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:18:36.7237477Z 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:18:36.7237853Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-06-05T23:18:36.7238779Z 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:18:36.7239183Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:18:36.7240108Z 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:18:36.7241038Z 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:18:36.7241313Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/test 2025-06-05T23:18:36.7242144Z 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:18:36.7242446Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party 2025-06-05T23:18:36.7242816Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:18:36.7243661Z 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:18:36.7244569Z 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:18:36.7244963Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:18:36.7245371Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:18:36.7246402Z 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:18:36.7247453Z 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:18:36.7248379Z 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:18:36.7248705Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json 2025-06-05T23:18:36.7249184Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs 2025-06-05T23:18:36.7249626Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs 2025-06-05T23:18:36.7250049Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-06-05T23:18:36.7251071Z 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:18:36.7251421Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests 2025-06-05T23:18:36.7251824Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty 2025-06-05T23:18:36.7252324Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-06-05T23:18:36.7253352Z 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:18:36.7253706Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools 2025-06-05T23:18:36.7254122Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-06-05T23:18:36.7255086Z 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:18:36.7255629Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:18:36.7256657Z 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:18:36.7257084Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-06-05T23:18:36.7258105Z 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:18:36.7258621Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-06-05T23:18:36.7259592Z 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:18:36.7260000Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/pcre2 2025-06-05T23:18:36.7260355Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:18:36.7261241Z 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:18:36.7262220Z 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:18:36.7263094Z 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:18:36.7264061Z 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:18:36.7265092Z 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:18:36.7265969Z 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:18:36.7266849Z 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:18:36.7267733Z 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:18:36.7268052Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2 2025-06-05T23:18:36.7268509Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-06-05T23:18:36.7269374Z 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:18:36.7269722Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:18:36.7270553Z 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:18:36.7271384Z 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:18:36.7272211Z 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:18:36.7272629Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-06-05T23:18:36.7273694Z 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:18:36.7274050Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:18:36.7274967Z 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:18:36.7275804Z 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:18:36.7276613Z 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:18:36.7276980Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece 2025-06-05T23:18:36.7277381Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-06-05T23:18:36.7278474Z 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:18:36.7278904Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:18:36.7279879Z 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:18:36.7280933Z 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:18:36.7281364Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src 2025-06-05T23:18:36.7281972Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:18:36.7283238Z 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:18:36.7284459Z 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:18:36.7285736Z 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:18:36.7287784Z 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:18:36.7288271Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build 2025-06-05T23:18:36.7288759Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib 2025-06-05T23:18:36.7289480Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:18:36.7291055Z 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:18:36.7292292Z 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:18:36.7293205Z 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:18:36.7294297Z 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:18:36.7296018Z 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:18:36.7296763Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools 2025-06-05T23:18:36.7298601Z 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:18:36.7299490Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:18:36.7301588Z 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:18:36.7303241Z 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:18:36.7303676Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module 2025-06-05T23:18:36.7304115Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module/test 2025-06-05T23:18:36.7304540Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module/test/resources 2025-06-05T23:18:36.7305285Z 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:18:36.7305593Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels 2025-06-05T23:18:36.7306006Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels/quantized 2025-06-05T23:18:36.7307066Z 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:18:36.7307414Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels/quantized/test 2025-06-05T23:18:36.7308420Z 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:18:36.7309699Z 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:18:36.7310864Z 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:18:36.7311916Z 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:18:36.7312977Z 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:18:36.7313322Z creating pip-out/bdist.linux-x86_64/wheel/executorch/schema 2025-06-05T23:18:36.7314193Z 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:18:36.7314729Z 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:18:36.7315451Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch 2025-06-05T23:18:36.7315776Z creating pip-out/bdist.linux-x86_64/wheel/executorch/share 2025-06-05T23:18:36.7316137Z creating pip-out/bdist.linux-x86_64/wheel/executorch/share/cmake 2025-06-05T23:18:36.7317197Z 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:18:36.7317556Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include 2025-06-05T23:18:36.7317965Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch 2025-06-05T23:18:36.7318426Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime 2025-06-05T23:18:36.7318915Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core 2025-06-05T23:18:36.7320239Z 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:18:36.7321476Z 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:18:36.7322841Z 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:18:36.7323923Z 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:18:36.7325258Z 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:18:36.7326309Z 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:18:36.7327631Z 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:18:36.7329096Z 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:18:36.7330093Z 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:18:36.7331453Z 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:18:36.7332524Z 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:18:36.7333856Z 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:18:36.7335246Z 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:18:36.7336590Z 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:18:36.7337305Z 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:18:36.7338578Z 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:18:36.7339744Z 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:18:36.7341199Z 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:18:36.7341696Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten 2025-06-05T23:18:36.7342992Z 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:18:36.7343726Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:18:36.7344991Z 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:18:36.7346534Z 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:18:36.7346971Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:18:36.7347825Z 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:18:36.7348662Z 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:18:36.7349696Z 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:18:36.7350582Z 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:18:36.7351484Z 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:18:36.7351854Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:18:36.7352674Z 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:18:36.7353769Z 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:18:36.7354604Z 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:18:36.7355414Z 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:18:36.7356380Z 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:18:36.7357244Z 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:18:36.7358107Z 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:18:36.7359042Z 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:18:36.7359847Z 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:18:36.7360833Z 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:18:36.7361676Z 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:18:36.7362636Z 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:18:36.7363456Z 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:18:36.7364405Z 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:18:36.7364797Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10 2025-06-05T23:18:36.7365314Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10 2025-06-05T23:18:36.7365745Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:18:36.7366744Z 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:18:36.7367812Z 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:18:36.7368299Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:18:36.7369407Z 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:18:36.7370378Z 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:18:36.7371465Z 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:18:36.7372456Z 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:18:36.7376487Z 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:18:36.7377485Z 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:18:36.7378506Z 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:18:36.7379455Z 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:18:36.7380601Z 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:18:36.7381555Z 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:18:36.7382710Z 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:18:36.7383644Z 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:18:36.7383973Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/kernel 2025-06-05T23:18:36.7384835Z 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:18:36.7385603Z 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:18:36.7386528Z 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:18:36.7387383Z 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:18:36.7387692Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/kernel/test 2025-06-05T23:18:36.7388464Z 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:18:36.7388760Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/platform 2025-06-05T23:18:36.7389481Z 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:18:36.7390295Z 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:18:36.7391345Z 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:18:36.7392197Z 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:18:36.7393105Z 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:18:36.7393825Z 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:18:36.7394567Z 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:18:36.7395472Z 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:18:36.7396213Z 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:18:36.7396950Z 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:18:36.7397829Z 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:18:36.7398154Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/platform/test 2025-06-05T23:18:36.7398935Z 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:18:36.7399730Z 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:18:36.7400141Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension 2025-06-05T23:18:36.7400476Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/kernel_util 2025-06-05T23:18:36.7401329Z 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:18:36.7402182Z 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:18:36.7403123Z 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:18:36.7403420Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/tensor 2025-06-05T23:18:36.7404226Z 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:18:36.7405242Z 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:18:36.7405983Z 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:18:36.7406924Z 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:18:36.7407263Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/threadpool 2025-06-05T23:18:36.7408061Z 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:18:36.7409017Z 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:18:36.7409829Z 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:18:36.7410001Z creating pip-out/bdist.linux-x86_64/wheel/executorch/data 2025-06-05T23:18:36.7410197Z creating pip-out/bdist.linux-x86_64/wheel/executorch/data/bin 2025-06-05T23:18:36.7410641Z 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:18:36.7411246Z 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:18:36.7411360Z running install_egg_info 2025-06-05T23:18:36.7411726Z Copying executorch.egg-info to pip-out/bdist.linux-x86_64/wheel/./executorch-0.7.0a0+bd57234-py3.10.egg-info 2025-06-05T23:18:36.7411823Z running install_scripts 2025-06-05T23:18:36.7412091Z creating pip-out/bdist.linux-x86_64/wheel/executorch-0.7.0a0+bd57234.dist-info/WHEEL 2025-06-05T23:18:36.7412686Z creating '/tmp/pip-wheel-i68ykf3q/.tmp-r55tpaaz/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:18:36.7412792Z adding 'executorch/version.py' 2025-06-05T23:18:36.7413276Z adding 'executorch/backends/apple/coreml/executorchcoreml.cpython-310-x86_64-linux-gnu.so' 2025-06-05T23:18:36.7413485Z adding 'executorch/backends/apple/coreml/executorchcoreml.pyi' 2025-06-05T23:18:36.7413674Z adding 'executorch/backends/apple/coreml/compiler/__init__.py' 2025-06-05T23:18:36.7413911Z adding 'executorch/backends/apple/coreml/compiler/coreml_preprocess.py' 2025-06-05T23:18:36.7414118Z adding 'executorch/backends/apple/coreml/partition/__init__.py' 2025-06-05T23:18:36.7414366Z adding 'executorch/backends/apple/coreml/partition/coreml_partitioner.py' 2025-06-05T23:18:36.7414596Z adding 'executorch/backends/apple/coreml/quantizer/__init__.py' 2025-06-05T23:18:36.7414842Z adding 'executorch/backends/apple/coreml/quantizer/coreml_quantizer.py' 2025-06-05T23:18:36.7415263Z adding 'executorch/backends/apple/coreml/runtime/test/export_stateful_model.py' 2025-06-05T23:18:36.7415505Z adding 'executorch/backends/apple/coreml/test/test_coreml_partitioner.py' 2025-06-05T23:18:36.7415731Z adding 'executorch/backends/apple/coreml/test/test_coreml_quantizer.py' 2025-06-05T23:18:36.7415883Z adding 'executorch/backends/apple/mps/__init__.py' 2025-06-05T23:18:36.7416050Z adding 'executorch/backends/apple/mps/mps_preprocess.py' 2025-06-05T23:18:36.7416228Z adding 'executorch/backends/apple/mps/operators/__init__.py' 2025-06-05T23:18:36.7416446Z adding 'executorch/backends/apple/mps/operators/activation_ops.py' 2025-06-05T23:18:36.7416633Z adding 'executorch/backends/apple/mps/operators/binary_ops.py' 2025-06-05T23:18:36.7416885Z adding 'executorch/backends/apple/mps/operators/clamp_ops.py' 2025-06-05T23:18:36.7417105Z adding 'executorch/backends/apple/mps/operators/constant_ops.py' 2025-06-05T23:18:36.7417494Z adding 'executorch/backends/apple/mps/operators/convolution_ops.py' 2025-06-05T23:18:36.7417691Z adding 'executorch/backends/apple/mps/operators/indexing_ops.py' 2025-06-05T23:18:36.7417912Z adding 'executorch/backends/apple/mps/operators/linear_algebra_ops.py' 2025-06-05T23:18:36.7418124Z adding 'executorch/backends/apple/mps/operators/node_visitor.py' 2025-06-05T23:18:36.7418344Z adding 'executorch/backends/apple/mps/operators/normalization_ops.py' 2025-06-05T23:18:36.7418520Z adding 'executorch/backends/apple/mps/operators/op_clone.py' 2025-06-05T23:18:36.7418718Z adding 'executorch/backends/apple/mps/operators/op_getitem.py' 2025-06-05T23:18:36.7418930Z adding 'executorch/backends/apple/mps/operators/op_quant_dequant.py' 2025-06-05T23:18:36.7419122Z adding 'executorch/backends/apple/mps/operators/op_skip_ops.py' 2025-06-05T23:18:36.7419315Z adding 'executorch/backends/apple/mps/operators/pad_ops.py' 2025-06-05T23:18:36.7419590Z adding 'executorch/backends/apple/mps/operators/pooling_ops.py' 2025-06-05T23:18:36.7419841Z adding 'executorch/backends/apple/mps/operators/range_ops.py' 2025-06-05T23:18:36.7420039Z adding 'executorch/backends/apple/mps/operators/reduce_ops.py' 2025-06-05T23:18:36.7420221Z adding 'executorch/backends/apple/mps/operators/shape_ops.py' 2025-06-05T23:18:36.7420400Z adding 'executorch/backends/apple/mps/operators/unary_ops.py' 2025-06-05T23:18:36.7420577Z adding 'executorch/backends/apple/mps/partition/__init__.py' 2025-06-05T23:18:36.7420807Z adding 'executorch/backends/apple/mps/partition/mps_partitioner.py' 2025-06-05T23:18:36.7421043Z adding 'executorch/backends/apple/mps/serialization/mps_graph_schema.py' 2025-06-05T23:18:36.7421294Z adding 'executorch/backends/apple/mps/serialization/mps_graph_serialize.py' 2025-06-05T23:18:36.7421508Z adding 'executorch/backends/apple/mps/serialization/schema.fbs' 2025-06-05T23:18:36.7421717Z adding 'executorch/backends/apple/mps/test/test_mps.py' 2025-06-05T23:18:36.7422022Z adding 'executorch/backends/apple/mps/test/test_mps_binary_ops.py' 2025-06-05T23:18:36.7422254Z adding 'executorch/backends/apple/mps/test/test_mps_indexing_ops.py' 2025-06-05T23:18:36.7422439Z adding 'executorch/backends/apple/mps/test/test_mps_linear.py' 2025-06-05T23:18:36.7422674Z adding 'executorch/backends/apple/mps/test/test_mps_models.py' 2025-06-05T23:18:36.7422906Z adding 'executorch/backends/apple/mps/test/test_mps_unary_ops.py' 2025-06-05T23:18:36.7423172Z adding 'executorch/backends/apple/mps/test/test_mps_utils.py' 2025-06-05T23:18:36.7423422Z adding 'executorch/backends/apple/mps/utils/mps_utils.py' 2025-06-05T23:18:36.7423692Z adding 'executorch/backends/apple/mps/utils/quant_utils.py' 2025-06-05T23:18:36.7423921Z adding 'executorch/backends/arm/arm_backend.py' 2025-06-05T23:18:36.7424167Z adding 'executorch/backends/arm/arm_vela.py' 2025-06-05T23:18:36.7424389Z adding 'executorch/backends/arm/ethosu_backend.py' 2025-06-05T23:18:36.7424660Z adding 'executorch/backends/arm/ethosu_partitioner.py' 2025-06-05T23:18:36.7424822Z adding 'executorch/backends/arm/process_node.py' 2025-06-05T23:18:36.7424954Z adding 'executorch/backends/arm/tosa_backend.py' 2025-06-05T23:18:36.7425085Z adding 'executorch/backends/arm/tosa_mapping.py' 2025-06-05T23:18:36.7425250Z adding 'executorch/backends/arm/tosa_partitioner.py' 2025-06-05T23:18:36.7425458Z adding 'executorch/backends/arm/tosa_quant_utils.py' 2025-06-05T23:18:36.7425624Z adding 'executorch/backends/arm/tosa_specification.py' 2025-06-05T23:18:36.7425762Z adding 'executorch/backends/arm/tosa_utils.py' 2025-06-05T23:18:36.7425895Z adding 'executorch/backends/arm/vgf_backend.py' 2025-06-05T23:18:36.7426037Z adding 'executorch/backends/arm/vgf_partitioner.py' 2025-06-05T23:18:36.7426191Z adding 'executorch/backends/arm/_passes/__init__.py' 2025-06-05T23:18:36.7426467Z adding 'executorch/backends/arm/_passes/_debug_passes.py' 2025-06-05T23:18:36.7426735Z adding 'executorch/backends/arm/_passes/annotate_channels_last_dim_order_pass.py' 2025-06-05T23:18:36.7426989Z adding 'executorch/backends/arm/_passes/annotate_decomposed_matmul.py' 2025-06-05T23:18:36.7427150Z adding 'executorch/backends/arm/_passes/arm_pass.py' 2025-06-05T23:18:36.7427431Z adding 'executorch/backends/arm/_passes/arm_pass_manager.py' 2025-06-05T23:18:36.7427601Z adding 'executorch/backends/arm/_passes/arm_pass_utils.py' 2025-06-05T23:18:36.7427840Z adding 'executorch/backends/arm/_passes/broadcast_args_pass.py' 2025-06-05T23:18:36.7428012Z adding 'executorch/backends/arm/_passes/cast_int64_pass.py' 2025-06-05T23:18:36.7428192Z adding 'executorch/backends/arm/_passes/cast_to_int32_pass.py' 2025-06-05T23:18:36.7428407Z adding 'executorch/backends/arm/_passes/conv1d_unsqueeze_pass.py' 2025-06-05T23:18:36.7428650Z adding 'executorch/backends/arm/_passes/convert_any_default_dim_dims_pass.py' 2025-06-05T23:18:36.7428888Z adding 'executorch/backends/arm/_passes/convert_expand_copy_to_repeat.py' 2025-06-05T23:18:36.7429136Z adding 'executorch/backends/arm/_passes/convert_full_like_to_full_pass.py' 2025-06-05T23:18:36.7429337Z adding 'executorch/backends/arm/_passes/convert_int_pow_to_mul.py' 2025-06-05T23:18:36.7429526Z adding 'executorch/backends/arm/_passes/convert_minmax_pass.py' 2025-06-05T23:18:36.7429738Z adding 'executorch/backends/arm/_passes/convert_split_to_slice.py' 2025-06-05T23:18:36.7430040Z adding 'executorch/backends/arm/_passes/convert_squeezes_to_view.py' 2025-06-05T23:18:36.7430217Z adding 'executorch/backends/arm/_passes/convert_to_clamp.py' 2025-06-05T23:18:36.7430458Z adding 'executorch/backends/arm/_passes/decompose_cosine_similarity_pass.py' 2025-06-05T23:18:36.7430657Z adding 'executorch/backends/arm/_passes/decompose_div_pass.py' 2025-06-05T23:18:36.7430900Z adding 'executorch/backends/arm/_passes/decompose_gelu_pass.py' 2025-06-05T23:18:36.7431121Z adding 'executorch/backends/arm/_passes/decompose_groupnorm_pass.py' 2025-06-05T23:18:36.7431344Z adding 'executorch/backends/arm/_passes/decompose_layernorm_pass.py' 2025-06-05T23:18:36.7431559Z adding 'executorch/backends/arm/_passes/decompose_leaky_relu_pass.py' 2025-06-05T23:18:36.7431840Z adding 'executorch/backends/arm/_passes/decompose_linalg_vector_norm_pass.py' 2025-06-05T23:18:36.7432049Z adding 'executorch/backends/arm/_passes/decompose_linear_pass.py' 2025-06-05T23:18:36.7432248Z adding 'executorch/backends/arm/_passes/decompose_meandim_pass.py' 2025-06-05T23:18:36.7432478Z adding 'executorch/backends/arm/_passes/decompose_ne_pass.py' 2025-06-05T23:18:36.7432743Z adding 'executorch/backends/arm/_passes/decompose_select.py' 2025-06-05T23:18:36.7433064Z adding 'executorch/backends/arm/_passes/decompose_silu_pass.py' 2025-06-05T23:18:36.7433391Z adding 'executorch/backends/arm/_passes/decompose_softmax_pass.py' 2025-06-05T23:18:36.7433784Z adding 'executorch/backends/arm/_passes/decompose_softmax_unstable_pass.py' 2025-06-05T23:18:36.7434214Z adding 'executorch/backends/arm/_passes/decompose_sqrt_pass.py' 2025-06-05T23:18:36.7434537Z adding 'executorch/backends/arm/_passes/decompose_sum_pass.py' 2025-06-05T23:18:36.7434859Z adding 'executorch/backends/arm/_passes/decompose_var_pass.py' 2025-06-05T23:18:36.7435316Z adding 'executorch/backends/arm/_passes/fold_qdq_with_annotated_qparams_pass.py' 2025-06-05T23:18:36.7435660Z adding 'executorch/backends/arm/_passes/fuse_batchnorm2d_pass.py' 2025-06-05T23:18:36.7436028Z adding 'executorch/backends/arm/_passes/fuse_constant_ops_pass.py' 2025-06-05T23:18:36.7436452Z adding 'executorch/backends/arm/_passes/fuse_equal_placeholders_pass.py' 2025-06-05T23:18:36.7436901Z adding 'executorch/backends/arm/_passes/fuse_quantized_activation_pass.py' 2025-06-05T23:18:36.7437253Z adding 'executorch/backends/arm/_passes/insert_rescales_pass.py' 2025-06-05T23:18:36.7437553Z adding 'executorch/backends/arm/_passes/insert_table_ops.py' 2025-06-05T23:18:36.7438031Z adding 'executorch/backends/arm/_passes/match_arg_ranks_pass.py' 2025-06-05T23:18:36.7438483Z adding 'executorch/backends/arm/_passes/match_where_self_arg_dtype_pass.py' 2025-06-05T23:18:36.7438838Z adding 'executorch/backends/arm/_passes/mm_to_bmm_pass.py' 2025-06-05T23:18:36.7439177Z adding 'executorch/backends/arm/_passes/remove_clone_pass.py' 2025-06-05T23:18:36.7439485Z adding 'executorch/backends/arm/_passes/replace_inf_values_pass.py' 2025-06-05T23:18:36.7439723Z adding 'executorch/backends/arm/_passes/replace_scalar_with_tensor_pass.py' 2025-06-05T23:18:36.7440050Z adding 'executorch/backends/arm/_passes/scalars_to_attribute_pass.py' 2025-06-05T23:18:36.7440418Z adding 'executorch/backends/arm/_passes/size_adjust_conv2d_pass.py' 2025-06-05T23:18:36.7440836Z adding 'executorch/backends/arm/_passes/unsqueeze_before_repeat_pass.py' 2025-06-05T23:18:36.7441313Z adding 'executorch/backends/arm/_passes/unsqueeze_scalar_placeholders_pass.py' 2025-06-05T23:18:36.7441666Z adding 'executorch/backends/arm/operator_support/__init__.py' 2025-06-05T23:18:36.7442006Z adding 'executorch/backends/arm/operator_support/convolution_support.py' 2025-06-05T23:18:36.7442231Z adding 'executorch/backends/arm/operator_support/ethos_u55_support.py' 2025-06-05T23:18:36.7442467Z adding 'executorch/backends/arm/operator_support/minmax_support.py' 2025-06-05T23:18:36.7442849Z adding 'executorch/backends/arm/operator_support/pool_2d_support.py' 2025-06-05T23:18:36.7443261Z adding 'executorch/backends/arm/operator_support/reduce_sum_support.py' 2025-06-05T23:18:36.7443810Z adding 'executorch/backends/arm/operator_support/right_shift_support.py' 2025-06-05T23:18:36.7444203Z adding 'executorch/backends/arm/operator_support/sin_cos_support.py' 2025-06-05T23:18:36.7444597Z adding 'executorch/backends/arm/operator_support/slice_copy_support.py' 2025-06-05T23:18:36.7444872Z adding 'executorch/backends/arm/operator_support/to_copy_support.py' 2025-06-05T23:18:36.7445349Z adding 'executorch/backends/arm/operator_support/tosa_supported_operators.py' 2025-06-05T23:18:36.7445633Z adding 'executorch/backends/arm/operators/__init__.py' 2025-06-05T23:18:36.7445956Z adding 'executorch/backends/arm/operators/node_visitor.py' 2025-06-05T23:18:36.7446236Z adding 'executorch/backends/arm/operators/op_abs.py' 2025-06-05T23:18:36.7446497Z adding 'executorch/backends/arm/operators/op_add.py' 2025-06-05T23:18:36.7446753Z adding 'executorch/backends/arm/operators/op_amax.py' 2025-06-05T23:18:36.7446946Z adding 'executorch/backends/arm/operators/op_amin.py' 2025-06-05T23:18:36.7447094Z adding 'executorch/backends/arm/operators/op_any.py' 2025-06-05T23:18:36.7447270Z adding 'executorch/backends/arm/operators/op_avg_pool2d.py' 2025-06-05T23:18:36.7447525Z adding 'executorch/backends/arm/operators/op_bmm.py' 2025-06-05T23:18:36.7447783Z adding 'executorch/backends/arm/operators/op_cat.py' 2025-06-05T23:18:36.7448056Z adding 'executorch/backends/arm/operators/op_clamp.py' 2025-06-05T23:18:36.7448534Z adding 'executorch/backends/arm/operators/op_constant_pad_nd.py' 2025-06-05T23:18:36.7448834Z adding 'executorch/backends/arm/operators/op_conv2d.py' 2025-06-05T23:18:36.7449099Z adding 'executorch/backends/arm/operators/op_cos.py' 2025-06-05T23:18:36.7449332Z adding 'executorch/backends/arm/operators/op_eq.py' 2025-06-05T23:18:36.7449596Z adding 'executorch/backends/arm/operators/op_erf.py' 2025-06-05T23:18:36.7449852Z adding 'executorch/backends/arm/operators/op_exp.py' 2025-06-05T23:18:36.7450101Z adding 'executorch/backends/arm/operators/op_ge.py' 2025-06-05T23:18:36.7450366Z adding 'executorch/backends/arm/operators/op_gt.py' 2025-06-05T23:18:36.7450620Z adding 'executorch/backends/arm/operators/op_le.py' 2025-06-05T23:18:36.7450880Z adding 'executorch/backends/arm/operators/op_log.py' 2025-06-05T23:18:36.7451123Z adding 'executorch/backends/arm/operators/op_lt.py' 2025-06-05T23:18:36.7451436Z adding 'executorch/backends/arm/operators/op_max_pool2d.py' 2025-06-05T23:18:36.7451839Z adding 'executorch/backends/arm/operators/op_maximum.py' 2025-06-05T23:18:36.7452141Z adding 'executorch/backends/arm/operators/op_minimum.py' 2025-06-05T23:18:36.7452481Z adding 'executorch/backends/arm/operators/op_mul.py' 2025-06-05T23:18:36.7452739Z adding 'executorch/backends/arm/operators/op_neg.py' 2025-06-05T23:18:36.7453034Z adding 'executorch/backends/arm/operators/op_permute.py' 2025-06-05T23:18:36.7453290Z adding 'executorch/backends/arm/operators/op_pow.py' 2025-06-05T23:18:36.7453662Z adding 'executorch/backends/arm/operators/op_reciprocal.py' 2025-06-05T23:18:36.7453960Z adding 'executorch/backends/arm/operators/op_repeat.py' 2025-06-05T23:18:36.7454261Z adding 'executorch/backends/arm/operators/op_rescale.py' 2025-06-05T23:18:36.7454610Z adding 'executorch/backends/arm/operators/op_rshift_tensor.py' 2025-06-05T23:18:36.7454902Z adding 'executorch/backends/arm/operators/op_rsqrt.py' 2025-06-05T23:18:36.7455196Z adding 'executorch/backends/arm/operators/op_sigmoid.py' 2025-06-05T23:18:36.7455456Z adding 'executorch/backends/arm/operators/op_sin.py' 2025-06-05T23:18:36.7455735Z adding 'executorch/backends/arm/operators/op_slice.py' 2025-06-05T23:18:36.7456015Z adding 'executorch/backends/arm/operators/op_sub.py' 2025-06-05T23:18:36.7456283Z adding 'executorch/backends/arm/operators/op_sum.py' 2025-06-05T23:18:36.7456562Z adding 'executorch/backends/arm/operators/op_table.py' 2025-06-05T23:18:36.7456847Z adding 'executorch/backends/arm/operators/op_tanh.py' 2025-06-05T23:18:36.7457124Z adding 'executorch/backends/arm/operators/op_to_copy.py' 2025-06-05T23:18:36.7457499Z adding 'executorch/backends/arm/operators/op_to_dim_order_copy.py' 2025-06-05T23:18:36.7457828Z adding 'executorch/backends/arm/operators/op_transpose.py' 2025-06-05T23:18:36.7458245Z adding 'executorch/backends/arm/operators/op_upsample_bilinear2d.py' 2025-06-05T23:18:36.7458635Z adding 'executorch/backends/arm/operators/op_upsample_nearest2d.py' 2025-06-05T23:18:36.7458909Z adding 'executorch/backends/arm/operators/op_view.py' 2025-06-05T23:18:36.7459196Z adding 'executorch/backends/arm/operators/op_where.py' 2025-06-05T23:18:36.7459626Z adding 'executorch/backends/arm/operators/operator_validation_utils.py' 2025-06-05T23:18:36.7459929Z adding 'executorch/backends/arm/operators/ops_binary.py' 2025-06-05T23:18:36.7460254Z adding 'executorch/backends/arm/operators/ops_identity.py' 2025-06-05T23:18:36.7460539Z adding 'executorch/backends/arm/operators/ops_unary.py' 2025-06-05T23:18:36.7460805Z adding 'executorch/backends/arm/quantizer/__init__.py' 2025-06-05T23:18:36.7461130Z adding 'executorch/backends/arm/quantizer/arm_quantizer.py' 2025-06-05T23:18:36.7461497Z adding 'executorch/backends/arm/quantizer/arm_quantizer_utils.py' 2025-06-05T23:18:36.7461916Z adding 'executorch/backends/arm/quantizer/quantization_annotator.py' 2025-06-05T23:18:36.7462289Z adding 'executorch/backends/arm/quantizer/quantization_config.py' 2025-06-05T23:18:36.7462716Z adding 'executorch/backends/arm/scripts/parse_test_names.py' 2025-06-05T23:18:36.7462949Z adding 'executorch/backends/arm/test/common.py' 2025-06-05T23:18:36.7463193Z adding 'executorch/backends/arm/test/conftest.py' 2025-06-05T23:18:36.7463475Z adding 'executorch/backends/arm/test/runner_utils.py' 2025-06-05T23:18:36.7463735Z adding 'executorch/backends/arm/test/test_model.py' 2025-06-05T23:18:36.7464141Z adding 'executorch/backends/arm/test/misc/test_bn_relu_folding_qat.py' 2025-06-05T23:18:36.7464531Z adding 'executorch/backends/arm/test/misc/test_custom_partition.py' 2025-06-05T23:18:36.7464841Z adding 'executorch/backends/arm/test/misc/test_debug_feats.py' 2025-06-05T23:18:36.7465217Z adding 'executorch/backends/arm/test/misc/test_dim_order_guards.py' 2025-06-05T23:18:36.7465592Z adding 'executorch/backends/arm/test/misc/test_lifted_tensor.py' 2025-06-05T23:18:36.7465974Z adding 'executorch/backends/arm/test/misc/test_model_evaluator.py' 2025-06-05T23:18:36.7466506Z adding 'executorch/backends/arm/test/misc/test_multiple_delegates.py' 2025-06-05T23:18:36.7466787Z adding 'executorch/backends/arm/test/misc/test_multiple_outputs.py' 2025-06-05T23:18:36.7467214Z adding 'executorch/backends/arm/test/misc/test_non_persistent_buffers.py' 2025-06-05T23:18:36.7467743Z adding 'executorch/backends/arm/test/misc/test_partition_decomposed_quantized_ops.py' 2025-06-05T23:18:36.7468079Z adding 'executorch/backends/arm/test/misc/test_tosa_spec.py' 2025-06-05T23:18:36.7468433Z adding 'executorch/backends/arm/test/models/test_conformer.py' 2025-06-05T23:18:36.7468795Z adding 'executorch/backends/arm/test/models/test_deit_tiny_arm.py' 2025-06-05T23:18:36.7469072Z adding 'executorch/backends/arm/test/models/test_dl3_arm.py' 2025-06-05T23:18:36.7469377Z adding 'executorch/backends/arm/test/models/test_llama.py' 2025-06-05T23:18:36.7469699Z adding 'executorch/backends/arm/test/models/test_lstm_arm.py' 2025-06-05T23:18:36.7470117Z adding 'executorch/backends/arm/test/models/test_mobilenet_v2_arm.py' 2025-06-05T23:18:36.7470513Z adding 'executorch/backends/arm/test/models/test_mobilenet_v3_arm.py' 2025-06-05T23:18:36.7470892Z adding 'executorch/backends/arm/test/models/test_nn_functional.py' 2025-06-05T23:18:36.7471180Z adding 'executorch/backends/arm/test/models/test_nn_modules.py' 2025-06-05T23:18:36.7471566Z adding 'executorch/backends/arm/test/models/test_torch_functions.py' 2025-06-05T23:18:36.7471893Z adding 'executorch/backends/arm/test/models/test_w2l_arm.py' 2025-06-05T23:18:36.7472172Z adding 'executorch/backends/arm/test/ops/test_abs.py' 2025-06-05T23:18:36.7472441Z adding 'executorch/backends/arm/test/ops/test_add.py' 2025-06-05T23:18:36.7472776Z adding 'executorch/backends/arm/test/ops/test_alias_copy.py' 2025-06-05T23:18:36.7473041Z adding 'executorch/backends/arm/test/ops/test_amax.py' 2025-06-05T23:18:36.7473274Z adding 'executorch/backends/arm/test/ops/test_amin.py' 2025-06-05T23:18:36.7473533Z adding 'executorch/backends/arm/test/ops/test_any.py' 2025-06-05T23:18:36.7473846Z adding 'executorch/backends/arm/test/ops/test_arange.py' 2025-06-05T23:18:36.7474106Z adding 'executorch/backends/arm/test/ops/test_at.py' 2025-06-05T23:18:36.7474438Z adding 'executorch/backends/arm/test/ops/test_avg_pool2d.py' 2025-06-05T23:18:36.7474770Z adding 'executorch/backends/arm/test/ops/test_batch_norm.py' 2025-06-05T23:18:36.7475055Z adding 'executorch/backends/arm/test/ops/test_bitwise.py' 2025-06-05T23:18:36.7475233Z adding 'executorch/backends/arm/test/ops/test_bmm.py' 2025-06-05T23:18:36.7475394Z adding 'executorch/backends/arm/test/ops/test_cat.py' 2025-06-05T23:18:36.7475582Z adding 'executorch/backends/arm/test/ops/test_clamp.py' 2025-06-05T23:18:36.7475856Z adding 'executorch/backends/arm/test/ops/test_clone.py' 2025-06-05T23:18:36.7476217Z adding 'executorch/backends/arm/test/ops/test_constant_pad_nd.py' 2025-06-05T23:18:36.7476521Z adding 'executorch/backends/arm/test/ops/test_conv1d.py' 2025-06-05T23:18:36.7476909Z adding 'executorch/backends/arm/test/ops/test_conv2d.py' 2025-06-05T23:18:36.7477196Z adding 'executorch/backends/arm/test/ops/test_conv3d.py' 2025-06-05T23:18:36.7477520Z adding 'executorch/backends/arm/test/ops/test_conv_combos.py' 2025-06-05T23:18:36.7477764Z adding 'executorch/backends/arm/test/ops/test_conv_constant_pad_nd.py' 2025-06-05T23:18:36.7478011Z adding 'executorch/backends/arm/test/ops/test_cos.py' 2025-06-05T23:18:36.7478377Z adding 'executorch/backends/arm/test/ops/test_depthwise_conv.py' 2025-06-05T23:18:36.7478642Z adding 'executorch/backends/arm/test/ops/test_div.py' 2025-06-05T23:18:36.7478912Z adding 'executorch/backends/arm/test/ops/test_eq.py' 2025-06-05T23:18:36.7479193Z adding 'executorch/backends/arm/test/ops/test_erf.py' 2025-06-05T23:18:36.7479453Z adding 'executorch/backends/arm/test/ops/test_exp.py' 2025-06-05T23:18:36.7479730Z adding 'executorch/backends/arm/test/ops/test_expand.py' 2025-06-05T23:18:36.7479899Z adding 'executorch/backends/arm/test/ops/test_eye.py' 2025-06-05T23:18:36.7480282Z adding 'executorch/backends/arm/test/ops/test_full.py' 2025-06-05T23:18:36.7480544Z adding 'executorch/backends/arm/test/ops/test_ge.py' 2025-06-05T23:18:36.7480868Z adding 'executorch/backends/arm/test/ops/test_gelu.py' 2025-06-05T23:18:36.7481215Z adding 'executorch/backends/arm/test/ops/test_group_norm.py' 2025-06-05T23:18:36.7481475Z adding 'executorch/backends/arm/test/ops/test_gt.py' 2025-06-05T23:18:36.7481805Z adding 'executorch/backends/arm/test/ops/test_hardsigmoid.py' 2025-06-05T23:18:36.7482113Z adding 'executorch/backends/arm/test/ops/test_hardswish.py' 2025-06-05T23:18:36.7482420Z adding 'executorch/backends/arm/test/ops/test_hardtanh.py' 2025-06-05T23:18:36.7482740Z adding 'executorch/backends/arm/test/ops/test_layer_norm.py' 2025-06-05T23:18:36.7483006Z adding 'executorch/backends/arm/test/ops/test_le.py' 2025-06-05T23:18:36.7483341Z adding 'executorch/backends/arm/test/ops/test_leaky_relu.py' 2025-06-05T23:18:36.7483820Z adding 'executorch/backends/arm/test/ops/test_linalg_vector_norm.py' 2025-06-05T23:18:36.7484100Z adding 'executorch/backends/arm/test/ops/test_linear.py' 2025-06-05T23:18:36.7484379Z adding 'executorch/backends/arm/test/ops/test_log.py' 2025-06-05T23:18:36.7484682Z adding 'executorch/backends/arm/test/ops/test_logical.py' 2025-06-05T23:18:36.7485012Z adding 'executorch/backends/arm/test/ops/test_logsoftmax.py' 2025-06-05T23:18:36.7485320Z adding 'executorch/backends/arm/test/ops/test_lshift.py' 2025-06-05T23:18:36.7485583Z adding 'executorch/backends/arm/test/ops/test_lt.py' 2025-06-05T23:18:36.7485863Z adding 'executorch/backends/arm/test/ops/test_matmul.py' 2025-06-05T23:18:36.7486156Z adding 'executorch/backends/arm/test/ops/test_max_pool.py' 2025-06-05T23:18:36.7486469Z adding 'executorch/backends/arm/test/ops/test_maximum.py' 2025-06-05T23:18:36.7486776Z adding 'executorch/backends/arm/test/ops/test_mean_dim.py' 2025-06-05T23:18:36.7487087Z adding 'executorch/backends/arm/test/ops/test_minimum.py' 2025-06-05T23:18:36.7487374Z adding 'executorch/backends/arm/test/ops/test_mm.py' 2025-06-05T23:18:36.7487638Z adding 'executorch/backends/arm/test/ops/test_mul.py' 2025-06-05T23:18:36.7487867Z adding 'executorch/backends/arm/test/ops/test_ne.py' 2025-06-05T23:18:36.7488105Z adding 'executorch/backends/arm/test/ops/test_neg.py' 2025-06-05T23:18:36.7488377Z adding 'executorch/backends/arm/test/ops/test_ones.py' 2025-06-05T23:18:36.7488675Z adding 'executorch/backends/arm/test/ops/test_permute.py' 2025-06-05T23:18:36.7488944Z adding 'executorch/backends/arm/test/ops/test_pow.py' 2025-06-05T23:18:36.7489293Z adding 'executorch/backends/arm/test/ops/test_reciprocal.py' 2025-06-05T23:18:36.7489568Z adding 'executorch/backends/arm/test/ops/test_relu.py' 2025-06-05T23:18:36.7489850Z adding 'executorch/backends/arm/test/ops/test_repeat.py' 2025-06-05T23:18:36.7490117Z adding 'executorch/backends/arm/test/ops/test_rshift.py' 2025-06-05T23:18:36.7490400Z adding 'executorch/backends/arm/test/ops/test_rsqrt.py' 2025-06-05T23:18:36.7490843Z adding 'executorch/backends/arm/test/ops/test_scalar_tensor.py' 2025-06-05T23:18:36.7491306Z adding 'executorch/backends/arm/test/ops/test_scalars.py' 2025-06-05T23:18:36.7491589Z adding 'executorch/backends/arm/test/ops/test_sdpa.py' 2025-06-05T23:18:36.7491872Z adding 'executorch/backends/arm/test/ops/test_select.py' 2025-06-05T23:18:36.7492159Z adding 'executorch/backends/arm/test/ops/test_sigmoid.py' 2025-06-05T23:18:36.7492423Z adding 'executorch/backends/arm/test/ops/test_sigmoid_16bit.py' 2025-06-05T23:18:36.7492697Z adding 'executorch/backends/arm/test/ops/test_sigmoid_32bit.py' 2025-06-05T23:18:36.7492949Z adding 'executorch/backends/arm/test/ops/test_silu.py' 2025-06-05T23:18:36.7493220Z adding 'executorch/backends/arm/test/ops/test_sin.py' 2025-06-05T23:18:36.7493501Z adding 'executorch/backends/arm/test/ops/test_slice.py' 2025-06-05T23:18:36.7493801Z adding 'executorch/backends/arm/test/ops/test_softmax.py' 2025-06-05T23:18:36.7494273Z adding 'executorch/backends/arm/test/ops/test_split.py' 2025-06-05T23:18:36.7494557Z adding 'executorch/backends/arm/test/ops/test_sqrt.py' 2025-06-05T23:18:36.7494833Z adding 'executorch/backends/arm/test/ops/test_squeeze.py' 2025-06-05T23:18:36.7495175Z adding 'executorch/backends/arm/test/ops/test_sub.py' 2025-06-05T23:18:36.7651417Z adding 'executorch/backends/arm/test/ops/test_sum.py' 2025-06-05T23:18:36.7651639Z adding 'executorch/backends/arm/test/ops/test_tanh.py' 2025-06-05T23:18:36.7651811Z adding 'executorch/backends/arm/test/ops/test_to_copy.py' 2025-06-05T23:18:36.7651989Z adding 'executorch/backends/arm/test/ops/test_unary.py' 2025-06-05T23:18:36.7652231Z adding 'executorch/backends/arm/test/ops/test_unsqueeze.py' 2025-06-05T23:18:36.7652560Z adding 'executorch/backends/arm/test/ops/test_upsample_bilinear2d.py' 2025-06-05T23:18:36.7652903Z adding 'executorch/backends/arm/test/ops/test_upsample_nearest2d.py' 2025-06-05T23:18:36.7653058Z adding 'executorch/backends/arm/test/ops/test_var.py' 2025-06-05T23:18:36.7653223Z adding 'executorch/backends/arm/test/ops/test_view.py' 2025-06-05T23:18:36.7653392Z adding 'executorch/backends/arm/test/ops/test_where.py' 2025-06-05T23:18:36.7653548Z adding 'executorch/backends/arm/test/ops/test_zeros.py' 2025-06-05T23:18:36.7653781Z adding 'executorch/backends/arm/test/passes/test_broadcast_args_pass.py' 2025-06-05T23:18:36.7654070Z adding 'executorch/backends/arm/test/passes/test_cast_int64_pass.py' 2025-06-05T23:18:36.7654485Z adding 'executorch/backends/arm/test/passes/test_convert_expand_copy_to_repeat.py' 2025-06-05T23:18:36.7654735Z adding 'executorch/backends/arm/test/passes/test_convert_int_pow_to_muls.py' 2025-06-05T23:18:36.7654974Z adding 'executorch/backends/arm/test/passes/test_convert_split_to_slice.py' 2025-06-05T23:18:36.7655198Z adding 'executorch/backends/arm/test/passes/test_convert_to_clamp.py' 2025-06-05T23:18:36.7655487Z adding 'executorch/backends/arm/test/passes/test_decompose_cosine_similarity_pass.py' 2025-06-05T23:18:36.7655750Z adding 'executorch/backends/arm/test/passes/test_decompose_div_pass.py' 2025-06-05T23:18:36.7656129Z adding 'executorch/backends/arm/test/passes/test_decompose_layernorm_pass.py' 2025-06-05T23:18:36.7656497Z adding 'executorch/backends/arm/test/passes/test_decompose_linalg_vector_norm_pass.py' 2025-06-05T23:18:36.7656739Z adding 'executorch/backends/arm/test/passes/test_decompose_meandim_pass.py' 2025-06-05T23:18:36.7656993Z adding 'executorch/backends/arm/test/passes/test_decompose_softmax_pass.py' 2025-06-05T23:18:36.7657219Z adding 'executorch/backends/arm/test/passes/test_decompose_var_pass.py' 2025-06-05T23:18:36.7657421Z adding 'executorch/backends/arm/test/passes/test_fold_qdq_pass.py' 2025-06-05T23:18:36.7657755Z adding 'executorch/backends/arm/test/passes/test_fuse_batchnorm_pass.py' 2025-06-05T23:18:36.7658063Z adding 'executorch/backends/arm/test/passes/test_fuse_constant_ops_pass.py' 2025-06-05T23:18:36.7658440Z adding 'executorch/backends/arm/test/passes/test_fuse_equal_placeholders_ops_pass.py' 2025-06-05T23:18:36.7658782Z adding 'executorch/backends/arm/test/passes/test_insert_table_ops_pass.py' 2025-06-05T23:18:36.7659032Z adding 'executorch/backends/arm/test/passes/test_ioquantization_pass.py' 2025-06-05T23:18:36.7659280Z adding 'executorch/backends/arm/test/passes/test_remove_clone_pass.py' 2025-06-05T23:18:36.7659580Z adding 'executorch/backends/arm/test/passes/test_rescale_pass.py' 2025-06-05T23:18:36.7659972Z adding 'executorch/backends/arm/test/passes/test_unsqueeze_before_repeat_pass.py' 2025-06-05T23:18:36.7660213Z adding 'executorch/backends/arm/test/quantizer/test_generic_annotater.py' 2025-06-05T23:18:36.7660379Z adding 'executorch/backends/arm/test/tester/__init__.py' 2025-06-05T23:18:36.7660630Z adding 'executorch/backends/arm/test/tester/analyze_output_utils.py' 2025-06-05T23:18:36.7660798Z adding 'executorch/backends/arm/test/tester/arm_tester.py' 2025-06-05T23:18:36.7661139Z adding 'executorch/backends/arm/test/tester/test_pipeline.py' 2025-06-05T23:18:36.7661384Z adding 'executorch/backends/arm/test/tosautil/__init__.py' 2025-06-05T23:18:36.7661720Z adding 'executorch/backends/arm/third-party/serialization_lib/setup.py' 2025-06-05T23:18:36.7662101Z adding 'executorch/backends/arm/third-party/serialization_lib/python/serializer/__init__.py' 2025-06-05T23:18:36.7662467Z adding 'executorch/backends/arm/third-party/serialization_lib/python/serializer/tosa_serializer.py' 2025-06-05T23:18:36.7662908Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ArithmeticRightShiftAttribute.py' 2025-06-05T23:18:36.7663351Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Attribute.py' 2025-06-05T23:18:36.7663826Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/AxisAttribute.py' 2025-06-05T23:18:36.7664178Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ClampAttribute.py' 2025-06-05T23:18:36.7664564Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/CondIfAttribute.py' 2025-06-05T23:18:36.7664954Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ConvAttribute.py' 2025-06-05T23:18:36.7665602Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/CustomAttribute.py' 2025-06-05T23:18:36.7665913Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/DType.py' 2025-06-05T23:18:36.7666250Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/FFTAttribute.py' 2025-06-05T23:18:36.7666728Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/FullyConnectedAttribute.py' 2025-06-05T23:18:36.7667185Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/MatMulAttribute.py' 2025-06-05T23:18:36.7667542Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/MulAttribute.py' 2025-06-05T23:18:36.7668015Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/NegateAttribute.py' 2025-06-05T23:18:36.7668315Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Op.py' 2025-06-05T23:18:36.7668738Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/PadAttribute.py' 2025-06-05T23:18:36.7669269Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/PoolAttribute.py' 2025-06-05T23:18:36.7669612Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/RFFTAttribute.py' 2025-06-05T23:18:36.7669949Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/RescaleAttribute.py' 2025-06-05T23:18:36.7670412Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ReshapeAttribute.py' 2025-06-05T23:18:36.7670796Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeAttribute.py' 2025-06-05T23:18:36.7671168Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeMode.py' 2025-06-05T23:18:36.7671718Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/SliceAttribute.py' 2025-06-05T23:18:36.7672067Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TableAttribute.py' 2025-06-05T23:18:36.7672404Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TileAttribute.py' 2025-06-05T23:18:36.7672847Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaBasicBlock.py' 2025-06-05T23:18:36.7673210Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaGraph.py' 2025-06-05T23:18:36.7673690Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaOperator.py' 2025-06-05T23:18:36.7674061Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaRegion.py' 2025-06-05T23:18:36.7674393Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaTensor.py' 2025-06-05T23:18:36.7674848Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeAttribute.py' 2025-06-05T23:18:36.7675492Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeConvAttribute.py' 2025-06-05T23:18:36.7675853Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Version.py' 2025-06-05T23:18:36.7676259Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/WhileLoopAttribute.py' 2025-06-05T23:18:36.7676685Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/__init__.py' 2025-06-05T23:18:36.7677082Z adding 'executorch/backends/arm/third-party/serialization_lib/schema/tosa.fbs' 2025-06-05T23:18:36.7677419Z adding 'executorch/backends/arm/third-party/serialization_lib/test/scripts/test_npy_fileio.py' 2025-06-05T23:18:36.7677804Z adding 'executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit/xunit.py' 2025-06-05T23:18:36.7678316Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conanfile.py' 2025-06-05T23:18:36.7678784Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/pnpm-lock.yaml' 2025-06-05T23:18:36.7679361Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs/animal.fbs' 2025-06-05T23:18:36.7679896Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers/bench.fbs' 2025-06-05T23:18:36.7680301Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/build.py' 2025-06-05T23:18:36.7680938Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package/conanfile.py' 2025-06-05T23:18:36.7681439Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/analysis_options.yaml' 2025-06-05T23:18:36.7681855Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/pubspec.yaml' 2025-06-05T23:18:36.7682330Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/bool_structs.fbs' 2025-06-05T23:18:36.7682969Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/list_of_enums.fbs' 2025-06-05T23:18:36.7683386Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/monster_test.fbs' 2025-06-05T23:18:36.7683942Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/hero.fbs' 2025-06-05T23:18:36.7684512Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/net.fbs' 2025-06-05T23:18:36.7685071Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/generate_goldens.py' 2025-06-05T23:18:36.7799848Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/golden_utils.py' 2025-06-05T23:18:36.7800416Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp/generate.py' 2025-06-05T23:18:36.7800860Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp/generate.py' 2025-06-05T23:18:36.7801332Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart/generate.py' 2025-06-05T23:18:36.7801766Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go/generate.py' 2025-06-05T23:18:36.7802247Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java/generate.py' 2025-06-05T23:18:36.7802928Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin/generate.py' 2025-06-05T23:18:36.7803471Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster/generate.py' 2025-06-05T23:18:36.7804103Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua/generate.py' 2025-06-05T23:18:36.7804586Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim/generate.py' 2025-06-05T23:18:36.7805241Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php/generate.py' 2025-06-05T23:18:36.7805737Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Galaxy.py' 2025-06-05T23:18:36.7806236Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Universe.py' 2025-06-05T23:18:36.7806672Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/__init__.py' 2025-06-05T23:18:36.7807132Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/generate.py' 2025-06-05T23:18:36.7807819Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust/generate.py' 2025-06-05T23:18:36.7808249Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema/basic.fbs' 2025-06-05T23:18:36.7808690Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift/generate.py' 2025-06-05T23:18:36.7809179Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts/generate.py' 2025-06-05T23:18:36.7809632Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/greeter.fbs' 2025-06-05T23:18:36.7810383Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/client.py' 2025-06-05T23:18:36.7810937Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/server.py' 2025-06-05T23:18:36.7811509Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloReply.py' 2025-06-05T23:18:36.7812084Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloRequest.py' 2025-06-05T23:18:36.7812696Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/__init__.py' 2025-06-05T23:18:36.7813558Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/greeter_grpc_fb.py' 2025-06-05T23:18:36.7814034Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter/greeter.fbs' 2025-06-05T23:18:36.7814501Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests/grpctest.py' 2025-06-05T23:18:36.7815048Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.py' 2025-06-05T23:18:36.7815685Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/MonsterExtra.py' 2025-06-05T23:18:36.7816404Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/__init__.py' 2025-06-05T23:18:36.7816994Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.py' 2025-06-05T23:18:36.7817504Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.py' 2025-06-05T23:18:36.7818317Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.py' 2025-06-05T23:18:36.7819052Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.py' 2025-06-05T23:18:36.7819608Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayStruct.py' 2025-06-05T23:18:36.7820261Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayTable.py' 2025-06-05T23:18:36.7820794Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.py' 2025-06-05T23:18:36.7821389Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.py' 2025-06-05T23:18:36.7822143Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.py' 2025-06-05T23:18:36.7822700Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedStruct.py' 2025-06-05T23:18:36.7823227Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.py' 2025-06-05T23:18:36.7823955Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.py' 2025-06-05T23:18:36.7824598Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.py' 2025-06-05T23:18:36.7825223Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.py' 2025-06-05T23:18:36.7825853Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.py' 2025-06-05T23:18:36.7826376Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.py' 2025-06-05T23:18:36.7827179Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestEnum.py' 2025-06-05T23:18:36.7827853Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.py' 2025-06-05T23:18:36.7828420Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.py' 2025-06-05T23:18:36.7828968Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.py' 2025-06-05T23:18:36.7829500Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/__init__.py' 2025-06-05T23:18:36.7830105Z 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:18:36.7830775Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Any.py' 2025-06-05T23:18:36.7831389Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Color.py' 2025-06-05T23:18:36.7832091Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/NestedUnionTest.py' 2025-06-05T23:18:36.7832923Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Test.py' 2025-06-05T23:18:36.7833624Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py' 2025-06-05T23:18:36.7834200Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Vec3.py' 2025-06-05T23:18:36.7834864Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/__init__.py' 2025-06-05T23:18:36.7835682Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.py' 2025-06-05T23:18:36.7836318Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/__init__.py' 2025-06-05T23:18:36.7836921Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.py' 2025-06-05T23:18:36.8046244Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInC.py' 2025-06-05T23:18:36.8046957Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.py' 2025-06-05T23:18:36.8047571Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/__init__.py' 2025-06-05T23:18:36.8048186Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.py' 2025-06-05T23:18:36.8048863Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.py' 2025-06-05T23:18:36.8049477Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.py' 2025-06-05T23:18:36.8050072Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.py' 2025-06-05T23:18:36.8050744Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/__init__.py' 2025-06-05T23:18:36.8051263Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.py' 2025-06-05T23:18:36.8051775Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/__init__.py' 2025-06-05T23:18:36.8052414Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/OptionalByte.py' 2025-06-05T23:18:36.8052971Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/ScalarStuff.py' 2025-06-05T23:18:36.8053598Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/__init__.py' 2025-06-05T23:18:36.8054160Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector/union_vector.fbs' 2025-06-05T23:18:36.8054664Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/__init__.py' 2025-06-05T23:18:36.8055113Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/py.typed' 2025-06-05T23:18:36.8055505Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/setup.py' 2025-06-05T23:18:36.8055965Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/__init__.py' 2025-06-05T23:18:36.8056477Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/_version.py' 2025-06-05T23:18:36.8056947Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/builder.py' 2025-06-05T23:18:36.8057406Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/compat.py' 2025-06-05T23:18:36.8057967Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/encode.py' 2025-06-05T23:18:36.8058452Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/flexbuffers.py' 2025-06-05T23:18:36.8058976Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/number_types.py' 2025-06-05T23:18:36.8059475Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/packer.py' 2025-06-05T23:18:36.8059942Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/table.py' 2025-06-05T23:18:36.8060386Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/util.py' 2025-06-05T23:18:36.8061060Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/AdvancedFeatures.py' 2025-06-05T23:18:36.8061585Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/BaseType.py' 2025-06-05T23:18:36.8062076Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Enum.py' 2025-06-05T23:18:36.8062650Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/EnumVal.py' 2025-06-05T23:18:36.8063163Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Field.py' 2025-06-05T23:18:36.8063678Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/KeyValue.py' 2025-06-05T23:18:36.8064248Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Object.py' 2025-06-05T23:18:36.8064760Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/RPCCall.py' 2025-06-05T23:18:36.8065264Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Schema.py' 2025-06-05T23:18:36.8065864Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/SchemaFile.py' 2025-06-05T23:18:36.8066386Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Service.py' 2025-06-05T23:18:36.8066874Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Type.py' 2025-06-05T23:18:36.8067429Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/__init__.py' 2025-06-05T23:18:36.8067884Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection/reflection.fbs' 2025-06-05T23:18:36.8068439Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/monster.fbs' 2025-06-05T23:18:36.8069046Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/sample_binary.py' 2025-06-05T23:18:36.8069567Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check-grpc-generated-code.py' 2025-06-05T23:18:36.8070023Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check_generate_code.py' 2025-06-05T23:18:36.8070497Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_code.py' 2025-06-05T23:18:36.8070972Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_grpc_examples.py' 2025-06-05T23:18:36.8071374Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/util.py' 2025-06-05T23:18:36.8071900Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap/snapcraft.yaml' 2025-06-05T23:18:36.8072340Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MutatingBool.fbs' 2025-06-05T23:18:36.8072798Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/alignment_test.fbs' 2025-06-05T23:18:36.8073334Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/arrays_test.fbs' 2025-06-05T23:18:36.8073901Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/dictionary_lookup.fbs' 2025-06-05T23:18:36.8074327Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/included_test.fbs' 2025-06-05T23:18:36.8074814Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/includer_test.fbs' 2025-06-05T23:18:36.8075253Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/keyword_test.fbs' 2025-06-05T23:18:36.8075887Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_extra.fbs' 2025-06-05T23:18:36.8076446Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test.fbs' 2025-06-05T23:18:36.8076913Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test_generated.py' 2025-06-05T23:18:36.8077338Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/more_defaults.fbs' 2025-06-05T23:18:36.8077825Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nan_inf_test.fbs' 2025-06-05T23:18:36.8078400Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_inline_table_test.fbs' 2025-06-05T23:18:36.8078999Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_type_test.fbs' 2025-06-05T23:18:36.8079496Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_union_test.fbs' 2025-06-05T23:18:36.8079940Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars.fbs' 2025-06-05T23:18:36.8080415Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/private_annotation_test.fbs' 2025-06-05T23:18:36.8268606Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_flexbuffers_test.py' 2025-06-05T23:18:36.8269020Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_test.py' 2025-06-05T23:18:36.8269580Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/required_strings.fbs' 2025-06-05T23:18:36.8270175Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/rust_namer_test.fbs' 2025-06-05T23:18:36.8270723Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/test.fbs' 2025-06-05T23:18:36.8271199Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/type_field_collsion.fbs' 2025-06-05T23:18:36.8271792Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_underlying_type_test.fbs' 2025-06-05T23:18:36.8272403Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_value_collision.fbs' 2025-06-05T23:18:36.8272841Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/vector_has_test.fbs' 2025-06-05T23:18:36.8273373Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/test_64bit.fbs' 2025-06-05T23:18:36.8274215Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v1.fbs' 2025-06-05T23:18:36.8274695Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v2.fbs' 2025-06-05T23:18:36.8275506Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/InParentNamespace.py' 2025-06-05T23:18:36.8275972Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/MonsterExtra.py' 2025-06-05T23:18:36.8276400Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/__init__.py' 2025-06-05T23:18:36.8277085Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Ability.py' 2025-06-05T23:18:36.8277594Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Any.py' 2025-06-05T23:18:36.8278238Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.py' 2025-06-05T23:18:36.8278919Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.py' 2025-06-05T23:18:36.8279411Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayStruct.py' 2025-06-05T23:18:36.8280057Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayTable.py' 2025-06-05T23:18:36.8280558Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Color.py' 2025-06-05T23:18:36.8281077Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/LongEnum.py' 2025-06-05T23:18:36.8281821Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Monster.py' 2025-06-05T23:18:36.8282325Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedStruct.py' 2025-06-05T23:18:36.8282810Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Race.py' 2025-06-05T23:18:36.8283412Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Referrable.py' 2025-06-05T23:18:36.8283914Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Stat.py' 2025-06-05T23:18:36.8284473Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.py' 2025-06-05T23:18:36.8285222Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.py' 2025-06-05T23:18:36.8285672Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Test.py' 2025-06-05T23:18:36.8286205Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestEnum.py' 2025-06-05T23:18:36.8286805Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.py' 2025-06-05T23:18:36.8287323Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.py' 2025-06-05T23:18:36.8287900Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Vec3.py' 2025-06-05T23:18:36.8288454Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/__init__.py' 2025-06-05T23:18:36.8288984Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/monster_test_grpc_fb.py' 2025-06-05T23:18:36.8289754Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Any.py' 2025-06-05T23:18:36.8290332Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Color.py' 2025-06-05T23:18:36.8291085Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/NestedUnionTest.py' 2025-06-05T23:18:36.8291664Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Test.py' 2025-06-05T23:18:36.8292535Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py' 2025-06-05T23:18:36.8293067Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Vec3.py' 2025-06-05T23:18:36.8293605Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/__init__.py' 2025-06-05T23:18:36.8294322Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/Monster.py' 2025-06-05T23:18:36.8294782Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/__init__.py' 2025-06-05T23:18:36.8295359Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary.fbs' 2025-06-05T23:18:36.8296051Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary_old.fbs' 2025-06-05T23:18:36.8296634Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/generate_annotations.py' 2025-06-05T23:18:36.8297130Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v1.fbs' 2025-06-05T23:18:36.8297693Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v2.fbs' 2025-06-05T23:18:36.8298259Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/enum_val_attributes.fbs' 2025-06-05T23:18:36.8298771Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_cpp_tests.py' 2025-06-05T23:18:36.8299301Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_kotlin_tests.py' 2025-06-05T23:18:36.8299808Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_schema_tests.py' 2025-06-05T23:18:36.8300322Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_test.py' 2025-06-05T23:18:36.8300816Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_ts_tests.py' 2025-06-05T23:18:36.8301322Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo.fbs' 2025-06-05T23:18:36.8301901Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo_with_ns.fbs' 2025-06-05T23:18:36.8302399Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/main.py' 2025-06-05T23:18:36.8302833Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar.fbs' 2025-06-05T23:18:36.8303358Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_foo.fbs' 2025-06-05T23:18:36.8303937Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_ns.fbs' 2025-06-05T23:18:36.8304358Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz.fbs' 2025-06-05T23:18:36.8304962Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz_with_ns.fbs' 2025-06-05T23:18:36.8305568Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/include_test1.fbs' 2025-06-05T23:18:36.8450819Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/order.fbs' 2025-06-05T23:18:36.8451550Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/include_test2.fbs' 2025-06-05T23:18:36.8452131Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/no_namespace.fbs' 2025-06-05T23:18:36.8452636Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field/key_field_sample.fbs' 2025-06-05T23:18:36.8453161Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums/enums.fbs' 2025-06-05T23:18:36.8453660Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test1.fbs' 2025-06-05T23:18:36.8454158Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test2.fbs' 2025-06-05T23:18:36.8454665Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test1.fbs' 2025-06-05T23:18:36.8455178Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test2.fbs' 2025-06-05T23:18:36.8455703Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test1.fbs' 2025-06-05T23:18:36.8456255Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test2.fbs' 2025-06-05T23:18:36.8456818Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.py' 2025-06-05T23:18:36.8457344Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInC.py' 2025-06-05T23:18:36.8458073Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.py' 2025-06-05T23:18:36.8458745Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/__init__.py' 2025-06-05T23:18:36.8459367Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.py' 2025-06-05T23:18:36.8460032Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.py' 2025-06-05T23:18:36.8460641Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.py' 2025-06-05T23:18:36.8461327Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.py' 2025-06-05T23:18:36.8461927Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/__init__.py' 2025-06-05T23:18:36.8462508Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.py' 2025-06-05T23:18:36.8463099Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/__init__.py' 2025-06-05T23:18:36.8463670Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test1.fbs' 2025-06-05T23:18:36.8464310Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test2.fbs' 2025-06-05T23:18:36.8464924Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test3.fbs' 2025-06-05T23:18:36.8465370Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim/testnim.py' 2025-06-05T23:18:36.8465907Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/OptionalByte.py' 2025-06-05T23:18:36.8466457Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/ScalarStuff.py' 2025-06-05T23:18:36.8466934Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/__init__.py' 2025-06-05T23:18:36.8467406Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test.golden.fbs' 2025-06-05T23:18:36.8468069Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_id.golden.fbs' 2025-06-05T23:18:36.8468655Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include.golden.fbs' 2025-06-05T23:18:36.8469226Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include_id.golden.fbs' 2025-06-05T23:18:36.8469785Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix.golden.fbs' 2025-06-05T23:18:36.8470294Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix_id.golden.fbs' 2025-06-05T23:18:36.8470821Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union.golden.fbs' 2025-06-05T23:18:36.8471386Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_id.golden.fbs' 2025-06-05T23:18:36.8471901Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include.golden.fbs' 2025-06-05T23:18:36.8480428Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include_id.golden.fbs' 2025-06-05T23:18:36.8481012Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix.golden.fbs' 2025-06-05T23:18:36.8481533Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix_id.golden.fbs' 2025-06-05T23:18:36.8482100Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_import.fbs' 2025-06-05T23:18:36.8482685Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_no_include.fbs' 2025-06-05T23:18:36.8483309Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers/fuzzer.fbs' 2025-06-05T23:18:36.8483827Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/TypeScriptTest.py' 2025-06-05T23:18:36.8484276Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/typescript_keywords.fbs' 2025-06-05T23:18:36.8484812Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex/arrays_test_complex.fbs' 2025-06-05T23:18:36.8485308Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/one.fbs' 2025-06-05T23:18:36.8485886Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/pnpm-lock.yaml' 2025-06-05T23:18:36.8486383Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/two.fbs' 2025-06-05T23:18:36.8486885Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_include.fbs' 2025-06-05T23:18:36.8487410Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_transitive_include.fbs' 2025-06-05T23:18:36.8487873Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector/union_vector.fbs' 2025-06-05T23:18:36.8488048Z adding 'executorch/backends/arm/tosa/schemas/tosa_0.80.fbs' 2025-06-05T23:18:36.8488217Z adding 'executorch/backends/arm/tosa/schemas/tosa_1.0.fbs' 2025-06-05T23:18:36.8488394Z adding 'executorch/backends/arm/util/arm_model_evaluator.py' 2025-06-05T23:18:36.8488554Z adding 'executorch/backends/cadence/aot/__init__.py' 2025-06-05T23:18:36.8488708Z adding 'executorch/backends/cadence/aot/compiler.py' 2025-06-05T23:18:36.8488875Z adding 'executorch/backends/cadence/aot/compiler_utils.py' 2025-06-05T23:18:36.8489057Z adding 'executorch/backends/cadence/aot/decompose_ops.py' 2025-06-05T23:18:36.8489225Z adding 'executorch/backends/cadence/aot/export_example.py' 2025-06-05T23:18:36.8489383Z adding 'executorch/backends/cadence/aot/functions.yaml' 2025-06-05T23:18:36.8489597Z adding 'executorch/backends/cadence/aot/functions_fusion_g3.yaml' 2025-06-05T23:18:36.8489775Z adding 'executorch/backends/cadence/aot/functions_hifi.yaml' 2025-06-05T23:18:36.8489919Z adding 'executorch/backends/cadence/aot/fuse_ops.py' 2025-06-05T23:18:36.8490086Z adding 'executorch/backends/cadence/aot/graph_builder.py' 2025-06-05T23:18:36.8490283Z adding 'executorch/backends/cadence/aot/memory_constraints.py' 2025-06-05T23:18:36.8490456Z adding 'executorch/backends/cadence/aot/memory_planning.py' 2025-06-05T23:18:36.8490646Z adding 'executorch/backends/cadence/aot/ops_registrations.py' 2025-06-05T23:18:36.8490814Z adding 'executorch/backends/cadence/aot/pass_utils.py' 2025-06-05T23:18:36.8491143Z adding 'executorch/backends/cadence/aot/passes.py' 2025-06-05T23:18:36.8806067Z adding 'executorch/backends/cadence/aot/ref_implementations.py' 2025-06-05T23:18:36.8806458Z adding 'executorch/backends/cadence/aot/remove_ops.py' 2025-06-05T23:18:36.8806775Z adding 'executorch/backends/cadence/aot/reorder_ops.py' 2025-06-05T23:18:36.8806989Z adding 'executorch/backends/cadence/aot/replace_ops.py' 2025-06-05T23:18:36.8807153Z adding 'executorch/backends/cadence/aot/simplify_ops.py' 2025-06-05T23:18:36.8807289Z adding 'executorch/backends/cadence/aot/utils.py' 2025-06-05T23:18:36.8807504Z adding 'executorch/backends/cadence/aot/quantizer/fusion_pass.py' 2025-06-05T23:18:36.8807753Z adding 'executorch/backends/cadence/aot/quantizer/patterns.py' 2025-06-05T23:18:36.8808021Z adding 'executorch/backends/cadence/aot/quantizer/quantizer.py' 2025-06-05T23:18:36.8808364Z adding 'executorch/backends/cadence/aot/quantizer/utils.py' 2025-06-05T23:18:36.8808677Z adding 'executorch/backends/cadence/aot/tests/test_decompose_ops_passes.py' 2025-06-05T23:18:36.8808914Z adding 'executorch/backends/cadence/aot/tests/test_fusion_ops_passes.py' 2025-06-05T23:18:36.8809128Z adding 'executorch/backends/cadence/aot/tests/test_graph_builder.py' 2025-06-05T23:18:36.8809352Z adding 'executorch/backends/cadence/aot/tests/test_memory_passes.py' 2025-06-05T23:18:36.8809555Z adding 'executorch/backends/cadence/aot/tests/test_pass_filter.py' 2025-06-05T23:18:36.8809786Z adding 'executorch/backends/cadence/aot/tests/test_remove_ops_passes.py' 2025-06-05T23:18:36.8810019Z adding 'executorch/backends/cadence/aot/tests/test_reorder_ops_passes.py' 2025-06-05T23:18:36.8810266Z adding 'executorch/backends/cadence/aot/tests/test_replace_ops_passes.py' 2025-06-05T23:18:36.8810637Z adding 'executorch/backends/cadence/aot/tests/test_simplify_ops_passes.py' 2025-06-05T23:18:36.8810873Z adding 'executorch/backends/cadence/runtime/__init__.py' 2025-06-05T23:18:36.8811146Z adding 'executorch/backends/cadence/runtime/executor.py' 2025-06-05T23:18:36.8811358Z adding 'executorch/backends/cadence/runtime/runtime.py' 2025-06-05T23:18:36.8811510Z adding 'executorch/backends/cadence/runtime/utils.py' 2025-06-05T23:18:36.8811683Z adding 'executorch/backends/cadence/utils/facto_util.py' 2025-06-05T23:18:36.8811844Z adding 'executorch/backends/cadence/utils/gen_header.py' 2025-06-05T23:18:36.8812033Z adding 'executorch/backends/cadence/utils/post_compilation.py' 2025-06-05T23:18:36.8812196Z adding 'executorch/backends/cadence/utils/FACTO/setup.py' 2025-06-05T23:18:36.8812439Z adding 'executorch/backends/cadence/utils/FACTO/calibrator/__init__.py' 2025-06-05T23:18:36.8812658Z adding 'executorch/backends/cadence/utils/FACTO/calibrator/runner.py' 2025-06-05T23:18:36.8812873Z adding 'executorch/backends/cadence/utils/FACTO/examples/example.py' 2025-06-05T23:18:36.8813144Z adding 'executorch/backends/cadence/utils/FACTO/examples/minimal_example.py' 2025-06-05T23:18:36.8813379Z adding 'executorch/backends/cadence/utils/FACTO/examples/random_seed.py' 2025-06-05T23:18:36.8813582Z adding 'executorch/backends/cadence/utils/FACTO/facto/__init__.py' 2025-06-05T23:18:36.8813839Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/__init__.py' 2025-06-05T23:18:36.8814148Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/__init__.py' 2025-06-05T23:18:36.8814466Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/engine.py' 2025-06-05T23:18:36.8814785Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/gen.py' 2025-06-05T23:18:36.8815135Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/__init__.py' 2025-06-05T23:18:36.8815416Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/engine.py' 2025-06-05T23:18:36.8815700Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/gen.py' 2025-06-05T23:18:36.8815973Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/type.py' 2025-06-05T23:18:36.8816267Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/__init__.py' 2025-06-05T23:18:36.8816551Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/engine.py' 2025-06-05T23:18:36.8816844Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/model.py' 2025-06-05T23:18:36.8817160Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/solve.py' 2025-06-05T23:18:36.8817503Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/__init__.py' 2025-06-05T23:18:36.8817863Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/model.py' 2025-06-05T23:18:36.8818137Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/__init__.py' 2025-06-05T23:18:36.8818488Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/random_manager.py' 2025-06-05T23:18:36.8818790Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/__init__.py' 2025-06-05T23:18:36.8819102Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/constants.py' 2025-06-05T23:18:36.8819415Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/gen.py' 2025-06-05T23:18:36.8819755Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/solve.py' 2025-06-05T23:18:36.8820077Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/space.py' 2025-06-05T23:18:36.8820351Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/type.py' 2025-06-05T23:18:36.8820637Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/utils.py' 2025-06-05T23:18:36.8820848Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/db.py' 2025-06-05T23:18:36.8821157Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/default.py' 2025-06-05T23:18:36.8821388Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/dtypes.py' 2025-06-05T23:18:36.8821665Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/function.py' 2025-06-05T23:18:36.8821963Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_engine.py' 2025-06-05T23:18:36.8822282Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_generator.py' 2025-06-05T23:18:36.8822613Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_attributes.py' 2025-06-05T23:18:36.8822926Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_generator.py' 2025-06-05T23:18:36.8823257Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_types.py' 2025-06-05T23:18:36.8823726Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_engine.py' 2025-06-05T23:18:36.8824037Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_solver.py' 2025-06-05T23:18:36.8824320Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_constraints.py' 2025-06-05T23:18:36.8824628Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_meta_arg_engine.py' 2025-06-05T23:18:36.8824880Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_specs.py' 2025-06-05T23:18:36.8825188Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_structural_engine.py' 2025-06-05T23:18:36.8825550Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_generation.py' 2025-06-05T23:18:36.8825890Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_solving.py' 2025-06-05T23:18:36.8826258Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_space.py' 2025-06-05T23:18:36.8826556Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_types.py' 2025-06-05T23:18:36.8826735Z adding 'executorch/backends/cortex_m/ops/operators.py' 2025-06-05T23:18:36.8826904Z adding 'executorch/backends/cortex_m/ops/operators.yaml' 2025-06-05T23:18:36.8827135Z adding 'executorch/backends/cortex_m/passes/replace_quant_nodes_pass.py' 2025-06-05T23:18:36.8827364Z adding 'executorch/backends/cortex_m/test/test_replace_quant_nodes.py' 2025-06-05T23:18:36.8827561Z adding 'executorch/backends/example/example_backend.py' 2025-06-05T23:18:36.8827786Z adding 'executorch/backends/example/example_partitioner.py' 2025-06-05T23:18:36.8828060Z adding 'executorch/backends/example/example_quantizer.py' 2025-06-05T23:18:36.8828246Z adding 'executorch/backends/example/test_example_delegate.py' 2025-06-05T23:18:36.8828549Z adding 'executorch/backends/example/example_backend_delegate_passes/merge_to_dim_pass.py' 2025-06-05T23:18:36.8828913Z adding 'executorch/backends/example/example_backend_delegate_passes/permute_memory_formats_pass.py' 2025-06-05T23:18:36.8829211Z adding 'executorch/backends/example/example_operators/adaptive_avg_pool2d.py' 2025-06-05T23:18:36.8829395Z adding 'executorch/backends/example/example_operators/add.py' 2025-06-05T23:18:36.8829597Z adding 'executorch/backends/example/example_operators/conv2d.py' 2025-06-05T23:18:36.8829819Z adding 'executorch/backends/example/example_operators/conv_relu.py' 2025-06-05T23:18:36.8830021Z adding 'executorch/backends/example/example_operators/dropout.py' 2025-06-05T23:18:36.8830221Z adding 'executorch/backends/example/example_operators/flatten.py' 2025-06-05T23:18:36.8830432Z adding 'executorch/backends/example/example_operators/linear.py' 2025-06-05T23:18:36.8830642Z adding 'executorch/backends/example/example_operators/op_base.py' 2025-06-05T23:18:36.8830847Z adding 'executorch/backends/example/example_operators/ops.py' 2025-06-05T23:18:36.8831094Z adding 'executorch/backends/example/example_operators/utils.py' 2025-06-05T23:18:36.8831276Z adding 'executorch/backends/mediatek/__init__.py' 2025-06-05T23:18:36.8831524Z adding 'executorch/backends/mediatek/partitioner.py' 2025-06-05T23:18:36.8831671Z adding 'executorch/backends/mediatek/preprocess.py' 2025-06-05T23:18:36.8831876Z adding 'executorch/backends/mediatek/_passes/__init__.py' 2025-06-05T23:18:36.8832168Z adding 'executorch/backends/mediatek/_passes/decompose_scaled_dot_product_attention.py' 2025-06-05T23:18:36.8832339Z adding 'executorch/backends/mediatek/quantizer/__init__.py' 2025-06-05T23:18:36.8832532Z adding 'executorch/backends/mediatek/quantizer/annotator.py' 2025-06-05T23:18:36.8832705Z adding 'executorch/backends/mediatek/quantizer/qconfig.py' 2025-06-05T23:18:36.8832882Z adding 'executorch/backends/mediatek/quantizer/quantizer.py' 2025-06-05T23:18:36.8833066Z adding 'executorch/backends/nxp/neutron_node_extraction.py' 2025-06-05T23:18:36.8833229Z adding 'executorch/backends/nxp/neutron_partitioner.py' 2025-06-05T23:18:36.8833390Z adding 'executorch/backends/nxp/neutron_pass_manager.py' 2025-06-05T23:18:36.8833543Z adding 'executorch/backends/nxp/nxp_backend.py' 2025-06-05T23:18:36.8833798Z adding 'executorch/backends/nxp/aten_passes/fuse_batch_norm_with_conv_pass.py' 2025-06-05T23:18:36.8834058Z adding 'executorch/backends/nxp/aten_passes/fuse_batch_norm_with_linear_pass.py' 2025-06-05T23:18:36.8834288Z adding 'executorch/backends/nxp/aten_passes/neutron_aten_pass_manager.py' 2025-06-05T23:18:36.9071340Z adding 'executorch/backends/nxp/backend/edge_helper.py' 2025-06-05T23:18:36.9071677Z adding 'executorch/backends/nxp/backend/edge_program_converter.py' 2025-06-05T23:18:36.9071986Z adding 'executorch/backends/nxp/backend/neutron_converter_manager.py' 2025-06-05T23:18:36.9072206Z adding 'executorch/backends/nxp/backend/node_format_inference.py' 2025-06-05T23:18:36.9072403Z adding 'executorch/backends/nxp/backend/ir/conversion_config.py' 2025-06-05T23:18:36.9072606Z adding 'executorch/backends/nxp/backend/ir/conversion_context.py' 2025-06-05T23:18:36.9072807Z adding 'executorch/backends/nxp/backend/ir/logger.py' 2025-06-05T23:18:36.9073111Z adding 'executorch/backends/nxp/backend/ir/tensor_formatting.py' 2025-06-05T23:18:36.9073388Z adding 'executorch/backends/nxp/backend/ir/converter/__init__.py' 2025-06-05T23:18:36.9073638Z adding 'executorch/backends/nxp/backend/ir/converter/node_converter.py' 2025-06-05T23:18:36.9073889Z adding 'executorch/backends/nxp/backend/ir/converter/quantization_utils.py' 2025-06-05T23:18:36.9074105Z adding 'executorch/backends/nxp/backend/ir/converter/tensor_utils.py' 2025-06-05T23:18:36.9074355Z adding 'executorch/backends/nxp/backend/ir/converter/builder/__init__.py' 2025-06-05T23:18:36.9074716Z adding 'executorch/backends/nxp/backend/ir/converter/builder/aten_model_builder_director.py' 2025-06-05T23:18:36.9075023Z adding 'executorch/backends/nxp/backend/ir/converter/builder/model_builder.py' 2025-06-05T23:18:36.9075430Z adding 'executorch/backends/nxp/backend/ir/converter/builder/quantization_verification.py' 2025-06-05T23:18:36.9075813Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/__init__.py' 2025-06-05T23:18:36.9076100Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/aten_translator.py' 2025-06-05T23:18:36.9076346Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/common.py' 2025-06-05T23:18:36.9076622Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/translator.py' 2025-06-05T23:18:36.9076932Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/__init__.py' 2025-06-05T23:18:36.9077434Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/__init__.py' 2025-06-05T23:18:36.9077825Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/addmm_converter.py' 2025-06-05T23:18:36.9078227Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/avg_pool_2d_converter.py' 2025-06-05T23:18:36.9078768Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/constant_pad_nd_converter.py' 2025-06-05T23:18:36.9079291Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/convolution_converter.py' 2025-06-05T23:18:36.9079773Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/max_pool_2d_converter.py' 2025-06-05T23:18:36.9080149Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/mm_converter.py' 2025-06-05T23:18:36.9080631Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/permute_copy_converter.py' 2025-06-05T23:18:36.9081159Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_dequantize_converter.py' 2025-06-05T23:18:36.9081579Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_quantize_converter.py' 2025-06-05T23:18:36.9081946Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/relu_converter.py' 2025-06-05T23:18:36.9082335Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/softmax_converter.py' 2025-06-05T23:18:36.9082779Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/view_copy_converter.py' 2025-06-05T23:18:36.9083166Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/__init__.py' 2025-06-05T23:18:36.9083549Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/recurrent_utils.py' 2025-06-05T23:18:36.9083940Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/reduce_utils.py' 2025-06-05T23:18:36.9084325Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/reshape_transposition.py' 2025-06-05T23:18:36.9084498Z adding 'executorch/backends/nxp/backend/ir/lib/__init__.py' 2025-06-05T23:18:36.9084725Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ATan2Options.py' 2025-06-05T23:18:36.9084964Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AbsOptions.py' 2025-06-05T23:18:36.9085325Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ActivationFunctionType.py' 2025-06-05T23:18:36.9085653Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AddNOptions.py' 2025-06-05T23:18:36.9085885Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AddOptions.py' 2025-06-05T23:18:36.9086121Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ArgMaxOptions.py' 2025-06-05T23:18:36.9086352Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ArgMinOptions.py' 2025-06-05T23:18:36.9086638Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AssignVariableOptions.py' 2025-06-05T23:18:36.9086897Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BatchMatMulOptions.py' 2025-06-05T23:18:36.9087206Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BatchToSpaceNDOptions.py' 2025-06-05T23:18:36.9087602Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceLSTMOptions.py' 2025-06-05T23:18:36.9088064Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceRNNOptions.py' 2025-06-05T23:18:36.9088305Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BitcastOptions.py' 2025-06-05T23:18:36.9088561Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BitwiseXorOptions.py' 2025-06-05T23:18:36.9088833Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BroadcastToOptions.py' 2025-06-05T23:18:36.9089082Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BucketizeOptions.py' 2025-06-05T23:18:36.9089319Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Buffer.py' 2025-06-05T23:18:36.9089721Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOperator.py' 2025-06-05T23:18:36.9089961Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions.py' 2025-06-05T23:18:36.9090200Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions2.py' 2025-06-05T23:18:36.9090453Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CallOnceOptions.py' 2025-06-05T23:18:36.9090733Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CallOptions.py' 2025-06-05T23:18:36.9091140Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CastOptions.py' 2025-06-05T23:18:36.9091440Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CombinerType.py' 2025-06-05T23:18:36.9091761Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ConcatEmbeddingsOptions.py' 2025-06-05T23:18:36.9092071Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ConcatenationOptions.py' 2025-06-05T23:18:36.9092349Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Conv2DOptions.py' 2025-06-05T23:18:36.9092640Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Conv3DOptions.py' 2025-06-05T23:18:36.9092855Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CosOptions.py' 2025-06-05T23:18:36.9093085Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CumsumOptions.py' 2025-06-05T23:18:36.9093366Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CustomOptionsFormat.py' 2025-06-05T23:18:36.9093622Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CustomQuantization.py' 2025-06-05T23:18:36.9093894Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DensifyOptions.py' 2025-06-05T23:18:36.9094291Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DepthToSpaceOptions.py' 2025-06-05T23:18:36.9094600Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DepthwiseConv2DOptions.py' 2025-06-05T23:18:36.9094853Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DequantizeOptions.py' 2025-06-05T23:18:36.9095096Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DilateOptions.py' 2025-06-05T23:18:36.9095345Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DimensionMetadata.py' 2025-06-05T23:18:36.9095576Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DimensionType.py' 2025-06-05T23:18:36.9095823Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DivOptions.py' 2025-06-05T23:18:36.9096178Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DynamicUpdateSliceOptions.py' 2025-06-05T23:18:36.9096588Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/EmbeddingLookupSparseOptions.py' 2025-06-05T23:18:36.9096834Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/EqualOptions.py' 2025-06-05T23:18:36.9097048Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ExpOptions.py' 2025-06-05T23:18:36.9097300Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ExpandDimsOptions.py' 2025-06-05T23:18:36.9097557Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FakeQuantOptions.py' 2025-06-05T23:18:36.9097775Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FillOptions.py' 2025-06-05T23:18:36.9098079Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FloorDivOptions.py' 2025-06-05T23:18:36.9098453Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FloorModOptions.py' 2025-06-05T23:18:36.9098729Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptions.py' 2025-06-05T23:18:36.9099152Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptionsWeightsFormat.py' 2025-06-05T23:18:36.9099410Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GatherNdOptions.py' 2025-06-05T23:18:36.9099644Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GatherOptions.py' 2025-06-05T23:18:36.9099895Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GeluOptions.py' 2025-06-05T23:18:36.9100201Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GreaterEqualOptions.py' 2025-06-05T23:18:36.9100500Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GreaterOptions.py' 2025-06-05T23:18:36.9100786Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HardSwishOptions.py' 2025-06-05T23:18:36.9101053Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableFindOptions.py' 2025-06-05T23:18:36.9101343Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableImportOptions.py' 2025-06-05T23:18:36.9101683Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableOptions.py' 2025-06-05T23:18:36.9101990Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableSizeOptions.py' 2025-06-05T23:18:36.9306441Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/IfOptions.py' 2025-06-05T23:18:36.9306765Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Int32Vector.py' 2025-06-05T23:18:36.9307001Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/L2NormOptions.py' 2025-06-05T23:18:36.9307290Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionOptions.py' 2025-06-05T23:18:36.9307601Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionType.py' 2025-06-05T23:18:36.9307907Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSTMKernelType.py' 2025-06-05T23:18:36.9308180Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSTMOptions.py' 2025-06-05T23:18:36.9308426Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LeakyReluOptions.py' 2025-06-05T23:18:36.9308686Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LessEqualOptions.py' 2025-06-05T23:18:36.9308899Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LessOptions.py' 2025-06-05T23:18:36.9309340Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LocalResponseNormalizationOptions.py' 2025-06-05T23:18:36.9309594Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogSoftmaxOptions.py' 2025-06-05T23:18:36.9309843Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalAndOptions.py' 2025-06-05T23:18:36.9310102Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalNotOptions.py' 2025-06-05T23:18:36.9310344Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalOrOptions.py' 2025-06-05T23:18:36.9310591Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MatrixDiagOptions.py' 2025-06-05T23:18:36.9310869Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MatrixSetDiagOptions.py' 2025-06-05T23:18:36.9311210Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MaximumMinimumOptions.py' 2025-06-05T23:18:36.9311488Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Metadata.py' 2025-06-05T23:18:36.9311788Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadMode.py' 2025-06-05T23:18:36.9312036Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadOptions.py' 2025-06-05T23:18:36.9312228Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Model.py' 2025-06-05T23:18:36.9312458Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MulOptions.py' 2025-06-05T23:18:36.9312673Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NegOptions.py' 2025-06-05T23:18:36.9312977Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV4Options.py' 2025-06-05T23:18:36.9313329Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV5Options.py' 2025-06-05T23:18:36.9313614Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NotEqualOptions.py' 2025-06-05T23:18:36.9313944Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/OneHotOptions.py' 2025-06-05T23:18:36.9314165Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Operator.py' 2025-06-05T23:18:36.9314389Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/OperatorCode.py' 2025-06-05T23:18:36.9314608Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PackOptions.py' 2025-06-05T23:18:36.9314838Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PadOptions.py' 2025-06-05T23:18:36.9315062Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PadV2Options.py' 2025-06-05T23:18:36.9315262Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Padding.py' 2025-06-05T23:18:36.9315494Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Pool2DOptions.py' 2025-06-05T23:18:36.9315726Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PowOptions.py' 2025-06-05T23:18:36.9316024Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizationDetails.py' 2025-06-05T23:18:36.9316422Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizationParameters.py' 2025-06-05T23:18:36.9316678Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizeOptions.py' 2025-06-05T23:18:36.9316928Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RNNOptions.py' 2025-06-05T23:18:36.9317159Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RandomOptions.py' 2025-06-05T23:18:36.9317394Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RangeOptions.py' 2025-06-05T23:18:36.9317609Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RankOptions.py' 2025-06-05T23:18:36.9317905Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReadVariableOptions.py' 2025-06-05T23:18:36.9318248Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowFunction.py' 2025-06-05T23:18:36.9318571Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowOptions.py' 2025-06-05T23:18:36.9318806Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReducerOptions.py' 2025-06-05T23:18:36.9319048Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReshapeOptions.py' 2025-06-05T23:18:36.9319330Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ResizeBilinearOptions.py' 2025-06-05T23:18:36.9319646Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ResizeNearestNeighborOptions.py' 2025-06-05T23:18:36.9319958Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReverseSequenceOptions.py' 2025-06-05T23:18:36.9320257Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReverseV2Options.py' 2025-06-05T23:18:36.9320486Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Rfft2dOptions.py' 2025-06-05T23:18:36.9320736Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RightShiftOptions.py' 2025-06-05T23:18:36.9320966Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RngAlgorithm.py' 2025-06-05T23:18:36.9321180Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SVDFOptions.py' 2025-06-05T23:18:36.9321427Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ScatterNdOptions.py' 2025-06-05T23:18:36.9321688Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SegmentSumOptions.py' 2025-06-05T23:18:36.9321916Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SelectOptions.py' 2025-06-05T23:18:36.9322157Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SelectV2Options.py' 2025-06-05T23:18:36.9322427Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SequenceRNNOptions.py' 2025-06-05T23:18:36.9322647Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ShapeOptions.py' 2025-06-05T23:18:36.9322899Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SignOptions.py' 2025-06-05T23:18:36.9323155Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SignatureDef.py' 2025-06-05T23:18:36.9323465Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SkipGramOptions.py' 2025-06-05T23:18:36.9323775Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SliceOptions.py' 2025-06-05T23:18:36.9324065Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SoftmaxOptions.py' 2025-06-05T23:18:36.9324403Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SpaceToBatchNDOptions.py' 2025-06-05T23:18:36.9324703Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SpaceToDepthOptions.py' 2025-06-05T23:18:36.9325028Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparseIndexVector.py' 2025-06-05T23:18:36.9325319Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparseToDenseOptions.py' 2025-06-05T23:18:36.9325704Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparsityParameters.py' 2025-06-05T23:18:36.9325973Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SplitOptions.py' 2025-06-05T23:18:36.9326249Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SplitVOptions.py' 2025-06-05T23:18:36.9326522Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SquareOptions.py' 2025-06-05T23:18:36.9326860Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SquaredDifferenceOptions.py' 2025-06-05T23:18:36.9327272Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SqueezeOptions.py' 2025-06-05T23:18:36.9327705Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloBroadcastInDimOptions.py' 2025-06-05T23:18:36.9328113Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloCompareOptions.py' 2025-06-05T23:18:36.9328504Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonDirection.py' 2025-06-05T23:18:36.9328832Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonType.py' 2025-06-05T23:18:36.9329161Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloConcatenateOptions.py' 2025-06-05T23:18:36.9329467Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloConvolutionOptions.py' 2025-06-05T23:18:36.9329816Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloCustomCallOptions.py' 2025-06-05T23:18:36.9330179Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloDotGeneralOptions.py' 2025-06-05T23:18:36.9330588Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloDynamicSliceOptions.py' 2025-06-05T23:18:36.9330899Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloGatherOptions.py' 2025-06-05T23:18:36.9331204Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloIotaOptions.py' 2025-06-05T23:18:36.9331466Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloPadOptions.py' 2025-06-05T23:18:36.9331766Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloPrecisionConfig.py' 2025-06-05T23:18:36.9332079Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceOptions.py' 2025-06-05T23:18:36.9332477Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceWindowOptions.py' 2025-06-05T23:18:36.9332899Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloRngBitGeneratorOptions.py' 2025-06-05T23:18:36.9333259Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloScatterOptions.py' 2025-06-05T23:18:36.9333541Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloSliceOptions.py' 2025-06-05T23:18:36.9333808Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloSortOptions.py' 2025-06-05T23:18:36.9334117Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloTransposeOptions.py' 2025-06-05T23:18:36.9334389Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloWhileOptions.py' 2025-06-05T23:18:36.9334652Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StridedSliceOptions.py' 2025-06-05T23:18:36.9334904Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SubGraph.py' 2025-06-05T23:18:36.9335163Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SubOptions.py' 2025-06-05T23:18:36.9335406Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Tensor.py' 2025-06-05T23:18:36.9335708Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TensorMap.py' 2025-06-05T23:18:36.9335943Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TensorType.py' 2025-06-05T23:18:36.9336267Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TileOptions.py' 2025-06-05T23:18:36.9477365Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TopKV2Options.py' 2025-06-05T23:18:36.9477830Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TransposeConvOptions.py' 2025-06-05T23:18:36.9478124Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TransposeOptions.py' 2025-06-05T23:18:36.9478469Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Uint16Vector.py' 2025-06-05T23:18:36.9478839Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Uint8Vector.py' 2025-06-05T23:18:36.9479241Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnidirectionalSequenceLSTMOptions.py' 2025-06-05T23:18:36.9479476Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UniqueOptions.py' 2025-06-05T23:18:36.9479721Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnpackOptions.py' 2025-06-05T23:18:36.9480203Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMaxOptions.py' 2025-06-05T23:18:36.9480657Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMinOptions.py' 2025-06-05T23:18:36.9481086Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentProdOptions.py' 2025-06-05T23:18:36.9481381Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentSumOptions.py' 2025-06-05T23:18:36.9481640Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/VarHandleOptions.py' 2025-06-05T23:18:36.9481878Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/VariantSubType.py' 2025-06-05T23:18:36.9482165Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/WhereOptions.py' 2025-06-05T23:18:36.9482509Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/WhileOptions.py' 2025-06-05T23:18:36.9482777Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ZerosLikeOptions.py' 2025-06-05T23:18:36.9482982Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/__init__.py' 2025-06-05T23:18:36.9483223Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/__init__.py' 2025-06-05T23:18:36.9483481Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/tflite_model.py' 2025-06-05T23:18:36.9483851Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/__init__.py' 2025-06-05T23:18:36.9484206Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/abs_options.py' 2025-06-05T23:18:36.9484632Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_n_options.py' 2025-06-05T23:18:36.9484994Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_options.py' 2025-06-05T23:18:36.9485322Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_max_options.py' 2025-06-05T23:18:36.9485662Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_min_options.py' 2025-06-05T23:18:36.9486068Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/average_pool_2d_options.py' 2025-06-05T23:18:36.9486520Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/batch_mat_mul_options.py' 2025-06-05T23:18:36.9487008Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_lstm_options.py' 2025-06-05T23:18:36.9487448Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_rnn_options.py' 2025-06-05T23:18:36.9487796Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bitwise_xor_options.py' 2025-06-05T23:18:36.9488296Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/broadcast_to_options.py' 2025-06-05T23:18:36.9488719Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cast_options.py' 2025-06-05T23:18:36.9489078Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/concatenation_options.py' 2025-06-05T23:18:36.9489491Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_2d_options.py' 2025-06-05T23:18:36.9489850Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_3d_options.py' 2025-06-05T23:18:36.9490230Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cum_sum_options.py' 2025-06-05T23:18:36.9490688Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depth_to_space_options.py' 2025-06-05T23:18:36.9491241Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depthwise_conv_2d_options.py' 2025-06-05T23:18:36.9491590Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/dequantize_options.py' 2025-06-05T23:18:36.9491938Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/div_options.py' 2025-06-05T23:18:36.9492307Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/equal_options.py' 2025-06-05T23:18:36.9492819Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/exp_options.py' 2025-06-05T23:18:36.9493165Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/floor_mod_options.py' 2025-06-05T23:18:36.9493565Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/fully_connected_options.py' 2025-06-05T23:18:36.9493917Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_nd_options.py' 2025-06-05T23:18:36.9494283Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_options.py' 2025-06-05T23:18:36.9494750Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gelu_options.py' 2025-06-05T23:18:36.9495169Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_equal_options.py' 2025-06-05T23:18:36.9495497Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_options.py' 2025-06-05T23:18:36.9495845Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/hard_swish_options.py' 2025-06-05T23:18:36.9496232Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/leaky_relu_options.py' 2025-06-05T23:18:36.9496669Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_equal_options.py' 2025-06-05T23:18:36.9497036Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_options.py' 2025-06-05T23:18:36.9497397Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/log_softmax_options.py' 2025-06-05T23:18:36.9497741Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_and_options.py' 2025-06-05T23:18:36.9498128Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_not_options.py' 2025-06-05T23:18:36.9498614Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_or_options.py' 2025-06-05T23:18:36.9498929Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lrn_options.py' 2025-06-05T23:18:36.9499243Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lstm_options.py' 2025-06-05T23:18:36.9499600Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/max_pool_2d_options.py' 2025-06-05T23:18:36.9499958Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/maximum_options.py' 2025-06-05T23:18:36.9500422Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mean_options.py' 2025-06-05T23:18:36.9500812Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/minimum_options.py' 2025-06-05T23:18:36.9501160Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mirror_pad_options.py' 2025-06-05T23:18:36.9501472Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mul_options.py' 2025-06-05T23:18:36.9501997Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/multinomial_options.py' 2025-06-05T23:18:36.9502423Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/neg_options.py' 2025-06-05T23:18:36.9502764Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/not_equal_options.py' 2025-06-05T23:18:36.9503087Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/one_hot_options.py' 2025-06-05T23:18:36.9503412Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_options.py' 2025-06-05T23:18:36.9503765Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_v2_options.py' 2025-06-05T23:18:36.9504123Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pow_options.py' 2025-06-05T23:18:36.9504565Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/quantize_options.py' 2025-06-05T23:18:36.9504951Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/range_options.py' 2025-06-05T23:18:36.9505296Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_max_options.py' 2025-06-05T23:18:36.9505674Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_min_options.py' 2025-06-05T23:18:36.9506155Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_prod_options.py' 2025-06-05T23:18:36.9506579Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reshape_options.py' 2025-06-05T23:18:36.9506954Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_bilinear_options.py' 2025-06-05T23:18:36.9507356Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_nearest_neighbor_options.py' 2025-06-05T23:18:36.9507730Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reverse_sequence_options.py' 2025-06-05T23:18:36.9508183Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/scatter_nd_options.py' 2025-06-05T23:18:36.9508635Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/select_v2_options.py' 2025-06-05T23:18:36.9508958Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/shape_options.py' 2025-06-05T23:18:36.9509283Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sign_options.py' 2025-06-05T23:18:36.9709402Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/slice_options.py' 2025-06-05T23:18:36.9709935Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/softmax_options.py' 2025-06-05T23:18:36.9710534Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/space_to_depth_options.py' 2025-06-05T23:18:36.9710934Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_options.py' 2025-06-05T23:18:36.9711269Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_v_options.py' 2025-06-05T23:18:36.9711606Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/square_options.py' 2025-06-05T23:18:36.9711992Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squared_difference_options.py' 2025-06-05T23:18:36.9712378Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squeeze_options.py' 2025-06-05T23:18:36.9712879Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/strided_slice_options.py' 2025-06-05T23:18:36.9713263Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sub_options.py' 2025-06-05T23:18:36.9713574Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sum_options.py' 2025-06-05T23:18:36.9713900Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/tile_options.py' 2025-06-05T23:18:36.9714359Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_conv_options.py' 2025-06-05T23:18:36.9714739Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_options.py' 2025-06-05T23:18:36.9715235Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_lstm_options.py' 2025-06-05T23:18:36.9715661Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_rnn_options.py' 2025-06-05T23:18:36.9716013Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/custom_options/flex_transpose_options.py' 2025-06-05T23:18:36.9716279Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/__init__.py' 2025-06-05T23:18:36.9716514Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/meta.py' 2025-06-05T23:18:36.9716754Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/types.py' 2025-06-05T23:18:36.9717085Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/__init__.py' 2025-06-05T23:18:36.9717370Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/graph_utils.py' 2025-06-05T23:18:36.9717721Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/operator_rules.py' 2025-06-05T23:18:36.9717969Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizer.py' 2025-06-05T23:18:36.9718231Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/pattern_matcher.py' 2025-06-05T23:18:36.9718479Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/tensor_rules.py' 2025-06-05T23:18:36.9718771Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/__init__.py' 2025-06-05T23:18:36.9719116Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/base_optimization.py' 2025-06-05T23:18:36.9719572Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/combine_hard_sigmoid_and_mul_to_hard_swish.py' 2025-06-05T23:18:36.9719962Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/eliminate_dead_branches.py' 2025-06-05T23:18:36.9720394Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_activation_functions.py' 2025-06-05T23:18:36.9720828Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_fully_connected_and_add_operators.py' 2025-06-05T23:18:36.9721230Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_quanitze_into_preceding_ops.py' 2025-06-05T23:18:36.9721590Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/keep_one_empty_buffer.py' 2025-06-05T23:18:36.9721942Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/move_relu_before_concat.py' 2025-06-05T23:18:36.9722412Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/permute_fully_connected_weights_after_reshape.py' 2025-06-05T23:18:36.9722814Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_cast_operators.py' 2025-06-05T23:18:36.9723223Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_quantize_operators.py' 2025-06-05T23:18:36.9723582Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_reshape_operators.py' 2025-06-05T23:18:36.9724047Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_transpose_operators.py' 2025-06-05T23:18:36.9724454Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/remove_unused_tensors_and_buffers.py' 2025-06-05T23:18:36.9724958Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/replace_average_pool_before_fully_connected_with_sum.py' 2025-06-05T23:18:36.9725172Z adding 'executorch/backends/nxp/quantizer/neutron_quantizer.py' 2025-06-05T23:18:36.9725336Z adding 'executorch/backends/nxp/quantizer/patterns.py' 2025-06-05T23:18:36.9725519Z adding 'executorch/backends/nxp/quantizer/utils.py' 2025-06-05T23:18:36.9725718Z adding 'executorch/backends/nxp/tests/executorch_pipeline.py' 2025-06-05T23:18:36.9725858Z adding 'executorch/backends/nxp/tests/executors.py' 2025-06-05T23:18:36.9726077Z adding 'executorch/backends/nxp/tests/exported_program_vizualize.py' 2025-06-05T23:18:36.9726243Z adding 'executorch/backends/nxp/tests/models.py' 2025-06-05T23:18:36.9726562Z adding 'executorch/backends/nxp/tests/test_batch_norm_fusion.py' 2025-06-05T23:18:36.9726750Z adding 'executorch/backends/nxp/tests/test_neutron_backend.py' 2025-06-05T23:18:36.9726981Z adding 'executorch/backends/nxp/tests/test_neutron_converter_manager.py' 2025-06-05T23:18:36.9727202Z adding 'executorch/backends/nxp/tests/test_node_format_inference.py' 2025-06-05T23:18:36.9727395Z adding 'executorch/backends/nxp/tests/test_operator_selector.py' 2025-06-05T23:18:36.9727594Z adding 'executorch/backends/nxp/tests/test_qdq_clustering_conv.py' 2025-06-05T23:18:36.9727820Z adding 'executorch/backends/nxp/tests/test_quantizer.py' 2025-06-05T23:18:36.9728162Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_avg_pool2d_converter.py' 2025-06-05T23:18:36.9728589Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_constant_pad_nd_converter.py' 2025-06-05T23:18:36.9728910Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_conv_converter.py' 2025-06-05T23:18:36.9729263Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_linear_converter.py' 2025-06-05T23:18:36.9729647Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_max_pool_2d_converter.py' 2025-06-05T23:18:36.9729990Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_permute_copy_converter.py' 2025-06-05T23:18:36.9730305Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_relu_converter.py' 2025-06-05T23:18:36.9730628Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_softmax_converter.py' 2025-06-05T23:18:36.9730957Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_view_copy_converter.py' 2025-06-05T23:18:36.9731105Z adding 'executorch/backends/openvino/__init__.py' 2025-06-05T23:18:36.9731258Z adding 'executorch/backends/openvino/partitioner.py' 2025-06-05T23:18:36.9731401Z adding 'executorch/backends/openvino/preprocess.py' 2025-06-05T23:18:36.9731582Z adding 'executorch/backends/openvino/quantizer/__init__.py' 2025-06-05T23:18:36.9731762Z adding 'executorch/backends/openvino/quantizer/quantizer.py' 2025-06-05T23:18:36.9731951Z adding 'executorch/backends/openvino/tests/test_runner.py' 2025-06-05T23:18:36.9732326Z adding 'executorch/backends/openvino/tests/models/test_classification.py' 2025-06-05T23:18:36.9732560Z adding 'executorch/backends/openvino/tests/ops/base_openvino_op_test.py' 2025-06-05T23:18:36.9732731Z adding 'executorch/backends/openvino/tests/ops/test_add.py' 2025-06-05T23:18:36.9732917Z adding 'executorch/backends/openvino/tests/ops/test_addmm.py' 2025-06-05T23:18:36.9733113Z adding 'executorch/backends/openvino/tests/ops/test_arange.py' 2025-06-05T23:18:36.9733318Z adding 'executorch/backends/openvino/tests/ops/test_batch_norm.py' 2025-06-05T23:18:36.9733528Z adding 'executorch/backends/openvino/tests/ops/test_convolution.py' 2025-06-05T23:18:36.9733714Z adding 'executorch/backends/openvino/tests/ops/test_mean.py' 2025-06-05T23:18:36.9733906Z adding 'executorch/backends/openvino/tests/ops/test_permute.py' 2025-06-05T23:18:36.9734095Z adding 'executorch/backends/openvino/tests/ops/test_pooling.py' 2025-06-05T23:18:36.9734304Z adding 'executorch/backends/openvino/tests/ops/test_unary_ops.py' 2025-06-05T23:18:36.9734478Z adding 'executorch/backends/openvino/tests/ops/test_view.py' 2025-06-05T23:18:36.9734637Z adding 'executorch/backends/qualcomm/qnn_preprocess.py' 2025-06-05T23:18:36.9734811Z adding 'executorch/backends/qualcomm/_passes/__init__.py' 2025-06-05T23:18:36.9735098Z adding 'executorch/backends/qualcomm/_passes/annotate_adaptive_avg_pool1d.py' 2025-06-05T23:18:36.9735310Z adding 'executorch/backends/qualcomm/_passes/annotate_quant_attrs.py' 2025-06-05T23:18:36.9735498Z adding 'executorch/backends/qualcomm/_passes/annotate_stack.py' 2025-06-05T23:18:36.9735701Z adding 'executorch/backends/qualcomm/_passes/annotate_unbind.py' 2025-06-05T23:18:36.9735883Z adding 'executorch/backends/qualcomm/_passes/build_quant_io.py' 2025-06-05T23:18:36.9736133Z adding 'executorch/backends/qualcomm/_passes/convert_bmm_to_matmul.py' 2025-06-05T23:18:36.9736421Z adding 'executorch/backends/qualcomm/_passes/convert_conv1d_to_conv2d.py' 2025-06-05T23:18:36.9736638Z adding 'executorch/backends/qualcomm/_passes/convert_square_to_pow.py' 2025-06-05T23:18:36.9736821Z adding 'executorch/backends/qualcomm/_passes/decompose_any.py' 2025-06-05T23:18:36.9737027Z adding 'executorch/backends/qualcomm/_passes/decompose_cdist.py' 2025-06-05T23:18:36.9737274Z adding 'executorch/backends/qualcomm/_passes/decompose_einsum.py' 2025-06-05T23:18:36.9737471Z adding 'executorch/backends/qualcomm/_passes/decompose_expm1.py' 2025-06-05T23:18:36.9737719Z adding 'executorch/backends/qualcomm/_passes/decompose_linalg_vector_norm.py' 2025-06-05T23:18:37.0013507Z adding 'executorch/backends/qualcomm/_passes/decompose_roll.py' 2025-06-05T23:18:37.0013814Z adding 'executorch/backends/qualcomm/_passes/decompose_silu.py' 2025-06-05T23:18:37.0014129Z adding 'executorch/backends/qualcomm/_passes/expand_broadcast_tensor_shape.py' 2025-06-05T23:18:37.0014391Z adding 'executorch/backends/qualcomm/_passes/fixed_linear_keep_dim.py' 2025-06-05T23:18:37.0014555Z adding 'executorch/backends/qualcomm/_passes/fold_qdq.py' 2025-06-05T23:18:37.0014788Z adding 'executorch/backends/qualcomm/_passes/fuse_consecutive_cast.py' 2025-06-05T23:18:37.0015033Z adding 'executorch/backends/qualcomm/_passes/fuse_consecutive_transpose.py' 2025-06-05T23:18:37.0015205Z adding 'executorch/backends/qualcomm/_passes/i64_to_i32.py' 2025-06-05T23:18:37.0015419Z adding 'executorch/backends/qualcomm/_passes/insert_io_qdq.py' 2025-06-05T23:18:37.0015625Z adding 'executorch/backends/qualcomm/_passes/insert_requantize.py' 2025-06-05T23:18:37.0015830Z adding 'executorch/backends/qualcomm/_passes/layout_transform.py' 2025-06-05T23:18:37.0016084Z adding 'executorch/backends/qualcomm/_passes/lift_constant_scalar_operands.py' 2025-06-05T23:18:37.0016294Z adding 'executorch/backends/qualcomm/_passes/qnn_pass_manager.py' 2025-06-05T23:18:37.0016531Z adding 'executorch/backends/qualcomm/_passes/recompose_pixel_unshuffle.py' 2025-06-05T23:18:37.0016738Z adding 'executorch/backends/qualcomm/_passes/recompose_rms_norm.py' 2025-06-05T23:18:37.0016964Z adding 'executorch/backends/qualcomm/_passes/reduce_dynamic_range.py' 2025-06-05T23:18:37.0017163Z adding 'executorch/backends/qualcomm/_passes/remove_0d_tensor.py' 2025-06-05T23:18:37.0017365Z adding 'executorch/backends/qualcomm/_passes/remove_redundancy.py' 2025-06-05T23:18:37.0017593Z adding 'executorch/backends/qualcomm/_passes/replace_arange_args.py' 2025-06-05T23:18:37.0017819Z adding 'executorch/backends/qualcomm/_passes/replace_index_put_input.py' 2025-06-05T23:18:37.0018026Z adding 'executorch/backends/qualcomm/_passes/replace_inf_values.py' 2025-06-05T23:18:37.0018221Z adding 'executorch/backends/qualcomm/_passes/tag_quant_io.py' 2025-06-05T23:18:37.0018376Z adding 'executorch/backends/qualcomm/_passes/utils.py' 2025-06-05T23:18:37.0018526Z adding 'executorch/backends/qualcomm/aot/ir/qcir.fbs' 2025-06-05T23:18:37.0018694Z adding 'executorch/backends/qualcomm/builders/__init__.py' 2025-06-05T23:18:37.0018891Z adding 'executorch/backends/qualcomm/builders/node_visitor.py' 2025-06-05T23:18:37.0019053Z adding 'executorch/backends/qualcomm/builders/op_abs.py' 2025-06-05T23:18:37.0019287Z adding 'executorch/backends/qualcomm/builders/op_adaptive_avg_pool2d.py' 2025-06-05T23:18:37.0019461Z adding 'executorch/backends/qualcomm/builders/op_add.py' 2025-06-05T23:18:37.0019740Z adding 'executorch/backends/qualcomm/builders/op_amax.py' 2025-06-05T23:18:37.0019900Z adding 'executorch/backends/qualcomm/builders/op_and.py' 2025-06-05T23:18:37.0020089Z adding 'executorch/backends/qualcomm/builders/op_arange.py' 2025-06-05T23:18:37.0020262Z adding 'executorch/backends/qualcomm/builders/op_argmin.py' 2025-06-05T23:18:37.0020456Z adding 'executorch/backends/qualcomm/builders/op_avg_pool2d.py' 2025-06-05T23:18:37.0020648Z adding 'executorch/backends/qualcomm/builders/op_batch_norm.py' 2025-06-05T23:18:37.0020824Z adding 'executorch/backends/qualcomm/builders/op_bmm.py' 2025-06-05T23:18:37.0020985Z adding 'executorch/backends/qualcomm/builders/op_cat.py' 2025-06-05T23:18:37.0021148Z adding 'executorch/backends/qualcomm/builders/op_ceil.py' 2025-06-05T23:18:37.0021335Z adding 'executorch/backends/qualcomm/builders/op_clamp.py' 2025-06-05T23:18:37.0021557Z adding 'executorch/backends/qualcomm/builders/op_conv2d.py' 2025-06-05T23:18:37.0021808Z adding 'executorch/backends/qualcomm/builders/op_cos.py' 2025-06-05T23:18:37.0022053Z adding 'executorch/backends/qualcomm/builders/op_cum_sum.py' 2025-06-05T23:18:37.0022263Z adding 'executorch/backends/qualcomm/builders/op_depth_to_space.py' 2025-06-05T23:18:37.0022499Z adding 'executorch/backends/qualcomm/builders/op_dequantize.py' 2025-06-05T23:18:37.0022716Z adding 'executorch/backends/qualcomm/builders/op_div.py' 2025-06-05T23:18:37.0022892Z adding 'executorch/backends/qualcomm/builders/op_elu.py' 2025-06-05T23:18:37.0023079Z adding 'executorch/backends/qualcomm/builders/op_embedding.py' 2025-06-05T23:18:37.0023237Z adding 'executorch/backends/qualcomm/builders/op_eq.py' 2025-06-05T23:18:37.0023411Z adding 'executorch/backends/qualcomm/builders/op_exp.py' 2025-06-05T23:18:37.0023583Z adding 'executorch/backends/qualcomm/builders/op_expand.py' 2025-06-05T23:18:37.0023747Z adding 'executorch/backends/qualcomm/builders/op_full.py' 2025-06-05T23:18:37.0023951Z adding 'executorch/backends/qualcomm/builders/op_full_like.py' 2025-06-05T23:18:37.0024124Z adding 'executorch/backends/qualcomm/builders/op_gather.py' 2025-06-05T23:18:37.0024283Z adding 'executorch/backends/qualcomm/builders/op_ge.py' 2025-06-05T23:18:37.0024449Z adding 'executorch/backends/qualcomm/builders/op_gelu.py' 2025-06-05T23:18:37.0024656Z adding 'executorch/backends/qualcomm/builders/op_group_norm.py' 2025-06-05T23:18:37.0024815Z adding 'executorch/backends/qualcomm/builders/op_gt.py' 2025-06-05T23:18:37.0025016Z adding 'executorch/backends/qualcomm/builders/op_hardsigmoid.py' 2025-06-05T23:18:37.0025216Z adding 'executorch/backends/qualcomm/builders/op_hardswish.py' 2025-06-05T23:18:37.0025401Z adding 'executorch/backends/qualcomm/builders/op_hardtanh.py' 2025-06-05T23:18:37.0025570Z adding 'executorch/backends/qualcomm/builders/op_index.py' 2025-06-05T23:18:37.0025769Z adding 'executorch/backends/qualcomm/builders/op_index_put.py' 2025-06-05T23:18:37.0025977Z adding 'executorch/backends/qualcomm/builders/op_instance_norm.py' 2025-06-05T23:18:37.0026170Z adding 'executorch/backends/qualcomm/builders/op_layer_norm.py' 2025-06-05T23:18:37.0026341Z adding 'executorch/backends/qualcomm/builders/op_le.py' 2025-06-05T23:18:37.0026515Z adding 'executorch/backends/qualcomm/builders/op_linear.py' 2025-06-05T23:18:37.0026674Z adding 'executorch/backends/qualcomm/builders/op_log.py' 2025-06-05T23:18:37.0026868Z adding 'executorch/backends/qualcomm/builders/op_log_softmax.py' 2025-06-05T23:18:37.0027074Z adding 'executorch/backends/qualcomm/builders/op_logical_not.py' 2025-06-05T23:18:37.0027232Z adding 'executorch/backends/qualcomm/builders/op_lt.py' 2025-06-05T23:18:37.0027401Z adding 'executorch/backends/qualcomm/builders/op_matmul.py' 2025-06-05T23:18:37.0027573Z adding 'executorch/backends/qualcomm/builders/op_max.py' 2025-06-05T23:18:37.0027764Z adding 'executorch/backends/qualcomm/builders/op_max_pool2d.py' 2025-06-05T23:18:37.0027941Z adding 'executorch/backends/qualcomm/builders/op_mean_dim.py' 2025-06-05T23:18:37.0028146Z adding 'executorch/backends/qualcomm/builders/op_min.py' 2025-06-05T23:18:37.0028306Z adding 'executorch/backends/qualcomm/builders/op_mul.py' 2025-06-05T23:18:37.0028461Z adding 'executorch/backends/qualcomm/builders/op_ne.py' 2025-06-05T23:18:37.0028618Z adding 'executorch/backends/qualcomm/builders/op_neg.py' 2025-06-05T23:18:37.0028785Z adding 'executorch/backends/qualcomm/builders/op_or.py' 2025-06-05T23:18:37.0028943Z adding 'executorch/backends/qualcomm/builders/op_pad.py' 2025-06-05T23:18:37.0029100Z adding 'executorch/backends/qualcomm/builders/op_pow.py' 2025-06-05T23:18:37.0029278Z adding 'executorch/backends/qualcomm/builders/op_prelu.py' 2025-06-05T23:18:37.0029458Z adding 'executorch/backends/qualcomm/builders/op_quantize.py' 2025-06-05T23:18:37.0029621Z adding 'executorch/backends/qualcomm/builders/op_relu.py' 2025-06-05T23:18:37.0029801Z adding 'executorch/backends/qualcomm/builders/op_repeat.py' 2025-06-05T23:18:37.0030026Z adding 'executorch/backends/qualcomm/builders/op_reshape.py' 2025-06-05T23:18:37.0030198Z adding 'executorch/backends/qualcomm/builders/op_resize.py' 2025-06-05T23:18:37.0030375Z adding 'executorch/backends/qualcomm/builders/op_rms_norm.py' 2025-06-05T23:18:37.0030595Z adding 'executorch/backends/qualcomm/builders/op_rsqrt.py' 2025-06-05T23:18:37.0030797Z adding 'executorch/backends/qualcomm/builders/op_scalar_tensor.py' 2025-06-05T23:18:37.0030993Z adding 'executorch/backends/qualcomm/builders/op_select_copy.py' 2025-06-05T23:18:37.0031180Z adding 'executorch/backends/qualcomm/builders/op_sigmoid.py' 2025-06-05T23:18:37.0031338Z adding 'executorch/backends/qualcomm/builders/op_sin.py' 2025-06-05T23:18:37.0031518Z adding 'executorch/backends/qualcomm/builders/op_skip_ops.py' 2025-06-05T23:18:37.0031718Z adding 'executorch/backends/qualcomm/builders/op_slice_copy.py' 2025-06-05T23:18:37.0031895Z adding 'executorch/backends/qualcomm/builders/op_softmax.py' 2025-06-05T23:18:37.0032108Z adding 'executorch/backends/qualcomm/builders/op_space_to_depth.py' 2025-06-05T23:18:37.0032324Z adding 'executorch/backends/qualcomm/builders/op_split_with_sizes.py' 2025-06-05T23:18:37.0032502Z adding 'executorch/backends/qualcomm/builders/op_sqrt.py' 2025-06-05T23:18:37.0032679Z adding 'executorch/backends/qualcomm/builders/op_squeeze.py' 2025-06-05T23:18:37.0032843Z adding 'executorch/backends/qualcomm/builders/op_stack.py' 2025-06-05T23:18:37.0033017Z adding 'executorch/backends/qualcomm/builders/op_sub.py' 2025-06-05T23:18:37.0033216Z adding 'executorch/backends/qualcomm/builders/op_sum_int_list.py' 2025-06-05T23:18:37.0033377Z adding 'executorch/backends/qualcomm/builders/op_tanh.py' 2025-06-05T23:18:37.0033550Z adding 'executorch/backends/qualcomm/builders/op_to.py' 2025-06-05T23:18:37.0033715Z adding 'executorch/backends/qualcomm/builders/op_topk.py' 2025-06-05T23:18:37.0033901Z adding 'executorch/backends/qualcomm/builders/op_transpose.py' 2025-06-05T23:18:37.0034092Z adding 'executorch/backends/qualcomm/builders/op_unbind.py' 2025-06-05T23:18:37.0034281Z adding 'executorch/backends/qualcomm/builders/op_unsqueeze.py' 2025-06-05T23:18:37.0034515Z adding 'executorch/backends/qualcomm/builders/op_upsample_bilinear2d.py' 2025-06-05T23:18:37.0034745Z adding 'executorch/backends/qualcomm/builders/op_upsample_nearest2d.py' 2025-06-05T23:18:37.0034924Z adding 'executorch/backends/qualcomm/builders/op_where.py' 2025-06-05T23:18:37.0035116Z adding 'executorch/backends/qualcomm/builders/qnn_constants.py' 2025-06-05T23:18:37.0035273Z adding 'executorch/backends/qualcomm/builders/utils.py' 2025-06-05T23:18:37.0035441Z adding 'executorch/backends/qualcomm/debugger/utils.py' 2025-06-05T23:18:37.0035629Z adding 'executorch/backends/qualcomm/partition/common_defs.py' 2025-06-05T23:18:37.0035836Z adding 'executorch/backends/qualcomm/partition/qnn_partitioner.py' 2025-06-05T23:18:37.0036009Z adding 'executorch/backends/qualcomm/partition/utils.py' 2025-06-05T23:18:37.0036222Z adding 'executorch/backends/qualcomm/quantizer/annotators.py' 2025-06-05T23:18:37.0036438Z adding 'executorch/backends/qualcomm/quantizer/custom_annotation.py' 2025-06-05T23:18:37.0036607Z adding 'executorch/backends/qualcomm/quantizer/qconfig.py' 2025-06-05T23:18:37.0036798Z adding 'executorch/backends/qualcomm/quantizer/quantizer.py' 2025-06-05T23:18:37.0037095Z adding 'executorch/backends/qualcomm/quantizer/observers/per_block_param_observer.py' 2025-06-05T23:18:37.0037399Z adding 'executorch/backends/qualcomm/quantizer/observers/per_channel_param_observer.py' 2025-06-05T23:18:37.0037647Z adding 'executorch/backends/qualcomm/serialization/qc_compiler_spec.fbs' 2025-06-05T23:18:37.0037847Z adding 'executorch/backends/qualcomm/serialization/qc_schema.py' 2025-06-05T23:18:37.0335532Z adding 'executorch/backends/qualcomm/serialization/qc_schema_serialize.py' 2025-06-05T23:18:37.0336489Z adding 'executorch/backends/qualcomm/tests/models.py' 2025-06-05T23:18:37.0337496Z adding 'executorch/backends/qualcomm/tests/test_qnn_delegate.py' 2025-06-05T23:18:37.0338312Z adding 'executorch/backends/qualcomm/tests/utils.py' 2025-06-05T23:18:37.0339049Z adding 'executorch/backends/qualcomm/utils/constants.py' 2025-06-05T23:18:37.0339851Z adding 'executorch/backends/qualcomm/utils/utils.py' 2025-06-05T23:18:37.0340537Z adding 'executorch/backends/transforms/__init__.py' 2025-06-05T23:18:37.0341296Z adding 'executorch/backends/transforms/addmm_mm_to_linear.py' 2025-06-05T23:18:37.0342139Z adding 'executorch/backends/transforms/convert_dtype_pass.py' 2025-06-05T23:18:37.0342949Z adding 'executorch/backends/transforms/decompose_sdpa.py' 2025-06-05T23:18:37.0343908Z adding 'executorch/backends/transforms/duplicate_dynamic_quant_chain.py' 2025-06-05T23:18:37.0344914Z adding 'executorch/backends/transforms/fuse_batch_norm_with_conv.py' 2025-06-05T23:18:37.0345838Z adding 'executorch/backends/transforms/fuse_conv_with_clamp.py' 2025-06-05T23:18:37.0346696Z adding 'executorch/backends/transforms/fuse_view_copy.py' 2025-06-05T23:18:37.0347540Z adding 'executorch/backends/transforms/mean_to_sum_div.py' 2025-06-05T23:18:37.0348312Z adding 'executorch/backends/transforms/rank_0_to_rank_1.py' 2025-06-05T23:18:37.0349111Z adding 'executorch/backends/transforms/remove_clone_ops.py' 2025-06-05T23:18:37.0349952Z adding 'executorch/backends/transforms/remove_getitem_op.py' 2025-06-05T23:18:37.0350841Z adding 'executorch/backends/transforms/replace_scalar_with_tensor.py' 2025-06-05T23:18:37.0351695Z adding 'executorch/backends/transforms/utils.py' 2025-06-05T23:18:37.0352560Z adding 'executorch/backends/transforms/view_copy_to_squeeze_unsqueeze.py' 2025-06-05T23:18:37.0353787Z adding 'executorch/backends/transforms/test/test_create_delete_constant_placeholder.py' 2025-06-05T23:18:37.0355039Z adding 'executorch/backends/transforms/test/test_duplicate_dynamic_quant_chain.py' 2025-06-05T23:18:37.0356205Z adding 'executorch/backends/transforms/test/test_rank_0_to_rank_1.py' 2025-06-05T23:18:37.0357048Z adding 'executorch/backends/vulkan/__init__.py' 2025-06-05T23:18:37.0357740Z adding 'executorch/backends/vulkan/custom_ops_lib.py' 2025-06-05T23:18:37.0358443Z adding 'executorch/backends/vulkan/op_registry.py' 2025-06-05T23:18:37.0359110Z adding 'executorch/backends/vulkan/utils.py' 2025-06-05T23:18:37.0359816Z adding 'executorch/backends/vulkan/vulkan_preprocess.py' 2025-06-05T23:18:37.0360596Z adding 'executorch/backends/vulkan/_passes/__init__.py' 2025-06-05T23:18:37.0361423Z adding 'executorch/backends/vulkan/_passes/fuse_quantized_ops.py' 2025-06-05T23:18:37.0362378Z adding 'executorch/backends/vulkan/_passes/insert_prepack_nodes.py' 2025-06-05T23:18:37.0363342Z adding 'executorch/backends/vulkan/_passes/int4_weight_only_quantizer.py' 2025-06-05T23:18:37.0364435Z adding 'executorch/backends/vulkan/_passes/remove_asserts.py' 2025-06-05T23:18:37.0365429Z adding 'executorch/backends/vulkan/_passes/remove_local_scalar_dense_ops.py' 2025-06-05T23:18:37.0366498Z adding 'executorch/backends/vulkan/_passes/remove_redundant_ops.py' 2025-06-05T23:18:37.0367643Z adding 'executorch/backends/vulkan/_passes/squeeze_unsqueeze_inputs.py' 2025-06-05T23:18:37.0368639Z adding 'executorch/backends/vulkan/_passes/tag_memory_meta_pass.py' 2025-06-05T23:18:37.0369649Z adding 'executorch/backends/vulkan/partitioner/vulkan_partitioner.py' 2025-06-05T23:18:37.0370628Z adding 'executorch/backends/vulkan/quantizer/vulkan_quantizer.py' 2025-06-05T23:18:37.0371529Z adding 'executorch/backends/vulkan/runtime/gen_vulkan_spv.py' 2025-06-05T23:18:37.0372592Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_buffer.yaml' 2025-06-05T23:18:37.0373814Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_texture3d.yaml' 2025-06-05T23:18:37.0375103Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_optimized.yaml' 2025-06-05T23:18:37.0376176Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/arange.yaml' 2025-06-05T23:18:37.0377319Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/avg_pool2d.yaml' 2025-06-05T23:18:37.0378422Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/batchnorm.yaml' 2025-06-05T23:18:37.0379542Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/binary_op.yaml' 2025-06-05T23:18:37.0380849Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/bitw8_image_to_nchw_nobitw8buffer.yaml' 2025-06-05T23:18:37.0382200Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_buffer.yaml' 2025-06-05T23:18:37.0383407Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_nchw.yaml' 2025-06-05T23:18:37.0384485Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/clone.yaml' 2025-06-05T23:18:37.0385485Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv1d.yaml' 2025-06-05T23:18:37.0386496Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d.yaml' 2025-06-05T23:18:37.0387580Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw.yaml' 2025-06-05T23:18:37.0388819Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_output_tile.yaml' 2025-06-05T23:18:37.0390119Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_prepack_weights.yaml' 2025-06-05T23:18:37.0391638Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_sned_output_tile.yaml' 2025-06-05T23:18:37.0392962Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_prepack_weights.yaml' 2025-06-05T23:18:37.0394205Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw.yaml' 2025-06-05T23:18:37.0395341Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw_s1p0.yaml' 2025-06-05T23:18:37.0396534Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d.yaml' 2025-06-05T23:18:37.0397922Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d_prepack_weights.yaml' 2025-06-05T23:18:37.0399278Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_channel_offset.yaml' 2025-06-05T23:18:37.0400487Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_offset.yaml' 2025-06-05T23:18:37.0401660Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_packed_dim_offset.yaml' 2025-06-05T23:18:37.0402910Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/embedding.yaml' 2025-06-05T23:18:37.0404070Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/flip.yaml' 2025-06-05T23:18:37.0405066Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/full.yaml' 2025-06-05T23:18:37.0406109Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/grid_priors.yaml' 2025-06-05T23:18:37.0407204Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/image_to_nchw.yaml' 2025-06-05T23:18:37.0408366Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/index_select.yaml' 2025-06-05T23:18:37.0409564Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/index_select_channel.yaml' 2025-06-05T23:18:37.0410959Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/kv_cache_update.yaml' 2025-06-05T23:18:37.0412133Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw.yaml' 2025-06-05T23:18:37.0413281Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_coop.yaml' 2025-06-05T23:18:37.0414553Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_tiled.yaml' 2025-06-05T23:18:37.0415754Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_coop.yaml' 2025-06-05T23:18:37.0416993Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_tiled.yaml' 2025-06-05T23:18:37.0418216Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/max_pool2d.yaml' 2025-06-05T23:18:37.0419412Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/native_layer_norm.yaml' 2025-06-05T23:18:37.0420826Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_bitw8_image_nobitw8buffer.yaml' 2025-06-05T23:18:37.0422371Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_buffer.yaml' 2025-06-05T23:18:37.0423530Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_image.yaml' 2025-06-05T23:18:37.0424651Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/no_op.yaml' 2025-06-05T23:18:37.0426029Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pack_int4_linear_weight_transposed_interleaved.yaml' 2025-06-05T23:18:37.0427530Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pad_channel.yaml' 2025-06-05T23:18:37.0428697Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pad_height_width.yaml' 2025-06-05T23:18:37.0429841Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/permute.yaml' 2025-06-05T23:18:37.0430840Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/reduce.yaml' 2025-06-05T23:18:37.0431891Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat.yaml' 2025-06-05T23:18:37.0433039Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_channel.yaml' 2025-06-05T23:18:37.0434274Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_interleave.yaml' 2025-06-05T23:18:37.0435550Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/rotary_embedding.yaml' 2025-06-05T23:18:37.0436905Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_attn_weight_scale_and_mask.yaml' 2025-06-05T23:18:37.0438176Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/softmax.yaml' 2025-06-05T23:18:37.0439178Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/tan.yaml' 2025-06-05T23:18:37.0440247Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_buffer.yaml' 2025-06-05T23:18:37.0441439Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_texture.yaml' 2025-06-05T23:18:37.0442560Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/unary_op.yaml' 2025-06-05T23:18:37.0443641Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/upsample_2d.yaml' 2025-06-05T23:18:37.0444829Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/var_buffer.yaml' 2025-06-05T23:18:37.0445946Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/var_texture3d.yaml' 2025-06-05T23:18:37.0447044Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/view.yaml' 2025-06-05T23:18:37.0448054Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/where.yaml' 2025-06-05T23:18:37.0448936Z adding 'executorch/backends/vulkan/serialization/schema.fbs' 2025-06-05T23:18:37.0449920Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_builder.py' 2025-06-05T23:18:37.0451000Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_schema.py' 2025-06-05T23:18:37.0452054Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_serialize.py' 2025-06-05T23:18:37.0745765Z adding 'executorch/backends/vulkan/test/test_serialization.py' 2025-06-05T23:18:37.0746763Z adding 'executorch/backends/vulkan/test/test_vulkan_delegate.py' 2025-06-05T23:18:37.0747840Z adding 'executorch/backends/vulkan/test/test_vulkan_delegate_header.py' 2025-06-05T23:18:37.0748814Z adding 'executorch/backends/vulkan/test/test_vulkan_passes.py' 2025-06-05T23:18:37.0749716Z adding 'executorch/backends/vulkan/test/glsl/all_shaders.yaml' 2025-06-05T23:18:37.0750648Z adding 'executorch/backends/vulkan/test/glsl/dynamic_dispatch_test.yaml' 2025-06-05T23:18:37.0751748Z adding 'executorch/backends/vulkan/test/glsl/reference_matmul_common.yaml' 2025-06-05T23:18:37.0752711Z adding 'executorch/backends/vulkan/test/op_tests/cases.py' 2025-06-05T23:18:37.0753659Z adding 'executorch/backends/vulkan/test/op_tests/generate_op_benchmarks.py' 2025-06-05T23:18:37.0754813Z adding 'executorch/backends/vulkan/test/op_tests/generate_op_correctness_tests.py' 2025-06-05T23:18:37.0755952Z adding 'executorch/backends/vulkan/test/op_tests/utils/aten_types.py' 2025-06-05T23:18:37.0757007Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_benchmark_vk.py' 2025-06-05T23:18:37.0758281Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_computegraph.py' 2025-06-05T23:18:37.0759427Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_correctness_base.py' 2025-06-05T23:18:37.0760640Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_correctness_vk.py' 2025-06-05T23:18:37.0761723Z adding 'executorch/backends/vulkan/test/op_tests/utils/test_suite.py' 2025-06-05T23:18:37.0762900Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/apiconventions.py' 2025-06-05T23:18:37.0764306Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/cgenerator.py' 2025-06-05T23:18:37.0765577Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/conventions.py' 2025-06-05T23:18:37.0766843Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/generator.py' 2025-06-05T23:18:37.0768100Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/genvk.py' 2025-06-05T23:18:37.0769284Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/reg.py' 2025-06-05T23:18:37.0770538Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/vkconventions.py' 2025-06-05T23:18:37.0771899Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools/util.py' 2025-06-05T23:18:37.0773423Z adding 'executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis/GpuMemDumpVis.py' 2025-06-05T23:18:37.0774766Z adding 'executorch/backends/vulkan/third-party/volk/generate.py' 2025-06-05T23:18:37.0775760Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/buf_bandwidth.yaml' 2025-06-05T23:18:37.0776894Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/buf_cacheline_size.yaml' 2025-06-05T23:18:37.0777987Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/reg_count.yaml' 2025-06-05T23:18:37.0779016Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/tex_bandwidth.yaml' 2025-06-05T23:18:37.0780189Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/tex_cacheline_concurr.yaml' 2025-06-05T23:18:37.0781288Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/warp_size.yaml' 2025-06-05T23:18:37.0782133Z adding 'executorch/backends/xnnpack/__init__.py' 2025-06-05T23:18:37.0782894Z adding 'executorch/backends/xnnpack/xnnpack_preprocess.py' 2025-06-05T23:18:37.0783718Z adding 'executorch/backends/xnnpack/_passes/__init__.py' 2025-06-05T23:18:37.0784687Z adding 'executorch/backends/xnnpack/_passes/channels_last_tagged_reshape_pass.py' 2025-06-05T23:18:37.0785772Z adding 'executorch/backends/xnnpack/_passes/conv1d_unsqueeze_pass.py' 2025-06-05T23:18:37.0786747Z adding 'executorch/backends/xnnpack/_passes/convert_to_linear.py' 2025-06-05T23:18:37.0787639Z adding 'executorch/backends/xnnpack/_passes/convert_to_sdpa.py' 2025-06-05T23:18:37.0788676Z adding 'executorch/backends/xnnpack/_passes/convert_to_upsample_bilinear2d.py' 2025-06-05T23:18:37.0789713Z adding 'executorch/backends/xnnpack/_passes/decompose_cat.py' 2025-06-05T23:18:37.0790716Z adding 'executorch/backends/xnnpack/_passes/fuse_activation_pass.py' 2025-06-05T23:18:37.0791885Z adding 'executorch/backends/xnnpack/_passes/fuse_batch_norm_with_conv.py' 2025-06-05T23:18:37.0792879Z adding 'executorch/backends/xnnpack/_passes/prelu_reshape_pass.py' 2025-06-05T23:18:37.0793865Z adding 'executorch/backends/xnnpack/_passes/tag_implicit_q_dq_pass.py' 2025-06-05T23:18:37.0794773Z adding 'executorch/backends/xnnpack/_passes/xnnpack_pass.py' 2025-06-05T23:18:37.0795603Z adding 'executorch/backends/xnnpack/operators/__init__.py' 2025-06-05T23:18:37.0796465Z adding 'executorch/backends/xnnpack/operators/node_visitor.py' 2025-06-05T23:18:37.0797329Z adding 'executorch/backends/xnnpack/operators/op_abs.py' 2025-06-05T23:18:37.0798104Z adding 'executorch/backends/xnnpack/operators/op_add.py' 2025-06-05T23:18:37.0798900Z adding 'executorch/backends/xnnpack/operators/op_addmm.py' 2025-06-05T23:18:37.0799940Z adding 'executorch/backends/xnnpack/operators/op_avg_pooling2d.py' 2025-06-05T23:18:37.0800851Z adding 'executorch/backends/xnnpack/operators/op_bmm.py' 2025-06-05T23:18:37.0801659Z adding 'executorch/backends/xnnpack/operators/op_cat.py' 2025-06-05T23:18:37.0802525Z adding 'executorch/backends/xnnpack/operators/op_ceiling.py' 2025-06-05T23:18:37.0803362Z adding 'executorch/backends/xnnpack/operators/op_clamp.py' 2025-06-05T23:18:37.0804250Z adding 'executorch/backends/xnnpack/operators/op_conv2d.py' 2025-06-05T23:18:37.0805076Z adding 'executorch/backends/xnnpack/operators/op_div.py' 2025-06-05T23:18:37.0806005Z adding 'executorch/backends/xnnpack/operators/op_dynamic_dequantize_ops.py' 2025-06-05T23:18:37.0807096Z adding 'executorch/backends/xnnpack/operators/op_dynamic_quantize_ops.py' 2025-06-05T23:18:37.0808038Z adding 'executorch/backends/xnnpack/operators/op_elu.py' 2025-06-05T23:18:37.0808813Z adding 'executorch/backends/xnnpack/operators/op_exp.py' 2025-06-05T23:18:37.0809623Z adding 'executorch/backends/xnnpack/operators/op_floor.py' 2025-06-05T23:18:37.0810456Z adding 'executorch/backends/xnnpack/operators/op_gelu.py' 2025-06-05T23:18:37.0811284Z adding 'executorch/backends/xnnpack/operators/op_hardswish.py' 2025-06-05T23:18:37.0812176Z adding 'executorch/backends/xnnpack/operators/op_hardtanh.py' 2025-06-05T23:18:37.0813043Z adding 'executorch/backends/xnnpack/operators/op_leaky_relu.py' 2025-06-05T23:18:37.0813898Z adding 'executorch/backends/xnnpack/operators/op_linear.py' 2025-06-05T23:18:37.0814720Z adding 'executorch/backends/xnnpack/operators/op_log.py' 2025-06-05T23:18:37.0815664Z adding 'executorch/backends/xnnpack/operators/op_matrix_multiplication.py' 2025-06-05T23:18:37.0816640Z adding 'executorch/backends/xnnpack/operators/op_max_dim.py' 2025-06-05T23:18:37.0817538Z adding 'executorch/backends/xnnpack/operators/op_max_pool2d.py' 2025-06-05T23:18:37.0818433Z adding 'executorch/backends/xnnpack/operators/op_maximum.py' 2025-06-05T23:18:37.0819294Z adding 'executorch/backends/xnnpack/operators/op_mean_dim.py' 2025-06-05T23:18:37.0820157Z adding 'executorch/backends/xnnpack/operators/op_minimum.py' 2025-06-05T23:18:37.0821015Z adding 'executorch/backends/xnnpack/operators/op_multiply.py' 2025-06-05T23:18:37.0821875Z adding 'executorch/backends/xnnpack/operators/op_negate.py' 2025-06-05T23:18:37.0822703Z adding 'executorch/backends/xnnpack/operators/op_permute.py' 2025-06-05T23:18:37.0823544Z adding 'executorch/backends/xnnpack/operators/op_prelu.py' 2025-06-05T23:18:37.0824442Z adding 'executorch/backends/xnnpack/operators/op_quant_dequant.py' 2025-06-05T23:18:37.0825329Z adding 'executorch/backends/xnnpack/operators/op_relu.py' 2025-06-05T23:18:37.0826131Z adding 'executorch/backends/xnnpack/operators/op_rsqrt.py' 2025-06-05T23:18:37.0826915Z adding 'executorch/backends/xnnpack/operators/op_sdpa.py' 2025-06-05T23:18:37.0827765Z adding 'executorch/backends/xnnpack/operators/op_sigmoid.py' 2025-06-05T23:18:37.0828609Z adding 'executorch/backends/xnnpack/operators/op_skip_ops.py' 2025-06-05T23:18:37.0829616Z adding 'executorch/backends/xnnpack/operators/op_slice_copy.py' 2025-06-05T23:18:37.0830478Z adding 'executorch/backends/xnnpack/operators/op_softmax.py' 2025-06-05T23:18:37.0831337Z adding 'executorch/backends/xnnpack/operators/op_square.py' 2025-06-05T23:18:37.0832246Z adding 'executorch/backends/xnnpack/operators/op_square_root.py' 2025-06-05T23:18:37.0833139Z adding 'executorch/backends/xnnpack/operators/op_squeeze.py' 2025-06-05T23:18:37.0834118Z adding 'executorch/backends/xnnpack/operators/op_static_constant_pad.py' 2025-06-05T23:18:37.0835233Z adding 'executorch/backends/xnnpack/operators/op_static_resize_bilinear_2d.py' 2025-06-05T23:18:37.0836214Z adding 'executorch/backends/xnnpack/operators/op_sub.py' 2025-06-05T23:18:37.0837020Z adding 'executorch/backends/xnnpack/operators/op_to_copy.py' 2025-06-05T23:18:37.0837872Z adding 'executorch/backends/xnnpack/operators/quant_params.py' 2025-06-05T23:18:37.0838858Z adding 'executorch/backends/xnnpack/partition/configs.py' 2025-06-05T23:18:37.0839778Z adding 'executorch/backends/xnnpack/partition/xnnpack_partitioner.py' 2025-06-05T23:18:37.0840749Z adding 'executorch/backends/xnnpack/partition/config/__init__.py' 2025-06-05T23:18:37.0841775Z adding 'executorch/backends/xnnpack/partition/config/gemm_configs.py' 2025-06-05T23:18:37.0842822Z adding 'executorch/backends/xnnpack/partition/config/generic_node_configs.py' 2025-06-05T23:18:37.0843991Z adding 'executorch/backends/xnnpack/partition/config/node_configs.py' 2025-06-05T23:18:37.0845042Z adding 'executorch/backends/xnnpack/partition/config/quant_affine_configs.py' 2025-06-05T23:18:37.0846161Z adding 'executorch/backends/xnnpack/partition/config/xnnpack_config.py' 2025-06-05T23:18:37.0847185Z adding 'executorch/backends/xnnpack/partition/graphs/bilinear_2d.py' 2025-06-05T23:18:37.0848125Z adding 'executorch/backends/xnnpack/partition/graphs/sdpa.py' 2025-06-05T23:18:37.0849045Z adding 'executorch/backends/xnnpack/quantizer/xnnpack_quantizer.py' 2025-06-05T23:18:37.0850097Z adding 'executorch/backends/xnnpack/quantizer/xnnpack_quantizer_utils.py' 2025-06-05T23:18:37.0851169Z adding 'executorch/backends/xnnpack/serialization/runtime_schema.fbs' 2025-06-05T23:18:37.0852121Z adding 'executorch/backends/xnnpack/serialization/schema.fbs' 2025-06-05T23:18:37.0853107Z adding 'executorch/backends/xnnpack/serialization/xnnpack_graph_schema.py' 2025-06-05T23:18:37.0854239Z adding 'executorch/backends/xnnpack/serialization/xnnpack_graph_serialize.py' 2025-06-05T23:18:37.0855321Z adding 'executorch/backends/xnnpack/test/test_xnnpack_utils.py' 2025-06-05T23:18:37.0856301Z adding 'executorch/backends/xnnpack/test/test_xnnpack_utils_classes.py' 2025-06-05T23:18:37.0857276Z adding 'executorch/backends/xnnpack/test/models/deeplab_v3.py' 2025-06-05T23:18:37.0858115Z adding 'executorch/backends/xnnpack/test/models/edsr.py' 2025-06-05T23:18:37.0858982Z adding 'executorch/backends/xnnpack/test/models/emformer_rnnt.py' 2025-06-05T23:18:37.0859911Z adding 'executorch/backends/xnnpack/test/models/inception_v3.py' 2025-06-05T23:18:37.1045114Z adding 'executorch/backends/xnnpack/test/models/inception_v4.py' 2025-06-05T23:18:37.1046143Z adding 'executorch/backends/xnnpack/test/models/llama2_et_example.py' 2025-06-05T23:18:37.1047091Z adding 'executorch/backends/xnnpack/test/models/mobilebert.py' 2025-06-05T23:18:37.1047980Z adding 'executorch/backends/xnnpack/test/models/mobilenet_v2.py' 2025-06-05T23:18:37.1048897Z adding 'executorch/backends/xnnpack/test/models/mobilenet_v3.py' 2025-06-05T23:18:37.1049768Z adding 'executorch/backends/xnnpack/test/models/resnet.py' 2025-06-05T23:18:37.1050647Z adding 'executorch/backends/xnnpack/test/models/torchvision_vit.py' 2025-06-05T23:18:37.1051613Z adding 'executorch/backends/xnnpack/test/models/very_big_model.py' 2025-06-05T23:18:37.1052470Z adding 'executorch/backends/xnnpack/test/models/w2l.py' 2025-06-05T23:18:37.1053237Z adding 'executorch/backends/xnnpack/test/ops/test_abs.py' 2025-06-05T23:18:37.1054171Z adding 'executorch/backends/xnnpack/test/ops/test_add.py' 2025-06-05T23:18:37.1055020Z adding 'executorch/backends/xnnpack/test/ops/test_avgpool2d.py' 2025-06-05T23:18:37.1055932Z adding 'executorch/backends/xnnpack/test/ops/test_bilinear2d.py' 2025-06-05T23:18:37.1056791Z adding 'executorch/backends/xnnpack/test/ops/test_bmm.py' 2025-06-05T23:18:37.1057581Z adding 'executorch/backends/xnnpack/test/ops/test_cat.py' 2025-06-05T23:18:37.1058360Z adding 'executorch/backends/xnnpack/test/ops/test_ceil.py' 2025-06-05T23:18:37.1059311Z adding 'executorch/backends/xnnpack/test/ops/test_check_quant_params.py' 2025-06-05T23:18:37.1060261Z adding 'executorch/backends/xnnpack/test/ops/test_clamp.py' 2025-06-05T23:18:37.1061096Z adding 'executorch/backends/xnnpack/test/ops/test_conv1d.py' 2025-06-05T23:18:37.1061932Z adding 'executorch/backends/xnnpack/test/ops/test_conv2d.py' 2025-06-05T23:18:37.1062755Z adding 'executorch/backends/xnnpack/test/ops/test_div.py' 2025-06-05T23:18:37.1063736Z adding 'executorch/backends/xnnpack/test/ops/test_elu.py' 2025-06-05T23:18:37.1064523Z adding 'executorch/backends/xnnpack/test/ops/test_exp.py' 2025-06-05T23:18:37.1065416Z adding 'executorch/backends/xnnpack/test/ops/test_floor.py' 2025-06-05T23:18:37.1066204Z adding 'executorch/backends/xnnpack/test/ops/test_gelu.py' 2025-06-05T23:18:37.1067066Z adding 'executorch/backends/xnnpack/test/ops/test_hardswish.py' 2025-06-05T23:18:37.1067956Z adding 'executorch/backends/xnnpack/test/ops/test_hardtanh.py' 2025-06-05T23:18:37.1068860Z adding 'executorch/backends/xnnpack/test/ops/test_leaky_relu.py' 2025-06-05T23:18:37.1069746Z adding 'executorch/backends/xnnpack/test/ops/test_linear.py' 2025-06-05T23:18:37.1070571Z adding 'executorch/backends/xnnpack/test/ops/test_log.py' 2025-06-05T23:18:37.1071354Z adding 'executorch/backends/xnnpack/test/ops/test_lstm.py' 2025-06-05T23:18:37.1072185Z adding 'executorch/backends/xnnpack/test/ops/test_max_dim.py' 2025-06-05T23:18:37.1073068Z adding 'executorch/backends/xnnpack/test/ops/test_maximum.py' 2025-06-05T23:18:37.1073922Z adding 'executorch/backends/xnnpack/test/ops/test_maxpool2d.py' 2025-06-05T23:18:37.1074827Z adding 'executorch/backends/xnnpack/test/ops/test_mean_dim.py' 2025-06-05T23:18:37.1075707Z adding 'executorch/backends/xnnpack/test/ops/test_minimum.py' 2025-06-05T23:18:37.1076558Z adding 'executorch/backends/xnnpack/test/ops/test_multiply.py' 2025-06-05T23:18:37.1077432Z adding 'executorch/backends/xnnpack/test/ops/test_negate.py' 2025-06-05T23:18:37.1078268Z adding 'executorch/backends/xnnpack/test/ops/test_permute.py' 2025-06-05T23:18:37.1079100Z adding 'executorch/backends/xnnpack/test/ops/test_pow.py' 2025-06-05T23:18:37.1079884Z adding 'executorch/backends/xnnpack/test/ops/test_prelu.py' 2025-06-05T23:18:37.1080848Z adding 'executorch/backends/xnnpack/test/ops/test_quantize_per_tensor.py' 2025-06-05T23:18:37.1081799Z adding 'executorch/backends/xnnpack/test/ops/test_relu.py' 2025-06-05T23:18:37.1082633Z adding 'executorch/backends/xnnpack/test/ops/test_rsqrt.py' 2025-06-05T23:18:37.1083446Z adding 'executorch/backends/xnnpack/test/ops/test_sdpa.py' 2025-06-05T23:18:37.1084346Z adding 'executorch/backends/xnnpack/test/ops/test_sigmoid.py' 2025-06-05T23:18:37.1085249Z adding 'executorch/backends/xnnpack/test/ops/test_slice_copy.py' 2025-06-05T23:18:37.1086120Z adding 'executorch/backends/xnnpack/test/ops/test_softmax.py' 2025-06-05T23:18:37.1086953Z adding 'executorch/backends/xnnpack/test/ops/test_sqrt.py' 2025-06-05T23:18:37.1087785Z adding 'executorch/backends/xnnpack/test/ops/test_square.py' 2025-06-05T23:18:37.1088738Z adding 'executorch/backends/xnnpack/test/ops/test_static_constant_pad.py' 2025-06-05T23:18:37.1089669Z adding 'executorch/backends/xnnpack/test/ops/test_sub.py' 2025-06-05T23:18:37.1090587Z adding 'executorch/backends/xnnpack/test/passes/test_activation_fusion.py' 2025-06-05T23:18:37.1091863Z adding 'executorch/backends/xnnpack/test/passes/test_batch_norm_fusion.py' 2025-06-05T23:18:37.1093108Z adding 'executorch/backends/xnnpack/test/passes/test_channels_last_tagged_reshape.py' 2025-06-05T23:18:37.1094286Z adding 'executorch/backends/xnnpack/test/passes/test_convert_to_linear.py' 2025-06-05T23:18:37.1095389Z adding 'executorch/backends/xnnpack/test/passes/test_decompose_cat_pass.py' 2025-06-05T23:18:37.1096518Z adding 'executorch/backends/xnnpack/test/passes/test_remove_get_item_pass.py' 2025-06-05T23:18:37.1097657Z adding 'executorch/backends/xnnpack/test/passes/test_tag_implicit_q_dq_pass.py' 2025-06-05T23:18:37.1098809Z adding 'executorch/backends/xnnpack/test/quantizer/test_pt2e_quantization.py' 2025-06-05T23:18:37.1099939Z adding 'executorch/backends/xnnpack/test/quantizer/test_representation.py' 2025-06-05T23:18:37.1101051Z adding 'executorch/backends/xnnpack/test/quantizer/test_xnnpack_quantizer.py' 2025-06-05T23:18:37.1102194Z adding 'executorch/backends/xnnpack/test/serialization/test_serialization.py' 2025-06-05T23:18:37.1103497Z adding 'executorch/backends/xnnpack/test/serialization/test_xnnheader.py' 2025-06-05T23:18:37.1104469Z adding 'executorch/backends/xnnpack/test/tester/__init__.py' 2025-06-05T23:18:37.1105352Z adding 'executorch/backends/xnnpack/test/tester/tester.py' 2025-06-05T23:18:37.1106337Z adding 'executorch/backends/xnnpack/third-party/generate-cpuinfo-wrappers.py' 2025-06-05T23:18:37.1107407Z adding 'executorch/backends/xnnpack/third-party/FP16/configure.py' 2025-06-05T23:18:37.1108350Z adding 'executorch/backends/xnnpack/third-party/FP16/confu.yaml' 2025-06-05T23:18:37.1109328Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/__init__.py' 2025-06-05T23:18:37.1110415Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/avx.py' 2025-06-05T23:18:37.1111455Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/avx2.py' 2025-06-05T23:18:37.1112520Z adding 'executorch/backends/xnnpack/third-party/FP16/test/peachpy/stubs.py' 2025-06-05T23:18:37.1113572Z adding 'executorch/backends/xnnpack/third-party/FXdiv/configure.py' 2025-06-05T23:18:37.1114529Z adding 'executorch/backends/xnnpack/third-party/FXdiv/confu.yaml' 2025-06-05T23:18:37.1115635Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_config.py' 2025-06-05T23:18:37.1116866Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_files_changed.py' 2025-06-05T23:18:37.1118215Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/generate-build-identifier.py' 2025-06-05T23:18:37.1119530Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/sort-filenames.py' 2025-06-05T23:18:37.1120780Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/bf16-gemm-minmax.yaml' 2025-06-05T23:18:37.1122005Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-conv-hwc2chw.yaml' 2025-06-05T23:18:37.1123264Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-dwconv2d-chw.yaml' 2025-06-05T23:18:37.1124637Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-gemm-minmax.yaml' 2025-06-05T23:18:37.1125967Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-igemm-minmax.yaml' 2025-06-05T23:18:37.1127265Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rdsum.yaml' 2025-06-05T23:18:37.1128455Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rsum.yaml' 2025-06-05T23:18:37.1129697Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-gemm-minmax.yaml' 2025-06-05T23:18:37.1130925Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear-chw.yaml' 2025-06-05T23:18:37.1132136Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear.yaml' 2025-06-05T23:18:37.1133379Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-igemm-minmax.yaml' 2025-06-05T23:18:37.1134693Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-raddstoreexpminusmax.yaml' 2025-06-05T23:18:37.1136075Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmax.yaml' 2025-06-05T23:18:37.1137171Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmin.yaml' 2025-06-05T23:18:37.1138277Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rminmax.yaml' 2025-06-05T23:18:37.1139395Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rsum.yaml' 2025-06-05T23:18:37.1140571Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-spmm-minmax.yaml' 2025-06-05T23:18:37.1141870Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-vmulcaddc-minmax.yaml' 2025-06-05T23:18:37.1143106Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-argmaxpool.yaml' 2025-06-05T23:18:37.1144336Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc.yaml' 2025-06-05T23:18:37.1145550Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc2chw.yaml' 2025-06-05T23:18:37.1146871Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-dwconv2d-chw.yaml' 2025-06-05T23:18:37.1148127Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-goi-minmax.yaml' 2025-06-05T23:18:37.1149402Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-minmax.yaml' 2025-06-05T23:18:37.1150596Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-relu.yaml' 2025-06-05T23:18:37.1151784Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm.yaml' 2025-06-05T23:18:37.1152949Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemminc-minmax.yaml' 2025-06-05T23:18:37.1154200Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear-chw.yaml' 2025-06-05T23:18:37.1155452Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear.yaml' 2025-06-05T23:18:37.1156666Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-minmax.yaml' 2025-06-05T23:18:37.1157862Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-relu.yaml' 2025-06-05T23:18:37.1159015Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm.yaml' 2025-06-05T23:18:37.1385109Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ppmm-minmax.yaml' 2025-06-05T23:18:37.1386460Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:18:37.1387740Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-minmax.yaml' 2025-06-05T23:18:37.1389040Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-relu.yaml' 2025-06-05T23:18:37.1390268Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm.yaml' 2025-06-05T23:18:37.1391624Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddexpminusmax.yaml' 2025-06-05T23:18:37.1392845Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddextexp.yaml' 2025-06-05T23:18:37.1394222Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddstoreexpminusmax.yaml' 2025-06-05T23:18:37.1395454Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rdsum.yaml' 2025-06-05T23:18:37.1396540Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmax.yaml' 2025-06-05T23:18:37.1397651Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmin.yaml' 2025-06-05T23:18:37.1398749Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rminmax.yaml' 2025-06-05T23:18:37.1399878Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rsum.yaml' 2025-06-05T23:18:37.1401062Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-spmm-minmax.yaml' 2025-06-05T23:18:37.1402318Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vmulcaddc-minmax.yaml' 2025-06-05T23:18:37.1403751Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleexpminusmax.yaml' 2025-06-05T23:18:37.1405173Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleextexp.yaml' 2025-06-05T23:18:37.1406431Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qb4w-gemm-minmax.yaml' 2025-06-05T23:18:37.1407666Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc4w-gemm-minmax.yaml' 2025-06-05T23:18:37.1408908Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-gemm-minmax.yaml' 2025-06-05T23:18:37.1410144Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-igemm-minmax.yaml' 2025-06-05T23:18:37.1411366Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qb4w-gemm-minmax.yaml' 2025-06-05T23:18:37.1412601Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:18:37.1413816Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-gemm-minmax.yaml' 2025-06-05T23:18:37.1415250Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-igemm-minmax.yaml' 2025-06-05T23:18:37.1416525Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qb4w-gemm-minmax.yaml' 2025-06-05T23:18:37.1417826Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:18:37.1419066Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-gemm-minmax-fp32.yaml' 2025-06-05T23:18:37.1420305Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-igemm-minmax-fp32.yaml' 2025-06-05T23:18:37.1421557Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rdsum-minmax-fp32.yaml' 2025-06-05T23:18:37.1422680Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rsum.yaml' 2025-06-05T23:18:37.1423769Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-fp32.yaml' 2025-06-05T23:18:37.1424981Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-rndnu.yaml' 2025-06-05T23:18:37.1426174Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-fp32.yaml' 2025-06-05T23:18:37.1427388Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-rndnu.yaml' 2025-06-05T23:18:37.1428514Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rdsum.yaml' 2025-06-05T23:18:37.1429539Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rsum.yaml' 2025-06-05T23:18:37.1430591Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/s8-ibilinear.yaml' 2025-06-05T23:18:37.1431644Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-ibilinear.yaml' 2025-06-05T23:18:37.1432705Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-lut32norm.yaml' 2025-06-05T23:18:37.1433717Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-rmax.yaml' 2025-06-05T23:18:37.1434701Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/x8-lut.yaml' 2025-06-05T23:18:37.1435837Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-argmaxpool-test.py' 2025-06-05T23:18:37.1437053Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc-test.py' 2025-06-05T23:18:37.1438295Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc2chw-test.py' 2025-06-05T23:18:37.1439593Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-multipass-test.py' 2025-06-05T23:18:37.1440933Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-unipass-test.py' 2025-06-05T23:18:37.1442239Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv2d-chw-test.py' 2025-06-05T23:18:37.1443410Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-gemm-test.py' 2025-06-05T23:18:37.1444743Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-chw-test.py' 2025-06-05T23:18:37.1446071Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-test.py' 2025-06-05T23:18:37.1447469Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-norm-test.py' 2025-06-05T23:18:37.1448686Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-test.py' 2025-06-05T23:18:37.1449978Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddexpminusmax-test.py' 2025-06-05T23:18:37.1451334Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddextexp-test.py' 2025-06-05T23:18:37.1452736Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddstoreexpminusmax-test.py' 2025-06-05T23:18:37.1454157Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-benchmark.py' 2025-06-05T23:18:37.1455401Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-test.py' 2025-06-05T23:18:37.1456617Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-test.py' 2025-06-05T23:18:37.1457945Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-spmm-test.py' 2025-06-05T23:18:37.1459172Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vbinary-test.py' 2025-06-05T23:18:37.1460491Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vmulcaddc-test.py' 2025-06-05T23:18:37.1461855Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleexpminusmax-test.py' 2025-06-05T23:18:37.1463261Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleextexp-test.py' 2025-06-05T23:18:37.1464553Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vunary-test.py' 2025-06-05T23:18:37.1465668Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/primes.py' 2025-06-05T23:18:37.1466784Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/update-microkernels.py' 2025-06-05T23:18:37.1467883Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/xngen.py' 2025-06-05T23:18:37.1468903Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/xnncommon.py' 2025-06-05T23:18:37.1469897Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/configure.py' 2025-06-05T23:18:37.1470843Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/confu.yaml' 2025-06-05T23:18:37.1471858Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/configure.py' 2025-06-05T23:18:37.1472942Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/confu.yaml' 2025-06-05T23:18:37.1474107Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/android-device-dump.py' 2025-06-05T23:18:37.1475399Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/arm-linux-filesystem-dump.py' 2025-06-05T23:18:37.1476728Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/parse-x86-cpuid-dump.py' 2025-06-05T23:18:37.1477897Z adding 'executorch/backends/xnnpack/third-party/pthreadpool/configure.py' 2025-06-05T23:18:37.1479032Z adding 'executorch/backends/xnnpack/third-party/pthreadpool/confu.yaml' 2025-06-05T23:18:37.1479981Z adding 'executorch/backends/xnnpack/utils/configs.py' 2025-06-05T23:18:37.1480771Z adding 'executorch/backends/xnnpack/utils/quant_utils.py' 2025-06-05T23:18:37.1481544Z adding 'executorch/backends/xnnpack/utils/utils.py' 2025-06-05T23:18:37.1482368Z adding 'executorch/backends/xnnpack/utils/xnnpack_constants.py' 2025-06-05T23:18:37.1483169Z adding 'executorch/codegen/__init__.py' 2025-06-05T23:18:37.1483831Z adding 'executorch/codegen/gen.py' 2025-06-05T23:18:37.1484420Z adding 'executorch/codegen/model.py' 2025-06-05T23:18:37.1485009Z adding 'executorch/codegen/parse.py' 2025-06-05T23:18:37.1485614Z adding 'executorch/codegen/api/__init__.py' 2025-06-05T23:18:37.1486284Z adding 'executorch/codegen/api/custom_ops.py' 2025-06-05T23:18:37.1486933Z adding 'executorch/codegen/api/et_cpp.py' 2025-06-05T23:18:37.1487571Z adding 'executorch/codegen/api/unboxing.py' 2025-06-05T23:18:37.1488315Z adding 'executorch/codegen/api/types/__init__.py' 2025-06-05T23:18:37.1489053Z adding 'executorch/codegen/api/types/signatures.py' 2025-06-05T23:18:37.1489768Z adding 'executorch/codegen/api/types/types.py' 2025-06-05T23:18:37.1490578Z adding 'executorch/codegen/test/test_executorch_custom_ops.py' 2025-06-05T23:18:37.1491604Z adding 'executorch/codegen/test/test_executorch_gen.py' 2025-06-05T23:18:37.1492446Z adding 'executorch/codegen/test/test_executorch_signatures.py' 2025-06-05T23:18:37.1493320Z adding 'executorch/codegen/test/test_executorch_types.py' 2025-06-05T23:18:37.1494164Z adding 'executorch/codegen/test/test_executorch_unboxing.py' 2025-06-05T23:18:37.1495014Z adding 'executorch/codegen/test/test_selective_build.py' 2025-06-05T23:18:37.1495736Z adding 'executorch/codegen/tools/__init__.py' 2025-06-05T23:18:37.1496411Z adding 'executorch/codegen/tools/gen_all_oplist.py' 2025-06-05T23:18:37.1497095Z adding 'executorch/codegen/tools/gen_oplist.py' 2025-06-05T23:18:37.1497909Z adding 'executorch/codegen/tools/gen_ops_def.py' 2025-06-05T23:18:37.4779304Z adding 'executorch/codegen/tools/gen_selected_op_variants.py' 2025-06-05T23:18:37.4780258Z adding 'executorch/codegen/tools/merge_yaml.py' 2025-06-05T23:18:37.4780912Z adding 'executorch/codegen/tools/yaml_util.py' 2025-06-05T23:18:37.4781747Z adding 'executorch/codegen/tools/test/test_gen_all_oplist.py' 2025-06-05T23:18:37.4782536Z adding 'executorch/codegen/tools/test/test_gen_oplist.py' 2025-06-05T23:18:37.4783464Z adding 'executorch/codegen/tools/test/test_gen_oplist_real_model.py' 2025-06-05T23:18:37.4784396Z adding 'executorch/codegen/tools/test/test_gen_selected_op_variants.py' 2025-06-05T23:18:37.4784915Z adding 'executorch/data/bin/__init__.py' 2025-06-05T23:18:37.4785490Z adding 'executorch/data/bin/flatc' 2025-06-05T23:18:37.4786061Z adding 'executorch/devtools/__init__.py' 2025-06-05T23:18:37.4786729Z adding 'executorch/devtools/backend_debug/__init__.py' 2025-06-05T23:18:37.4787324Z adding 'executorch/devtools/backend_debug/delegation_info.py' 2025-06-05T23:18:37.4787856Z adding 'executorch/devtools/backend_debug/tests/test_delegation_info.py' 2025-06-05T23:18:37.4788356Z adding 'executorch/devtools/bundled_program/config.py' 2025-06-05T23:18:37.4788777Z adding 'executorch/devtools/bundled_program/core.py' 2025-06-05T23:18:37.4789183Z adding 'executorch/devtools/bundled_program/version.py' 2025-06-05T23:18:37.4789645Z adding 'executorch/devtools/bundled_program/schema/__init__.py' 2025-06-05T23:18:37.4790208Z adding 'executorch/devtools/bundled_program/schema/bundled_program_schema.fbs' 2025-06-05T23:18:37.4790814Z adding 'executorch/devtools/bundled_program/schema/bundled_program_schema.py' 2025-06-05T23:18:37.4791565Z adding 'executorch/devtools/bundled_program/schema/scalar_type.fbs' 2025-06-05T23:18:37.4792101Z adding 'executorch/devtools/bundled_program/schema/test/test_schema.py' 2025-06-05T23:18:37.4792658Z adding 'executorch/devtools/bundled_program/serialize/__init__.py' 2025-06-05T23:18:37.4793231Z adding 'executorch/devtools/bundled_program/serialize/bundled_program_schema.fbs' 2025-06-05T23:18:37.4794144Z adding 'executorch/devtools/bundled_program/serialize/scalar_type.fbs' 2025-06-05T23:18:37.4795228Z adding 'executorch/devtools/bundled_program/serialize/test/test_serialize.py' 2025-06-05T23:18:37.4796108Z adding 'executorch/devtools/bundled_program/test/test_bundle_data.py' 2025-06-05T23:18:37.4797083Z adding 'executorch/devtools/bundled_program/test/test_config.py' 2025-06-05T23:18:37.4798013Z adding 'executorch/devtools/bundled_program/test/test_end2end.py' 2025-06-05T23:18:37.4798861Z adding 'executorch/devtools/bundled_program/util/test_util.py' 2025-06-05T23:18:37.4799739Z adding 'executorch/devtools/debug_format/base_schema.py' 2025-06-05T23:18:37.4800359Z adding 'executorch/devtools/debug_format/et_schema.py' 2025-06-05T23:18:37.4800816Z adding 'executorch/devtools/etdump/etdump_schema_flatcc.fbs' 2025-06-05T23:18:37.4801395Z adding 'executorch/devtools/etdump/scalar_type.fbs' 2025-06-05T23:18:37.4801805Z adding 'executorch/devtools/etdump/schema_flatcc.py' 2025-06-05T23:18:37.4802194Z adding 'executorch/devtools/etdump/serialize.py' 2025-06-05T23:18:37.4802629Z adding 'executorch/devtools/etdump/tests/serialize_test.py' 2025-06-05T23:18:37.4803248Z adding 'executorch/devtools/etrecord/__init__.py' 2025-06-05T23:18:37.4804039Z adding 'executorch/devtools/etrecord/_etrecord.py' 2025-06-05T23:18:37.4804830Z adding 'executorch/devtools/etrecord/tests/etrecord_test.py' 2025-06-05T23:18:37.4805370Z adding 'executorch/devtools/inspector/__init__.py' 2025-06-05T23:18:37.4806039Z adding 'executorch/devtools/inspector/_inspector.py' 2025-06-05T23:18:37.4806832Z adding 'executorch/devtools/inspector/_inspector_utils.py' 2025-06-05T23:18:37.4807671Z adding 'executorch/devtools/inspector/_intermediate_output_capturer.py' 2025-06-05T23:18:37.4808294Z adding 'executorch/devtools/inspector/inspector_cli.py' 2025-06-05T23:18:37.4809036Z adding 'executorch/devtools/inspector/tests/event_blocks_test.py' 2025-06-05T23:18:37.4809863Z adding 'executorch/devtools/inspector/tests/inspector_test.py' 2025-06-05T23:18:37.4810889Z adding 'executorch/devtools/inspector/tests/inspector_test_utils.py' 2025-06-05T23:18:37.4811730Z adding 'executorch/devtools/inspector/tests/inspector_utils_test.py' 2025-06-05T23:18:37.4812762Z adding 'executorch/devtools/inspector/tests/intermediate_output_capturer_test.py' 2025-06-05T23:18:37.4813910Z adding 'executorch/devtools/size_analysis_tool/size_analysis_tool.py' 2025-06-05T23:18:37.4814498Z adding 'executorch/devtools/size_analysis_tool/size_analysis_tool_test.py' 2025-06-05T23:18:37.4815024Z adding 'executorch/devtools/visualization/__init__.py' 2025-06-05T23:18:37.4815848Z adding 'executorch/devtools/visualization/visualization_utils.py' 2025-06-05T23:18:37.4816861Z adding 'executorch/devtools/visualization/visualization_utils_test.py' 2025-06-05T23:18:37.4817691Z adding 'executorch/examples/apple/coreml/llama/export.py' 2025-06-05T23:18:37.4818606Z adding 'executorch/examples/apple/coreml/llama/llama_transformer.py' 2025-06-05T23:18:37.4819521Z adding 'executorch/examples/apple/coreml/llama/run.py' 2025-06-05T23:18:37.4820249Z adding 'executorch/examples/apple/coreml/llama/test.py' 2025-06-05T23:18:37.4821058Z adding 'executorch/examples/apple/coreml/llama/utils.py' 2025-06-05T23:18:37.4821871Z adding 'executorch/examples/apple/coreml/scripts/debugger_cli.py' 2025-06-05T23:18:37.4822368Z adding 'executorch/examples/apple/coreml/scripts/export.py' 2025-06-05T23:18:37.4823229Z adding 'executorch/examples/apple/coreml/scripts/extract_coreml_models.py' 2025-06-05T23:18:37.4823626Z adding 'executorch/examples/apple/coreml/scripts/inspector_cli.py' 2025-06-05T23:18:37.4824031Z adding 'executorch/examples/apple/coreml/scripts/inspector_utils.py' 2025-06-05T23:18:37.4824379Z adding 'executorch/examples/apple/mps/scripts/bench_utils.py' 2025-06-05T23:18:37.4824653Z adding 'executorch/examples/apple/mps/scripts/mps_example.py' 2025-06-05T23:18:37.4824828Z adding 'executorch/examples/llm_pte_finetuning/__init__.py' 2025-06-05T23:18:37.4825048Z adding 'executorch/examples/llm_pte_finetuning/llama3_config.yaml' 2025-06-05T23:18:37.4825279Z adding 'executorch/examples/llm_pte_finetuning/model_exporter.py' 2025-06-05T23:18:37.4825651Z adding 'executorch/examples/llm_pte_finetuning/model_loading_lib.py' 2025-06-05T23:18:37.4826100Z adding 'executorch/examples/llm_pte_finetuning/phi3_alpaca_code_config.yaml' 2025-06-05T23:18:37.4826488Z adding 'executorch/examples/llm_pte_finetuning/phi3_config.yaml' 2025-06-05T23:18:37.4826873Z adding 'executorch/examples/llm_pte_finetuning/qwen_05b_config.yaml' 2025-06-05T23:18:37.4827167Z adding 'executorch/examples/llm_pte_finetuning/runner.py' 2025-06-05T23:18:37.4827437Z adding 'executorch/examples/llm_pte_finetuning/training_lib.py' 2025-06-05T23:18:37.4827572Z adding 'executorch/examples/models/__init__.py' 2025-06-05T23:18:37.4827802Z adding 'executorch/examples/models/checkpoint.py' 2025-06-05T23:18:37.4827952Z adding 'executorch/examples/models/model_base.py' 2025-06-05T23:18:37.4828106Z adding 'executorch/examples/models/model_factory.py' 2025-06-05T23:18:37.4828312Z adding 'executorch/examples/models/deeplab_v3/__init__.py' 2025-06-05T23:18:37.4828591Z adding 'executorch/examples/models/deeplab_v3/model.py' 2025-06-05T23:18:37.4828857Z adding 'executorch/examples/models/edsr/__init__.py' 2025-06-05T23:18:37.4829090Z adding 'executorch/examples/models/edsr/model.py' 2025-06-05T23:18:37.4829427Z adding 'executorch/examples/models/efficient_sam/__init__.py' 2025-06-05T23:18:37.4829751Z adding 'executorch/examples/models/efficient_sam/model.py' 2025-06-05T23:18:37.4830323Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/build_efficient_sam.py' 2025-06-05T23:18:37.4830635Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam.py' 2025-06-05T23:18:37.4831085Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_decoder.py' 2025-06-05T23:18:37.4831407Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_encoder.py' 2025-06-05T23:18:37.4831687Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/mlp.py' 2025-06-05T23:18:37.4832013Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/two_way_transformer.py' 2025-06-05T23:18:37.4832196Z adding 'executorch/examples/models/emformer_rnnt/__init__.py' 2025-06-05T23:18:37.4832414Z adding 'executorch/examples/models/emformer_rnnt/model.py' 2025-06-05T23:18:37.4832723Z adding 'executorch/examples/models/inception_v3/__init__.py' 2025-06-05T23:18:37.4833034Z adding 'executorch/examples/models/inception_v3/model.py' 2025-06-05T23:18:37.4833351Z adding 'executorch/examples/models/inception_v4/__init__.py' 2025-06-05T23:18:37.4833663Z adding 'executorch/examples/models/inception_v4/model.py' 2025-06-05T23:18:37.4833953Z adding 'executorch/examples/models/llama/__init__.py' 2025-06-05T23:18:37.4834239Z adding 'executorch/examples/models/llama/attention.py' 2025-06-05T23:18:37.4834490Z adding 'executorch/examples/models/llama/eval_llama.py' 2025-06-05T23:18:37.4834678Z adding 'executorch/examples/models/llama/eval_llama_lib.py' 2025-06-05T23:18:37.4834844Z adding 'executorch/examples/models/llama/export_llama.py' 2025-06-05T23:18:37.4835027Z adding 'executorch/examples/models/llama/export_llama_lib.py' 2025-06-05T23:18:37.4835176Z adding 'executorch/examples/models/llama/fairseq2.py' 2025-06-05T23:18:37.4835351Z adding 'executorch/examples/models/llama/hf_download.py' 2025-06-05T23:18:37.4835587Z adding 'executorch/examples/models/llama/install_requirement_helper.py' 2025-06-05T23:18:37.4835776Z adding 'executorch/examples/models/llama/llama_transformer.py' 2025-06-05T23:18:37.4835929Z adding 'executorch/examples/models/llama/model.py' 2025-06-05T23:18:37.4836096Z adding 'executorch/examples/models/llama/model_args.py' 2025-06-05T23:18:37.4836232Z adding 'executorch/examples/models/llama/norm.py' 2025-06-05T23:18:37.4836411Z adding 'executorch/examples/models/llama/rope.py' 2025-06-05T23:18:37.4836734Z adding 'executorch/examples/models/llama/static_attention.py' 2025-06-05T23:18:37.4837066Z adding 'executorch/examples/models/llama/evaluate/__init__.py' 2025-06-05T23:18:37.4837432Z adding 'executorch/examples/models/llama/evaluate/eager_eval.py' 2025-06-05T23:18:37.4837839Z adding 'executorch/examples/models/llama/experimental/generate.py' 2025-06-05T23:18:37.4838273Z adding 'executorch/examples/models/llama/experimental/load_gguf_q4_0.py' 2025-06-05T23:18:37.4838569Z adding 'executorch/examples/models/llama/experimental/subclass.py' 2025-06-05T23:18:37.4838820Z adding 'executorch/examples/models/llama/experimental/test_subclass.py' 2025-06-05T23:18:37.4839057Z adding 'executorch/examples/models/llama/runner/eager.py' 2025-06-05T23:18:37.4839494Z adding 'executorch/examples/models/llama/runner/generation.py' 2025-06-05T23:18:37.4839813Z adding 'executorch/examples/models/llama/runner/native.py' 2025-06-05T23:18:37.4840288Z adding 'executorch/examples/models/llama/source_transformation/__init__.py' 2025-06-05T23:18:37.4840861Z adding 'executorch/examples/models/llama/source_transformation/apply_spin_quant_r1_r2.py' 2025-06-05T23:18:37.4841181Z adding 'executorch/examples/models/llama/source_transformation/attention.py' 2025-06-05T23:18:37.4841456Z adding 'executorch/examples/models/llama/source_transformation/attention_sink.py' 2025-06-05T23:18:37.5196245Z adding 'executorch/examples/models/llama/source_transformation/custom_kv_cache.py' 2025-06-05T23:18:37.5196664Z adding 'executorch/examples/models/llama/source_transformation/lora.py' 2025-06-05T23:18:37.5197225Z adding 'executorch/examples/models/llama/source_transformation/pre_quantization.py' 2025-06-05T23:18:37.5197652Z adding 'executorch/examples/models/llama/source_transformation/prune_vocab.py' 2025-06-05T23:18:37.5198144Z adding 'executorch/examples/models/llama/source_transformation/quantize.py' 2025-06-05T23:18:37.5198398Z adding 'executorch/examples/models/llama/source_transformation/rms_norm.py' 2025-06-05T23:18:37.5198753Z adding 'executorch/examples/models/llama/source_transformation/rope.py' 2025-06-05T23:18:37.5198984Z adding 'executorch/examples/models/llama/source_transformation/sdpa.py' 2025-06-05T23:18:37.5199262Z adding 'executorch/examples/models/llama/source_transformation/spin_quant.py' 2025-06-05T23:18:37.5199664Z adding 'executorch/examples/models/llama/source_transformation/test_attention_sink.py' 2025-06-05T23:18:37.5199977Z adding 'executorch/examples/models/llama/source_transformation/test_quantized_kv_cache.py' 2025-06-05T23:18:37.5200333Z adding 'executorch/examples/models/llama/source_transformation/test_quantized_sdpa.py' 2025-06-05T23:18:37.5200687Z adding 'executorch/examples/models/llama/source_transformation/test_sdpa_with_quantized_kv_cache.py' 2025-06-05T23:18:37.5200971Z adding 'executorch/examples/models/llama/source_transformation/vulkan_rope.py' 2025-06-05T23:18:37.5201243Z adding 'executorch/examples/models/llama/tests/test_export_llama_lib.py' 2025-06-05T23:18:37.5201546Z adding 'executorch/examples/models/llama/tests/test_pre_quantization_transforms.py' 2025-06-05T23:18:37.5201828Z adding 'executorch/examples/models/llama/tests/test_replace_kv_cache.py' 2025-06-05T23:18:37.5202054Z adding 'executorch/examples/models/llama/tests/test_ring_attention.py' 2025-06-05T23:18:37.5202290Z adding 'executorch/examples/models/llama/tests/test_ring_kv_cache.py' 2025-06-05T23:18:37.5202631Z adding 'executorch/examples/models/llama/tests/test_simple_sdpa.py' 2025-06-05T23:18:37.5202924Z adding 'executorch/examples/models/llama/tests/test_static_attention.py' 2025-06-05T23:18:37.5203250Z adding 'executorch/examples/models/llama/tokenizer/tiktoken.py' 2025-06-05T23:18:37.5203491Z adding 'executorch/examples/models/llama3_2_vision/__init__.py' 2025-06-05T23:18:37.5203807Z adding 'executorch/examples/models/llama3_2_vision/preprocess/__init__.py' 2025-06-05T23:18:37.5204123Z adding 'executorch/examples/models/llama3_2_vision/preprocess/export_preprocess.py' 2025-06-05T23:18:37.5204386Z adding 'executorch/examples/models/llama3_2_vision/preprocess/model.py' 2025-06-05T23:18:37.5204658Z adding 'executorch/examples/models/llama3_2_vision/preprocess/test_preprocess.py' 2025-06-05T23:18:37.5204889Z adding 'executorch/examples/models/llama3_2_vision/runner/eager.py' 2025-06-05T23:18:37.5205198Z adding 'executorch/examples/models/llama3_2_vision/runner/exported.py' 2025-06-05T23:18:37.5205513Z adding 'executorch/examples/models/llama3_2_vision/runner/generation.py' 2025-06-05T23:18:37.5205783Z adding 'executorch/examples/models/llama3_2_vision/runner/native.py' 2025-06-05T23:18:37.5206058Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/model.py' 2025-06-05T23:18:37.5206328Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/test/__init__.py' 2025-06-05T23:18:37.5206794Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/test/test_text_decoder.py' 2025-06-05T23:18:37.5207050Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/__init__.py' 2025-06-05T23:18:37.5207752Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/model.py' 2025-06-05T23:18:37.5208554Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/test/__init__.py' 2025-06-05T23:18:37.5209331Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/test/test_vision_encoder.py' 2025-06-05T23:18:37.5209968Z adding 'executorch/examples/models/llava/__init__.py' 2025-06-05T23:18:37.5210452Z adding 'executorch/examples/models/llava/export_llava.py' 2025-06-05T23:18:37.5210866Z adding 'executorch/examples/models/llava/model.py' 2025-06-05T23:18:37.5211354Z adding 'executorch/examples/models/llava/test/test_llava.py' 2025-06-05T23:18:37.5211895Z adding 'executorch/examples/models/llava/test/test_pte.py' 2025-06-05T23:18:37.5212323Z adding 'executorch/examples/models/lstm/__init__.py' 2025-06-05T23:18:37.5212779Z adding 'executorch/examples/models/lstm/model.py' 2025-06-05T23:18:37.5213226Z adding 'executorch/examples/models/mobilebert/__init__.py' 2025-06-05T23:18:37.5213674Z adding 'executorch/examples/models/mobilebert/model.py' 2025-06-05T23:18:37.5214114Z adding 'executorch/examples/models/mobilenet_v2/__init__.py' 2025-06-05T23:18:37.5214575Z adding 'executorch/examples/models/mobilenet_v2/model.py' 2025-06-05T23:18:37.5215101Z adding 'executorch/examples/models/mobilenet_v3/__init__.py' 2025-06-05T23:18:37.5215549Z adding 'executorch/examples/models/mobilenet_v3/model.py' 2025-06-05T23:18:37.5216001Z adding 'executorch/examples/models/moshi/mimi/test_mimi.py' 2025-06-05T23:18:37.5216444Z adding 'executorch/examples/models/phi-3-mini/__init__.py' 2025-06-05T23:18:37.5216891Z adding 'executorch/examples/models/phi-3-mini/eager.py' 2025-06-05T23:18:37.5217375Z adding 'executorch/examples/models/phi-3-mini/export_phi-3-mini.py' 2025-06-05T23:18:37.5217886Z adding 'executorch/examples/models/phi-3-mini/phi_3_mini.py' 2025-06-05T23:18:37.5218365Z adding 'executorch/examples/models/phi-3-mini/static_cache.py' 2025-06-05T23:18:37.5218925Z adding 'executorch/examples/models/phi-3-mini-lora/export_model.py' 2025-06-05T23:18:37.5219418Z adding 'executorch/examples/models/phi_4_mini/__init__.py' 2025-06-05T23:18:37.5219894Z adding 'executorch/examples/models/phi_4_mini/convert_weights.py' 2025-06-05T23:18:37.5220385Z adding 'executorch/examples/models/qwen2_5/__init__.py' 2025-06-05T23:18:37.5220829Z adding 'executorch/examples/models/qwen2_5/convert_weights.py' 2025-06-05T23:18:37.5221281Z adding 'executorch/examples/models/qwen3/__init__.py' 2025-06-05T23:18:37.5221721Z adding 'executorch/examples/models/qwen3/convert_weights.py' 2025-06-05T23:18:37.5222154Z adding 'executorch/examples/models/resnet/__init__.py' 2025-06-05T23:18:37.5222682Z adding 'executorch/examples/models/resnet/model.py' 2025-06-05T23:18:37.5223226Z adding 'executorch/examples/models/smollm2/__init__.py' 2025-06-05T23:18:37.5223699Z adding 'executorch/examples/models/smollm2/convert_weights.py' 2025-06-05T23:18:37.5224144Z adding 'executorch/examples/models/test/__init__.py' 2025-06-05T23:18:37.5224568Z adding 'executorch/examples/models/test/test_export.py' 2025-06-05T23:18:37.5225024Z adding 'executorch/examples/models/torchvision_vit/__init__.py' 2025-06-05T23:18:37.5225551Z adding 'executorch/examples/models/torchvision_vit/model.py' 2025-06-05T23:18:37.5226028Z adding 'executorch/examples/models/toy_model/__init__.py' 2025-06-05T23:18:37.5226464Z adding 'executorch/examples/models/toy_model/model.py' 2025-06-05T23:18:37.5226894Z adding 'executorch/examples/models/wav2letter/__init__.py' 2025-06-05T23:18:37.5227340Z adding 'executorch/examples/models/wav2letter/model.py' 2025-06-05T23:18:37.5227725Z adding 'executorch/exir/__init__.py' 2025-06-05T23:18:37.5228101Z adding 'executorch/exir/_warnings.py' 2025-06-05T23:18:37.5228426Z adding 'executorch/exir/common.py' 2025-06-05T23:18:37.5228736Z adding 'executorch/exir/control_flow.py' 2025-06-05T23:18:37.5229071Z adding 'executorch/exir/delegate.py' 2025-06-05T23:18:37.5229379Z adding 'executorch/exir/delegate.pyi' 2025-06-05T23:18:37.5229720Z adding 'executorch/exir/dim_order_utils.py' 2025-06-05T23:18:37.5230051Z adding 'executorch/exir/dynamic_shape.py' 2025-06-05T23:18:37.5230381Z adding 'executorch/exir/error.py' 2025-06-05T23:18:37.5230685Z adding 'executorch/exir/graph.py' 2025-06-05T23:18:37.5230986Z adding 'executorch/exir/graph_module.py' 2025-06-05T23:18:37.5231346Z adding 'executorch/exir/lowered_backend_module.py' 2025-06-05T23:18:37.5231690Z adding 'executorch/exir/memory.py' 2025-06-05T23:18:37.5232012Z adding 'executorch/exir/memory_planning.py' 2025-06-05T23:18:37.5232339Z adding 'executorch/exir/pass_base.py' 2025-06-05T23:18:37.5232723Z adding 'executorch/exir/pass_manager.py' 2025-06-05T23:18:37.5233047Z adding 'executorch/exir/print_program.py' 2025-06-05T23:18:37.5233380Z adding 'executorch/exir/scalar_type.py' 2025-06-05T23:18:37.5233752Z adding 'executorch/exir/schema.py' 2025-06-05T23:18:37.5234047Z adding 'executorch/exir/sym_util.py' 2025-06-05T23:18:37.5234410Z adding 'executorch/exir/tensor.py' 2025-06-05T23:18:37.5234812Z adding 'executorch/exir/tracer.py' 2025-06-05T23:18:37.5235119Z adding 'executorch/exir/types.py' 2025-06-05T23:18:37.5235410Z adding 'executorch/exir/version.py' 2025-06-05T23:18:37.5235719Z adding 'executorch/exir/wrap.py' 2025-06-05T23:18:37.5236032Z adding 'executorch/exir/_serialize/__init__.py' 2025-06-05T23:18:37.5236406Z adding 'executorch/exir/_serialize/_cord.py' 2025-06-05T23:18:37.5236779Z adding 'executorch/exir/_serialize/_dataclass.py' 2025-06-05T23:18:37.5237159Z adding 'executorch/exir/_serialize/_flatbuffer.py' 2025-06-05T23:18:37.5237577Z adding 'executorch/exir/_serialize/_named_data_store.py' 2025-06-05T23:18:37.5238012Z adding 'executorch/exir/_serialize/_program.py' 2025-06-05T23:18:37.5238413Z adding 'executorch/exir/_serialize/_serialize.py' 2025-06-05T23:18:37.5238847Z adding 'executorch/exir/_serialize/data_serializer.py' 2025-06-05T23:18:37.5239384Z adding 'executorch/exir/_serialize/padding.py' 2025-06-05T23:18:37.5239748Z adding 'executorch/exir/_serialize/program.fbs' 2025-06-05T23:18:37.5240132Z adding 'executorch/exir/_serialize/scalar_type.fbs' 2025-06-05T23:18:37.5240531Z adding 'executorch/exir/_serialize/test/__init__.py' 2025-06-05T23:18:37.5240924Z adding 'executorch/exir/_serialize/test/test_cord.py' 2025-06-05T23:18:37.5241446Z adding 'executorch/exir/_serialize/test/test_flatbuffer.py' 2025-06-05T23:18:37.5241918Z adding 'executorch/exir/_serialize/test/test_named_data_store.py' 2025-06-05T23:18:37.5242394Z adding 'executorch/exir/_serialize/test/test_program.py' 2025-06-05T23:18:37.5242790Z adding 'executorch/exir/backend/backend_api.py' 2025-06-05T23:18:37.5243183Z adding 'executorch/exir/backend/backend_details.py' 2025-06-05T23:18:37.5243631Z adding 'executorch/exir/backend/compile_spec_schema.py' 2025-06-05T23:18:37.5244223Z adding 'executorch/exir/backend/operator_support.py' 2025-06-05T23:18:37.5244625Z adding 'executorch/exir/backend/partitioner.py' 2025-06-05T23:18:37.5244983Z adding 'executorch/exir/backend/utils.py' 2025-06-05T23:18:37.5245476Z adding 'executorch/exir/backend/canonical_partitioners/all_node_partitioner.py' 2025-06-05T23:18:37.5246108Z adding 'executorch/exir/backend/canonical_partitioners/config_partitioner.py' 2025-06-05T23:18:37.5246778Z adding 'executorch/exir/backend/canonical_partitioners/duplicate_constant_node_pass.py' 2025-06-05T23:18:37.5247555Z adding 'executorch/exir/backend/canonical_partitioners/duplicate_dequant_node_pass.py' 2025-06-05T23:18:37.5248245Z adding 'executorch/exir/backend/canonical_partitioners/pattern_op_partitioner.py' 2025-06-05T23:18:37.5248848Z adding 'executorch/exir/backend/test/backend_with_compiler_demo.py' 2025-06-05T23:18:37.5249474Z adding 'executorch/exir/backend/test/backend_with_delegate_mapping_demo.py' 2025-06-05T23:18:37.5250054Z adding 'executorch/exir/backend/test/backend_with_named_data_map.py' 2025-06-05T23:18:37.5797471Z adding 'executorch/exir/backend/test/backend_with_preprocess_all_demo.py' 2025-06-05T23:18:37.5798514Z adding 'executorch/exir/backend/test/hta_partitioner_demo.py' 2025-06-05T23:18:37.5799437Z adding 'executorch/exir/backend/test/op_partitioner_demo.py' 2025-06-05T23:18:37.5800109Z adding 'executorch/exir/backend/test/qnn_backend_demo.py' 2025-06-05T23:18:37.5800622Z adding 'executorch/exir/backend/test/test_backend_with_named_data_map.py' 2025-06-05T23:18:37.5801122Z adding 'executorch/exir/backend/test/test_backends.py' 2025-06-05T23:18:37.5801576Z adding 'executorch/exir/backend/test/test_backends_lifted.py' 2025-06-05T23:18:37.5802050Z adding 'executorch/exir/backend/test/test_backends_nested.py' 2025-06-05T23:18:37.5802683Z adding 'executorch/exir/backend/test/test_compatibility.py' 2025-06-05T23:18:37.5803212Z adding 'executorch/exir/backend/test/test_debug_handle_map.py' 2025-06-05T23:18:37.5803994Z adding 'executorch/exir/backend/test/test_delegate_map_builder.py' 2025-06-05T23:18:37.5804503Z adding 'executorch/exir/backend/test/test_graph_partition.py' 2025-06-05T23:18:37.5805006Z adding 'executorch/exir/backend/test/test_lowered_backend_module.py' 2025-06-05T23:18:37.5805522Z adding 'executorch/exir/backend/test/test_partitioner.py' 2025-06-05T23:18:37.5806052Z adding 'executorch/exir/backend/test/test_passes.py' 2025-06-05T23:18:37.5806636Z adding 'executorch/exir/backend/test/test_to_backend_multi_method.py' 2025-06-05T23:18:37.5807110Z adding 'executorch/exir/backend/test/test_utils.py' 2025-06-05T23:18:37.5807574Z adding 'executorch/exir/backend/test/demos/test_delegate_aten_mode.py' 2025-06-05T23:18:37.5808223Z adding 'executorch/exir/backend/test/demos/test_xnnpack_qnnpack.py' 2025-06-05T23:18:37.5808896Z adding 'executorch/exir/backend/test/demos/rpc/executor_backend_partitioner.py' 2025-06-05T23:18:37.5809547Z adding 'executorch/exir/backend/test/demos/rpc/executor_backend_preprocess.py' 2025-06-05T23:18:37.5810129Z adding 'executorch/exir/backend/test/demos/rpc/test_rpc.py' 2025-06-05T23:18:37.5810635Z adding 'executorch/exir/capture/__init__.py' 2025-06-05T23:18:37.5811114Z adding 'executorch/exir/capture/_capture.py' 2025-06-05T23:18:37.5811457Z adding 'executorch/exir/capture/_config.py' 2025-06-05T23:18:37.5811812Z adding 'executorch/exir/capture/_unlift.py' 2025-06-05T23:18:37.5812152Z adding 'executorch/exir/dialects/__init__.py' 2025-06-05T23:18:37.5812503Z adding 'executorch/exir/dialects/_ops.py' 2025-06-05T23:18:37.5812850Z adding 'executorch/exir/dialects/backend/_ops.py' 2025-06-05T23:18:37.5813307Z adding 'executorch/exir/dialects/backend/test/test_backend_ops.py' 2025-06-05T23:18:37.5813921Z adding 'executorch/exir/dialects/edge/_ops.py' 2025-06-05T23:18:37.5814424Z adding 'executorch/exir/dialects/edge/edge.yaml' 2025-06-05T23:18:37.5814870Z adding 'executorch/exir/dialects/edge/arg/model.py' 2025-06-05T23:18:37.5815252Z adding 'executorch/exir/dialects/edge/arg/type.py' 2025-06-05T23:18:37.5815659Z adding 'executorch/exir/dialects/edge/dtype/runner.py' 2025-06-05T23:18:37.5816135Z adding 'executorch/exir/dialects/edge/dtype/supported.py' 2025-06-05T23:18:37.5816661Z adding 'executorch/exir/dialects/edge/dtype/utils.py' 2025-06-05T23:18:37.5817061Z adding 'executorch/exir/dialects/edge/op/api.py' 2025-06-05T23:18:37.5817523Z adding 'executorch/exir/dialects/edge/op/sample_input.py' 2025-06-05T23:18:37.5817978Z adding 'executorch/exir/dialects/edge/op/test/test_api.py' 2025-06-05T23:18:37.5818389Z adding 'executorch/exir/dialects/edge/spec/gen.py' 2025-06-05T23:18:37.5818788Z adding 'executorch/exir/dialects/edge/spec/utils.py' 2025-06-05T23:18:37.5819216Z adding 'executorch/exir/dialects/edge/test/test_edge_ops.py' 2025-06-05T23:18:37.5819798Z adding 'executorch/exir/dialects/edge/test/test_edge_yaml.py' 2025-06-05T23:18:37.5820274Z adding 'executorch/exir/dialects/test/test_exir_dialect_ops.py' 2025-06-05T23:18:37.5820720Z adding 'executorch/exir/emit/__init__.py' 2025-06-05T23:18:37.5821178Z adding 'executorch/exir/emit/_emit_program.py' 2025-06-05T23:18:37.5821578Z adding 'executorch/exir/emit/_emitter.py' 2025-06-05T23:18:37.5821937Z adding 'executorch/exir/emit/test/test_emit.py' 2025-06-05T23:18:37.5822349Z adding 'executorch/exir/operator/convert.py' 2025-06-05T23:18:37.5822706Z adding 'executorch/exir/operator/manip.py' 2025-06-05T23:18:37.5823037Z adding 'executorch/exir/operator/util.py' 2025-06-05T23:18:37.5823427Z adding 'executorch/exir/operator/test/test_operator.py' 2025-06-05T23:18:37.5823830Z adding 'executorch/exir/passes/__init__.py' 2025-06-05T23:18:37.5824259Z adding 'executorch/exir/passes/_quant_patterns_and_replacements.py' 2025-06-05T23:18:37.5824806Z adding 'executorch/exir/passes/const_prop_pass.py' 2025-06-05T23:18:37.5825202Z adding 'executorch/exir/passes/constant_prop_pass.py' 2025-06-05T23:18:37.5825652Z adding 'executorch/exir/passes/debug_handle_generator_pass.py' 2025-06-05T23:18:37.5826143Z adding 'executorch/exir/passes/dim_order_ops_registry.py' 2025-06-05T23:18:37.5826627Z adding 'executorch/exir/passes/dynamic_shape_prop_pass.py' 2025-06-05T23:18:37.5827109Z adding 'executorch/exir/passes/executorch_prim_ops_registry.py' 2025-06-05T23:18:37.5827578Z adding 'executorch/exir/passes/external_constants_pass.py' 2025-06-05T23:18:37.5828013Z adding 'executorch/exir/passes/init_mutable_pass.py' 2025-06-05T23:18:37.5828476Z adding 'executorch/exir/passes/insert_write_back_for_buffers_pass.py' 2025-06-05T23:18:37.5828976Z adding 'executorch/exir/passes/memory_format_ops_pass.py' 2025-06-05T23:18:37.5829417Z adding 'executorch/exir/passes/memory_planning_pass.py' 2025-06-05T23:18:37.5829851Z adding 'executorch/exir/passes/normalize_transpose_pass.py' 2025-06-05T23:18:37.5830347Z adding 'executorch/exir/passes/normalize_view_copy_base_pass.py' 2025-06-05T23:18:37.5830787Z adding 'executorch/exir/passes/pass_registry.py' 2025-06-05T23:18:37.5831217Z adding 'executorch/exir/passes/prune_empty_tensors_pass.py' 2025-06-05T23:18:37.5831639Z adding 'executorch/exir/passes/quant_fusion_pass.py' 2025-06-05T23:18:37.5832039Z adding 'executorch/exir/passes/quantize_io_pass.py' 2025-06-05T23:18:37.5832471Z adding 'executorch/exir/passes/remove_graph_asserts_pass.py' 2025-06-05T23:18:37.5832943Z adding 'executorch/exir/passes/remove_mixed_type_operators.py' 2025-06-05T23:18:37.5833385Z adding 'executorch/exir/passes/remove_noop_pass.py' 2025-06-05T23:18:37.5833824Z adding 'executorch/exir/passes/remove_unused_parameters_pass.py' 2025-06-05T23:18:37.5834320Z adding 'executorch/exir/passes/replace_aten_with_edge_pass.py' 2025-06-05T23:18:37.5834855Z adding 'executorch/exir/passes/replace_broken_ops_with_function_ops_pass.py' 2025-06-05T23:18:37.5835428Z adding 'executorch/exir/passes/replace_edge_with_backend_pass.py' 2025-06-05T23:18:37.5835911Z adding 'executorch/exir/passes/replace_sym_size_op_pass.py' 2025-06-05T23:18:37.5836394Z adding 'executorch/exir/passes/replace_view_copy_with_view_pass.py' 2025-06-05T23:18:37.5836881Z adding 'executorch/exir/passes/scalar_to_tensor_pass.py' 2025-06-05T23:18:37.5837284Z adding 'executorch/exir/passes/spec_prop_pass.py' 2025-06-05T23:18:37.5837688Z adding 'executorch/exir/passes/sym_shape_eval_pass.py' 2025-06-05T23:18:37.5838090Z adding 'executorch/exir/passes/sym_to_tensor_pass.py' 2025-06-05T23:18:37.5838523Z adding 'executorch/exir/passes/weights_to_outputs_pass.py' 2025-06-05T23:18:37.5838934Z adding 'executorch/exir/program/__init__.py' 2025-06-05T23:18:37.5839291Z adding 'executorch/exir/program/_fake_program.py' 2025-06-05T23:18:37.5839664Z adding 'executorch/exir/program/_program.py' 2025-06-05T23:18:37.5840021Z adding 'executorch/exir/program/test/__init__.py' 2025-06-05T23:18:37.5840501Z adding 'executorch/exir/program/test/test_fake_program.py' 2025-06-05T23:18:37.5840927Z adding 'executorch/exir/program/test/test_program.py' 2025-06-05T23:18:37.5841313Z adding 'executorch/exir/serde/__init__.py' 2025-06-05T23:18:37.5841669Z adding 'executorch/exir/serde/export_serialize.py' 2025-06-05T23:18:37.5842042Z adding 'executorch/exir/serde/schema.py' 2025-06-05T23:18:37.5842391Z adding 'executorch/exir/serde/schema_check.py' 2025-06-05T23:18:37.5842739Z adding 'executorch/exir/serde/serialize.py' 2025-06-05T23:18:37.5843079Z adding 'executorch/exir/serde/union.py' 2025-06-05T23:18:37.5843407Z adding 'executorch/exir/tests/asr_joiner.py' 2025-06-05T23:18:37.5843823Z adding 'executorch/exir/tests/common.py' 2025-06-05T23:18:37.5844183Z adding 'executorch/exir/tests/control_flow_models.py' 2025-06-05T23:18:37.5844602Z adding 'executorch/exir/tests/dynamic_shape_models.py' 2025-06-05T23:18:37.5844971Z adding 'executorch/exir/tests/models.py' 2025-06-05T23:18:37.5845409Z adding 'executorch/exir/tests/test_arg_validator.py' 2025-06-05T23:18:37.5845800Z adding 'executorch/exir/tests/test_capture.py' 2025-06-05T23:18:37.5846149Z adding 'executorch/exir/tests/test_common.py' 2025-06-05T23:18:37.5846544Z adding 'executorch/exir/tests/test_delegate.py' 2025-06-05T23:18:37.5846927Z adding 'executorch/exir/tests/test_dim_order_utils.py' 2025-06-05T23:18:37.5847389Z adding 'executorch/exir/tests/test_dynamic_shape_propagation.py' 2025-06-05T23:18:37.5847809Z adding 'executorch/exir/tests/test_error.py' 2025-06-05T23:18:37.5848179Z adding 'executorch/exir/tests/test_joint_graph.py' 2025-06-05T23:18:37.5848599Z adding 'executorch/exir/tests/test_memory_format_ops_pass.py' 2025-06-05T23:18:37.5849092Z adding 'executorch/exir/tests/test_memory_format_ops_pass_aten.py' 2025-06-05T23:18:37.5849613Z adding 'executorch/exir/tests/test_memory_format_ops_pass_utils.py' 2025-06-05T23:18:37.5850076Z adding 'executorch/exir/tests/test_memory_planning.py' 2025-06-05T23:18:37.5850480Z adding 'executorch/exir/tests/test_op_convert.py' 2025-06-05T23:18:37.5850849Z adding 'executorch/exir/tests/test_pass_infra.py' 2025-06-05T23:18:37.5851222Z adding 'executorch/exir/tests/test_passes.py' 2025-06-05T23:18:37.5851595Z adding 'executorch/exir/tests/test_print_program.py' 2025-06-05T23:18:37.5852049Z adding 'executorch/exir/tests/test_prune_empty_tensors_pass.py' 2025-06-05T23:18:37.5852520Z adding 'executorch/exir/tests/test_quant_fusion_pass.py' 2025-06-05T23:18:37.5852927Z adding 'executorch/exir/tests/test_quantization.py' 2025-06-05T23:18:37.5853346Z adding 'executorch/exir/tests/test_quantize_io_pass.py' 2025-06-05T23:18:37.5853817Z adding 'executorch/exir/tests/test_remove_unused_parameters_pass.py' 2025-06-05T23:18:37.5854310Z adding 'executorch/exir/tests/test_remove_view_copy.py' 2025-06-05T23:18:37.5854691Z adding 'executorch/exir/tests/test_serde.py' 2025-06-05T23:18:37.5855049Z adding 'executorch/exir/tests/test_tensor.py' 2025-06-05T23:18:37.5855417Z adding 'executorch/exir/tests/test_tracer.py' 2025-06-05T23:18:37.5855782Z adding 'executorch/exir/tests/test_verification.py' 2025-06-05T23:18:37.5856165Z adding 'executorch/exir/tests/test_warnings.py' 2025-06-05T23:18:37.5856523Z adding 'executorch/exir/tests/transformer.py' 2025-06-05T23:18:37.5856918Z adding 'executorch/exir/verification/arg_validator.py' 2025-06-05T23:18:37.5857312Z adding 'executorch/exir/verification/dev_html.py' 2025-06-05T23:18:37.5857716Z adding 'executorch/exir/verification/interpreter.py' 2025-06-05T23:18:37.5858118Z adding 'executorch/exir/verification/verifier.py' 2025-06-05T23:18:37.5858545Z adding 'executorch/exir/verification/test/test_verifier.py' 2025-06-05T23:18:37.5858991Z adding 'executorch/extension/export_util/__init__.py' 2025-06-05T23:18:37.5859383Z adding 'executorch/extension/export_util/utils.py' 2025-06-05T23:18:37.5859787Z adding 'executorch/extension/flat_tensor/__init__.py' 2025-06-05T23:18:37.5860231Z adding 'executorch/extension/flat_tensor/serialize/__init__.py' 2025-06-05T23:18:37.5860777Z adding 'executorch/extension/flat_tensor/serialize/flat_tensor.fbs' 2025-06-05T23:18:37.5861320Z adding 'executorch/extension/flat_tensor/serialize/flat_tensor_schema.py' 2025-06-05T23:18:38.2184740Z adding 'executorch/extension/flat_tensor/serialize/scalar_type.fbs' 2025-06-05T23:18:38.2185740Z adding 'executorch/extension/flat_tensor/serialize/serialize.py' 2025-06-05T23:18:38.2186505Z adding 'executorch/extension/flat_tensor/test/test_serialize.py' 2025-06-05T23:18:38.2186971Z adding 'executorch/extension/gguf_util/convert_main.py' 2025-06-05T23:18:38.2187425Z adding 'executorch/extension/gguf_util/converter.py' 2025-06-05T23:18:38.2187832Z adding 'executorch/extension/gguf_util/load_gguf.py' 2025-06-05T23:18:38.2188299Z adding 'executorch/extension/gguf_util/converters/llama_converter.py' 2025-06-05T23:18:38.2188894Z adding 'executorch/extension/llm/custom_ops/__init__.py' 2025-06-05T23:18:38.2189562Z adding 'executorch/extension/llm/custom_ops/custom_ops.py' 2025-06-05T23:18:38.2190075Z adding 'executorch/extension/llm/custom_ops/libcustom_ops_aot_lib.so' 2025-06-05T23:18:38.2190602Z adding 'executorch/extension/llm/custom_ops/model_sharding.py' 2025-06-05T23:18:38.2191415Z adding 'executorch/extension/llm/custom_ops/op_tile_crop_aot.py' 2025-06-05T23:18:38.2191948Z adding 'executorch/extension/llm/custom_ops/preprocess_custom_ops.py' 2025-06-05T23:18:38.2192511Z adding 'executorch/extension/llm/custom_ops/test_preprocess_custom_ops.py' 2025-06-05T23:18:38.2193082Z adding 'executorch/extension/llm/custom_ops/test_quantized_sdpa.py' 2025-06-05T23:18:38.2193619Z adding 'executorch/extension/llm/custom_ops/test_sdpa_with_kv_cache.py' 2025-06-05T23:18:38.2194162Z adding 'executorch/extension/llm/custom_ops/test_update_cache.py' 2025-06-05T23:18:38.2194748Z adding 'executorch/extension/llm/custom_ops/spinquant/special_hadamard_code_gen.py' 2025-06-05T23:18:38.2195571Z adding 'executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/example.py' 2025-06-05T23:18:38.2196227Z adding 'executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/gen.py' 2025-06-05T23:18:38.2196742Z adding 'executorch/extension/llm/export/__init__.py' 2025-06-05T23:18:38.2197146Z adding 'executorch/extension/llm/export/builder.py' 2025-06-05T23:18:38.2197563Z adding 'executorch/extension/llm/export/export_passes.py' 2025-06-05T23:18:38.2198022Z adding 'executorch/extension/llm/export/partitioner_lib.py' 2025-06-05T23:18:38.2198485Z adding 'executorch/extension/llm/export/quantizer_lib.py' 2025-06-05T23:18:38.2199041Z adding 'executorch/extension/llm/export/test_export_passes.py' 2025-06-05T23:18:38.2199514Z adding 'executorch/extension/llm/export/test/__init__.py' 2025-06-05T23:18:38.2199961Z adding 'executorch/extension/llm/export/test/test_builder.py' 2025-06-05T23:18:38.2200415Z adding 'executorch/extension/llm/modules/__init__.py' 2025-06-05T23:18:38.2200874Z adding 'executorch/extension/llm/modules/_position_embeddings.py' 2025-06-05T23:18:38.2201358Z adding 'executorch/extension/llm/modules/attention.py' 2025-06-05T23:18:38.2201777Z adding 'executorch/extension/llm/modules/kv_cache.py' 2025-06-05T23:18:38.2202198Z adding 'executorch/extension/llm/modules/test/__init__.py' 2025-06-05T23:18:38.2202682Z adding 'executorch/extension/llm/modules/test/test_attention.py' 2025-06-05T23:18:38.2203174Z adding 'executorch/extension/llm/modules/test/test_kv_cache.py' 2025-06-05T23:18:38.2203791Z adding 'executorch/extension/llm/modules/test/test_position_embeddings.py' 2025-06-05T23:18:38.2204422Z adding 'executorch/extension/llm/tokenizers/setup.py' 2025-06-05T23:18:38.2205095Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/__init__.py' 2025-06-05T23:18:38.2205828Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/constants.py' 2025-06-05T23:18:38.2206558Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/hf_tokenizer.py' 2025-06-05T23:18:38.2207531Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/llama2c.py' 2025-06-05T23:18:38.2208230Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tiktoken.py' 2025-06-05T23:18:38.2208982Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/__init__.py' 2025-06-05T23:18:38.2209815Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/__init__.py' 2025-06-05T23:18:38.2210778Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/convert.py' 2025-06-05T23:18:38.2211508Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/__init__.py' 2025-06-05T23:18:38.2212218Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/constants.py' 2025-06-05T23:18:38.2212918Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/hf_tokenizer.py' 2025-06-05T23:18:38.2213660Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/llama2c.py' 2025-06-05T23:18:38.2214282Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tiktoken.py' 2025-06-05T23:18:38.2214931Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/__init__.py' 2025-06-05T23:18:38.2215707Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/__init__.py' 2025-06-05T23:18:38.2216494Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/convert.py' 2025-06-05T23:18:38.2217181Z adding 'executorch/extension/llm/tokenizers/test/test_tiktoken.py' 2025-06-05T23:18:38.2217785Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/conanfile.py' 2025-06-05T23:18:38.2218487Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/create_lts.py' 2025-06-05T23:18:38.2219270Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/abseil.podspec.gen.py' 2025-06-05T23:18:38.2220144Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/copts.py' 2025-06-05T23:18:38.2221049Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/generate_copts.py' 2025-06-05T23:18:38.2222040Z adding 'executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts/check_structure.py' 2025-06-05T23:18:38.2222864Z adding 'executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl/filterbr.py' 2025-06-05T23:18:38.2223664Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate/amalgamate.py' 2025-06-05T23:18:38.2224573Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer/nlohmann-json.py' 2025-06-05T23:18:38.2225470Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis/generate_natvis.py' 2025-06-05T23:18:38.2226295Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/serve_header/serve_header.py' 2025-06-05T23:18:38.2227044Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateCommon.py' 2025-06-05T23:18:38.2227752Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateTest.py' 2025-06-05T23:18:38.2228440Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcd.py' 2025-06-05T23:18:38.2229148Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpHeader.py' 2025-06-05T23:18:38.2229985Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpTables.py' 2025-06-05T23:18:38.2230749Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateCommon.py' 2025-06-05T23:18:38.2231441Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateDates.py' 2025-06-05T23:18:38.2232141Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateRelease.py' 2025-06-05T23:18:38.2232827Z adding 'executorch/extension/llm/tokenizers/third-party/re2/benchlog/benchplot.py' 2025-06-05T23:18:38.2233481Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/re2.py' 2025-06-05T23:18:38.2234151Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/re2_test.py' 2025-06-05T23:18:38.2234788Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/setup.py' 2025-06-05T23:18:38.2235465Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/toolchains/generate.py' 2025-06-05T23:18:38.2236209Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_casefold.py' 2025-06-05T23:18:38.2237022Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_groups.py' 2025-06-05T23:18:38.2237726Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/unicode.py' 2025-06-05T23:18:38.2238397Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/setup.py' 2025-06-05T23:18:38.2239211Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/__init__.py' 2025-06-05T23:18:38.2240215Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/_version.py' 2025-06-05T23:18:38.2241324Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_model_pb2.py' 2025-06-05T23:18:38.2242472Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_pb2.py' 2025-06-05T23:18:38.2243382Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/__init__.py' 2025-06-05T23:18:38.2244317Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/sentencepiece_test.py' 2025-06-05T23:18:38.2245128Z adding 'executorch/extension/module/test/resources/gen_bundled_program.py' 2025-06-05T23:18:38.2245842Z adding 'executorch/extension/pybindings/_portable_lib.cpython-310-x86_64-linux-gnu.so' 2025-06-05T23:18:38.2246413Z adding 'executorch/extension/pybindings/portable_lib.py' 2025-06-05T23:18:38.2246908Z adding 'executorch/extension/pybindings/pybindings.pyi' 2025-06-05T23:18:38.2247389Z adding 'executorch/extension/pybindings/test/make_test.py' 2025-06-05T23:18:38.2247954Z adding 'executorch/extension/pybindings/test/test_backend_pybinding.py' 2025-06-05T23:18:38.2248499Z adding 'executorch/extension/pybindings/test/test_pybindings.py' 2025-06-05T23:18:38.2248953Z adding 'executorch/extension/pytree/__init__.py' 2025-06-05T23:18:38.2249382Z adding 'executorch/extension/pytree/test/test.py' 2025-06-05T23:18:38.2249802Z adding 'executorch/extension/training/__init__.py' 2025-06-05T23:18:38.2250268Z adding 'executorch/extension/training/examples/XOR/export_model.py' 2025-06-05T23:18:38.2250824Z adding 'executorch/extension/training/examples/XOR/model.py' 2025-06-05T23:18:38.2251352Z adding 'executorch/extension/training/examples/XOR/test/test_export.py' 2025-06-05T23:18:38.2251940Z adding 'executorch/extension/training/pybindings/_training_lib.pyi' 2025-06-05T23:18:38.2252536Z adding 'executorch/extension/training/pybindings/_training_module.py' 2025-06-05T23:18:38.2253113Z adding 'executorch/extension/training/pybindings/test/test.py' 2025-06-05T23:18:38.8784037Z adding 'executorch/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h' 2025-06-05T23:18:38.8785043Z adding 'executorch/include/executorch/extension/kernel_util/meta_programming.h' 2025-06-05T23:18:38.8785667Z adding 'executorch/include/executorch/extension/kernel_util/type_list.h' 2025-06-05T23:18:38.8786221Z adding 'executorch/include/executorch/extension/tensor/tensor.h' 2025-06-05T23:18:38.8786779Z adding 'executorch/include/executorch/extension/tensor/tensor_accessor.h' 2025-06-05T23:18:38.8787344Z adding 'executorch/include/executorch/extension/tensor/tensor_ptr.h' 2025-06-05T23:18:38.8787919Z adding 'executorch/include/executorch/extension/tensor/tensor_ptr_maker.h' 2025-06-05T23:18:38.8788517Z adding 'executorch/include/executorch/extension/threadpool/cpuinfo_utils.h' 2025-06-05T23:18:38.8789354Z adding 'executorch/include/executorch/extension/threadpool/threadpool.h' 2025-06-05T23:18:38.8789966Z adding 'executorch/include/executorch/extension/threadpool/threadpool_guard.h' 2025-06-05T23:18:38.8790548Z adding 'executorch/include/executorch/runtime/core/array_ref.h' 2025-06-05T23:18:38.8791227Z adding 'executorch/include/executorch/runtime/core/data_loader.h' 2025-06-05T23:18:38.8791720Z adding 'executorch/include/executorch/runtime/core/defines.h' 2025-06-05T23:18:38.8792193Z adding 'executorch/include/executorch/runtime/core/error.h' 2025-06-05T23:18:38.8792645Z adding 'executorch/include/executorch/runtime/core/evalue.h' 2025-06-05T23:18:38.8793147Z adding 'executorch/include/executorch/runtime/core/event_tracer.h' 2025-06-05T23:18:38.8793688Z adding 'executorch/include/executorch/runtime/core/event_tracer_hooks.h' 2025-06-05T23:18:38.8794312Z adding 'executorch/include/executorch/runtime/core/event_tracer_hooks_delegate.h' 2025-06-05T23:18:38.8795047Z adding 'executorch/include/executorch/runtime/core/freeable_buffer.h' 2025-06-05T23:18:38.8795576Z adding 'executorch/include/executorch/runtime/core/function_ref.h' 2025-06-05T23:18:38.8796152Z adding 'executorch/include/executorch/runtime/core/hierarchical_allocator.h' 2025-06-05T23:18:38.8796789Z adding 'executorch/include/executorch/runtime/core/memory_allocator.h' 2025-06-05T23:18:38.8797345Z adding 'executorch/include/executorch/runtime/core/named_data_map.h' 2025-06-05T23:18:38.8797843Z adding 'executorch/include/executorch/runtime/core/result.h' 2025-06-05T23:18:38.8798311Z adding 'executorch/include/executorch/runtime/core/span.h' 2025-06-05T23:18:38.8798761Z adding 'executorch/include/executorch/runtime/core/tag.h' 2025-06-05T23:18:38.8799237Z adding 'executorch/include/executorch/runtime/core/tensor_layout.h' 2025-06-05T23:18:38.8799814Z adding 'executorch/include/executorch/runtime/core/tensor_shape_dynamism.h' 2025-06-05T23:18:38.8800404Z adding 'executorch/include/executorch/runtime/core/exec_aten/exec_aten.h' 2025-06-05T23:18:38.8801078Z adding 'executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h' 2025-06-05T23:18:38.8801817Z adding 'executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h' 2025-06-05T23:18:38.8802501Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/dim_order_util.h' 2025-06-05T23:18:38.8803185Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h' 2025-06-05T23:18:38.8803972Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h' 2025-06-05T23:18:38.8804733Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h' 2025-06-05T23:18:38.8805429Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_util.h' 2025-06-05T23:18:38.8806075Z adding 'executorch/include/executorch/runtime/core/portable_type/bfloat16.h' 2025-06-05T23:18:38.8806731Z adding 'executorch/include/executorch/runtime/core/portable_type/bfloat16_math.h' 2025-06-05T23:18:38.8807381Z adding 'executorch/include/executorch/runtime/core/portable_type/bits_types.h' 2025-06-05T23:18:38.8808011Z adding 'executorch/include/executorch/runtime/core/portable_type/complex.h' 2025-06-05T23:18:38.8808611Z adding 'executorch/include/executorch/runtime/core/portable_type/device.h' 2025-06-05T23:18:38.8809207Z adding 'executorch/include/executorch/runtime/core/portable_type/half.h' 2025-06-05T23:18:38.8809811Z adding 'executorch/include/executorch/runtime/core/portable_type/optional.h' 2025-06-05T23:18:38.8810428Z adding 'executorch/include/executorch/runtime/core/portable_type/qint_types.h' 2025-06-05T23:18:38.8811047Z adding 'executorch/include/executorch/runtime/core/portable_type/scalar.h' 2025-06-05T23:18:38.8811661Z adding 'executorch/include/executorch/runtime/core/portable_type/scalar_type.h' 2025-06-05T23:18:38.8812311Z adding 'executorch/include/executorch/runtime/core/portable_type/string_view.h' 2025-06-05T23:18:38.8813004Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor.h' 2025-06-05T23:18:38.8813629Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor_impl.h' 2025-06-05T23:18:38.8814303Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor_options.h' 2025-06-05T23:18:38.8815006Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h' 2025-06-05T23:18:38.8815746Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h' 2025-06-05T23:18:38.8816492Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h' 2025-06-05T23:18:38.8817271Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h' 2025-06-05T23:18:38.8818127Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h' 2025-06-05T23:18:38.8818920Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h' 2025-06-05T23:18:38.8819633Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h' 2025-06-05T23:18:38.8820842Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h' 2025-06-05T23:18:38.8821609Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h' 2025-06-05T23:18:38.8822343Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h' 2025-06-05T23:18:38.8823081Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h' 2025-06-05T23:18:38.8823857Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h' 2025-06-05T23:18:38.8824664Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h' 2025-06-05T23:18:38.8825445Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h' 2025-06-05T23:18:38.8826108Z adding 'executorch/include/executorch/runtime/kernel/kernel_includes.h' 2025-06-05T23:18:38.8826715Z adding 'executorch/include/executorch/runtime/kernel/kernel_runtime_context.h' 2025-06-05T23:18:38.8827439Z adding 'executorch/include/executorch/runtime/kernel/operator_registry.h' 2025-06-05T23:18:38.8828065Z adding 'executorch/include/executorch/runtime/kernel/thread_parallel_interface.h' 2025-06-05T23:18:38.8828780Z adding 'executorch/include/executorch/runtime/kernel/test/test_util.h' 2025-06-05T23:18:38.8829544Z adding 'executorch/include/executorch/runtime/platform/abort.h' 2025-06-05T23:18:38.8830192Z adding 'executorch/include/executorch/runtime/platform/assert.h' 2025-06-05T23:18:38.8830855Z adding 'executorch/include/executorch/runtime/platform/clock.h' 2025-06-05T23:18:38.8831544Z adding 'executorch/include/executorch/runtime/platform/compat_unistd.h' 2025-06-05T23:18:38.8832277Z adding 'executorch/include/executorch/runtime/platform/compiler.h' 2025-06-05T23:18:38.8832951Z adding 'executorch/include/executorch/runtime/platform/log.h' 2025-06-05T23:18:38.8833606Z adding 'executorch/include/executorch/runtime/platform/platform.h' 2025-06-05T23:18:38.8834307Z adding 'executorch/include/executorch/runtime/platform/profiler.h' 2025-06-05T23:18:38.8834976Z adding 'executorch/include/executorch/runtime/platform/runtime.h' 2025-06-05T23:18:38.8835647Z adding 'executorch/include/executorch/runtime/platform/system.h' 2025-06-05T23:18:38.8836293Z adding 'executorch/include/executorch/runtime/platform/types.h' 2025-06-05T23:18:38.8837212Z adding 'executorch/include/executorch/runtime/platform/test/pal_spy.h' 2025-06-05T23:18:38.8838223Z adding 'executorch/include/executorch/runtime/platform/test/stub_platform.h' 2025-06-05T23:18:38.8839078Z adding 'executorch/kernels/quantized/__init__.py' 2025-06-05T23:18:38.8839842Z adding 'executorch/kernels/quantized/libquantized_ops_aot_lib.so' 2025-06-05T23:18:38.8840621Z adding 'executorch/kernels/quantized/quantized.yaml' 2025-06-05T23:18:38.8841496Z adding 'executorch/kernels/quantized/test/supported_features_def.yaml' 2025-06-05T23:18:38.8842313Z adding 'executorch/kernels/quantized/test/test_out_variants.py' 2025-06-05T23:18:38.8843252Z adding 'executorch/kernels/quantized/test/test_quant_dequant_per_token.py' 2025-06-05T23:18:38.8844124Z adding 'executorch/runtime/__init__.py' 2025-06-05T23:18:38.8844767Z adding 'executorch/runtime/kernel/test/functions.yaml' 2025-06-05T23:18:38.8845445Z adding 'executorch/runtime/test/test_runtime.py' 2025-06-05T23:18:38.8846006Z adding 'executorch/schema/program.fbs' 2025-06-05T23:18:38.8846561Z adding 'executorch/schema/scalar_type.fbs' 2025-06-05T23:18:38.8847207Z adding 'executorch/share/cmake/executorch-config.cmake' 2025-06-05T23:18:38.8847939Z adding 'executorch/util/activation_memory_profiler.py' 2025-06-05T23:18:38.8848526Z adding 'executorch/util/collect_env.py' 2025-06-05T23:18:38.8849106Z adding 'executorch/util/python_profiler.py' 2025-06-05T23:18:38.8849949Z adding 'executorch-0.7.0a0+bd57234.dist-info/licenses/LICENSE' 2025-06-05T23:18:38.8850739Z adding 'executorch-0.7.0a0+bd57234.dist-info/METADATA' 2025-06-05T23:18:38.8851513Z adding 'executorch-0.7.0a0+bd57234.dist-info/WHEEL' 2025-06-05T23:18:38.8852270Z adding 'executorch-0.7.0a0+bd57234.dist-info/entry_points.txt' 2025-06-05T23:18:38.8853087Z adding 'executorch-0.7.0a0+bd57234.dist-info/top_level.txt' 2025-06-05T23:18:38.8853714Z adding 'executorch-0.7.0a0+bd57234.dist-info/RECORD' 2025-06-05T23:18:38.8854286Z removing pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:18:38.8855223Z Building wheel for executorch (pyproject.toml) ... [?25l[?25hdone 2025-06-05T23:18:38.8856620Z Created wheel for executorch: filename=executorch-0.7.0a0+bd57234-cp310-cp310-linux_x86_64.whl size=9987128 sha256=039082ba6ae63c987d9aef7fa76ee870cc1daa5f71de881c2e5dc078fdfa85d4 2025-06-05T23:18:38.8857881Z Stored in directory: /tmp/pip-ephem-wheel-cache-cy4xoakn/wheels/9e/f0/2b/6a778c77421b91e006bef425e288a1e5c7c35b04c51317756b 2025-06-05T23:18:38.8858564Z Successfully built executorch 2025-06-05T23:18:43.3267990Z Installing collected packages: flatbuffers, tabulate, pyaml, protobuf, execnet, pytest, cattrs, pytest-xdist, pytest-rerunfailures, coremltools, executorch 2025-06-05T23:18:43.3269696Z [?25l 2025-06-05T23:18:43.3270285Z  changing mode of /opt/conda/envs/py_3.10/bin/tabulate to 755 2025-06-05T23:18:43.3270770Z 2025-06-05T23:18:43.3271184Z  changing mode of /opt/conda/envs/py_3.10/bin/pyaml to 755 2025-06-05T23:18:43.3271680Z 2025-06-05T23:18:43.3272228Z  ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:18:43.3273003Z  Attempting uninstall: pytest 2025-06-05T23:18:43.3273851Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:18:43.3274697Z  Found existing installation: pytest 7.2.0 2025-06-05T23:18:43.3275693Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:18:43.3276456Z  Uninstalling pytest-7.2.0: 2025-06-05T23:18:43.3277225Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:18:43.3278217Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:18:43.3279252Z  Removing file or directory /opt/conda/envs/py_3.10/bin/py.test 2025-06-05T23:18:43.3280337Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:18:43.3281349Z  Removing file or directory /opt/conda/envs/py_3.10/bin/pytest 2025-06-05T23:18:43.3282439Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:18:43.3283975Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/__pycache__/py.cpython-310.pyc 2025-06-05T23:18:43.3285896Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:18:43.3286999Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:18:43.3288277Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/_pytest/ 2025-06-05T23:18:43.3289447Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:18:43.3290686Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/py.py 2025-06-05T23:18:43.3294433Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:18:43.3295903Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pytest-7.2.0.dist-info/ 2025-06-05T23:18:43.3297405Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:18:43.3298795Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pytest/ 2025-06-05T23:18:43.3300166Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:18:43.3301220Z  Successfully uninstalled pytest-7.2.0 2025-06-05T23:18:43.3302225Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:18:43.3303401Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:18:43.3304462Z  changing mode of /opt/conda/envs/py_3.10/bin/py.test to 755 2025-06-05T23:18:43.3305587Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:18:43.3306646Z  changing mode of /opt/conda/envs/py_3.10/bin/pytest to 755 2025-06-05T23:18:43.3307761Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:18:43.3309002Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:18:43.3310193Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:18:43.3311400Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:18:43.3312584Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:18:43.3313779Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:18:43.3314981Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:18:43.3316164Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:18:43.3317367Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:18:43.3318827Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:18:43.3319999Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:18:43.3321270Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:18:43.3322452Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:18:43.3323627Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:18:43.3324887Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:18:43.3326056Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:18:43.3327287Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:18:43.3328456Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:18:43.3329660Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:18:43.3330808Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:18:43.3331972Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:18:43.3333153Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:18:43.3334190Z  changing mode of /opt/conda/envs/py_3.10/bin/flatc to 755 2025-06-05T23:18:44.7267230Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:18:44.7268318Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:18:44.7269045Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11/11 [executorch] 2025-06-05T23:18:44.7269409Z [?25h 2025-06-05T23:18:44.7270561Z 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:18:44.7271657Z + pip list 2025-06-05T23:18:44.7271947Z Package Version Build Editable project location 2025-06-05T23:18:44.7272434Z ----------------------------- ------------------ ----- ----------------------------------- 2025-06-05T23:18:44.7272908Z aiohappyeyeballs 2.6.1 2025-06-05T23:18:44.7273203Z aiohttp 3.12.9 2025-06-05T23:18:44.7273474Z aiosignal 1.3.2 2025-06-05T23:18:44.7273753Z alabaster 0.7.16 2025-06-05T23:18:44.7274033Z antlr4-python3-runtime 4.9.3 2025-06-05T23:18:44.7274468Z async-timeout 5.0.1 2025-06-05T23:18:44.7274751Z attrs 25.3.0 2025-06-05T23:18:44.7275010Z babel 2.17.0 2025-06-05T23:18:44.7275339Z beautifulsoup4 4.13.4 2025-06-05T23:18:44.7275608Z black 24.4.2 2025-06-05T23:18:44.7275879Z blobfile 3.0.0 2025-06-05T23:18:44.7276142Z breathe 4.34.0 2025-06-05T23:18:44.7276414Z bs4 0.0.2 2025-06-05T23:18:44.7276672Z cattrs 25.1.1 2025-06-05T23:18:44.7276951Z certifi 2025.4.26 2025-06-05T23:18:44.7277238Z charset-normalizer 3.4.2 2025-06-05T23:18:44.7277526Z clang-format 18.1.3 2025-06-05T23:18:44.7277848Z click 8.2.1 2025-06-05T23:18:44.7278116Z cmake 3.31.6 2025-06-05T23:18:44.7278380Z cmakelint 1.4.1 2025-06-05T23:18:44.7278666Z contourpy 1.3.2 2025-06-05T23:18:44.7278932Z coremltools 8.3.0 2025-06-05T23:18:44.7279212Z coverage 7.8.2 2025-06-05T23:18:44.7279474Z cycler 0.12.1 2025-06-05T23:18:44.7279754Z datasets 3.6.0 2025-06-05T23:18:44.7280028Z dill 0.3.8 2025-06-05T23:18:44.7280290Z docutils 0.16 2025-06-05T23:18:44.7280572Z exceptiongroup 1.3.0 2025-06-05T23:18:44.7280841Z execnet 2.1.1 2025-06-05T23:18:44.7281138Z executorch 0.7.0a0+bd57234 2025-06-05T23:18:44.7281436Z exhale 0.2.3 2025-06-05T23:18:44.7281716Z expecttest 0.1.6 2025-06-05T23:18:44.7281984Z filelock 3.18.0 2025-06-05T23:18:44.7282256Z flake8 6.1.0 2025-06-05T23:18:44.7282526Z flake8-breakpoint 1.1.0 2025-06-05T23:18:44.7282816Z flake8-bugbear 24.4.26 2025-06-05T23:18:44.7283121Z flake8-comprehensions 3.14.0 2025-06-05T23:18:44.7283408Z flake8-plugin-utils 1.3.3 2025-06-05T23:18:44.7283781Z flake8-pyi 23.5.0 2025-06-05T23:18:44.7284057Z flatbuffers 25.2.10 2025-06-05T23:18:44.7284346Z fonttools 4.58.1 2025-06-05T23:18:44.7284614Z frozenlist 1.6.2 2025-06-05T23:18:44.7284896Z fsspec 2025.3.0 2025-06-05T23:18:44.7285175Z hf_transfer 0.1.9 2025-06-05T23:18:44.7285452Z hf-xet 1.1.3 2025-06-05T23:18:44.7285720Z huggingface-hub 0.32.4 2025-06-05T23:18:44.7286014Z hypothesis 6.84.2 2025-06-05T23:18:44.7286292Z idna 3.10 2025-06-05T23:18:44.7286550Z imagesize 1.4.1 2025-06-05T23:18:44.7286823Z iniconfig 2.1.0 2025-06-05T23:18:44.7287081Z Jinja2 3.1.6 2025-06-05T23:18:44.7287411Z kagglehub 0.3.12 2025-06-05T23:18:44.7287676Z kiwisolver 1.4.8 2025-06-05T23:18:44.7287956Z libcst 1.1.0 2025-06-05T23:18:44.7288218Z lintrunner 0.12.7 2025-06-05T23:18:44.7288510Z lintrunner-adapters 0.12.4 2025-06-05T23:18:44.7288795Z lxml 5.4.0 2025-06-05T23:18:44.7289058Z markdown-it-py 2.2.0 2025-06-05T23:18:44.7289339Z MarkupSafe 3.0.2 2025-06-05T23:18:44.7289605Z matplotlib 3.10.3 2025-06-05T23:18:44.7289885Z mccabe 0.7.0 2025-06-05T23:18:44.7290152Z mdit-py-plugins 0.3.5 2025-06-05T23:18:44.7290434Z mdurl 0.1.2 2025-06-05T23:18:44.7290694Z moreorless 0.5.0 2025-06-05T23:18:44.7291180Z mpmath 1.3.0 2025-06-05T23:18:44.7291445Z multidict 6.4.4 2025-06-05T23:18:44.7291729Z multiprocess 0.70.16 2025-06-05T23:18:44.7292144Z mypy 1.14.1 2025-06-05T23:18:44.7292412Z mypy_extensions 1.1.0 2025-06-05T23:18:44.7292698Z myst-parser 0.18.1 2025-06-05T23:18:44.7293013Z networkx 3.4.2 2025-06-05T23:18:44.7293283Z numpy 2.2.6 2025-06-05T23:18:44.7293572Z nvidia-cublas-cu12 12.1.3.1 2025-06-05T23:18:44.7293890Z nvidia-cuda-cupti-cu12 12.1.105 2025-06-05T23:18:44.7294192Z nvidia-cuda-nvrtc-cu12 12.1.105 2025-06-05T23:18:44.7294507Z nvidia-cuda-runtime-cu12 12.1.105 2025-06-05T23:18:44.7294803Z nvidia-cudnn-cu12 9.1.0.70 2025-06-05T23:18:44.7295106Z nvidia-cufft-cu12 11.0.2.54 2025-06-05T23:18:44.7295419Z nvidia-curand-cu12 10.3.2.106 2025-06-05T23:18:44.7295725Z nvidia-cusolver-cu12 11.4.5.107 2025-06-05T23:18:44.7296048Z nvidia-cusparse-cu12 12.1.0.106 2025-06-05T23:18:44.7296347Z nvidia-nccl-cu12 2.20.5 2025-06-05T23:18:44.7296657Z nvidia-nvjitlink-cu12 12.9.41 2025-06-05T23:18:44.7296950Z nvidia-nvtx-cu12 12.1.105 2025-06-05T23:18:44.7297250Z omegaconf 2.3.0 2025-06-05T23:18:44.7297524Z packaging 25.0 2025-06-05T23:18:44.7297805Z pandas 2.2.3 2025-06-05T23:18:44.7298090Z parameterized 0.9.0 2025-06-05T23:18:44.7298359Z pathspec 0.12.1 2025-06-05T23:18:44.7298641Z pillow 11.2.1 2025-06-05T23:18:44.7298904Z pip 25.1 2025-06-05T23:18:44.7299185Z platformdirs 4.3.8 2025-06-05T23:18:44.7299449Z pluggy 1.6.0 2025-06-05T23:18:44.7299730Z propcache 0.3.1 2025-06-05T23:18:44.7299995Z protobuf 6.31.1 2025-06-05T23:18:44.7300272Z psutil 7.0.0 2025-06-05T23:18:44.7300529Z pyaml 25.5.0 2025-06-05T23:18:44.7300800Z pyarrow 20.0.0 2025-06-05T23:18:44.7301084Z pycodestyle 2.11.1 2025-06-05T23:18:44.7301353Z pycryptodomex 3.23.0 2025-06-05T23:18:44.7301636Z pyflakes 3.1.0 2025-06-05T23:18:44.7301900Z Pygments 2.19.1 2025-06-05T23:18:44.7302176Z pyparsing 3.2.3 2025-06-05T23:18:44.7302439Z pytest 8.4.0 2025-06-05T23:18:44.7302712Z pytest-cov 4.1.0 2025-06-05T23:18:44.7302991Z pytest-rerunfailures 15.1 2025-06-05T23:18:44.7303281Z pytest-xdist 3.7.0 2025-06-05T23:18:44.7303579Z python-dateutil 2.9.0.post0 2025-06-05T23:18:44.7304008Z pytorch_sphinx_theme 0.0.24 /opt/conda/src/pytorch-sphinx-theme 2025-06-05T23:18:44.7304449Z pytorch_tokenizers 0.1.0 2025-06-05T23:18:44.7304718Z pytz 2025.2 2025-06-05T23:18:44.7304999Z PyYAML 6.0.1 2025-06-05T23:18:44.7305261Z regex 2024.11.6 2025-06-05T23:18:44.7305614Z requests 2.32.3 2025-06-05T23:18:44.7305883Z ruamel.yaml 0.17.32 2025-06-05T23:18:44.7306175Z ruamel.yaml.clib 0.2.12 2025-06-05T23:18:44.7306452Z safetensors 0.5.3 2025-06-05T23:18:44.7306737Z sentencepiece 0.2.0 2025-06-05T23:18:44.7307020Z setuptools 78.1.1 2025-06-05T23:18:44.7307282Z six 1.17.0 2025-06-05T23:18:44.7307562Z snowballstemmer 3.0.1 2025-06-05T23:18:44.7307836Z sortedcontainers 2.4.0 2025-06-05T23:18:44.7308121Z soupsieve 2.7 2025-06-05T23:18:44.7308383Z Sphinx 5.3.0 2025-06-05T23:18:44.7308668Z sphinx-copybutton 0.5.0 2025-06-05T23:18:44.7308940Z sphinx_design 0.4.1 2025-06-05T23:18:44.7309220Z sphinx-gallery 0.14.0 2025-06-05T23:18:44.7309509Z sphinx_reredirects 0.1.4 2025-06-05T23:18:44.7309852Z sphinxcontrib-applehelp 2.0.0 2025-06-05T23:18:44.7310162Z sphinxcontrib-devhelp 2.0.0 2025-06-05T23:18:44.7310452Z sphinxcontrib-htmlhelp 2.1.0 2025-06-05T23:18:44.7310780Z sphinxcontrib-jsmath 1.0.1 2025-06-05T23:18:44.7311066Z sphinxcontrib-qthelp 2.0.0 2025-06-05T23:18:44.7311377Z sphinxcontrib-serializinghtml 2.0.0 2025-06-05T23:18:44.7311665Z stdlibs 2025.5.10 2025-06-05T23:18:44.7311950Z sympy 1.14.0 2025-06-05T23:18:44.7312211Z tabulate 0.9.0 2025-06-05T23:18:44.7312483Z tiktoken 0.9.0 2025-06-05T23:18:44.7312752Z timm 1.0.7 2025-06-05T23:18:44.7313010Z tokenizers 0.21.1 2025-06-05T23:18:44.7313285Z toml 0.10.2 2025-06-05T23:18:44.7313543Z tomli 2.0.1 2025-06-05T23:18:44.7313813Z tomlkit 0.13.2 2025-06-05T23:18:44.7314096Z torch 2.8.0a0+git5616fa4 2025-06-05T23:18:44.7314439Z torchao 0.12.0+gitbc68b11f 2025-06-05T23:18:44.7314762Z torchaudio 2.6.0a0+1a8f621 2025-06-05T23:18:44.7315069Z torchdata 0.11.0 2025-06-05T23:18:44.7315345Z TorchFix 0.6.0 2025-06-05T23:18:44.7315605Z torchsr 1.0.4 2025-06-05T23:18:44.7315877Z torchtune 0.6.1 2025-06-05T23:18:44.7316162Z torchvision 0.22.0a0+966da7e 2025-06-05T23:18:44.7316470Z tqdm 4.67.1 2025-06-05T23:18:44.7316733Z trailrunner 1.4.0 2025-06-05T23:18:44.7317010Z transformers 4.47.1 2025-06-05T23:18:44.7317296Z triton 3.0.0 1 2025-06-05T23:18:44.7317616Z typing_extensions 4.14.0 2025-06-05T23:18:44.7317895Z typing-inspect 0.9.0 2025-06-05T23:18:44.7318177Z tzdata 2025.2 2025-06-05T23:18:44.7318450Z ufmt 2.8.0 2025-06-05T23:18:44.7318715Z urllib3 2.4.0 2025-06-05T23:18:44.7318998Z usort 1.0.8.post1 2025-06-05T23:18:44.7319279Z wheel 0.45.1 2025-06-05T23:18:44.7319559Z xxhash 3.5.0 2025-06-05T23:18:44.7319892Z yarl 1.20.0 2025-06-05T23:18:44.7320220Z zstd 1.5.5.1 2025-06-05T23:18:44.7320501Z + build_executorch_runner cmake Release 2025-06-05T23:18:44.7330077Z + [[ cmake == \b\u\c\k\2 ]] 2025-06-05T23:18:44.7330353Z + [[ cmake == \c\m\a\k\e ]] 2025-06-05T23:18:44.7330606Z + build_executorch_runner_cmake Release 2025-06-05T23:18:44.7330907Z + CMAKE_OUTPUT_DIR=cmake-out 2025-06-05T23:18:44.7331194Z + clean_executorch_install_folders 2025-06-05T23:18:44.7331481Z + ./install_executorch.sh --clean 2025-06-05T23:18:44.7331757Z Cleaning build artifacts... 2025-06-05T23:18:44.7332002Z Cleaning pip-out/... 2025-06-05T23:18:44.7332231Z Done cleaning build artifacts. 2025-06-05T23:18:44.7332594Z + mkdir cmake-out 2025-06-05T23:18:44.7332800Z + pushd cmake-out 2025-06-05T23:18:44.7333060Z /pytorch/executorch/cmake-out /pytorch/executorch 2025-06-05T23:18:44.7333384Z + [[ Release == \D\e\b\u\g ]] 2025-06-05T23:18:44.7333618Z + CXXFLAGS= 2025-06-05T23:18:44.7333792Z + CXXFLAGS= 2025-06-05T23:18:44.7334117Z + retry cmake -DPYTHON_EXECUTABLE=python -DCMAKE_BUILD_TYPE=Release .. 2025-06-05T23:18:44.7334627Z + cmake -DPYTHON_EXECUTABLE=python -DCMAKE_BUILD_TYPE=Release .. 2025-06-05T23:18:44.7335066Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:18:44.7335445Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:18:44.7335783Z -- Detecting C compiler ABI info 2025-06-05T23:18:44.7336090Z -- Detecting C compiler ABI info - done 2025-06-05T23:18:44.7336460Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:18:44.7336842Z -- Detecting C compile features 2025-06-05T23:18:44.7337126Z -- Detecting C compile features - done 2025-06-05T23:18:44.7337526Z -- Detecting CXX compiler ABI info 2025-06-05T23:18:44.7337826Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:18:44.7338220Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:18:49.0682435Z -- Detecting CXX compile features 2025-06-05T23:18:49.0683165Z -- Detecting CXX compile features - done 2025-06-05T23:18:49.0683751Z -- --- Configured Options --- 2025-06-05T23:18:49.0684091Z 2025-06-05T23:18:49.0684283Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:18:49.0684899Z -- CMAKE_SYSTEM_PROCESSOR : x86_64 2025-06-05T23:18:49.0685523Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:18:49.0686139Z -- PYTHON_EXECUTABLE : python 2025-06-05T23:18:49.0686773Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-06-05T23:18:49.0687387Z -- CMAKE_TOOLCHAIN_FILE x (unset) 2025-06-05T23:18:49.0687977Z -- BUCK2 x (unset) 2025-06-05T23:18:49.0688626Z -- EXECUTORCH_ENABLE_LOGGING : OFF 2025-06-05T23:18:49.0689251Z -- EXECUTORCH_BUILD_COREML : OFF 2025-06-05T23:18:49.0689929Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:18:49.0690539Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-06-05T23:18:49.0691708Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-06-05T23:18:49.0692654Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:18:49.0693255Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:18:49.0693880Z -- EXECUTORCH_ENABLE_EVENT_TRACER : OFF 2025-06-05T23:18:49.0694698Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-06-05T23:18:49.0695295Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-06-05T23:18:49.0695892Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : OFF 2025-06-05T23:18:49.0696524Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : OFF 2025-06-05T23:18:49.0697167Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : OFF 2025-06-05T23:18:49.0697854Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : OFF 2025-06-05T23:18:49.0698520Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : OFF 2025-06-05T23:18:49.0699150Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:18:49.0699779Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : OFF 2025-06-05T23:18:49.0700397Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : OFF 2025-06-05T23:18:49.0701005Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : OFF 2025-06-05T23:18:49.0701600Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : OFF 2025-06-05T23:18:49.0702242Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:18:49.0702859Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:18:49.0703453Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:18:49.0704096Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:18:49.0704723Z -- EXECUTORCH_BUILD_PYBIND : OFF 2025-06-05T23:18:49.0705377Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:18:49.0706229Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : OFF 2025-06-05T23:18:49.0706952Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : OFF 2025-06-05T23:18:49.0707591Z -- EXECUTORCH_BUILD_DEVTOOLS : OFF 2025-06-05T23:18:49.0708230Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:18:49.0708850Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:18:49.0709499Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:18:49.0710145Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:18:49.0710797Z -- EXECUTORCH_BUILD_XNNPACK : OFF 2025-06-05T23:18:49.0711439Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:18:49.0712094Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:18:49.0712697Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:18:49.0713275Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:18:49.0713888Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:18:49.0714710Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:18:49.0715343Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:18:49.0715998Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-06-05T23:18:49.0716724Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-06-05T23:18:49.0717360Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : ON 2025-06-05T23:18:49.0718013Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:18:49.0718652Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:18:49.0719324Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:18:49.0719932Z -- -------------------------- 2025-06-05T23:18:49.0720699Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:18:49.0722258Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:18:49.0723545Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:18:49.0724349Z CMake. 2025-06-05T23:18:49.0724534Z 2025-06-05T23:18:49.0724929Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:18:49.0725911Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:18:49.0726693Z to work with policies introduced by or earlier. 2025-06-05T23:18:49.0727137Z 2025-06-05T23:18:49.0727368Z  2025-06-05T23:18:49.0727847Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:18:49.0728719Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:18:49.0729485Z -- Setting Clang compiler options 2025-06-05T23:18:49.0730685Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:18:49.0732757Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:18:49.0734051Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:18:49.0734802Z CMake. 2025-06-05T23:18:49.0735006Z 2025-06-05T23:18:49.0735380Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:18:49.0736345Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:18:49.0737184Z to work with policies introduced by or earlier. 2025-06-05T23:18:49.0737621Z 2025-06-05T23:18:49.0737859Z  2025-06-05T23:18:49.0738991Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:18:49.0740388Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:18:49.0741142Z CMake. 2025-06-05T23:18:49.0741350Z 2025-06-05T23:18:49.0741733Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:18:49.0742731Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:18:49.0743724Z to work with policies introduced by or earlier. 2025-06-05T23:18:49.0744201Z 2025-06-05T23:18:49.0744439Z  2025-06-05T23:18:49.0744834Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-05T23:18:49.0745524Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-06-05T23:18:49.0746150Z -- Found Threads: TRUE 2025-06-05T23:18:49.0747377Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:18:49.0748735Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:18:49.0749482Z CMake. 2025-06-05T23:18:49.0749673Z 2025-06-05T23:18:49.0750073Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:18:49.0751059Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:18:49.0751947Z to work with policies introduced by or earlier. 2025-06-05T23:18:49.0752405Z 2025-06-05T23:18:49.0752627Z  2025-06-05T23:18:49.0753104Z -- Resolved buck2 as buck2. 2025-06-05T23:18:49.0753577Z -- Killing buck2 daemon 2025-06-05T23:18:49.0754009Z 'buck2 killall' 2025-06-05T23:18:49.0754438Z -- executorch: Generating source lists 2025-06-05T23:18:49.0755465Z -- executorch: Generating source file list /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:18:49.0756666Z -- executorch: Using sources file /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:18:49.0757524Z -- Generating operator lib: 2025-06-05T23:18:49.0758039Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:18:49.0758748Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:18:49.0759500Z -- ROOT_OPS: 2025-06-05T23:18:49.0759874Z -- INCLUDE_ALL_OPS: 2025-06-05T23:18:49.0762140Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out/kernels/portable/portable_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/portable/functions.yaml" 2025-06-05T23:18:49.0764242Z -- Generating kernel bindings: 2025-06-05T23:18:49.0764703Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:18:49.0765357Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:18:49.0766084Z -- CUSTOM_OPS_YAML: 2025-06-05T23:18:49.0766536Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:18:49.0769295Z 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:18:49.0772158Z -- Generating operator lib: 2025-06-05T23:18:49.0772677Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:18:49.0773204Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:18:49.0773728Z -- DEPS: executorch_core 2025-06-05T23:18:49.0774790Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:18:49.0776041Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:18:49.0776800Z CMake. 2025-06-05T23:18:49.0777015Z 2025-06-05T23:18:49.0777431Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:18:49.0778472Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:18:49.0779336Z to work with policies introduced by or earlier. 2025-06-05T23:18:49.0779787Z 2025-06-05T23:18:49.0779983Z  2025-06-05T23:18:49.0780318Z -- Looking for C++ include unistd.h 2025-06-05T23:18:49.0780857Z -- Looking for C++ include unistd.h - found 2025-06-05T23:18:49.0781418Z -- Looking for C++ include stdint.h 2025-06-05T23:18:49.0781961Z -- Looking for C++ include stdint.h - found 2025-06-05T23:18:49.0782519Z -- Looking for C++ include inttypes.h 2025-06-05T23:18:49.0783110Z -- Looking for C++ include inttypes.h - found 2025-06-05T23:18:49.0783721Z -- Looking for C++ include sys/types.h 2025-06-05T23:18:49.0784411Z -- Looking for C++ include sys/types.h - found 2025-06-05T23:18:49.0785011Z -- Looking for C++ include sys/stat.h 2025-06-05T23:18:49.0785564Z -- Looking for C++ include sys/stat.h - found 2025-06-05T23:18:49.0786160Z -- Looking for C++ include fnmatch.h 2025-06-05T23:18:49.0786724Z -- Looking for C++ include fnmatch.h - found 2025-06-05T23:18:49.0787303Z -- Looking for C++ include stddef.h 2025-06-05T23:18:49.0787867Z -- Looking for C++ include stddef.h - found 2025-06-05T23:18:49.0788417Z -- Check size of uint32_t 2025-06-05T23:18:49.0788881Z -- Check size of uint32_t - done 2025-06-05T23:18:49.0789348Z -- Looking for strtoll 2025-06-05T23:18:49.0789786Z -- Looking for strtoll - found 2025-06-05T23:18:49.0790263Z -- Configuring done (4.8s) 2025-06-05T23:18:49.0790731Z -- Generating done (0.1s) 2025-06-05T23:18:49.0791481Z -- Build files have been written to: /pytorch/executorch/cmake-out 2025-06-05T23:18:49.0792098Z + popd 2025-06-05T23:18:49.0792439Z /pytorch/executorch 2025-06-05T23:18:49.0793016Z ++ uname 2025-06-05T23:18:49.0793333Z + '[' Linux == Darwin ']' 2025-06-05T23:18:49.0793626Z ++ nproc 2025-06-05T23:18:49.0793815Z + CMAKE_JOBS=7 2025-06-05T23:18:49.0794201Z + cmake --build cmake-out -j 7 2025-06-05T23:18:49.0794835Z [ 0%] Creating directories for 'flatcc_external_project' 2025-06-05T23:18:49.0796053Z [ 1%] Creating directories for 'flatbuffers_external_project' 2025-06-05T23:18:49.0797427Z [ 1%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags.cc.o 2025-06-05T23:18:49.0799264Z [ 1%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_reporting.cc.o 2025-06-05T23:18:49.0801246Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-06-05T23:18:49.8813149Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-06-05T23:18:49.8815528Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-06-05T23:18:49.8816778Z [ 2%] No download step for 'flatcc_external_project' 2025-06-05T23:18:49.8817542Z [ 2%] No download step for 'flatbuffers_external_project' 2025-06-05T23:18:49.8818229Z [ 3%] No update step for 'flatcc_external_project' 2025-06-05T23:18:49.8818932Z [ 3%] No update step for 'flatbuffers_external_project' 2025-06-05T23:18:49.8819604Z [ 3%] No patch step for 'flatcc_external_project' 2025-06-05T23:18:49.8820256Z [ 3%] No patch step for 'flatbuffers_external_project' 2025-06-05T23:18:49.8821010Z [ 3%] Performing configure step for 'flatcc_external_project' 2025-06-05T23:18:49.8821814Z [ 4%] Performing configure step for 'flatbuffers_external_project' 2025-06-05T23:18:49.8822441Z CMake Warning: 2025-06-05T23:18:49.8822841Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:18:49.8823218Z 2025-06-05T23:18:49.8823345Z  2025-06-05T23:18:49.8823639Z CMake Warning: 2025-06-05T23:18:49.8824033Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:18:49.8824393Z 2025-06-05T23:18:49.8824534Z  2025-06-05T23:18:49.8825065Z CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:18:49.8825821Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:18:49.8826373Z CMake. 2025-06-05T23:18:49.8826539Z 2025-06-05T23:18:49.8826836Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:18:49.8827575Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:18:49.8828206Z to work with policies introduced by or earlier. 2025-06-05T23:18:49.8828528Z 2025-06-05T23:18:49.8828671Z  2025-06-05T23:18:49.8828943Z -- Proceeding with version: 24.3.25.0 2025-06-05T23:18:49.8830015Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-06-05T23:18:49.8831273Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-06-05T23:18:49.8832132Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:18:49.8833142Z [ 5%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_completions.cc.o 2025-06-05T23:18:49.8834530Z [ 5%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-06-05T23:18:49.8835424Z -- Detecting C compiler ABI info 2025-06-05T23:18:49.8836250Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-06-05T23:18:49.8837549Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-06-05T23:18:49.8839445Z [ 7%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-06-05T23:18:49.8840323Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:18:49.8840863Z -- Detecting CXX compiler ABI info 2025-06-05T23:18:49.8842054Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-06-05T23:18:49.8843415Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-06-05T23:18:49.8844751Z [ 8%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-06-05T23:18:49.8845849Z [ 8%] Linking CXX static library libgflags_nothreads.a 2025-06-05T23:18:49.8846965Z [ 8%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o 2025-06-05T23:18:49.8847822Z [ 8%] Built target gflags_nothreads_static 2025-06-05T23:18:49.8848763Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o 2025-06-05T23:18:49.8850212Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/init.c.o 2025-06-05T23:18:49.8851892Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/info.c.o 2025-06-05T23:18:49.8853218Z -- Detecting C compiler ABI info - done 2025-06-05T23:18:49.8854189Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/vendor.c.o 2025-06-05T23:18:49.8855068Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:18:49.8855441Z -- Detecting C compile features 2025-06-05T23:18:49.8855743Z -- Detecting C compile features - done 2025-06-05T23:18:49.8856483Z [ 10%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o 2025-06-05T23:18:49.8857207Z [ 11%] Linking C static library libpthreadpool.a 2025-06-05T23:18:49.8857640Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:18:49.8858078Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:18:49.8858469Z -- Setting Clang compiler options 2025-06-05T23:18:49.8859143Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:18:49.8859856Z -- Configuring done (0.3s) 2025-06-05T23:18:49.8860137Z [ 11%] Built target pthreadpool 2025-06-05T23:18:49.8860796Z [ 11%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o 2025-06-05T23:18:49.8861746Z [ 11%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o 2025-06-05T23:18:49.8862311Z -- Generating done (0.0s) 2025-06-05T23:18:49.8863189Z -- Build files have been written to: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/src/flatcc_external_project-build 2025-06-05T23:18:49.8864364Z [ 12%] Performing build step for 'flatcc_external_project' 2025-06-05T23:18:49.8865215Z [ 12%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/uarch.c.o 2025-06-05T23:18:49.8866469Z [ 12%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/name.c.o 2025-06-05T23:18:49.8867098Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:18:49.8867640Z [ 3%] Building C object src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:18:49.8868280Z [ 6%] Building C object src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:18:49.8868803Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:18:49.8869185Z -- Detecting CXX compile features 2025-06-05T23:18:49.8869494Z -- Detecting CXX compile features - done 2025-06-05T23:18:49.8869921Z -- Looking for strtof_l 2025-06-05T23:18:49.8870532Z [ 13%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o 2025-06-05T23:18:49.8871487Z [ 9%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/str_set.c.o 2025-06-05T23:18:49.8872301Z [ 12%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/ptr_set.c.o 2025-06-05T23:18:49.8873739Z [ 13%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/topology.c.o 2025-06-05T23:18:49.8875256Z [ 14%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/isa.c.o 2025-06-05T23:18:49.8876691Z [ 15%] Building C object src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:18:49.8877551Z [ 14%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o 2025-06-05T23:18:49.8878501Z [ 14%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o 2025-06-05T23:18:49.8879569Z [ 15%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o 2025-06-05T23:18:49.8880656Z [ 18%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/symbol_table.c.o 2025-06-05T23:18:49.8881628Z [ 15%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/init.c.o 2025-06-05T23:18:49.8882534Z [ 21%] Building C object src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:18:49.8883835Z [ 15%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:18:49.8885157Z [ 24%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/scope_table.c.o 2025-06-05T23:18:49.8885933Z [ 27%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/name_table.c.o 2025-06-05T23:18:49.8886936Z [ 15%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:18:49.8887912Z [ 30%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/schema_table.c.o 2025-06-05T23:18:49.8888636Z [ 33%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:18:49.8889542Z [ 15%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:18:49.8890185Z -- Looking for strtof_l - found 2025-06-05T23:18:49.8890473Z -- Looking for strtoull_l 2025-06-05T23:18:49.8892172Z [ 36%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:18:49.8892914Z [ 39%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/value_set.c.o 2025-06-05T23:18:49.8894398Z [ 16%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:18:49.8895703Z [ 16%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o 2025-06-05T23:18:49.8896753Z [ 16%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/init.c.o 2025-06-05T23:18:49.8897861Z [ 16%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:18:49.8899267Z [ 42%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:18:49.8900458Z [ 45%] Building C object src/compiler/CMakeFiles/flatcc.dir/fileio.c.o 2025-06-05T23:18:50.5820644Z [ 48%] Building C object src/compiler/CMakeFiles/flatcc.dir/parser.c.o 2025-06-05T23:18:50.5821509Z [ 48%] Built target flatccrt 2025-06-05T23:18:50.5822733Z [ 51%] Building C object src/compiler/CMakeFiles/flatcc.dir/semantics.c.o 2025-06-05T23:18:50.5824341Z [ 17%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:18:50.5826545Z [ 18%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/smallfile.c.o 2025-06-05T23:18:50.5828205Z [ 54%] Building C object src/compiler/CMakeFiles/flatcc.dir/coerce.c.o 2025-06-05T23:18:50.5829945Z [ 18%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/multiline.c.o 2025-06-05T23:18:50.5831635Z [ 57%] Building C object src/compiler/CMakeFiles/flatcc.dir/flatcc.c.o 2025-06-05T23:18:50.5833357Z [ 18%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/cpulist.c.o 2025-06-05T23:18:50.5835444Z [ 18%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-06-05T23:18:50.5836648Z -- Looking for strtoull_l - found 2025-06-05T23:18:50.5838004Z [ 18%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-06-05T23:18:50.5839209Z -- Looking for realpath 2025-06-05T23:18:50.5840605Z [ 19%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/processors.c.o 2025-06-05T23:18:50.5842696Z [ 20%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-06-05T23:18:50.5844388Z [ 60%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c.c.o 2025-06-05T23:18:50.5845909Z [ 63%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_reader.c.o 2025-06-05T23:18:50.5847660Z [ 20%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-06-05T23:18:50.5849335Z [ 66%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sort.c.o 2025-06-05T23:18:50.5850535Z [ 20%] Linking C static library libcpuinfo_internals.a 2025-06-05T23:18:50.5851268Z [ 20%] Built target cpuinfo_internals 2025-06-05T23:18:50.5852317Z [ 69%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_builder.c.o 2025-06-05T23:18:50.5858278Z [ 72%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_verifier.c.o 2025-06-05T23:18:50.5860078Z [ 75%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sorter.c.o 2025-06-05T23:18:50.5861525Z [ 20%] Linking C static library libcpuinfo.a 2025-06-05T23:18:50.5865078Z [ 78%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_parser.c.o 2025-06-05T23:18:50.5867431Z [ 81%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_printer.c.o 2025-06-05T23:18:50.5868782Z [ 20%] Built target cpuinfo 2025-06-05T23:18:50.5870433Z [ 84%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/builder.c.o 2025-06-05T23:18:50.5872538Z [ 87%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/emitter.c.o 2025-06-05T23:18:50.5873770Z -- Looking for realpath - found 2025-06-05T23:18:50.5874524Z -- CMAKE_CXX_FLAGS: "-DFLATBUFFERS_MAX_ALIGNMENT=1024" 2025-06-05T23:18:50.5875280Z -- Configuring done (1.1s) 2025-06-05T23:18:50.5876637Z [ 90%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/refmap.c.o 2025-06-05T23:18:50.5877664Z -- Generating done (0.0s) 2025-06-05T23:18:50.5879363Z -- Build files have been written to: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/src/flatbuffers_external_project-build 2025-06-05T23:18:50.5881550Z [ 20%] Performing build step for 'flatbuffers_external_project' 2025-06-05T23:18:50.5883319Z [ 2%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o 2025-06-05T23:18:50.5884678Z [ 5%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o 2025-06-05T23:18:50.5886376Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o 2025-06-05T23:18:50.5888109Z [ 10%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o 2025-06-05T23:18:50.5889918Z [ 13%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_binary.cpp.o 2025-06-05T23:18:50.5891558Z [ 15%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o 2025-06-05T23:18:50.5893384Z [ 93%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatcc.a 2025-06-05T23:18:50.5894791Z [ 93%] Built target flatcc 2025-06-05T23:18:50.5895726Z [ 96%] Building C object src/cli/CMakeFiles/flatcc_cli.dir/flatcc_cli.c.o 2025-06-05T23:18:50.5897420Z [ 18%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_csharp.cpp.o 2025-06-05T23:18:50.5899202Z [100%] Linking C executable /pytorch/executorch/third-party/flatcc/bin/flatcc 2025-06-05T23:18:50.5900523Z [ 21%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o 2025-06-05T23:18:50.5901766Z [ 23%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin.cpp.o 2025-06-05T23:18:50.5903079Z [ 26%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin_kmp.cpp.o 2025-06-05T23:18:50.5904325Z [ 28%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o 2025-06-05T23:18:50.5905615Z [100%] Built target flatcc_cli 2025-06-05T23:18:50.5906533Z [ 31%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_java.cpp.o 2025-06-05T23:18:50.5907720Z [ 21%] Performing install step for 'flatcc_external_project' 2025-06-05T23:18:50.5908503Z [ 21%] Built target flatccrt 2025-06-05T23:18:50.5908983Z [ 93%] Built target flatcc 2025-06-05T23:18:50.5909465Z [100%] Built target flatcc_cli 2025-06-05T23:18:50.5910059Z Install the project... 2025-06-05T23:18:50.5910715Z -- Install configuration: "" 2025-06-05T23:18:50.5911903Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc 2025-06-05T23:18:50.5913340Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc.h 2025-06-05T23:18:50.5914949Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_accessors.h 2025-06-05T23:18:50.5916585Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_alloc.h 2025-06-05T23:18:50.5918905Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_assert.h 2025-06-05T23:18:50.5920482Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_builder.h 2025-06-05T23:18:50.5922063Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_emitter.h 2025-06-05T23:18:50.5923700Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_endian.h 2025-06-05T23:18:50.5925471Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_epilogue.h 2025-06-05T23:18:50.5927062Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_flatbuffers.h 2025-06-05T23:18:50.5929309Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_identifier.h 2025-06-05T23:18:50.5930821Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_iov.h 2025-06-05T23:18:50.5932428Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_json_parser.h 2025-06-05T23:18:50.5933875Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_json_printer.h 2025-06-05T23:18:50.5935301Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_portable.h 2025-06-05T23:18:50.5936873Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_prologue.h 2025-06-05T23:18:50.5938350Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_refmap.h 2025-06-05T23:18:50.5939785Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_rtconfig.h 2025-06-05T23:18:50.5941205Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_types.h 2025-06-05T23:18:50.5942768Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_unaligned.h 2025-06-05T23:18:50.5944389Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_verifier.h 2025-06-05T23:18:50.5946048Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_version.h 2025-06-05T23:18:50.5947544Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable 2025-06-05T23:18:50.5948962Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/LICENSE 2025-06-05T23:18:50.5950578Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/README.md 2025-06-05T23:18:50.5952108Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_math.h 2025-06-05T23:18:50.5953657Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_parse.h 2025-06-05T23:18:50.5955728Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_print.h 2025-06-05T23:18:50.5957414Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include 2025-06-05T23:18:50.5958978Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/README 2025-06-05T23:18:50.5960695Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/linux 2025-06-05T23:18:51.1962395Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/linux/endian.h 2025-06-05T23:18:51.1964500Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std 2025-06-05T23:18:51.1966467Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/inttypes.h 2025-06-05T23:18:51.1968587Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdalign.h 2025-06-05T23:18:51.1970628Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdbool.h 2025-06-05T23:18:51.1972789Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdint.h 2025-06-05T23:18:51.1974733Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/paligned_alloc.h 2025-06-05T23:18:51.1976691Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pattributes.h 2025-06-05T23:18:51.1978550Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pbase64.h 2025-06-05T23:18:51.1980363Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pcrt.h 2025-06-05T23:18:51.1982165Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic.h 2025-06-05T23:18:51.1984099Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_pop.h 2025-06-05T23:18:51.1986312Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_push.h 2025-06-05T23:18:51.1988306Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pendian.h 2025-06-05T23:18:51.1990118Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pendian_detect.h 2025-06-05T23:18:51.1992175Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pinline.h 2025-06-05T23:18:51.1993984Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pinttypes.h 2025-06-05T23:18:51.1995873Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pmemaccess.h 2025-06-05T23:18:51.1997729Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/portable.h 2025-06-05T23:18:51.1999653Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/portable_basic.h 2025-06-05T23:18:51.2001580Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pparsefp.h 2025-06-05T23:18:51.2003502Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pparseint.h 2025-06-05T23:18:51.2005366Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pprintfp.h 2025-06-05T23:18:51.2007231Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pprintint.h 2025-06-05T23:18:51.2009039Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/prestrict.h 2025-06-05T23:18:51.2010913Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert.h 2025-06-05T23:18:51.2012933Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert_scope.h 2025-06-05T23:18:51.2014923Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdalign.h 2025-06-05T23:18:51.2016796Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdbool.h 2025-06-05T23:18:51.2018985Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdint.h 2025-06-05T23:18:51.2020862Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/punaligned.h 2025-06-05T23:18:51.2022718Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pversion.h 2025-06-05T23:18:51.2024753Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pwarnings.h 2025-06-05T23:18:51.2026681Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection 2025-06-05T23:18:51.2028294Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/README 2025-06-05T23:18:51.2030332Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_builder.h 2025-06-05T23:18:51.2032455Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_reader.h 2025-06-05T23:18:51.2034577Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_builder.h 2025-06-05T23:18:51.2036569Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_reader.h 2025-06-05T23:18:51.2038816Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_verifier.h 2025-06-05T23:18:51.2040680Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support 2025-06-05T23:18:51.2042435Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/README 2025-06-05T23:18:51.2044253Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/cdump.h 2025-06-05T23:18:51.2046044Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/elapsed.h 2025-06-05T23:18:51.2047845Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/hexdump.h 2025-06-05T23:18:51.2049580Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/readfile.h 2025-06-05T23:18:51.2051256Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/lib/libflatccrt.a 2025-06-05T23:18:51.2052771Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/lib/libflatcc.a 2025-06-05T23:18:51.2054239Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/bin/flatcc 2025-06-05T23:18:51.2055814Z [ 34%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_ts.cpp.o 2025-06-05T23:18:51.2056824Z [ 21%] Completed 'flatcc_external_project' 2025-06-05T23:18:51.2057491Z [ 21%] Built target flatcc_external_project 2025-06-05T23:18:51.2058720Z [ 21%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:18:51.2060394Z [ 21%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:18:51.2061815Z [ 36%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o 2025-06-05T23:18:51.2063029Z [ 39%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o 2025-06-05T23:18:51.2064473Z [ 22%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:18:51.2065941Z [ 42%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o 2025-06-05T23:18:51.2067461Z [ 22%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:18:51.2068910Z [ 44%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o 2025-06-05T23:18:51.2070422Z [ 22%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:18:51.2072177Z [ 22%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:18:51.2073648Z [ 47%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o 2025-06-05T23:18:51.2074861Z [ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o 2025-06-05T23:18:51.2076303Z [ 23%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:18:51.2077805Z [ 52%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o 2025-06-05T23:18:51.2078696Z [ 23%] Built target flatccrt 2025-06-05T23:18:51.2079609Z [ 55%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_swift.cpp.o 2025-06-05T23:18:51.2081003Z [ 57%] Building CXX object CMakeFiles/flatc.dir/src/file_name_saving_file_manager.cpp.o 2025-06-05T23:18:51.2082439Z [ 60%] Building CXX object CMakeFiles/flatc.dir/src/file_binary_writer.cpp.o 2025-06-05T23:18:51.2083819Z [ 63%] Building CXX object CMakeFiles/flatc.dir/src/file_writer.cpp.o 2025-06-05T23:18:51.2084973Z [ 65%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o 2025-06-05T23:18:51.2086134Z [ 68%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o 2025-06-05T23:18:51.2087382Z [ 71%] Building CXX object CMakeFiles/flatc.dir/src/binary_annotator.cpp.o 2025-06-05T23:18:51.2088899Z [ 73%] Building CXX object CMakeFiles/flatc.dir/src/annotated_binary_text_gen.cpp.o 2025-06-05T23:18:51.2090165Z [ 76%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_lua.cpp.o 2025-06-05T23:18:51.2092970Z [ 78%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_nim.cpp.o 2025-06-05T23:18:51.2094144Z [ 81%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o 2025-06-05T23:18:52.9138462Z [ 84%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o 2025-06-05T23:18:52.9139928Z [ 86%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o 2025-06-05T23:18:52.9141305Z [ 89%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o 2025-06-05T23:18:52.9142662Z [ 92%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/python_generator.cc.o 2025-06-05T23:18:52.9143956Z [ 94%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/swift_generator.cc.o 2025-06-05T23:18:52.9144740Z [ 97%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/ts_generator.cc.o 2025-06-05T23:18:52.9145675Z [100%] Linking CXX executable flatc 2025-06-05T23:18:52.9146383Z [100%] Built target flatc 2025-06-05T23:18:52.9147230Z [ 23%] Performing install step for 'flatbuffers_external_project' 2025-06-05T23:18:52.9147961Z [100%] Built target flatc 2025-06-05T23:18:52.9148506Z Install the project... 2025-06-05T23:18:52.9148985Z -- Install configuration: "" 2025-06-05T23:18:52.9150017Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers 2025-06-05T23:18:52.9151690Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/allocator.h 2025-06-05T23:18:52.9153388Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/array.h 2025-06-05T23:18:52.9155117Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/base.h 2025-06-05T23:18:52.9156836Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/buffer.h 2025-06-05T23:18:52.9158577Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/buffer_ref.h 2025-06-05T23:18:52.9160303Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/code_generator.h 2025-06-05T23:18:52.9162150Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/code_generators.h 2025-06-05T23:18:52.9164199Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/default_allocator.h 2025-06-05T23:18:52.9166053Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/detached_buffer.h 2025-06-05T23:18:52.9168121Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/file_manager.h 2025-06-05T23:18:52.9169954Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffer_builder.h 2025-06-05T23:18:52.9171862Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffers.h 2025-06-05T23:18:52.9173718Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatc.h 2025-06-05T23:18:52.9175606Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flex_flat_util.h 2025-06-05T23:18:52.9177498Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flexbuffers.h 2025-06-05T23:18:52.9179455Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/grpc.h 2025-06-05T23:18:52.9181180Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/hash.h 2025-06-05T23:18:52.9183035Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/idl.h 2025-06-05T23:18:52.9184915Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/minireflect.h 2025-06-05T23:18:52.9186766Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch 2025-06-05T23:18:52.9188628Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch/flatc_pch.h 2025-06-05T23:18:52.9190541Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch/pch.h 2025-06-05T23:18:52.9192784Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/reflection.h 2025-06-05T23:18:52.9194634Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/reflection_generated.h 2025-06-05T23:18:52.9196417Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/registry.h 2025-06-05T23:18:52.9198187Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/stl_emulation.h 2025-06-05T23:18:52.9199985Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/string.h 2025-06-05T23:18:52.9201758Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/struct.h 2025-06-05T23:18:52.9203602Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/table.h 2025-06-05T23:18:52.9205283Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/util.h 2025-06-05T23:18:52.9206949Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/vector.h 2025-06-05T23:18:52.9208665Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/vector_downward.h 2025-06-05T23:18:52.9210366Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/verifier.h 2025-06-05T23:18:52.9212221Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config.cmake 2025-06-05T23:18:52.9214112Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/BuildFlatBuffers.cmake 2025-06-05T23:18:52.9216151Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config-version.cmake 2025-06-05T23:18:52.9217748Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/bin/flatc 2025-06-05T23:18:52.9219430Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets.cmake 2025-06-05T23:18:52.9221358Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets-noconfig.cmake 2025-06-05T23:18:52.9222939Z [ 23%] Completed 'flatbuffers_external_project' 2025-06-05T23:18:52.9223623Z [ 23%] Built target flatbuffers_external_project 2025-06-05T23:18:52.9224314Z [ 23%] Generating common_schema headers 2025-06-05T23:18:52.9224870Z [ 23%] Built target common_schema 2025-06-05T23:18:52.9225520Z [ 24%] Generating program_schema headers 2025-06-05T23:18:52.9226071Z [ 24%] Built target program_schema 2025-06-05T23:18:52.9227130Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-06-05T23:18:52.9228644Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-06-05T23:18:52.9230182Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-06-05T23:18:52.9231908Z [ 26%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-06-05T23:18:52.9233287Z [ 26%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-06-05T23:18:52.9234410Z [ 26%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-06-05T23:18:52.9235469Z [ 26%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-06-05T23:18:52.9236571Z [ 27%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-06-05T23:18:52.9237624Z [ 27%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-06-05T23:18:52.9238715Z [ 27%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-06-05T23:18:52.9239815Z [ 28%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-06-05T23:18:52.9240987Z [ 28%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-06-05T23:18:52.9242272Z [ 28%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-06-05T23:18:52.9243624Z [ 29%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-06-05T23:18:52.9244717Z [ 29%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-06-05T23:18:52.9245728Z [ 29%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-06-05T23:18:52.9246768Z [ 30%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-06-05T23:18:52.9247859Z [ 30%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-06-05T23:18:52.9248917Z [ 30%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-06-05T23:18:52.9249972Z [ 30%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-06-05T23:18:52.9251104Z [ 31%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.o 2025-06-05T23:18:52.9252001Z [ 31%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:18:52.9252511Z [ 31%] Built target executorch_core 2025-06-05T23:18:55.0280720Z [ 31%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-06-05T23:18:55.0282067Z [ 31%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-06-05T23:18:55.0283708Z [ 32%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-06-05T23:18:55.0285415Z [ 32%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-06-05T23:18:55.0287013Z [ 33%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-06-05T23:18:55.0288843Z [ 33%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-06-05T23:18:55.0290737Z [ 33%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-06-05T23:18:55.0292817Z [ 33%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-06-05T23:18:55.0294834Z [ 34%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-06-05T23:18:55.0297167Z [ 34%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-06-05T23:18:55.0299115Z [ 34%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-06-05T23:18:55.0300977Z [ 35%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-06-05T23:18:55.0302742Z [ 35%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-06-05T23:18:55.0303938Z [ 35%] Linking CXX static library libexecutorch.a 2025-06-05T23:18:55.0304840Z [ 36%] Linking CXX static library libextension_threadpool.a 2025-06-05T23:18:55.0305529Z [ 36%] Built target executorch 2025-06-05T23:18:55.0306646Z [ 36%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-06-05T23:18:55.0307686Z [ 36%] Built target extension_threadpool 2025-06-05T23:18:55.0308974Z [ 37%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-06-05T23:18:55.0310778Z [ 37%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-06-05T23:18:55.0312640Z [ 37%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-06-05T23:18:55.0314581Z [ 37%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-06-05T23:18:55.0316484Z [ 38%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-06-05T23:18:55.0318325Z [ 38%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-06-05T23:18:55.0320233Z [ 38%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-06-05T23:18:55.0322258Z [ 39%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-06-05T23:18:55.0324280Z [ 39%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-06-05T23:18:55.0326186Z [ 39%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-06-05T23:18:55.0327698Z [ 40%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:18:55.0328469Z [ 40%] Built target kernels_util_all_deps 2025-06-05T23:18:55.0329751Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:18:55.0331676Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:18:55.0333441Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:18:55.0335256Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:18:55.0336896Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:18:55.0338576Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:18:55.0340253Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:18:55.0341974Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:18:55.0343736Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:18:55.0345418Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:18:55.0346922Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:18:55.0348098Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:18:55.0349745Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:18:55.0351435Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:18:55.0353135Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:18:55.0354897Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:18:55.0356635Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:18:55.0358311Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:18:55.0360022Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:18:55.0361691Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:18:55.0363523Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:18:55.0365288Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:18:55.0367033Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:18:55.0368809Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:18:55.0370578Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:18:55.0372362Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:18:55.0374095Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:18:55.0375745Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:18:55.0377492Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:18:55.0379228Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:18:55.0380904Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:18:55.0382595Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:18:55.0384381Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:18:55.0386195Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:18:55.0388087Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:18:55.0389826Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:18:55.0391287Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:18:55.0392847Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:18:55.0394469Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:18:55.0396218Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:18:55.0398064Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:18:55.0399990Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:18:55.0401649Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:18:55.0403527Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:18:55.0405260Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:18:55.0406927Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:18:55.0408579Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:18:57.2317543Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:18:57.2319380Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:18:57.2321147Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:18:57.2322961Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:18:57.2324663Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:18:57.2326368Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:18:57.2328161Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:18:57.2329909Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:18:57.2331597Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:18:57.2333363Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:18:57.2335107Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:18:57.2336730Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:18:57.2338360Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:18:57.2340031Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:18:57.2341690Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:18:57.2343375Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:18:57.2345093Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:18:57.2347057Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:18:57.2348860Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:18:57.2350625Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:18:57.2352281Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:18:57.2353872Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:18:57.2355533Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:18:57.2357373Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:18:57.2359639Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:18:57.2361527Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:18:57.2363421Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:18:57.2365094Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:18:57.2366772Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:18:57.2368557Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:18:57.2370395Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:18:57.2372247Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:18:57.2374078Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:18:57.2375915Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:18:57.2377707Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:18:57.2379383Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:18:57.2381101Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:18:57.2382908Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:18:57.2384686Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:18:57.2386496Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:18:57.2388336Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:18:57.2390478Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:18:57.2392618Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:18:57.2394329Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:18:57.2395981Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:18:57.2397795Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:18:57.2399493Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:18:57.2401296Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:18:57.2402904Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:18:57.2404581Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:18:57.2406229Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:18:57.2407966Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:18:57.2409713Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:18:57.2411301Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:18:57.2413239Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:18:57.2414867Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:18:57.2416601Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:18:57.2418311Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:18:57.2419415Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:18:57.2420359Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:18:57.2421302Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:18:57.2422219Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:18:57.2423064Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:18:57.2423917Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:18:57.2424775Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:18:57.2425658Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:18:57.2426610Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:18:57.2427576Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:18:57.2428551Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:18:57.2429468Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:18:57.2430341Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:18:57.2431239Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:18:57.2432163Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:18:57.2433150Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:18:57.2434129Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:19:01.7388488Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:19:01.7389494Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:19:01.7390592Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:19:01.7391704Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:19:01.7392556Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:19:01.7393516Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:19:01.7394627Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:19:01.7395531Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:19:01.7396459Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:19:01.7397541Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:19:01.7398473Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:19:01.7399401Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:19:01.7400244Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:19:01.7401129Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:19:01.7401998Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:19:01.7402967Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:19:01.7403894Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:19:01.7404789Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:19:01.7405761Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:19:01.7406678Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:19:01.7407572Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:19:01.7408467Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:19:01.7409316Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:19:01.7410162Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:19:01.7411021Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:19:01.7411881Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:19:01.7412734Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:19:01.7413593Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:19:01.7414458Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:19:01.7415349Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:19:01.7416249Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:19:01.7417114Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:19:01.7418061Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:19:01.7418992Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:19:01.7419919Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:19:01.7420910Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:19:01.7421920Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:19:01.7422826Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:19:01.7423750Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:19:01.7424743Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:19:01.7425635Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:19:01.7426541Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:19:01.7427540Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:19:01.7428718Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:19:01.7429852Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:19:01.7430887Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:19:01.7431905Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:19:01.7432880Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:19:01.7433845Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:19:01.7434817Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:19:01.7435796Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:19:01.7436743Z [ 94%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:19:01.7437659Z [ 94%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:19:01.7438617Z [ 94%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:19:01.7439601Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:19:01.7440620Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:19:01.7441604Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:19:01.7442550Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:19:01.7443570Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:19:01.7444532Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:19:01.7445540Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:19:01.7446480Z [ 97%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:19:01.7447222Z [ 97%] Linking CXX static library libportable_kernels.a 2025-06-05T23:19:01.7447625Z [ 97%] Built target portable_kernels 2025-06-05T23:19:01.7448099Z [ 98%] Generating selected_operators.yaml for portable_ops_lib 2025-06-05T23:19:01.7448636Z [ 98%] Generating code for kernel registration 2025-06-05T23:19:01.7449668Z [ 98%] Building CXX object kernels/portable/CMakeFiles/portable_ops_lib.dir/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:19:01.7450583Z [ 98%] Linking CXX static library libportable_ops_lib.a 2025-06-05T23:19:01.7450966Z [ 98%] Built target portable_ops_lib 2025-06-05T23:19:01.7451756Z [ 98%] Building CXX object CMakeFiles/executor_runner.dir/examples/portable/executor_runner/executor_runner.cpp.o 2025-06-05T23:19:01.7452742Z [ 98%] Building CXX object CMakeFiles/executor_runner.dir/extension/data_loader/file_data_loader.cpp.o 2025-06-05T23:19:01.7453646Z [ 98%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs.cpp.o 2025-06-05T23:19:01.7454514Z [ 99%] Building CXX object CMakeFiles/executor_runner.dir/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:19:01.7455400Z [ 99%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs_portable.cpp.o 2025-06-05T23:19:01.7456373Z [100%] Building CXX object CMakeFiles/executor_runner.dir/runtime/executor/test/test_backend_compiler_lib.cpp.o 2025-06-05T23:19:01.7457097Z [100%] Linking CXX executable executor_runner 2025-06-05T23:19:01.7457441Z [100%] Built target executor_runner 2025-06-05T23:19:01.7457721Z + [[ '' == *main* ]] 2025-06-05T23:19:01.7457936Z + [[ '' == *gh* ]] 2025-06-05T23:19:03.1901489Z + CACHE_DIRECTORY=/tmp/.lintbin 2025-06-05T23:19:03.1902046Z + [[ -d /tmp/.lintbin ]] 2025-06-05T23:19:03.1902306Z + lintrunner init 2025-06-05T23:19:03.1903037Z Requirement already satisfied: lintrunner==0.12.7 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 2)) (0.12.7) 2025-06-05T23:19:03.1904403Z Requirement already satisfied: lintrunner-adapters==0.12.4 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 3)) (0.12.4) 2025-06-05T23:19:03.1905688Z Requirement already satisfied: flake8==6.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 6)) (6.1.0) 2025-06-05T23:19:03.1906918Z Requirement already satisfied: flake8-breakpoint==1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 7)) (1.1.0) 2025-06-05T23:19:03.1908203Z Requirement already satisfied: flake8-bugbear==24.4.26 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 8)) (24.4.26) 2025-06-05T23:19:03.1909609Z Requirement already satisfied: flake8-comprehensions==3.14.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 9)) (3.14.0) 2025-06-05T23:19:03.1910912Z Requirement already satisfied: flake8-pyi==23.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 10)) (23.5.0) 2025-06-05T23:19:03.1912114Z Requirement already satisfied: mccabe==0.7.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 11)) (0.7.0) 2025-06-05T23:19:03.1913314Z Requirement already satisfied: pycodestyle==2.11.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 12)) (2.11.1) 2025-06-05T23:19:03.1914548Z Requirement already satisfied: torchfix==0.6.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 13)) (0.6.0) 2025-06-05T23:19:03.1915887Z Requirement already satisfied: black==24.4.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 16)) (24.4.2) 2025-06-05T23:19:03.1917051Z Requirement already satisfied: ufmt==2.8.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 17)) (2.8.0) 2025-06-05T23:19:03.1918272Z Requirement already satisfied: usort==1.0.8.post1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 18)) (1.0.8.post1) 2025-06-05T23:19:03.1919536Z Requirement already satisfied: clang-format==18.1.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 21)) (18.1.3) 2025-06-05T23:19:03.1920752Z Requirement already satisfied: cmakelint==1.4.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 22)) (1.4.1) 2025-06-05T23:19:03.1922039Z Requirement already satisfied: mypy==1.14.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 25)) (1.14.1) 2025-06-05T23:19:03.1923485Z Requirement already satisfied: click<9.0.0,>=8.1.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from lintrunner-adapters==0.12.4->-r requirements-lintrunner.txt (line 3)) (8.2.1) 2025-06-05T23:19:03.1924894Z Requirement already satisfied: pyflakes<3.2.0,>=3.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from flake8==6.1.0->-r requirements-lintrunner.txt (line 6)) (3.1.0) 2025-06-05T23:19:03.1926311Z Requirement already satisfied: flake8-plugin-utils<2.0,>=1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from flake8-breakpoint==1.1.0->-r requirements-lintrunner.txt (line 7)) (1.3.3) 2025-06-05T23:19:03.1927742Z Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from flake8-bugbear==24.4.26->-r requirements-lintrunner.txt (line 8)) (25.3.0) 2025-06-05T23:19:03.1929051Z Requirement already satisfied: PyYAML in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchfix==0.6.0->-r requirements-lintrunner.txt (line 13)) (6.0.1) 2025-06-05T23:19:03.1930344Z Requirement already satisfied: libcst<1.2.0,>=1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchfix==0.6.0->-r requirements-lintrunner.txt (line 13)) (1.1.0) 2025-06-05T23:19:03.1931664Z Requirement already satisfied: mypy-extensions>=0.4.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (1.1.0) 2025-06-05T23:19:03.1932986Z Requirement already satisfied: packaging>=22.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (25.0) 2025-06-05T23:19:03.1934281Z Requirement already satisfied: pathspec>=0.9.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (0.12.1) 2025-06-05T23:19:03.1935584Z Requirement already satisfied: platformdirs>=2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (4.3.8) 2025-06-05T23:19:03.1936872Z Requirement already satisfied: tomli>=1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (2.0.1) 2025-06-05T23:19:03.1938196Z Requirement already satisfied: typing-extensions>=4.0.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (4.14.0) 2025-06-05T23:19:03.1939523Z Requirement already satisfied: moreorless>=0.4.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ufmt==2.8.0->-r requirements-lintrunner.txt (line 17)) (0.5.0) 2025-06-05T23:19:03.1940804Z Requirement already satisfied: tomlkit>=0.7.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ufmt==2.8.0->-r requirements-lintrunner.txt (line 17)) (0.13.2) 2025-06-05T23:19:03.1942135Z Requirement already satisfied: trailrunner>=1.2.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ufmt==2.8.0->-r requirements-lintrunner.txt (line 17)) (1.4.0) 2025-06-05T23:19:03.1943520Z Requirement already satisfied: stdlibs>=2021.4.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from usort==1.0.8.post1->-r requirements-lintrunner.txt (line 18)) (2025.5.10) 2025-06-05T23:19:03.1944871Z Requirement already satisfied: toml>=0.10.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from usort==1.0.8.post1->-r requirements-lintrunner.txt (line 18)) (0.10.2) 2025-06-05T23:19:03.1946270Z Requirement already satisfied: typing-inspect>=0.4.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from libcst<1.2.0,>=1.1.0->torchfix==0.6.0->-r requirements-lintrunner.txt (line 13)) (0.9.0) 2025-06-05T23:19:03.1947672Z Requirement already satisfied: lintrunner==0.12.7 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 2)) (0.12.7) 2025-06-05T23:19:03.1948943Z Requirement already satisfied: lintrunner-adapters==0.12.4 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 3)) (0.12.4) 2025-06-05T23:19:03.1950215Z Requirement already satisfied: flake8==6.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 6)) (6.1.0) 2025-06-05T23:19:03.1951430Z Requirement already satisfied: flake8-breakpoint==1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 7)) (1.1.0) 2025-06-05T23:19:03.1952703Z Requirement already satisfied: flake8-bugbear==24.4.26 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 8)) (24.4.26) 2025-06-05T23:19:03.1954006Z Requirement already satisfied: flake8-comprehensions==3.14.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 9)) (3.14.0) 2025-06-05T23:19:03.1955273Z Requirement already satisfied: flake8-pyi==23.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 10)) (23.5.0) 2025-06-05T23:19:03.1956474Z Requirement already satisfied: mccabe==0.7.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 11)) (0.7.0) 2025-06-05T23:19:03.1957676Z Requirement already satisfied: pycodestyle==2.11.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 12)) (2.11.1) 2025-06-05T23:19:03.1958896Z Requirement already satisfied: torchfix==0.6.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 13)) (0.6.0) 2025-06-05T23:19:03.1960087Z Requirement already satisfied: black==24.4.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 16)) (24.4.2) 2025-06-05T23:19:03.1961246Z Requirement already satisfied: ufmt==2.8.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 17)) (2.8.0) 2025-06-05T23:19:03.1962466Z Requirement already satisfied: usort==1.0.8.post1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 18)) (1.0.8.post1) 2025-06-05T23:19:04.2284727Z Requirement already satisfied: clang-format==18.1.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 21)) (18.1.3) 2025-06-05T23:19:04.2286012Z Requirement already satisfied: cmakelint==1.4.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 22)) (1.4.1) 2025-06-05T23:19:04.2287216Z Requirement already satisfied: mypy==1.14.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 25)) (1.14.1) 2025-06-05T23:19:04.2288556Z Requirement already satisfied: click<9.0.0,>=8.1.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from lintrunner-adapters==0.12.4->-r requirements-lintrunner.txt (line 3)) (8.2.1) 2025-06-05T23:19:04.2290165Z Requirement already satisfied: pyflakes<3.2.0,>=3.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from flake8==6.1.0->-r requirements-lintrunner.txt (line 6)) (3.1.0) 2025-06-05T23:19:04.2291973Z Requirement already satisfied: flake8-plugin-utils<2.0,>=1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from flake8-breakpoint==1.1.0->-r requirements-lintrunner.txt (line 7)) (1.3.3) 2025-06-05T23:19:04.2299941Z Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from flake8-bugbear==24.4.26->-r requirements-lintrunner.txt (line 8)) (25.3.0) 2025-06-05T23:19:04.2301283Z Requirement already satisfied: PyYAML in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchfix==0.6.0->-r requirements-lintrunner.txt (line 13)) (6.0.1) 2025-06-05T23:19:04.2302794Z Requirement already satisfied: libcst<1.2.0,>=1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchfix==0.6.0->-r requirements-lintrunner.txt (line 13)) (1.1.0) 2025-06-05T23:19:04.2304148Z Requirement already satisfied: mypy-extensions>=0.4.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (1.1.0) 2025-06-05T23:19:04.2305533Z Requirement already satisfied: packaging>=22.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (25.0) 2025-06-05T23:19:04.2306832Z Requirement already satisfied: pathspec>=0.9.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (0.12.1) 2025-06-05T23:19:04.2308146Z Requirement already satisfied: platformdirs>=2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (4.3.8) 2025-06-05T23:19:04.2309428Z Requirement already satisfied: tomli>=1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (2.0.1) 2025-06-05T23:19:04.2310755Z Requirement already satisfied: typing-extensions>=4.0.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (4.14.0) 2025-06-05T23:19:04.2312097Z Requirement already satisfied: moreorless>=0.4.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ufmt==2.8.0->-r requirements-lintrunner.txt (line 17)) (0.5.0) 2025-06-05T23:19:04.2313366Z Requirement already satisfied: tomlkit>=0.7.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ufmt==2.8.0->-r requirements-lintrunner.txt (line 17)) (0.13.2) 2025-06-05T23:19:04.2314661Z Requirement already satisfied: trailrunner>=1.2.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ufmt==2.8.0->-r requirements-lintrunner.txt (line 17)) (1.4.0) 2025-06-05T23:19:04.2316006Z Requirement already satisfied: stdlibs>=2021.4.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from usort==1.0.8.post1->-r requirements-lintrunner.txt (line 18)) (2025.5.10) 2025-06-05T23:19:04.2317348Z Requirement already satisfied: toml>=0.10.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from usort==1.0.8.post1->-r requirements-lintrunner.txt (line 18)) (0.10.2) 2025-06-05T23:19:04.2318745Z Requirement already satisfied: typing-inspect>=0.4.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from libcst<1.2.0,>=1.1.0->torchfix==0.6.0->-r requirements-lintrunner.txt (line 13)) (0.9.0) 2025-06-05T23:19:04.2320113Z Requirement already satisfied: lintrunner==0.12.7 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 2)) (0.12.7) 2025-06-05T23:19:04.2321378Z Requirement already satisfied: lintrunner-adapters==0.12.4 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 3)) (0.12.4) 2025-06-05T23:19:04.2322629Z Requirement already satisfied: flake8==6.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 6)) (6.1.0) 2025-06-05T23:19:04.2323983Z Requirement already satisfied: flake8-breakpoint==1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 7)) (1.1.0) 2025-06-05T23:19:04.2325262Z Requirement already satisfied: flake8-bugbear==24.4.26 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 8)) (24.4.26) 2025-06-05T23:19:04.2326567Z Requirement already satisfied: flake8-comprehensions==3.14.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 9)) (3.14.0) 2025-06-05T23:19:04.2327835Z Requirement already satisfied: flake8-pyi==23.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 10)) (23.5.0) 2025-06-05T23:19:04.2329093Z Requirement already satisfied: mccabe==0.7.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 11)) (0.7.0) 2025-06-05T23:19:04.2330316Z Requirement already satisfied: pycodestyle==2.11.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 12)) (2.11.1) 2025-06-05T23:19:04.2331550Z Requirement already satisfied: torchfix==0.6.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 13)) (0.6.0) 2025-06-05T23:19:04.2332738Z Requirement already satisfied: black==24.4.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 16)) (24.4.2) 2025-06-05T23:19:04.2333907Z Requirement already satisfied: ufmt==2.8.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 17)) (2.8.0) 2025-06-05T23:19:04.2335284Z Requirement already satisfied: usort==1.0.8.post1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 18)) (1.0.8.post1) 2025-06-05T23:19:04.2336554Z Requirement already satisfied: clang-format==18.1.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 21)) (18.1.3) 2025-06-05T23:19:04.2337785Z Requirement already satisfied: cmakelint==1.4.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 22)) (1.4.1) 2025-06-05T23:19:04.2338966Z Requirement already satisfied: mypy==1.14.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 25)) (1.14.1) 2025-06-05T23:19:04.2340258Z Requirement already satisfied: click<9.0.0,>=8.1.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from lintrunner-adapters==0.12.4->-r requirements-lintrunner.txt (line 3)) (8.2.1) 2025-06-05T23:19:04.2341691Z Requirement already satisfied: pyflakes<3.2.0,>=3.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from flake8==6.1.0->-r requirements-lintrunner.txt (line 6)) (3.1.0) 2025-06-05T23:19:04.2343102Z Requirement already satisfied: flake8-plugin-utils<2.0,>=1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from flake8-breakpoint==1.1.0->-r requirements-lintrunner.txt (line 7)) (1.3.3) 2025-06-05T23:19:04.2344538Z Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from flake8-bugbear==24.4.26->-r requirements-lintrunner.txt (line 8)) (25.3.0) 2025-06-05T23:19:04.2345910Z Requirement already satisfied: PyYAML in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchfix==0.6.0->-r requirements-lintrunner.txt (line 13)) (6.0.1) 2025-06-05T23:19:04.2347206Z Requirement already satisfied: libcst<1.2.0,>=1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchfix==0.6.0->-r requirements-lintrunner.txt (line 13)) (1.1.0) 2025-06-05T23:19:04.2348546Z Requirement already satisfied: mypy-extensions>=0.4.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (1.1.0) 2025-06-05T23:19:04.2349917Z Requirement already satisfied: packaging>=22.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (25.0) 2025-06-05T23:19:04.2351218Z Requirement already satisfied: pathspec>=0.9.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (0.12.1) 2025-06-05T23:19:04.2352531Z Requirement already satisfied: platformdirs>=2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (4.3.8) 2025-06-05T23:19:06.2137460Z Requirement already satisfied: tomli>=1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (2.0.1) 2025-06-05T23:19:06.2138852Z Requirement already satisfied: typing-extensions>=4.0.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (4.14.0) 2025-06-05T23:19:06.2140701Z Requirement already satisfied: moreorless>=0.4.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ufmt==2.8.0->-r requirements-lintrunner.txt (line 17)) (0.5.0) 2025-06-05T23:19:06.2142042Z Requirement already satisfied: tomlkit>=0.7.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ufmt==2.8.0->-r requirements-lintrunner.txt (line 17)) (0.13.2) 2025-06-05T23:19:06.2143336Z Requirement already satisfied: trailrunner>=1.2.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ufmt==2.8.0->-r requirements-lintrunner.txt (line 17)) (1.4.0) 2025-06-05T23:19:06.2144887Z Requirement already satisfied: stdlibs>=2021.4.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from usort==1.0.8.post1->-r requirements-lintrunner.txt (line 18)) (2025.5.10) 2025-06-05T23:19:06.2146221Z Requirement already satisfied: toml>=0.10.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from usort==1.0.8.post1->-r requirements-lintrunner.txt (line 18)) (0.10.2) 2025-06-05T23:19:06.2147626Z Requirement already satisfied: typing-inspect>=0.4.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from libcst<1.2.0,>=1.1.0->torchfix==0.6.0->-r requirements-lintrunner.txt (line 13)) (0.9.0) 2025-06-05T23:19:06.2149196Z Requirement already satisfied: lintrunner==0.12.7 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 2)) (0.12.7) 2025-06-05T23:19:06.2150464Z Requirement already satisfied: lintrunner-adapters==0.12.4 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 3)) (0.12.4) 2025-06-05T23:19:06.2151718Z Requirement already satisfied: flake8==6.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 6)) (6.1.0) 2025-06-05T23:19:06.2153133Z Requirement already satisfied: flake8-breakpoint==1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 7)) (1.1.0) 2025-06-05T23:19:06.2154412Z Requirement already satisfied: flake8-bugbear==24.4.26 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 8)) (24.4.26) 2025-06-05T23:19:06.2155721Z Requirement already satisfied: flake8-comprehensions==3.14.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 9)) (3.14.0) 2025-06-05T23:19:06.2157192Z Requirement already satisfied: flake8-pyi==23.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 10)) (23.5.0) 2025-06-05T23:19:06.2158390Z Requirement already satisfied: mccabe==0.7.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 11)) (0.7.0) 2025-06-05T23:19:06.2159607Z Requirement already satisfied: pycodestyle==2.11.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 12)) (2.11.1) 2025-06-05T23:19:06.2161071Z Requirement already satisfied: torchfix==0.6.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 13)) (0.6.0) 2025-06-05T23:19:06.2162376Z Requirement already satisfied: black==24.4.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 16)) (24.4.2) 2025-06-05T23:19:06.2163630Z Requirement already satisfied: ufmt==2.8.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 17)) (2.8.0) 2025-06-05T23:19:06.2165071Z Requirement already satisfied: usort==1.0.8.post1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 18)) (1.0.8.post1) 2025-06-05T23:19:06.2166339Z Requirement already satisfied: clang-format==18.1.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 21)) (18.1.3) 2025-06-05T23:19:06.2167573Z Requirement already satisfied: cmakelint==1.4.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 22)) (1.4.1) 2025-06-05T23:19:06.2168988Z Requirement already satisfied: mypy==1.14.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 25)) (1.14.1) 2025-06-05T23:19:06.2170409Z Requirement already satisfied: click<9.0.0,>=8.1.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from lintrunner-adapters==0.12.4->-r requirements-lintrunner.txt (line 3)) (8.2.1) 2025-06-05T23:19:06.2171782Z Requirement already satisfied: pyflakes<3.2.0,>=3.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from flake8==6.1.0->-r requirements-lintrunner.txt (line 6)) (3.1.0) 2025-06-05T23:19:06.2173422Z Requirement already satisfied: flake8-plugin-utils<2.0,>=1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from flake8-breakpoint==1.1.0->-r requirements-lintrunner.txt (line 7)) (1.3.3) 2025-06-05T23:19:06.2174867Z Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from flake8-bugbear==24.4.26->-r requirements-lintrunner.txt (line 8)) (25.3.0) 2025-06-05T23:19:06.2176183Z Requirement already satisfied: PyYAML in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchfix==0.6.0->-r requirements-lintrunner.txt (line 13)) (6.0.1) 2025-06-05T23:19:06.2177703Z Requirement already satisfied: libcst<1.2.0,>=1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchfix==0.6.0->-r requirements-lintrunner.txt (line 13)) (1.1.0) 2025-06-05T23:19:06.2179040Z Requirement already satisfied: mypy-extensions>=0.4.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (1.1.0) 2025-06-05T23:19:06.2180369Z Requirement already satisfied: packaging>=22.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (25.0) 2025-06-05T23:19:06.2181654Z Requirement already satisfied: pathspec>=0.9.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (0.12.1) 2025-06-05T23:19:06.2182966Z Requirement already satisfied: platformdirs>=2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (4.3.8) 2025-06-05T23:19:06.2184263Z Requirement already satisfied: tomli>=1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (2.0.1) 2025-06-05T23:19:06.2185579Z Requirement already satisfied: typing-extensions>=4.0.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (4.14.0) 2025-06-05T23:19:06.2186926Z Requirement already satisfied: moreorless>=0.4.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ufmt==2.8.0->-r requirements-lintrunner.txt (line 17)) (0.5.0) 2025-06-05T23:19:06.2188216Z Requirement already satisfied: tomlkit>=0.7.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ufmt==2.8.0->-r requirements-lintrunner.txt (line 17)) (0.13.2) 2025-06-05T23:19:06.2189543Z Requirement already satisfied: trailrunner>=1.2.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ufmt==2.8.0->-r requirements-lintrunner.txt (line 17)) (1.4.0) 2025-06-05T23:19:06.2191087Z Requirement already satisfied: stdlibs>=2021.4.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from usort==1.0.8.post1->-r requirements-lintrunner.txt (line 18)) (2025.5.10) 2025-06-05T23:19:06.2192431Z Requirement already satisfied: toml>=0.10.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from usort==1.0.8.post1->-r requirements-lintrunner.txt (line 18)) (0.10.2) 2025-06-05T23:19:06.2194043Z Requirement already satisfied: typing-inspect>=0.4.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from libcst<1.2.0,>=1.1.0->torchfix==0.6.0->-r requirements-lintrunner.txt (line 13)) (0.9.0) 2025-06-05T23:19:06.2195630Z Requirement already satisfied: lintrunner==0.12.7 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 2)) (0.12.7) 2025-06-05T23:19:06.2196897Z Requirement already satisfied: lintrunner-adapters==0.12.4 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 3)) (0.12.4) 2025-06-05T23:19:06.2198198Z Requirement already satisfied: flake8==6.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 6)) (6.1.0) 2025-06-05T23:19:06.2199434Z Requirement already satisfied: flake8-breakpoint==1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 7)) (1.1.0) 2025-06-05T23:19:06.2200706Z Requirement already satisfied: flake8-bugbear==24.4.26 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 8)) (24.4.26) 2025-06-05T23:22:52.9358934Z Requirement already satisfied: flake8-comprehensions==3.14.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 9)) (3.14.0) 2025-06-05T23:22:52.9360388Z Requirement already satisfied: flake8-pyi==23.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 10)) (23.5.0) 2025-06-05T23:22:52.9361661Z Requirement already satisfied: mccabe==0.7.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 11)) (0.7.0) 2025-06-05T23:22:52.9362881Z Requirement already satisfied: pycodestyle==2.11.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 12)) (2.11.1) 2025-06-05T23:22:52.9364325Z Requirement already satisfied: torchfix==0.6.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 13)) (0.6.0) 2025-06-05T23:22:52.9365508Z Requirement already satisfied: black==24.4.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 16)) (24.4.2) 2025-06-05T23:22:52.9366688Z Requirement already satisfied: ufmt==2.8.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 17)) (2.8.0) 2025-06-05T23:22:52.9367913Z Requirement already satisfied: usort==1.0.8.post1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 18)) (1.0.8.post1) 2025-06-05T23:22:52.9369168Z Requirement already satisfied: clang-format==18.1.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 21)) (18.1.3) 2025-06-05T23:22:52.9370399Z Requirement already satisfied: cmakelint==1.4.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 22)) (1.4.1) 2025-06-05T23:22:52.9371593Z Requirement already satisfied: mypy==1.14.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-lintrunner.txt (line 25)) (1.14.1) 2025-06-05T23:22:52.9372882Z Requirement already satisfied: click<9.0.0,>=8.1.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from lintrunner-adapters==0.12.4->-r requirements-lintrunner.txt (line 3)) (8.2.1) 2025-06-05T23:22:52.9374582Z Requirement already satisfied: pyflakes<3.2.0,>=3.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from flake8==6.1.0->-r requirements-lintrunner.txt (line 6)) (3.1.0) 2025-06-05T23:22:52.9376001Z Requirement already satisfied: flake8-plugin-utils<2.0,>=1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from flake8-breakpoint==1.1.0->-r requirements-lintrunner.txt (line 7)) (1.3.3) 2025-06-05T23:22:52.9377419Z Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from flake8-bugbear==24.4.26->-r requirements-lintrunner.txt (line 8)) (25.3.0) 2025-06-05T23:22:52.9378738Z Requirement already satisfied: PyYAML in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchfix==0.6.0->-r requirements-lintrunner.txt (line 13)) (6.0.1) 2025-06-05T23:22:52.9380189Z Requirement already satisfied: libcst<1.2.0,>=1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchfix==0.6.0->-r requirements-lintrunner.txt (line 13)) (1.1.0) 2025-06-05T23:22:52.9381522Z Requirement already satisfied: mypy-extensions>=0.4.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (1.1.0) 2025-06-05T23:22:52.9382919Z Requirement already satisfied: packaging>=22.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (25.0) 2025-06-05T23:22:52.9384203Z Requirement already satisfied: pathspec>=0.9.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (0.12.1) 2025-06-05T23:22:52.9385514Z Requirement already satisfied: platformdirs>=2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (4.3.8) 2025-06-05T23:22:52.9386812Z Requirement already satisfied: tomli>=1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (2.0.1) 2025-06-05T23:22:52.9388125Z Requirement already satisfied: typing-extensions>=4.0.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from black==24.4.2->-r requirements-lintrunner.txt (line 16)) (4.14.0) 2025-06-05T23:22:52.9389494Z Requirement already satisfied: moreorless>=0.4.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ufmt==2.8.0->-r requirements-lintrunner.txt (line 17)) (0.5.0) 2025-06-05T23:22:52.9390779Z Requirement already satisfied: tomlkit>=0.7.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ufmt==2.8.0->-r requirements-lintrunner.txt (line 17)) (0.13.2) 2025-06-05T23:22:52.9392285Z Requirement already satisfied: trailrunner>=1.2.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ufmt==2.8.0->-r requirements-lintrunner.txt (line 17)) (1.4.0) 2025-06-05T23:22:52.9393641Z Requirement already satisfied: stdlibs>=2021.4.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from usort==1.0.8.post1->-r requirements-lintrunner.txt (line 18)) (2025.5.10) 2025-06-05T23:22:52.9395004Z Requirement already satisfied: toml>=0.10.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from usort==1.0.8.post1->-r requirements-lintrunner.txt (line 18)) (0.10.2) 2025-06-05T23:22:52.9396384Z Requirement already satisfied: typing-inspect>=0.4.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from libcst<1.2.0,>=1.1.0->torchfix==0.6.0->-r requirements-lintrunner.txt (line 13)) (0.9.0) 2025-06-05T23:22:52.9397258Z + RC=0 2025-06-05T23:22:52.9397561Z + lintrunner --force-color --all-files --tee-json=lint.json 2025-06-05T23:22:52.9398245Z ok No lint issues. 2025-06-05T23:22:52.9399095Z + jq --raw-output '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' lint.json 2025-06-05T23:22:52.9400050Z + exit 0 2025-06-05T23:22:52.9450150Z ##[group]Run pmeier/pytest-results-action@a2c1430e2bddadbad9f49a6f9b879f062c6b19b1 2025-06-05T23:22:52.9450651Z with: 2025-06-05T23:22:52.9450946Z path: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:22:52.9451329Z fail-on-empty: false 2025-06-05T23:22:52.9451547Z env: 2025-06-05T23:22:52.9451786Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:22:52.9452121Z REPOSITORY: pytorch/executorch 2025-06-05T23:22:52.9452393Z PR_NUMBER: 2025-06-05T23:22:52.9457423Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:22:52.9462869Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:22:52.9463427Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:22:52.9463966Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:22:52.9464342Z ##[endgroup] 2025-06-05T23:22:53.0043700Z Prepare all required actions 2025-06-05T23:22:53.0081746Z ##[group]Run ./test-infra/.github/actions/chown-directory 2025-06-05T23:22:53.0082092Z with: 2025-06-05T23:22:53.0082434Z directory: /home/ec2-user/actions-runner/_work/executorch/executorch/ 2025-06-05T23:22:53.0082972Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-06-05T23:22:53.0083381Z env: 2025-06-05T23:22:53.0083734Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:22:53.0084072Z REPOSITORY: pytorch/executorch 2025-06-05T23:22:53.0084354Z PR_NUMBER: 2025-06-05T23:22:53.0089374Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:22:53.0095330Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:22:53.0095911Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:22:53.0096435Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:22:53.0096815Z ##[endgroup] 2025-06-05T23:22:53.0121202Z ##[group]Run docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2025-06-05T23:22:53.0121891Z docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2025-06-05T23:22:53.0130265Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:22:53.0130632Z env: 2025-06-05T23:22:53.0130877Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:22:53.0131320Z REPOSITORY: pytorch/executorch 2025-06-05T23:22:53.0131587Z PR_NUMBER: 2025-06-05T23:22:53.0136725Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:22:53.0142066Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:22:53.0142630Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:22:53.0143165Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:22:53.0143660Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-06-05T23:22:53.0144211Z DIRECTORY: /home/ec2-user/actions-runner/_work/executorch/executorch/ 2025-06-05T23:22:53.0144623Z ##[endgroup] 2025-06-05T23:22:53.0316232Z Unable to find image '308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest' locally 2025-06-05T23:22:53.2536064Z latest: Pulling from tool/alpine 2025-06-05T23:22:53.2536709Z 540db60ca938: Pulling fs layer 2025-06-05T23:22:53.3573748Z 540db60ca938: Verifying Checksum 2025-06-05T23:22:53.3574243Z 540db60ca938: Download complete 2025-06-05T23:22:53.4407904Z 540db60ca938: Pull complete 2025-06-05T23:22:53.4513068Z Digest: sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 2025-06-05T23:22:53.4553406Z Status: Downloaded newer image for 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest 2025-06-05T23:22:55.1428833Z Prepare all required actions 2025-06-05T23:22:55.1454299Z ##[group]Run ./test-infra/.github/actions/chown-directory 2025-06-05T23:22:55.1454669Z with: 2025-06-05T23:22:55.1454943Z directory: /home/ec2-user/actions-runner/_work/_temp 2025-06-05T23:22:55.1455426Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-06-05T23:22:55.1455825Z env: 2025-06-05T23:22:55.1456069Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:22:55.1456418Z REPOSITORY: pytorch/executorch 2025-06-05T23:22:55.1456681Z PR_NUMBER: 2025-06-05T23:22:55.1461705Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:22:55.1467167Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:22:55.1467726Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:22:55.1468262Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:22:55.1468638Z ##[endgroup] 2025-06-05T23:22:55.1493231Z ##[group]Run docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2025-06-05T23:22:55.1493915Z docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2025-06-05T23:22:55.1502113Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:22:55.1502489Z env: 2025-06-05T23:22:55.1502744Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:22:55.1503082Z REPOSITORY: pytorch/executorch 2025-06-05T23:22:55.1503364Z PR_NUMBER: 2025-06-05T23:22:55.1508546Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:22:55.1513963Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:22:55.1514541Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:22:55.1515063Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:22:55.1515578Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-06-05T23:22:55.1516041Z DIRECTORY: /home/ec2-user/actions-runner/_work/_temp 2025-06-05T23:22:55.1516382Z ##[endgroup] 2025-06-05T23:22:56.2297251Z ##[group]Run # Only do these steps if we actually want to upload an artifact 2025-06-05T23:22:56.2297850Z # Only do these steps if we actually want to upload an artifact 2025-06-05T23:22:56.2298389Z if [[ -n "${UPLOAD_ARTIFACT_NAME}" ]]; then 2025-06-05T23:22:56.2298930Z  # If the default execution path is followed then we should get a wheel in the dist/ folder 2025-06-05T23:22:56.2299538Z  # attempt to just grab whatever is in there and scoop it all up 2025-06-05T23:22:56.2300008Z  if find "dist/" -name "*.whl" >/dev/null 2>/dev/null; then 2025-06-05T23:22:56.2300430Z  mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/" 2025-06-05T23:22:56.2300746Z  fi 2025-06-05T23:22:56.2301020Z  if [[ -d "artifacts-to-be-uploaded" ]]; then 2025-06-05T23:22:56.2301463Z  mv -v artifacts-to-be-uploaded/* "${RUNNER_ARTIFACT_DIR}/" 2025-06-05T23:22:56.2301837Z  fi 2025-06-05T23:22:56.2302075Z fi 2025-06-05T23:22:56.2302281Z  2025-06-05T23:22:56.2302487Z upload_docs=0 2025-06-05T23:22:56.2302866Z # Check if there are files in the documentation folder to upload, note that 2025-06-05T23:22:56.2303321Z # empty folders do not count 2025-06-05T23:22:56.2303745Z if find "${RUNNER_DOCS_DIR}" -mindepth 1 -maxdepth 1 -type f | read -r; then 2025-06-05T23:22:56.2304328Z  # TODO: Add a check here to test if on ec2 because if we're not on ec2 then this 2025-06-05T23:22:56.2304797Z  # upload will probably not work correctly 2025-06-05T23:22:56.2305135Z  upload_docs=1 2025-06-05T23:22:56.2305377Z fi 2025-06-05T23:22:56.2305666Z echo "upload-docs=${upload_docs}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:22:56.2311440Z shell: /usr/bin/bash -e {0} 2025-06-05T23:22:56.2311709Z env: 2025-06-05T23:22:56.2311953Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:22:56.2312314Z REPOSITORY: pytorch/executorch 2025-06-05T23:22:56.2312580Z PR_NUMBER: 2025-06-05T23:22:56.2317566Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:22:56.2323052Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:22:56.2323736Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:22:56.2324260Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:22:56.2324652Z UPLOAD_ARTIFACT_NAME: 2025-06-05T23:22:56.2324889Z ##[endgroup] 2025-06-05T23:22:56.2452744Z Prepare all required actions 2025-06-05T23:22:56.2500835Z ##[group]Run ./test-infra/.github/actions/teardown-linux 2025-06-05T23:22:56.2501172Z with: 2025-06-05T23:22:56.2501367Z env: 2025-06-05T23:22:56.2501596Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:22:56.2502020Z REPOSITORY: pytorch/executorch 2025-06-05T23:22:56.2502288Z PR_NUMBER: 2025-06-05T23:22:56.2507320Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:22:56.2512668Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:22:56.2513245Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:22:56.2513784Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:22:56.2514151Z ##[endgroup] 2025-06-05T23:22:56.2537960Z ##[group]Run set -eou pipefail 2025-06-05T23:22:56.2538300Z set -eou pipefail 2025-06-05T23:22:56.2538556Z  2025-06-05T23:22:56.2538899Z echo "Holding runner for 2 hours until all ssh sessions have logged out" 2025-06-05T23:22:56.2539354Z for _ in $(seq 1440); do 2025-06-05T23:22:56.2539664Z  # Break if no ssh session exists anymore 2025-06-05T23:22:56.2540008Z  if [ "$(who)" = "" ]; then 2025-06-05T23:22:56.2540283Z  break 2025-06-05T23:22:56.2540509Z  fi 2025-06-05T23:22:56.2540711Z  echo "." 2025-06-05T23:22:56.2540942Z  sleep 5 2025-06-05T23:22:56.2541168Z done 2025-06-05T23:22:56.2546707Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:22:56.2547076Z env: 2025-06-05T23:22:56.2547395Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:22:56.2547750Z REPOSITORY: pytorch/executorch 2025-06-05T23:22:56.2548013Z PR_NUMBER: 2025-06-05T23:22:56.2553083Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:22:56.2558460Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:22:56.2559043Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:22:56.2559584Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:22:56.2559950Z ##[endgroup] 2025-06-05T23:22:56.2582490Z Holding runner for 2 hours until all ssh sessions have logged out 2025-06-05T23:22:56.2668090Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:22:56.2668666Z # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:22:56.2669089Z # shellcheck disable=SC2046 2025-06-05T23:22:56.2669400Z docker stop $(docker ps -q) || true 2025-06-05T23:22:56.2669738Z # Prune all of the docker images 2025-06-05T23:22:56.2670043Z docker system prune -af 2025-06-05T23:22:56.2675557Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:22:56.2675909Z env: 2025-06-05T23:22:56.2676164Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:22:56.2676501Z REPOSITORY: pytorch/executorch 2025-06-05T23:22:56.2676777Z PR_NUMBER: 2025-06-05T23:22:56.2681758Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:22:56.2687331Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:22:56.2687916Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:22:56.2688444Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:22:56.2688826Z ##[endgroup] 2025-06-05T23:23:06.9173514Z 4362b5353c18 2025-06-05T23:23:07.2787499Z Deleted Containers: 2025-06-05T23:23:07.2788084Z 4362b5353c1854829e274053d509442046f79ab8bbb3a84885d404bf244ff106 2025-06-05T23:23:07.2788409Z 2025-06-05T23:23:10.1972040Z Deleted Images: 2025-06-05T23:23:10.1972802Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-linter:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:23:10.1974051Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-linter@sha256:00373a0aa4547c13a0f23947267d1f3382534d033b156d50e9e3878a4b74341c 2025-06-05T23:23:10.1975227Z deleted: sha256:6438c80acbe4e7801c0be512fdf963bb4a75bceb638dbe7d8383520b4e42e7d1 2025-06-05T23:23:10.1975885Z deleted: sha256:de986b4dc863d9f8e7aa455f74dac32dd8b5b013ac46d245f64bf0bc1668db65 2025-06-05T23:23:10.1976520Z deleted: sha256:a1a61b00f4a64cc8f14267b695e8999b7cbaaf86c5d3891d5c5a10883b47d431 2025-06-05T23:23:10.1977152Z deleted: sha256:8f6441e83c21a2a4444aac4703729d71e4882eaeba9bdb7e9051ce1e860f72dd 2025-06-05T23:23:10.1977759Z deleted: sha256:86860056e7f3baf4096d40054306645eb52f8e8769fc086f2f3bbf515721fe2e 2025-06-05T23:23:10.1978382Z deleted: sha256:6e058f5b3765b012935cf4b73fc68e498e0363518c9aa059da64fb4bd43c3e44 2025-06-05T23:23:10.1979005Z deleted: sha256:715fdea020bcbb2f624bce1b12ff1992aa9a2130775532e4c3e250fc831e890b 2025-06-05T23:23:10.1979650Z deleted: sha256:7fd01f5bd11e7df80c30d67024b3e22757f581f0f5ddd9f9d39ccd79e6732e77 2025-06-05T23:23:10.1980277Z deleted: sha256:31f94c6015c338c3f1d9ae475766689a448a7736d07e218595f438941dfae863 2025-06-05T23:23:10.1980887Z deleted: sha256:0d8b81837a56e015ee31f5beb5624c6b96e68a199dcc1284bdba4861ebb100e7 2025-06-05T23:23:10.1981525Z deleted: sha256:72aa8e65aa4b08e5d4061a3a879da6df8e5291693ebcfd5564509b17a0bc9a61 2025-06-05T23:23:10.1982142Z deleted: sha256:e20b0498515747973609b14fe78fb7b350cd826da30e1274b282c7cef679fc24 2025-06-05T23:23:10.1982769Z deleted: sha256:524c19aeafe46d566f3c950189527fe543aa296579de9ff7ead9cf5d8b78455f 2025-06-05T23:23:10.1983400Z deleted: sha256:eaae29059fab74d21cb0fc6af148c35618ccaee5bc614bfa2df133c319077b08 2025-06-05T23:23:10.1984040Z deleted: sha256:7420e6d9974da3201eab163610f1a2af6020d97e5dc58ec5d420206a0a36ea7c 2025-06-05T23:23:10.1984669Z deleted: sha256:cdfda05e3555733a5f69a9e3c793b895e21978ab178a75eeffa012d1d65ea3bd 2025-06-05T23:23:10.1985285Z deleted: sha256:97de3089c8ce389b8dd10127282fa9c2bf9902d05f21560c8d85e4721cf4306d 2025-06-05T23:23:10.1985907Z deleted: sha256:9ddf271cd7fef1e9253261907ce13493099bd55805873097a7ca6be04519d00a 2025-06-05T23:23:10.1986531Z deleted: sha256:f6be52fa763108dcfc9ce85dd44c138089edbdcb9b652be117b4781b208cf2c6 2025-06-05T23:23:10.1987178Z deleted: sha256:6dfbdb77e2a0cfd714b59c80bc93ca2b0138add898553e057b46a9d0e8823650 2025-06-05T23:23:10.1987814Z deleted: sha256:9278c843dd9c43b32d041b98e1b8e674fab76343b4531d7d541cf68ba57f374c 2025-06-05T23:23:10.1988447Z deleted: sha256:bec404d37ab2ba1b98cee9fecdc2db19ea8a6e291b3e6e9189e60f6677e6ac46 2025-06-05T23:23:10.1989097Z deleted: sha256:3778a567120a70ff8c8c30c565d09aa723fb46d3bed95bfbcfb24bee93f14fb6 2025-06-05T23:23:10.1989707Z deleted: sha256:67d77322b02e97c6419e98a6e52918b8c37bc1ab5f847714d6917629d4c7b6a8 2025-06-05T23:23:10.1990328Z deleted: sha256:9ab974125f769755573cefcab7bd771813200d7663f277a3d7c06e3112d45e22 2025-06-05T23:23:10.1991186Z deleted: sha256:8be32f602d5d63bf1419a3325e4a5a51d3b717181d5d93229737eeb3906ae893 2025-06-05T23:23:10.1991831Z deleted: sha256:ec5a8824d736ee5ec8f21c6b6d3c494bcc84c6f07485b236cab0d33f397fce9f 2025-06-05T23:23:10.1992480Z deleted: sha256:a4a30b818a5b6594fb0a45e43dea8052d3d53213f020b6aa0c32d029a6e01538 2025-06-05T23:23:10.1993118Z deleted: sha256:322bfc9dbc1707ce92204603a2ff6efce6418f114f6fc4348258b902b8e4c948 2025-06-05T23:23:10.1993752Z deleted: sha256:633778dd93cbbecd26b37587b1fcd8121a4a488ad4a56d8d519b5494616dc99d 2025-06-05T23:23:10.1994380Z deleted: sha256:aee88ba3539022a8bd61bed51d45c899a91867b4b34bae578d6c74c0e0cdba40 2025-06-05T23:23:10.1995017Z deleted: sha256:1d39d1de3a3be067e52497e04d914bb76df7f9c941dbf1e15ac4d66b49db232e 2025-06-05T23:23:10.1995668Z deleted: sha256:c4f6f77def43fc48fffee1f2a242ee4a9dee46fbf4043e4415f245ddcac73951 2025-06-05T23:23:10.1996424Z deleted: sha256:34b336eed3f3f101af9cd008e02cf72f1ec379ae0ba2c5aed97f28fdb3e8212b 2025-06-05T23:23:10.1997060Z deleted: sha256:28ae3822547285ab6d4a26099ae65130ec1844fc8e893f337d9c12159437fec2 2025-06-05T23:23:10.1997672Z deleted: sha256:bb80166d4410f46deb56858f88f277bfc87b8c6f912d802aa80ac611299bc1d9 2025-06-05T23:23:10.1998353Z deleted: sha256:f862e1968e4b4c3c3af141e37d2ec22b19ec0fd50d6a8aaf683de6729e296226 2025-06-05T23:23:10.1998953Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest 2025-06-05T23:23:10.1999804Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine@sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 2025-06-05T23:23:10.2000683Z deleted: sha256:6dbb9cc54074106d46d4ccb330f2a40a682d49dda5f4844962b7dce9fe44aaec 2025-06-05T23:23:10.2001315Z deleted: sha256:b2d5eeeaba3a22b9b8aa97261957974a6bd65274ebd43e1d81d0a7b8b752b116 2025-06-05T23:23:10.2001706Z 2025-06-05T23:23:10.2019104Z Total reclaimed space: 14.3GB 2025-06-05T23:23:10.2058855Z ##[group]Run set +e 2025-06-05T23:23:10.2059140Z set +e 2025-06-05T23:23:10.2059378Z if [[ "${NO_SUDO}" == "false" ]]; then 2025-06-05T23:23:10.2059789Z  sudo rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2025-06-05T23:23:10.2060133Z else 2025-06-05T23:23:10.2060407Z  rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2025-06-05T23:23:10.2060738Z fi 2025-06-05T23:23:10.2060947Z set -e 2025-06-05T23:23:10.2066355Z shell: /usr/bin/bash -e {0} 2025-06-05T23:23:10.2066619Z env: 2025-06-05T23:23:10.2066857Z DOCKER_IMAGE: executorch-ubuntu-22.04-linter 2025-06-05T23:23:10.2067204Z REPOSITORY: pytorch/executorch 2025-06-05T23:23:10.2067469Z PR_NUMBER: 2025-06-05T23:23:10.2072475Z 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}" # For mypy linting, we need to first install executorch first so that # it builds the python package information. BUILD_TOOL="cmake" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool "${BUILD_TOOL}" CACHE_DIRECTORY="/tmp/.lintbin" # Try to recover the cached binaries if [[ -d "${CACHE_DIRECTORY}" ]]; then # It's ok to fail this as lintrunner init would download these binaries # again if they do not exist cp -r "${CACHE_DIRECTORY}" . || true fi # This has already been cached in the docker image lintrunner init 2> /dev/null RC=0 # Run lintrunner on all files if ! lintrunner --force-color --all-files --tee-json=lint.json 2> /dev/null; then echo "" echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner\`. (If you don't get the same results, run \'lintrunner init\' to update your local linter)\e[0m" echo -e "\e[1m\e[36mSee https://github.com/pytorch/pytorch/wiki/lintrunner for setup instructions.\e[0m" RC=1 fi # Use jq to massage the JSON lint output into GitHub Actions workflow commands. jq --raw-output \ '"::\(if .severity == "advice" or .severity == "disabled" then "warning" else .severity end) file=\(.path),line=\(.line),col=\(.char),title=\(.code) \(.name)::" + (.description | gsub("\\n"; "%0A"))' \ lint.json || true exit $RC 2025-06-05T23:23:10.2078011Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:23:10.2078587Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:23:10.2079128Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:23:10.2079496Z NO_SUDO: false 2025-06-05T23:23:10.2079715Z ##[endgroup] 2025-06-05T23:23:12.0363855Z Post job cleanup. 2025-06-05T23:23:12.1366762Z Post job cleanup. 2025-06-05T23:23:12.2292845Z [command]/usr/bin/git version 2025-06-05T23:23:12.2347963Z git version 2.47.1 2025-06-05T23:23:12.2387246Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/3c8ad1cc-8c2d-4e9d-91f6-3372a4b4c2c7' before making global git config changes 2025-06-05T23:23:12.2388187Z Adding repository directory to the temporary git global config as a safe directory 2025-06-05T23:23:12.2392183Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-05T23:23:12.2425653Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-05T23:23:12.2459712Z [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:23:12.2730531Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-05T23:23:12.2747194Z http.https://github.com/.extraheader 2025-06-05T23:23:12.2755995Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2025-06-05T23:23:12.2780366Z [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:23:12.3078690Z A job completed hook has been configured by the self-hosted runner administrator 2025-06-05T23:23:12.3103905Z ##[group]Run '/home/ec2-user/runner-scripts/after_job.sh' 2025-06-05T23:23:12.3108940Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:23:12.3109316Z ##[endgroup] 2025-06-05T23:23:19.0337149Z Cleaning up orphan processes