2025-06-05T23:49:10.5951554Z Current runner version: '2.325.0' 2025-06-05T23:49:10.5959371Z Runner name: 'i-06a522027965dcb7c' 2025-06-05T23:49:10.5960789Z Machine name: 'ip-10-0-52-27' 2025-06-05T23:49:10.5964646Z ##[group]GITHUB_TOKEN Permissions 2025-06-05T23:49:10.5967542Z Contents: read 2025-06-05T23:49:10.5968447Z Metadata: read 2025-06-05T23:49:10.5969284Z ##[endgroup] 2025-06-05T23:49:10.5971926Z Secret source: Actions 2025-06-05T23:49:10.5972948Z Prepare workflow directory 2025-06-05T23:49:10.6603313Z Prepare all required actions 2025-06-05T23:49:10.6648348Z Getting action download info 2025-06-05T23:49:10.9047423Z Download action repository 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-06-05T23:49:11.2691718Z Download action repository 'pytorch/pytorch@9c1bc9ce4684de96db025292610c0664d3d55345' (SHA:9c1bc9ce4684de96db025292610c0664d3d55345) 2025-06-05T23:49:18.4672515Z Download action repository 'actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) 2025-06-05T23:49:18.7943144Z Download action repository 'pmeier/pytest-results-action@a2c1430e2bddadbad9f49a6f9b879f062c6b19b1' (SHA:a2c1430e2bddadbad9f49a6f9b879f062c6b19b1) 2025-06-05T23:49:18.9480668Z Download action repository 'actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-06-05T23:49:19.3678631Z Download action repository 'seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-06-05T23:49:19.6256107Z Getting action download info 2025-06-05T23:49:19.7243988Z Download action repository 'pytorch/pytorch@main' (SHA:28796f71d04302029290f473a286efc2aba339c2) 2025-06-05T23:49:33.0414605Z Complete job name: test-huggingface-transformers (HuggingFaceTB/SmolLM2-135M) / linux-job 2025-06-05T23:49:33.0889812Z A job started hook has been configured by the self-hosted runner administrator 2025-06-05T23:49:33.1022015Z ##[group]Run '/home/ec2-user/runner-scripts/before_job.sh' 2025-06-05T23:49:33.1032018Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:33.1032842Z ##[endgroup] 2025-06-05T23:49:34.4204679Z Runner Type: linux.2xlarge.memory 2025-06-05T23:49:34.4205380Z Instance Type: r5.2xlarge 2025-06-05T23:49:34.4205777Z AMI Name: unknown 2025-06-05T23:49:34.4233828Z AMI ID: ami-071226ecf16aa7d96 2025-06-05T23:49:40.3238902Z ##[group]Run set -euxo pipefail 2025-06-05T23:49:40.3239442Z set -euxo pipefail 2025-06-05T23:49:40.3239890Z if [[ "${NO_SUDO}" == "false" ]]; then 2025-06-05T23:49:40.3240436Z  echo "::group::Cleanup with-sudo debug output" 2025-06-05T23:49:40.3240987Z  sudo rm -rfv "${GITHUB_WORKSPACE}" 2025-06-05T23:49:40.3241427Z else 2025-06-05T23:49:40.3241831Z  echo "::group::Cleanup no-sudo debug output" 2025-06-05T23:49:40.3242335Z  rm -rfv "${GITHUB_WORKSPACE}" 2025-06-05T23:49:40.3242767Z fi 2025-06-05T23:49:40.3243083Z  2025-06-05T23:49:40.3243424Z mkdir -p "${GITHUB_WORKSPACE}" 2025-06-05T23:49:40.3243866Z echo "::endgroup::" 2025-06-05T23:49:40.3254048Z shell: /usr/bin/bash -e {0} 2025-06-05T23:49:40.3254632Z env: 2025-06-05T23:49:40.3255025Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:40.3255540Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:40.3256008Z PR_NUMBER: 2025-06-05T23:49:40.3271495Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:49:40.3287223Z NO_SUDO: false 2025-06-05T23:49:40.3287545Z ##[endgroup] 2025-06-05T23:49:40.3317898Z + [[ false == \f\a\l\s\e ]] 2025-06-05T23:49:40.3329962Z + echo '::group::Cleanup with-sudo debug output' 2025-06-05T23:49:40.3330650Z + sudo rm -rfv /home/ec2-user/actions-runner/_work/executorch/executorch 2025-06-05T23:49:40.3338587Z ##[group]Cleanup with-sudo debug output 2025-06-05T23:49:40.4691091Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch' 2025-06-05T23:49:40.4707832Z + mkdir -p /home/ec2-user/actions-runner/_work/executorch/executorch 2025-06-05T23:49:40.4720550Z + echo ::endgroup:: 2025-06-05T23:49:40.4721438Z ##[endgroup] 2025-06-05T23:49:40.4872408Z ##[group]Run actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 2025-06-05T23:49:40.4873041Z with: 2025-06-05T23:49:40.4873376Z repository: pytorch/test-infra 2025-06-05T23:49:40.4873808Z path: test-infra 2025-06-05T23:49:40.4874149Z submodules: recursive 2025-06-05T23:49:40.4874834Z token: *** 2025-06-05T23:49:40.4875146Z ssh-strict: true 2025-06-05T23:49:40.4875485Z ssh-user: git 2025-06-05T23:49:40.4875826Z persist-credentials: true 2025-06-05T23:49:40.4876222Z clean: true 2025-06-05T23:49:40.4876561Z sparse-checkout-cone-mode: true 2025-06-05T23:49:40.4876989Z fetch-depth: 1 2025-06-05T23:49:40.4877315Z fetch-tags: false 2025-06-05T23:49:40.4877664Z show-progress: true 2025-06-05T23:49:40.4878000Z lfs: false 2025-06-05T23:49:40.4878334Z set-safe-directory: true 2025-06-05T23:49:40.4878876Z env: 2025-06-05T23:49:40.4879224Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:40.4879806Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:40.4880265Z PR_NUMBER: 2025-06-05T23:49:40.4896189Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:49:40.4922004Z ##[endgroup] 2025-06-05T23:49:40.6178778Z Syncing repository: pytorch/test-infra 2025-06-05T23:49:40.6179730Z ##[group]Getting Git version info 2025-06-05T23:49:40.6180463Z Working directory is '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra' 2025-06-05T23:49:40.6181441Z [command]/usr/bin/git version 2025-06-05T23:49:40.6181849Z git version 2.47.1 2025-06-05T23:49:40.6192921Z ##[endgroup] 2025-06-05T23:49:40.6206115Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/fd39aa07-97f2-4859-87c8-9153fac9d1eb' before making global git config changes 2025-06-05T23:49:40.6207446Z Adding repository directory to the temporary git global config as a safe directory 2025-06-05T23:49:40.6211512Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-05T23:49:40.6240955Z ##[group]Initializing the repository 2025-06-05T23:49:40.6245654Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-05T23:49:40.6276049Z hint: Using 'master' as the name for the initial branch. This default branch name 2025-06-05T23:49:40.6277231Z hint: is subject to change. To configure the initial branch name to use in all 2025-06-05T23:49:40.6278132Z hint: of your new repositories, which will suppress this warning, call: 2025-06-05T23:49:40.6278708Z hint: 2025-06-05T23:49:40.6279101Z hint: git config --global init.defaultBranch 2025-06-05T23:49:40.6279590Z hint: 2025-06-05T23:49:40.6280043Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2025-06-05T23:49:40.6281197Z hint: 'development'. The just-created branch can be renamed via this command: 2025-06-05T23:49:40.6281864Z hint: 2025-06-05T23:49:40.6282226Z hint: git branch -m 2025-06-05T23:49:40.6283018Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/ 2025-06-05T23:49:40.6285737Z [command]/usr/bin/git remote add origin https://github.com/pytorch/test-infra 2025-06-05T23:49:40.6310920Z ##[endgroup] 2025-06-05T23:49:40.6311533Z ##[group]Disabling automatic garbage collection 2025-06-05T23:49:40.6315005Z [command]/usr/bin/git config --local gc.auto 0 2025-06-05T23:49:40.6341169Z ##[endgroup] 2025-06-05T23:49:40.6341758Z ##[group]Setting up auth 2025-06-05T23:49:40.6346924Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-05T23:49:40.6372789Z [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:49:40.6664266Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-05T23:49:40.6689322Z [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:49:40.6960175Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:49:40.7002316Z ##[endgroup] 2025-06-05T23:49:40.7002926Z ##[group]Determining the default branch 2025-06-05T23:49:40.7006148Z Retrieving the default branch name 2025-06-05T23:49:40.8872724Z Default branch 'main' 2025-06-05T23:49:40.8873517Z ##[endgroup] 2025-06-05T23:49:40.8874112Z ##[group]Fetching the repository 2025-06-05T23:49:40.8879459Z [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:49:41.3170158Z From https://github.com/pytorch/test-infra 2025-06-05T23:49:41.3170801Z * [new branch] main -> origin/main 2025-06-05T23:49:41.3195403Z ##[endgroup] 2025-06-05T23:49:41.3196312Z ##[group]Determining the checkout info 2025-06-05T23:49:41.3197720Z ##[endgroup] 2025-06-05T23:49:41.3203220Z [command]/usr/bin/git sparse-checkout disable 2025-06-05T23:49:41.3239988Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-06-05T23:49:41.3267074Z ##[group]Checking out the ref 2025-06-05T23:49:41.3271531Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main 2025-06-05T23:49:41.4222566Z Switched to a new branch 'main' 2025-06-05T23:49:41.4223514Z branch 'main' set up to track 'origin/main'. 2025-06-05T23:49:41.4230943Z ##[endgroup] 2025-06-05T23:49:41.4231901Z ##[group]Setting up auth for fetching submodules 2025-06-05T23:49:41.4237548Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:49:41.4282206Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-06-05T23:49:41.4313503Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-06-05T23:49:41.4343648Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-06-05T23:49:41.4370704Z ##[endgroup] 2025-06-05T23:49:41.4371678Z ##[group]Fetching submodules 2025-06-05T23:49:41.4375251Z [command]/usr/bin/git submodule sync --recursive 2025-06-05T23:49:41.4655230Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2025-06-05T23:49:41.4936037Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-06-05T23:49:41.5206935Z ##[endgroup] 2025-06-05T23:49:41.5207950Z ##[group]Persisting credentials for submodules 2025-06-05T23:49:41.5214305Z [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:49:41.5487748Z [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:49:41.5765191Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-06-05T23:49:41.6044342Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-06-05T23:49:41.6318242Z ##[endgroup] 2025-06-05T23:49:41.6353208Z [command]/usr/bin/git log -1 --format=%H 2025-06-05T23:49:41.6376472Z e339ed56a2ad5e0f901a4edc5e1d5770100696d3 2025-06-05T23:49:41.6583137Z Prepare all required actions 2025-06-05T23:49:41.6583828Z Getting action download info 2025-06-05T23:49:41.7745198Z Download action repository 'pytorch/test-infra@main' (SHA:e339ed56a2ad5e0f901a4edc5e1d5770100696d3) 2025-06-05T23:49:43.2360812Z Getting action download info 2025-06-05T23:49:43.3484409Z Download action repository 'nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482' (SHA:3e91a01664abd3c5cd539100d10d33b9c5b68482) 2025-06-05T23:49:43.5085990Z ##[group]Run ./test-infra/.github/actions/setup-linux 2025-06-05T23:49:43.5086512Z env: 2025-06-05T23:49:43.5086883Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:43.5087395Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:43.5087796Z PR_NUMBER: 2025-06-05T23:49:43.5102971Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:49:43.5118985Z ##[endgroup] 2025-06-05T23:49:43.5239368Z ##[group]Run set -euo pipefail 2025-06-05T23:49:43.5239828Z set -euo pipefail 2025-06-05T23:49:43.5240477Z function get_ec2_metadata() { 2025-06-05T23:49:43.5241004Z  # Pulled from instance metadata endpoint for EC2 2025-06-05T23:49:43.5241841Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-06-05T23:49:43.5242611Z  category=$1 2025-06-05T23:49:43.5243778Z  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:49:43.5244997Z } 2025-06-05T23:49:43.5245359Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-06-05T23:49:43.5245930Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-06-05T23:49:43.5246557Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-06-05T23:49:43.5247129Z echo "system info $(uname -a)" 2025-06-05T23:49:43.5253620Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:43.5254119Z env: 2025-06-05T23:49:43.5254605Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:43.5255092Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:43.5255495Z PR_NUMBER: 2025-06-05T23:49:43.5270773Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:49:43.5286176Z ##[endgroup] 2025-06-05T23:49:43.5420781Z ami-id: ami-071226ecf16aa7d96 2025-06-05T23:49:43.5516231Z instance-id: i-06a522027965dcb7c 2025-06-05T23:49:43.5611115Z instance-type: r5.2xlarge 2025-06-05T23:49:43.5622105Z system info Linux ip-10-0-52-27.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:49:43.5661517Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:49:43.5662785Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:49:43.5669361Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:43.5669858Z env: 2025-06-05T23:49:43.5670232Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:43.5670728Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:43.5671139Z PR_NUMBER: 2025-06-05T23:49:43.5686229Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:49:43.5701793Z ##[endgroup] 2025-06-05T23:49:43.5783439Z ##[group]Run if systemctl is-active --quiet docker; then 2025-06-05T23:49:43.5784053Z if systemctl is-active --quiet docker; then 2025-06-05T23:49:43.5784584Z  echo "Docker daemon is running..."; 2025-06-05T23:49:43.5785051Z else 2025-06-05T23:49:43.5785536Z  echo "Starting docker deamon..." && sudo systemctl start docker; 2025-06-05T23:49:43.5786126Z fi 2025-06-05T23:49:43.5792052Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:43.5792560Z env: 2025-06-05T23:49:43.5792940Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:43.5793428Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:43.5793838Z PR_NUMBER: 2025-06-05T23:49:43.5809171Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:49:43.5824792Z ##[endgroup] 2025-06-05T23:49:43.5899402Z Docker daemon is running... 2025-06-05T23:49:43.5930964Z ##[group]Run AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2025-06-05T23:49:43.5931819Z AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2025-06-05T23:49:43.5932513Z retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2025-06-05T23:49:43.5933343Z retry aws ecr get-login-password --region "$AWS_DEFAULT_REGION" | docker login --username AWS \ 2025-06-05T23:49:43.5934312Z  --password-stdin "$AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com" 2025-06-05T23:49:43.5940518Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:43.5941032Z env: 2025-06-05T23:49:43.5941422Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:43.5941918Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:43.5942323Z PR_NUMBER: 2025-06-05T23:49:43.5957353Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:49:43.5972822Z AWS_RETRY_MODE: standard 2025-06-05T23:49:43.5973198Z AWS_MAX_ATTEMPTS: 5 2025-06-05T23:49:43.5973578Z AWS_DEFAULT_REGION: us-east-1 2025-06-05T23:49:43.5973958Z ##[endgroup] 2025-06-05T23:49:44.7280185Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:49:44.7281025Z Configure a credential helper to remove this warning. See 2025-06-05T23:49:44.7282044Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:49:44.7282660Z 2025-06-05T23:49:44.7282796Z Login Succeeded 2025-06-05T23:49:44.7328277Z ##[group]Run env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:49:44.7329232Z env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:49:44.7329932Z env | grep '^CI' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:49:44.7336848Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:44.7337394Z env: 2025-06-05T23:49:44.7337756Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:44.7338264Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:44.7338659Z PR_NUMBER: 2025-06-05T23:49:44.7354084Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:49:44.7369588Z ##[endgroup] 2025-06-05T23:49:44.7464806Z ##[group]Run RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2025-06-05T23:49:44.7465463Z RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2025-06-05T23:49:44.7466005Z sudo rm -rf "${RUNNER_ARTIFACT_DIR}" 2025-06-05T23:49:44.7466511Z mkdir -p "${RUNNER_ARTIFACT_DIR}" 2025-06-05T23:49:44.7467121Z echo "RUNNER_ARTIFACT_DIR=${RUNNER_ARTIFACT_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:49:44.7467751Z  2025-06-05T23:49:44.7468173Z RUNNER_TEST_RESULTS_DIR="${RUNNER_TEMP}/test-results" 2025-06-05T23:49:44.7468780Z sudo rm -rf "${RUNNER_TEST_RESULTS_DIR}" 2025-06-05T23:49:44.7469294Z mkdir -p "${RUNNER_TEST_RESULTS_DIR}" 2025-06-05T23:49:44.7469975Z echo "RUNNER_TEST_RESULTS_DIR=${RUNNER_TEST_RESULTS_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:49:44.7470598Z  2025-06-05T23:49:44.7470957Z RUNNER_DOCS_DIR="${RUNNER_TEMP}/docs" 2025-06-05T23:49:44.7471437Z sudo rm -rf "${RUNNER_DOCS_DIR}" 2025-06-05T23:49:44.7471904Z mkdir -p "${RUNNER_DOCS_DIR}" 2025-06-05T23:49:44.7472456Z echo "RUNNER_DOCS_DIR=${RUNNER_DOCS_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:49:44.7478685Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:44.7479189Z env: 2025-06-05T23:49:44.7479549Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:44.7480054Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:44.7480464Z PR_NUMBER: 2025-06-05T23:49:44.7495671Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:49:44.7511338Z ##[endgroup] 2025-06-05T23:49:45.2220969Z ##[group]Run needs=0 2025-06-05T23:49:45.2221348Z needs=0 2025-06-05T23:49:45.2221894Z if lspci -v | grep -e 'controller.*NVIDIA' >/dev/null 2>/dev/null; then 2025-06-05T23:49:45.2222488Z  needs=1 2025-06-05T23:49:45.2222830Z fi 2025-06-05T23:49:45.2223184Z echo "does=${needs}" >> $GITHUB_OUTPUT 2025-06-05T23:49:45.2230628Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:45.2231156Z env: 2025-06-05T23:49:45.2231516Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:45.2232017Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:45.2232414Z PR_NUMBER: 2025-06-05T23:49:45.2247510Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:49:45.2263317Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:49:45.2264128Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:49:45.2264889Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:49:45.2265421Z ##[endgroup] 2025-06-05T23:49:45.2540689Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:49:45.2541468Z # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:49:45.2542052Z # shellcheck disable=SC2046 2025-06-05T23:49:45.2542533Z docker stop $(docker ps -q) || true 2025-06-05T23:49:45.2543013Z # Prune all of the docker images 2025-06-05T23:49:45.2543481Z docker system prune -af 2025-06-05T23:49:45.2549592Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:45.2550109Z env: 2025-06-05T23:49:45.2550485Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:45.2550972Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:45.2551383Z PR_NUMBER: 2025-06-05T23:49:45.2566584Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:49:45.2582429Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:49:45.2583226Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:49:45.2583987Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:49:45.2584513Z ##[endgroup] 2025-06-05T23:49:45.2843988Z "docker stop" requires at least 1 argument. 2025-06-05T23:49:45.2844524Z See 'docker stop --help'. 2025-06-05T23:49:45.2844798Z 2025-06-05T23:49:45.2845044Z Usage: docker stop [OPTIONS] CONTAINER [CONTAINER...] 2025-06-05T23:49:45.2845422Z 2025-06-05T23:49:45.2845593Z Stop one or more running containers 2025-06-05T23:49:45.3115759Z Total reclaimed space: 0B 2025-06-05T23:49:45.3199329Z ##[group]Run ./test-infra/.github/actions/setup-ssh 2025-06-05T23:49:45.3199821Z with: 2025-06-05T23:49:45.3200522Z github-secret: *** 2025-06-05T23:49:45.3201717Z 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:49:45.3202981Z activate-with-label: false 2025-06-05T23:49:45.3203847Z label: with-ssh 2025-06-05T23:49:45.3204596Z remove-existing-keys: true 2025-06-05T23:49:45.3205203Z fail-silently: true 2025-06-05T23:49:45.3205656Z env: 2025-06-05T23:49:45.3206175Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:45.3206809Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:45.3207338Z PR_NUMBER: 2025-06-05T23:49:45.3222806Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:49:45.3238665Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:49:45.3239708Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:49:45.3240644Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:49:45.3241266Z ##[endgroup] 2025-06-05T23:49:45.4454854Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-06-05T23:49:45.4456989Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-06-05T23:49:45.4595020Z ##[group]Run actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 2025-06-05T23:49:45.4595747Z with: 2025-06-05T23:49:45.4596090Z repository: pytorch/executorch 2025-06-05T23:49:45.4596539Z ref: bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:49:45.4597029Z path: pytorch/executorch 2025-06-05T23:49:45.4597406Z fetch-depth: 1 2025-06-05T23:49:45.4597755Z submodules: recursive 2025-06-05T23:49:45.4598262Z token: *** 2025-06-05T23:49:45.4598591Z ssh-strict: true 2025-06-05T23:49:45.4598917Z ssh-user: git 2025-06-05T23:49:45.4599269Z persist-credentials: true 2025-06-05T23:49:45.4599647Z clean: true 2025-06-05T23:49:45.4600007Z sparse-checkout-cone-mode: true 2025-06-05T23:49:45.4600416Z fetch-tags: false 2025-06-05T23:49:45.4600748Z show-progress: true 2025-06-05T23:49:45.4601099Z lfs: false 2025-06-05T23:49:45.4601420Z set-safe-directory: true 2025-06-05T23:49:45.4601785Z env: 2025-06-05T23:49:45.4602204Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:45.4602701Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:45.4603116Z PR_NUMBER: 2025-06-05T23:49:45.4618592Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:49:45.4634405Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:49:45.4635202Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:49:45.4635971Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:49:45.4636518Z ##[endgroup] 2025-06-05T23:49:45.5706289Z Syncing repository: pytorch/executorch 2025-06-05T23:49:45.5716230Z ##[group]Getting Git version info 2025-06-05T23:49:45.5717592Z Working directory is '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch' 2025-06-05T23:49:45.5748069Z [command]/usr/bin/git version 2025-06-05T23:49:45.5785856Z git version 2.47.1 2025-06-05T23:49:45.5815661Z ##[endgroup] 2025-06-05T23:49:45.5830527Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/282781f1-d54d-41e8-8503-aba32ca20c64' before making global git config changes 2025-06-05T23:49:45.5832894Z Adding repository directory to the temporary git global config as a safe directory 2025-06-05T23:49:45.5838161Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch 2025-06-05T23:49:45.5869608Z ##[group]Initializing the repository 2025-06-05T23:49:45.5875661Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch 2025-06-05T23:49:45.5906411Z hint: Using 'master' as the name for the initial branch. This default branch name 2025-06-05T23:49:45.5907969Z hint: is subject to change. To configure the initial branch name to use in all 2025-06-05T23:49:45.5909271Z hint: of your new repositories, which will suppress this warning, call: 2025-06-05T23:49:45.5910288Z hint: 2025-06-05T23:49:45.5910926Z hint: git config --global init.defaultBranch 2025-06-05T23:49:45.5911786Z hint: 2025-06-05T23:49:45.5912560Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2025-06-05T23:49:45.5913844Z hint: 'development'. The just-created branch can be renamed via this command: 2025-06-05T23:49:45.5914843Z hint: 2025-06-05T23:49:45.5915390Z hint: git branch -m 2025-06-05T23:49:45.5916866Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/ 2025-06-05T23:49:45.5920971Z [command]/usr/bin/git remote add origin https://github.com/pytorch/executorch 2025-06-05T23:49:45.5948365Z ##[endgroup] 2025-06-05T23:49:45.5949392Z ##[group]Disabling automatic garbage collection 2025-06-05T23:49:45.5954266Z [command]/usr/bin/git config --local gc.auto 0 2025-06-05T23:49:45.5981966Z ##[endgroup] 2025-06-05T23:49:45.5982916Z ##[group]Setting up auth 2025-06-05T23:49:45.5989057Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-05T23:49:45.6017732Z [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:49:45.6291018Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-05T23:49:45.6316667Z [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:49:45.6589240Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:49:45.6630016Z ##[endgroup] 2025-06-05T23:49:45.6630700Z ##[group]Fetching the repository 2025-06-05T23:49:45.6638381Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:49:48.1102596Z From https://github.com/pytorch/executorch 2025-06-05T23:49:48.1103532Z * branch bd572346e4f196b36aaa03a1645d12b1618fe88b -> FETCH_HEAD 2025-06-05T23:49:48.1124684Z ##[endgroup] 2025-06-05T23:49:48.1125321Z ##[group]Determining the checkout info 2025-06-05T23:49:48.1126740Z ##[endgroup] 2025-06-05T23:49:48.1131337Z [command]/usr/bin/git sparse-checkout disable 2025-06-05T23:49:48.1164994Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-06-05T23:49:48.1189327Z ##[group]Checking out the ref 2025-06-05T23:49:48.1192835Z [command]/usr/bin/git checkout --progress --force bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:49:48.6739978Z Note: switching to 'bd572346e4f196b36aaa03a1645d12b1618fe88b'. 2025-06-05T23:49:48.6740443Z 2025-06-05T23:49:48.6740756Z You are in 'detached HEAD' state. You can look around, make experimental 2025-06-05T23:49:48.6741491Z changes and commit them, and you can discard any commits you make in this 2025-06-05T23:49:48.6742275Z state without impacting any branches by switching back to a branch. 2025-06-05T23:49:48.6742732Z 2025-06-05T23:49:48.6743009Z If you want to create a new branch to retain commits you create, you may 2025-06-05T23:49:48.6743699Z do so (now or later) by using -c with the switch command. Example: 2025-06-05T23:49:48.6744100Z 2025-06-05T23:49:48.6744261Z git switch -c 2025-06-05T23:49:48.6744548Z 2025-06-05T23:49:48.6744721Z Or undo this operation with: 2025-06-05T23:49:48.6744984Z 2025-06-05T23:49:48.6745116Z git switch - 2025-06-05T23:49:48.6745312Z 2025-06-05T23:49:48.6745638Z Turn off this advice by setting config variable advice.detachedHead to false 2025-06-05T23:49:48.6746111Z 2025-06-05T23:49:48.6746461Z HEAD is now at bd57234 Qualcomm AI Engine Direct - QAIRT Visualizer Engagement (#10873) 2025-06-05T23:49:48.6770141Z ##[endgroup] 2025-06-05T23:49:48.6770749Z ##[group]Setting up auth for fetching submodules 2025-06-05T23:49:48.6775821Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:49:48.6816719Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-06-05T23:49:48.6841936Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-06-05T23:49:48.6868611Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-06-05T23:49:48.6890011Z ##[endgroup] 2025-06-05T23:49:48.6890594Z ##[group]Fetching submodules 2025-06-05T23:49:48.6893171Z [command]/usr/bin/git submodule sync --recursive 2025-06-05T23:49:48.7177575Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2025-06-05T23:49:48.7451362Z 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:49:48.7454074Z 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:49:48.7457413Z Submodule 'backends/cadence/utils/FACTO' (https://github.com/pytorch-labs/FACTO.git) registered for path 'backends/cadence/utils/FACTO' 2025-06-05T23:49:48.7461775Z 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:49:48.7466582Z Submodule 'backends/vulkan/third-party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:49:48.7470777Z Submodule 'backends/vulkan/third-party/volk' (https://github.com/zeux/volk) registered for path 'backends/vulkan/third-party/volk' 2025-06-05T23:49:48.7474459Z Submodule 'backends/xnnpack/third-party/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'backends/xnnpack/third-party/FP16' 2025-06-05T23:49:48.7477732Z Submodule 'backends/xnnpack/third-party/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:49:48.7481199Z Submodule 'backends/xnnpack/third-party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:49:48.7484478Z Submodule 'backends/xnnpack/third-party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:49:48.7488128Z Submodule 'backends/xnnpack/third-party/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:49:48.7491490Z Submodule 'extension/llm/tokenizers' (https://github.com/pytorch-labs/tokenizers.git) registered for path 'extension/llm/tokenizers' 2025-06-05T23:49:48.7495398Z Submodule 'kernels/optimized/third-party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'kernels/optimized/third-party/eigen' 2025-06-05T23:49:48.7499017Z Submodule 'shim' (https://github.com/facebook/buck2-shims-meta) registered for path 'shim' 2025-06-05T23:49:48.7502891Z Submodule 'third-party/ao' (https://github.com/pytorch/ao.git) registered for path 'third-party/ao' 2025-06-05T23:49:48.7508157Z Submodule 'third-party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third-party/flatbuffers' 2025-06-05T23:49:48.7513845Z Submodule 'third-party/flatcc' (https://github.com/dvidelabs/flatcc.git) registered for path 'third-party/flatcc' 2025-06-05T23:49:48.7518120Z Submodule 'third-party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third-party/gflags' 2025-06-05T23:49:48.7522487Z Submodule 'third-party/googletest' (https://github.com/google/googletest.git) registered for path 'third-party/googletest' 2025-06-05T23:49:48.7526825Z Submodule 'third-party/ios-cmake' (https://github.com/leetal/ios-cmake) registered for path 'third-party/ios-cmake' 2025-06-05T23:49:48.7531471Z Submodule 'third-party/json' (https://github.com/nlohmann/json.git) registered for path 'third-party/json' 2025-06-05T23:49:48.7536367Z Submodule 'third-party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third-party/pocketfft' 2025-06-05T23:49:48.7541050Z Submodule 'third-party/prelude' (https://github.com/facebook/buck2-prelude.git) registered for path 'third-party/prelude' 2025-06-05T23:49:48.7545786Z Submodule 'third-party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third-party/pybind11' 2025-06-05T23:49:48.7574188Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/ethos-u-core-driver'... 2025-06-05T23:49:49.5667599Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/serialization_lib'... 2025-06-05T23:49:50.0697843Z warning: redirecting to https://git.gitlab.arm.com/-/push_from_secondary/7/tosa/tosa-serialization.git/ 2025-06-05T23:49:50.6977456Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/cadence/utils/FACTO'... 2025-06-05T23:49:51.0074870Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/Vulkan-Headers'... 2025-06-05T23:49:51.4160619Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/VulkanMemoryAllocator'... 2025-06-05T23:49:51.6794268Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/volk'... 2025-06-05T23:49:51.9409895Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/FP16'... 2025-06-05T23:49:52.1889745Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/FXdiv'... 2025-06-05T23:49:52.4568508Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/XNNPACK'... 2025-06-05T23:49:53.1983263Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/cpuinfo'... 2025-06-05T23:49:53.5710444Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/pthreadpool'... 2025-06-05T23:49:53.7766757Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers'... 2025-06-05T23:49:54.0693680Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/kernels/optimized/third-party/eigen'... 2025-06-05T23:49:54.8479211Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/shim'... 2025-06-05T23:49:55.1455368Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ao'... 2025-06-05T23:49:55.6101281Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/flatbuffers'... 2025-06-05T23:49:55.9775698Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/flatcc'... 2025-06-05T23:49:57.2737713Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/gflags'... 2025-06-05T23:49:57.5477857Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/googletest'... 2025-06-05T23:49:57.8657404Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ios-cmake'... 2025-06-05T23:49:58.0607358Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/json'... 2025-06-05T23:49:58.4959911Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/pocketfft'... 2025-06-05T23:49:58.8556299Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/prelude'... 2025-06-05T23:49:59.2929884Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/pybind11'... 2025-06-05T23:50:00.7837517Z From https://git.gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-core-driver 2025-06-05T23:50:00.7838415Z * branch 7bf44c54527e718b99d588ce520cf2f96343adb1 -> FETCH_HEAD 2025-06-05T23:50:00.7955149Z Submodule path 'backends/arm/third-party/ethos-u-core-driver': checked out '7bf44c54527e718b99d588ce520cf2f96343adb1' 2025-06-05T23:50:01.2737989Z warning: redirecting to https://git.gitlab.arm.com/-/push_from_secondary/7/tosa/tosa-serialization.git/ 2025-06-05T23:50:02.2891393Z warning: redirecting to https://git.gitlab.arm.com/-/push_from_secondary/7/tosa/tosa-serialization.git/ 2025-06-05T23:50:03.2876062Z From https://git.gitlab.arm.com/tosa/tosa-serialization 2025-06-05T23:50:03.2876817Z * branch 187af0d41fe75d08d2a7ec84c1b4d24b9b641ed2 -> FETCH_HEAD 2025-06-05T23:50:03.2992308Z Submodule path 'backends/arm/third-party/serialization_lib': checked out '187af0d41fe75d08d2a7ec84c1b4d24b9b641ed2' 2025-06-05T23:50:03.3008620Z 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:50:03.3035015Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers'... 2025-06-05T23:50:04.6323135Z From https://github.com/google/flatbuffers 2025-06-05T23:50:04.6323836Z * branch 0100f6a5779831fa7a651e4b67ef389a8752bd9b -> FETCH_HEAD 2025-06-05T23:50:04.7480672Z Submodule path 'backends/arm/third-party/serialization_lib/third_party/flatbuffers': checked out '0100f6a5779831fa7a651e4b67ef389a8752bd9b' 2025-06-05T23:50:05.3822610Z From https://github.com/pytorch-labs/FACTO 2025-06-05T23:50:05.3904939Z * branch 1db37fc79d0d59638cbb794fa49d878aafc24461 -> FETCH_HEAD 2025-06-05T23:50:05.3905882Z Submodule path 'backends/cadence/utils/FACTO': checked out '1db37fc79d0d59638cbb794fa49d878aafc24461' 2025-06-05T23:50:06.2682421Z From https://github.com/KhronosGroup/Vulkan-Headers 2025-06-05T23:50:06.2683153Z * branch 0c5928795a66e93f65e5e68a36d8daa79a209dc2 -> FETCH_HEAD 2025-06-05T23:50:06.3247376Z Submodule path 'backends/vulkan/third-party/Vulkan-Headers': checked out '0c5928795a66e93f65e5e68a36d8daa79a209dc2' 2025-06-05T23:50:06.9362949Z From https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator 2025-06-05T23:50:06.9363778Z * branch a6bfc237255a6bac1513f7c1ebde6d8aed6b5191 -> FETCH_HEAD 2025-06-05T23:50:06.9714045Z Submodule path 'backends/vulkan/third-party/VulkanMemoryAllocator': checked out 'a6bfc237255a6bac1513f7c1ebde6d8aed6b5191' 2025-06-05T23:50:07.4168432Z From https://github.com/zeux/volk 2025-06-05T23:50:07.4169107Z * branch b3bc21e584f97400b6884cb2a541a56c6a5ddba3 -> FETCH_HEAD 2025-06-05T23:50:07.4262457Z Submodule path 'backends/vulkan/third-party/volk': checked out 'b3bc21e584f97400b6884cb2a541a56c6a5ddba3' 2025-06-05T23:50:08.0043083Z From https://github.com/Maratyszcza/FP16 2025-06-05T23:50:08.0043791Z * branch 4dfe081cf6bcd15db339cf2680b9281b8451eeb3 -> FETCH_HEAD 2025-06-05T23:50:08.0151084Z Submodule path 'backends/xnnpack/third-party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-06-05T23:50:08.4918100Z From https://github.com/Maratyszcza/FXdiv 2025-06-05T23:50:08.4918783Z * branch b408327ac2a15ec3e43352421954f5b1967701d1 -> FETCH_HEAD 2025-06-05T23:50:08.4977162Z Submodule path 'backends/xnnpack/third-party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-06-05T23:50:10.2547044Z From https://github.com/google/XNNPACK 2025-06-05T23:50:10.2547752Z * branch 4ea82e595b36106653175dcb04b2aa532660d0d8 -> FETCH_HEAD 2025-06-05T23:50:10.9144087Z Submodule path 'backends/xnnpack/third-party/XNNPACK': checked out '4ea82e595b36106653175dcb04b2aa532660d0d8' 2025-06-05T23:50:11.5538922Z From https://github.com/pytorch/cpuinfo 2025-06-05T23:50:11.5539613Z * branch c61fe919607bbc534d7a5a5707bdd7041e72c5ff -> FETCH_HEAD 2025-06-05T23:50:11.6467134Z Submodule path 'backends/xnnpack/third-party/cpuinfo': checked out 'c61fe919607bbc534d7a5a5707bdd7041e72c5ff' 2025-06-05T23:50:12.1456029Z From https://github.com/Maratyszcza/pthreadpool 2025-06-05T23:50:12.1456728Z * branch 4fe0e1e183925bf8cfa6aae24237e724a96479b8 -> FETCH_HEAD 2025-06-05T23:50:12.1544043Z Submodule path 'backends/xnnpack/third-party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-06-05T23:50:12.6623335Z From https://github.com/pytorch-labs/tokenizers 2025-06-05T23:50:12.6624024Z * branch fc5962cd9e08019c5df6667eba3377e7d76441f7 -> FETCH_HEAD 2025-06-05T23:50:12.6901756Z Submodule path 'extension/llm/tokenizers': checked out 'fc5962cd9e08019c5df6667eba3377e7d76441f7' 2025-06-05T23:50:12.6919104Z 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:50:12.6921838Z Submodule 'third-party/json' (https://github.com/nlohmann/json.git) registered for path 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:12.6925080Z Submodule 'third-party/pcre2' (https://github.com/PCRE2Project/pcre2.git) registered for path 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:12.6928225Z Submodule 'third-party/re2' (https://github.com/google/re2.git) registered for path 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:12.6931743Z Submodule 'third-party/sentencepiece' (https://github.com/google/sentencepiece.git) registered for path 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:12.6959501Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/abseil-cpp'... 2025-06-05T23:50:13.0987646Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/json'... 2025-06-05T23:50:13.5723190Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/pcre2'... 2025-06-05T23:50:13.9617712Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/re2'... 2025-06-05T23:50:14.1709533Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece'... 2025-06-05T23:50:15.5645865Z From https://github.com/abseil/abseil-cpp 2025-06-05T23:50:15.5646546Z * branch 7d96b2e93d9a84530748b68abd2f97595c51ecf4 -> FETCH_HEAD 2025-06-05T23:50:15.6728323Z Submodule path 'extension/llm/tokenizers/third-party/abseil-cpp': checked out '7d96b2e93d9a84530748b68abd2f97595c51ecf4' 2025-06-05T23:50:16.3802396Z From https://github.com/nlohmann/json 2025-06-05T23:50:16.3803075Z * branch e6cafa573aac6ed9227f752a5371c0b3f436307d -> FETCH_HEAD 2025-06-05T23:50:16.4851720Z Submodule path 'extension/llm/tokenizers/third-party/json': checked out 'e6cafa573aac6ed9227f752a5371c0b3f436307d' 2025-06-05T23:50:17.0807924Z From https://github.com/PCRE2Project/pcre2 2025-06-05T23:50:17.0809019Z * branch 2e03e323339ab692640626f02f8d8d6f95bff9c6 -> FETCH_HEAD 2025-06-05T23:50:17.1622770Z Submodule path 'extension/llm/tokenizers/third-party/pcre2': checked out '2e03e323339ab692640626f02f8d8d6f95bff9c6' 2025-06-05T23:50:17.1639187Z Submodule 'deps/sljit' (https://github.com/zherczeg/sljit.git) registered for path 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:17.1666884Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/pcre2/deps/sljit'... 2025-06-05T23:50:17.8568328Z From https://github.com/zherczeg/sljit 2025-06-05T23:50:17.8569254Z * branch 98802d939be3f0ccc2c538d611ec4c728564e8cf -> FETCH_HEAD 2025-06-05T23:50:17.8776270Z Submodule path 'extension/llm/tokenizers/third-party/pcre2/deps/sljit': checked out '98802d939be3f0ccc2c538d611ec4c728564e8cf' 2025-06-05T23:50:18.3822724Z From https://github.com/google/re2 2025-06-05T23:50:18.3823402Z * branch 6dcd83d60f7944926bfd308cc13979fc53dd69ca -> FETCH_HEAD 2025-06-05T23:50:18.3999181Z Submodule path 'extension/llm/tokenizers/third-party/re2': checked out '6dcd83d60f7944926bfd308cc13979fc53dd69ca' 2025-06-05T23:50:20.0266503Z From https://github.com/google/sentencepiece 2025-06-05T23:50:20.0267187Z * branch d8f741853847553169444afc12c00f4bbff3e9ce -> FETCH_HEAD 2025-06-05T23:50:20.1692711Z Submodule path 'extension/llm/tokenizers/third-party/sentencepiece': checked out 'd8f741853847553169444afc12c00f4bbff3e9ce' 2025-06-05T23:50:21.7557837Z From https://gitlab.com/libeigen/eigen 2025-06-05T23:50:21.7558529Z * branch a39ade4ccf99df845ec85c580fbbb324f71952fa -> FETCH_HEAD 2025-06-05T23:50:21.8957479Z Submodule path 'kernels/optimized/third-party/eigen': checked out 'a39ade4ccf99df845ec85c580fbbb324f71952fa' 2025-06-05T23:50:22.4121046Z From https://github.com/facebook/buck2-shims-meta 2025-06-05T23:50:22.4121760Z * branch cf6a954aae4bee7b4515e13475878460115027d1 -> FETCH_HEAD 2025-06-05T23:50:22.4410813Z Submodule path 'shim': checked out 'cf6a954aae4bee7b4515e13475878460115027d1' 2025-06-05T23:50:22.9741746Z From https://github.com/pytorch/ao 2025-06-05T23:50:22.9742408Z * branch bc68b11f1bf77be38721ca7dd2c477aeb5e6626e -> FETCH_HEAD 2025-06-05T23:50:23.0808344Z Submodule path 'third-party/ao': checked out 'bc68b11f1bf77be38721ca7dd2c477aeb5e6626e' 2025-06-05T23:50:23.0826585Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass) registered for path 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:23.0853954Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ao/third_party/cutlass'... 2025-06-05T23:50:25.0920345Z From https://github.com/NVIDIA/cutlass 2025-06-05T23:50:25.0921031Z * branch ad7b2f5e84fcfa124cb02b91d5bd26d238c0459e -> FETCH_HEAD 2025-06-05T23:50:25.7153765Z Submodule path 'third-party/ao/third_party/cutlass': checked out 'ad7b2f5e84fcfa124cb02b91d5bd26d238c0459e' 2025-06-05T23:50:26.3949431Z From https://github.com/google/flatbuffers 2025-06-05T23:50:26.3950661Z * branch 595bf0007ab1929570c7671f091313c8fc20644e -> FETCH_HEAD 2025-06-05T23:50:26.5101321Z Submodule path 'third-party/flatbuffers': checked out '595bf0007ab1929570c7671f091313c8fc20644e' 2025-06-05T23:50:26.9996681Z From https://github.com/dvidelabs/flatcc 2025-06-05T23:50:26.9997360Z * branch 896db54787e8b730a6be482c69324751f3f5f117 -> FETCH_HEAD 2025-06-05T23:50:27.0320461Z Submodule path 'third-party/flatcc': checked out '896db54787e8b730a6be482c69324751f3f5f117' 2025-06-05T23:50:27.5389434Z From https://github.com/gflags/gflags 2025-06-05T23:50:27.5390103Z * branch a738fdf9338412f83ab3f26f31ac11ed3f3ec4bd -> FETCH_HEAD 2025-06-05T23:50:27.5480770Z Submodule path 'third-party/gflags': checked out 'a738fdf9338412f83ab3f26f31ac11ed3f3ec4bd' 2025-06-05T23:50:28.2513758Z From https://github.com/google/googletest 2025-06-05T23:50:28.2898199Z * branch e2239ee6043f73722e7aa812a459f54a28552929 -> FETCH_HEAD 2025-06-05T23:50:28.2899114Z Submodule path 'third-party/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-06-05T23:50:28.7984307Z From https://github.com/leetal/ios-cmake 2025-06-05T23:50:28.7984999Z * branch 06465b27698424cf4a04a5ca4904d50a3c966c45 -> FETCH_HEAD 2025-06-05T23:50:28.8061188Z Submodule path 'third-party/ios-cmake': checked out '06465b27698424cf4a04a5ca4904d50a3c966c45' 2025-06-05T23:50:29.3533148Z From https://github.com/nlohmann/json 2025-06-05T23:50:29.3533858Z * branch ac0133ea89a8fd730a9cc9649c5226a9995dc3e1 -> FETCH_HEAD 2025-06-05T23:50:29.4564326Z Submodule path 'third-party/json': checked out 'ac0133ea89a8fd730a9cc9649c5226a9995dc3e1' 2025-06-05T23:50:29.4699953Z Submodule path 'third-party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-06-05T23:50:30.2064707Z From https://github.com/facebook/buck2-prelude 2025-06-05T23:50:30.2065388Z * branch 48c249f8c7b99ff501d6e857754760315072b306 -> FETCH_HEAD 2025-06-05T23:50:30.3604698Z Submodule path 'third-party/prelude': checked out '48c249f8c7b99ff501d6e857754760315072b306' 2025-06-05T23:50:31.0007994Z From https://github.com/pybind/pybind11 2025-06-05T23:50:31.0008668Z * branch a2e59f0e7065404b44dfe92a28aca47ba1378dc4 -> FETCH_HEAD 2025-06-05T23:50:31.0318284Z Submodule path 'third-party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-06-05T23:50:31.0351368Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-06-05T23:50:31.0630679Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:50:31.0672941Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:50:31.0714204Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:50:31.0759637Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:50:31.0801833Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:50:31.0844017Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:50:31.0886652Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:50:31.0929528Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:50:31.0970742Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:50:31.1012513Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:50:31.1071022Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:50:31.1113432Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:50:31.1154482Z Entering 'extension/llm/tokenizers' 2025-06-05T23:50:31.1196163Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:50:31.1238599Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:31.1280718Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:31.1323096Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:31.1366667Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:31.1408090Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:31.1450195Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:50:31.1494805Z Entering 'shim' 2025-06-05T23:50:31.1536031Z Entering 'third-party/ao' 2025-06-05T23:50:31.1577208Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:31.1629005Z Entering 'third-party/flatbuffers' 2025-06-05T23:50:31.1673439Z Entering 'third-party/flatcc' 2025-06-05T23:50:31.1714858Z Entering 'third-party/gflags' 2025-06-05T23:50:31.1755569Z Entering 'third-party/googletest' 2025-06-05T23:50:31.1796535Z Entering 'third-party/ios-cmake' 2025-06-05T23:50:31.1839869Z Entering 'third-party/json' 2025-06-05T23:50:31.1881873Z Entering 'third-party/pocketfft' 2025-06-05T23:50:31.1922693Z Entering 'third-party/prelude' 2025-06-05T23:50:31.1966864Z Entering 'third-party/pybind11' 2025-06-05T23:50:31.2016968Z ##[endgroup] 2025-06-05T23:50:31.2019351Z ##[group]Persisting credentials for submodules 2025-06-05T23:50:31.2024556Z [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:50:31.2300657Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:50:31.2355661Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:50:31.2409339Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:50:31.2468888Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:50:31.2523860Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:50:31.2578580Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:50:31.2634111Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:50:31.2687786Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:50:31.2743929Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:50:31.2797408Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:50:31.2867936Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:50:31.2923409Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:50:31.2976800Z Entering 'extension/llm/tokenizers' 2025-06-05T23:50:31.3030774Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:50:31.3086803Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:31.3144298Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:31.3198604Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:31.3256798Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:31.3310957Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:31.3367134Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:50:31.3424096Z Entering 'shim' 2025-06-05T23:50:31.3477563Z Entering 'third-party/ao' 2025-06-05T23:50:31.3533591Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:31.3598340Z Entering 'third-party/flatbuffers' 2025-06-05T23:50:31.3655379Z Entering 'third-party/flatcc' 2025-06-05T23:50:31.3708995Z Entering 'third-party/gflags' 2025-06-05T23:50:31.3762745Z Entering 'third-party/googletest' 2025-06-05T23:50:31.3817158Z Entering 'third-party/ios-cmake' 2025-06-05T23:50:31.3870950Z Entering 'third-party/json' 2025-06-05T23:50:31.3925757Z Entering 'third-party/pocketfft' 2025-06-05T23:50:31.3982669Z Entering 'third-party/prelude' 2025-06-05T23:50:31.4040548Z Entering 'third-party/pybind11' 2025-06-05T23:50:31.4107635Z [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:50:31.4379090Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:50:31.4432284Z 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:50:31.4448554Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:50:31.4501370Z 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:50:31.4517526Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:50:31.4569424Z 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:50:31.4589515Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:50:31.4641996Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/cadence/utils/FACTO/config remote.origin.url 2025-06-05T23:50:31.4658516Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:50:31.4710881Z 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:50:31.4726678Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:50:31.4779409Z 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:50:31.4795499Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:50:31.4849154Z 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:50:31.4865255Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:50:31.4918332Z 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:50:31.4935073Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:50:31.4987488Z 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:50:31.5003319Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:50:31.5056186Z 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:50:31.5088755Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:50:31.5141484Z 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:50:31.5158305Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:50:31.5211001Z 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:50:31.5226680Z Entering 'extension/llm/tokenizers' 2025-06-05T23:50:31.5278797Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/config remote.origin.url 2025-06-05T23:50:31.5293143Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:50:31.5346031Z 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:50:31.5363415Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:31.5416362Z 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:50:31.5432766Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:31.5485152Z 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:50:31.5499975Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:31.5552900Z 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:50:31.5570033Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:31.5623173Z 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:50:31.5638940Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:31.5691013Z 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:50:31.5708556Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:50:31.5760333Z 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:50:31.5777808Z Entering 'shim' 2025-06-05T23:50:31.5830023Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/shim/config remote.origin.url 2025-06-05T23:50:31.5845802Z Entering 'third-party/ao' 2025-06-05T23:50:31.5897038Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/ao/config remote.origin.url 2025-06-05T23:50:31.5913007Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:31.5964652Z 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:50:31.5991361Z Entering 'third-party/flatbuffers' 2025-06-05T23:50:31.6043686Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/flatbuffers/config remote.origin.url 2025-06-05T23:50:31.6061279Z Entering 'third-party/flatcc' 2025-06-05T23:50:31.6113463Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/flatcc/config remote.origin.url 2025-06-05T23:50:31.6129280Z Entering 'third-party/gflags' 2025-06-05T23:50:31.6181108Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/gflags/config remote.origin.url 2025-06-05T23:50:31.6195694Z Entering 'third-party/googletest' 2025-06-05T23:50:31.6247413Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/googletest/config remote.origin.url 2025-06-05T23:50:31.6262945Z Entering 'third-party/ios-cmake' 2025-06-05T23:50:31.6314219Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/ios-cmake/config remote.origin.url 2025-06-05T23:50:31.6329313Z Entering 'third-party/json' 2025-06-05T23:50:31.6380831Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/json/config remote.origin.url 2025-06-05T23:50:31.6397173Z Entering 'third-party/pocketfft' 2025-06-05T23:50:31.6449680Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/pocketfft/config remote.origin.url 2025-06-05T23:50:31.6464158Z Entering 'third-party/prelude' 2025-06-05T23:50:31.6515957Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/prelude/config remote.origin.url 2025-06-05T23:50:31.6535542Z Entering 'third-party/pybind11' 2025-06-05T23:50:31.6587123Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/pybind11/config remote.origin.url 2025-06-05T23:50:31.6863555Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-06-05T23:50:31.7137464Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:50:31.7178858Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:50:31.7219953Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:50:31.7265917Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:50:31.7308693Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:50:31.7350438Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:50:31.7392272Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:50:31.7434324Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:50:31.7476278Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:50:31.7519424Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:50:31.7578612Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:50:31.7621396Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:50:31.7663159Z Entering 'extension/llm/tokenizers' 2025-06-05T23:50:31.7705053Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:50:31.7749353Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:31.7792158Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:31.7833559Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:31.7876872Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:31.7918495Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:31.7961804Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:50:31.8006105Z Entering 'shim' 2025-06-05T23:50:31.8047064Z Entering 'third-party/ao' 2025-06-05T23:50:31.8088493Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:31.8141579Z Entering 'third-party/flatbuffers' 2025-06-05T23:50:31.8185355Z Entering 'third-party/flatcc' 2025-06-05T23:50:31.8227283Z Entering 'third-party/gflags' 2025-06-05T23:50:31.8267968Z Entering 'third-party/googletest' 2025-06-05T23:50:31.8309478Z Entering 'third-party/ios-cmake' 2025-06-05T23:50:31.8350301Z Entering 'third-party/json' 2025-06-05T23:50:31.8392680Z Entering 'third-party/pocketfft' 2025-06-05T23:50:31.8433969Z Entering 'third-party/prelude' 2025-06-05T23:50:31.8478326Z Entering 'third-party/pybind11' 2025-06-05T23:50:31.8532033Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-06-05T23:50:31.8805235Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:50:31.8847869Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:50:31.8888764Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:50:31.8935458Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:50:31.8977311Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:50:31.9019199Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:50:31.9061439Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:50:31.9102729Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:50:31.9144466Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:50:31.9186041Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:50:31.9247434Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:50:31.9290447Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:50:31.9332459Z Entering 'extension/llm/tokenizers' 2025-06-05T23:50:31.9373753Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:50:31.9417210Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:31.9460827Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:31.9502231Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:31.9547033Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:31.9588239Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:31.9632282Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:50:31.9676515Z Entering 'shim' 2025-06-05T23:50:31.9720429Z Entering 'third-party/ao' 2025-06-05T23:50:31.9761972Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:31.9814696Z Entering 'third-party/flatbuffers' 2025-06-05T23:50:31.9858906Z Entering 'third-party/flatcc' 2025-06-05T23:50:31.9900914Z Entering 'third-party/gflags' 2025-06-05T23:50:31.9941697Z Entering 'third-party/googletest' 2025-06-05T23:50:31.9982785Z Entering 'third-party/ios-cmake' 2025-06-05T23:50:32.0024451Z Entering 'third-party/json' 2025-06-05T23:50:32.0067348Z Entering 'third-party/pocketfft' 2025-06-05T23:50:32.0127404Z Entering 'third-party/prelude' 2025-06-05T23:50:32.0171486Z Entering 'third-party/pybind11' 2025-06-05T23:50:32.0221498Z ##[endgroup] 2025-06-05T23:50:32.0254881Z [command]/usr/bin/git log -1 --format=%H 2025-06-05T23:50:32.0275159Z bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:50:32.0517299Z Prepare all required actions 2025-06-05T23:50:32.0517960Z Getting action download info 2025-06-05T23:50:32.1395935Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-06-05T23:50:32.3457213Z ##[group]Run ./test-infra/.github/actions/calculate-docker-image 2025-06-05T23:50:32.3457756Z with: 2025-06-05T23:50:32.3458160Z docker-image-name: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:32.3458674Z docker-build-dir: .ci/docker 2025-06-05T23:50:32.3459109Z working-directory: pytorch/executorch 2025-06-05T23:50:32.3459571Z docker-build-script: ./build.sh 2025-06-05T23:50:32.3460123Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:32.3460685Z force-push: false 2025-06-05T23:50:32.3461008Z env: 2025-06-05T23:50:32.3461375Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:32.3461866Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:32.3462280Z PR_NUMBER: 2025-06-05T23:50:32.3477484Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:50:32.3493463Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:32.3494255Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:32.3495121Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:32.3495659Z ##[endgroup] 2025-06-05T23:50:32.3524775Z ##[group]Run set -ex 2025-06-05T23:50:32.3525209Z set -ex 2025-06-05T23:50:32.3525551Z  2025-06-05T23:50:32.3526097Z # If the docker build directory or the build script doesn't exist, the action will 2025-06-05T23:50:32.3527019Z # gracefully return the docker image name as it is. Pulling docker image in Linux 2025-06-05T23:50:32.3527803Z # job could then download the pre-built image as usual 2025-06-05T23:50:32.3528539Z if [[ ! -d "${DOCKER_BUILD_DIR}" ]] || [[ ! -f "${DOCKER_BUILD_DIR}/${DOCKER_BUILD_SCRIPT}" ]]; then 2025-06-05T23:50:32.3529257Z  echo "skip=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:32.3529864Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:32.3530440Z  2025-06-05T23:50:32.3530922Z  echo "There is no Docker build script in ${REPO_NAME} repo, skipping..." 2025-06-05T23:50:32.3531537Z  exit 0 2025-06-05T23:50:32.3531856Z else 2025-06-05T23:50:32.3532227Z  echo "skip=false" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:32.3532692Z fi 2025-06-05T23:50:32.3532985Z  2025-06-05T23:50:32.3533460Z if [[ "${DOCKER_IMAGE_NAME}" == *"${DOCKER_REGISTRY}/${REPO_NAME}"* ]]; then 2025-06-05T23:50:32.3534267Z  # The docker image name already includes the ECR prefix and tag, so we can just 2025-06-05T23:50:32.3535127Z  # use it as it is, but first let's extract the tag 2025-06-05T23:50:32.3535790Z  DOCKER_TAG=$(echo "${DOCKER_IMAGE_NAME}" | awk -F '[:,]' '{print $2}') 2025-06-05T23:50:32.3536494Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:32.3537154Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:32.3537721Z else 2025-06-05T23:50:32.3538092Z  if [[ "${DOCKER_IMAGE_NAME}" == *:* ]]; then 2025-06-05T23:50:32.3538628Z  CUSTOM_TAG_PREFIX=${DOCKER_IMAGE_NAME#*:} 2025-06-05T23:50:32.3539169Z  DOCKER_IMAGE_NAME=${DOCKER_IMAGE_NAME%%:*} 2025-06-05T23:50:32.3539650Z  fi 2025-06-05T23:50:32.3540263Z  DOCKER_TAG=${CUSTOM_TAG_PREFIX:+${CUSTOM_TAG_PREFIX}-}$(git rev-parse HEAD:"${DOCKER_BUILD_DIR}") 2025-06-05T23:50:32.3541258Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:32.3542131Z  echo "docker-image=${DOCKER_REGISTRY}/${REPO_NAME}/${DOCKER_IMAGE_NAME}:${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:32.3543073Z  echo "custom-tag-prefix=${CUSTOM_TAG_PREFIX}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:32.3543669Z fi 2025-06-05T23:50:32.3550008Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:50:32.3550525Z env: 2025-06-05T23:50:32.3550906Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:32.3551404Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:32.3551820Z PR_NUMBER: 2025-06-05T23:50:32.3566944Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:50:32.3582599Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:32.3583400Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:32.3584236Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:32.3584806Z REPO_NAME: executorch 2025-06-05T23:50:32.3585247Z DOCKER_IMAGE_NAME: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:32.3585771Z DOCKER_BUILD_DIR: .ci/docker 2025-06-05T23:50:32.3586175Z DOCKER_BUILD_SCRIPT: ./build.sh 2025-06-05T23:50:32.3586724Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:32.3587273Z CUSTOM_TAG_PREFIX: 2025-06-05T23:50:32.3587635Z ##[endgroup] 2025-06-05T23:50:32.3620433Z + [[ ! -d .ci/docker ]] 2025-06-05T23:50:32.3620844Z + [[ ! -f .ci/docker/./build.sh ]] 2025-06-05T23:50:32.3621268Z + echo skip=false 2025-06-05T23:50:32.3621946Z + [[ executorch-ubuntu-22.04-clang12 == *\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:50:32.3622760Z + [[ executorch-ubuntu-22.04-clang12 == *:* ]] 2025-06-05T23:50:32.3627593Z ++ git rev-parse HEAD:.ci/docker 2025-06-05T23:50:32.3643389Z + DOCKER_TAG=6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:32.3644011Z + echo docker-tag=6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:32.3645144Z + echo docker-image=308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:32.3646673Z + echo custom-tag-prefix= 2025-06-05T23:50:32.3681590Z ##[group]Run set +e 2025-06-05T23:50:32.3682041Z set +e 2025-06-05T23:50:32.3682373Z set -x 2025-06-05T23:50:32.3682707Z  2025-06-05T23:50:32.3683014Z login() { 2025-06-05T23:50:32.3683676Z  aws ecr get-login-password --region us-east-1 | docker login -u AWS --password-stdin "$1" 2025-06-05T23:50:32.3684382Z } 2025-06-05T23:50:32.3684690Z  2025-06-05T23:50:32.3684988Z retry () { 2025-06-05T23:50:32.3685381Z  $* || (sleep 1 && $*) || (sleep 2 && $*) 2025-06-05T23:50:32.3685815Z } 2025-06-05T23:50:32.3686133Z  2025-06-05T23:50:32.3686459Z retry login "${DOCKER_REGISTRY}" 2025-06-05T23:50:32.3686892Z  2025-06-05T23:50:32.3687204Z START_TIME=$(date +%s) 2025-06-05T23:50:32.3687619Z # Wait up to 120 minutes 2025-06-05T23:50:32.3688121Z while [[ $(( $(date +%s) - 7200 )) -lt $START_TIME ]]; do 2025-06-05T23:50:32.3688794Z  # Check if image already exists, if it does then skip building it 2025-06-05T23:50:32.3689567Z  if docker manifest inspect "${DOCKER_IMAGE}"; then 2025-06-05T23:50:32.3690083Z  exit 0 2025-06-05T23:50:32.3690413Z  fi 2025-06-05T23:50:32.3690715Z  2025-06-05T23:50:32.3691258Z  # NB: This flag is used by Docker build workflow to push the image to ECR, so we can 2025-06-05T23:50:32.3692148Z  # use this to differentiate between the Docker build and regular build jobs. For the 2025-06-05T23:50:32.3693053Z  # latter, it will wait for the Docker images to become available before continuing 2025-06-05T23:50:32.3693783Z  if [ "${DOCKER_PUSH:-false}" == "true" ]; then 2025-06-05T23:50:32.3694331Z  # It's a Docker build job, let's build the image 2025-06-05T23:50:32.3694956Z  break 2025-06-05T23:50:32.3695292Z  else 2025-06-05T23:50:32.3695760Z  # It's a regular build job, wait for the image to become available 2025-06-05T23:50:32.3696346Z  sleep 300 2025-06-05T23:50:32.3696694Z  fi 2025-06-05T23:50:32.3697013Z done 2025-06-05T23:50:32.3697317Z  2025-06-05T23:50:32.3697816Z # NB: This part requires a full checkout. Otherwise, the merge base will 2025-06-05T23:50:32.3698586Z # be empty. The default action would be to continue rebuild the image 2025-06-05T23:50:32.3699293Z if [[ "$BASE_REVISION" = "$(git rev-parse HEAD)" ]]; then 2025-06-05T23:50:32.3699983Z  # if we're on the base branch then use the parent commit 2025-06-05T23:50:32.3700867Z  MERGE_BASE=$(git rev-parse HEAD~) 2025-06-05T23:50:32.3701314Z else 2025-06-05T23:50:32.3701776Z  # otherwise we're on a PR, so use the most recent base commit 2025-06-05T23:50:32.3702423Z  MERGE_BASE=$(git merge-base HEAD "$BASE_REVISION") 2025-06-05T23:50:32.3702935Z fi 2025-06-05T23:50:32.3703231Z  2025-06-05T23:50:32.3703752Z if [[ -z "${MERGE_BASE}" ]]; then 2025-06-05T23:50:32.3704255Z  echo "rebuild=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:32.3704733Z  2025-06-05T23:50:32.3705372Z  echo "Finding merge base only works with full checkout, please set fetch-depth to 0, continuing ..." 2025-06-05T23:50:32.3706139Z  exit 0 2025-06-05T23:50:32.3706453Z fi 2025-06-05T23:50:32.3706765Z  2025-06-05T23:50:32.3707181Z if ! git rev-parse "${MERGE_BASE}:${DOCKER_BUILD_DIR}"; then 2025-06-05T23:50:32.3708115Z  echo "Directory '${DOCKER_BUILD_DIR}' not found in commit $MERGE_BASE, you should rebase onto a more recent commit" 2025-06-05T23:50:32.3708940Z  exit 1 2025-06-05T23:50:32.3709260Z fi 2025-06-05T23:50:32.3709565Z  2025-06-05T23:50:32.3710175Z PREVIOUS_DOCKER_TAG=$(git rev-parse "${MERGE_BASE}:${DOCKER_BUILD_DIR}") 2025-06-05T23:50:32.3711077Z # If no image exists but the hash is the same as the previous hash then we should error out here 2025-06-05T23:50:32.3711865Z if [[ "${PREVIOUS_DOCKER_TAG}" == "${DOCKER_TAG}" ]]; then 2025-06-05T23:50:32.3712792Z  echo "WARNING: Something has gone wrong and the previous image isn't available for the merge-base of your branch" 2025-06-05T23:50:32.3713815Z  echo " Will re-build docker image to store in local cache, TTS may be longer" 2025-06-05T23:50:32.3714456Z fi 2025-06-05T23:50:32.3714758Z  2025-06-05T23:50:32.3715141Z echo "rebuild=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:32.3721280Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:50:32.3721809Z env: 2025-06-05T23:50:32.3722690Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:32.3723724Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:32.3724127Z PR_NUMBER: 2025-06-05T23:50:32.3739246Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:50:32.3754865Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:32.3755664Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:32.3756433Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:32.3757046Z DOCKER_BUILD_DIR: .ci/docker 2025-06-05T23:50:32.3757537Z BASE_REVISION: bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:50:32.3758112Z DOCKER_TAG: 6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:32.3758739Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:32.3759272Z DOCKER_PUSH: 2025-06-05T23:50:32.3759604Z ##[endgroup] 2025-06-05T23:50:32.3784295Z + retry login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:32.3784900Z + login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:32.3787566Z + aws ecr get-login-password --region us-east-1 2025-06-05T23:50:32.3788532Z + docker login -u AWS --password-stdin 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:32.9500955Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:50:32.9501817Z Configure a credential helper to remove this warning. See 2025-06-05T23:50:32.9503103Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:50:32.9504222Z 2025-06-05T23:50:32.9504380Z Login Succeeded 2025-06-05T23:50:32.9515963Z ++ date +%s 2025-06-05T23:50:32.9525167Z + START_TIME=1749167432 2025-06-05T23:50:32.9528768Z ++ date +%s 2025-06-05T23:50:32.9537503Z + [[ 1749160232 -lt 1749167432 ]] 2025-06-05T23:50:32.9538594Z + docker manifest inspect 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:33.1626963Z { 2025-06-05T23:50:33.1627503Z "schemaVersion": 2, 2025-06-05T23:50:33.1628365Z "mediaType": "application/vnd.docker.distribution.manifest.v2+json", 2025-06-05T23:50:33.1629081Z "config": { 2025-06-05T23:50:33.1629858Z "mediaType": "application/vnd.docker.container.image.v1+json", 2025-06-05T23:50:33.1630604Z "size": 15103, 2025-06-05T23:50:33.1631191Z "digest": "sha256:fd1cd238ff938168c3b0ff27a52bce2daabd27e2c7b7761b7a136339684f075e" 2025-06-05T23:50:33.1631843Z }, 2025-06-05T23:50:33.1632141Z "layers": [ 2025-06-05T23:50:33.1632429Z { 2025-06-05T23:50:33.1632888Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1633752Z "size": 30438509, 2025-06-05T23:50:33.1634353Z "digest": "sha256:f557aa5ee22480ee9e1af0a094ce5174a8c3d83e1aa20dc8482e4e387546e0c3" 2025-06-05T23:50:33.1635008Z }, 2025-06-05T23:50:33.1635295Z { 2025-06-05T23:50:33.1635741Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1636334Z "size": 631, 2025-06-05T23:50:33.1636898Z "digest": "sha256:e9a71f6cf6a033cad973f94ad3269a9e3774b3a547f2d35c6337589ebab6aeac" 2025-06-05T23:50:33.1637558Z }, 2025-06-05T23:50:33.1637828Z { 2025-06-05T23:50:33.1638275Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1638863Z "size": 150105004, 2025-06-05T23:50:33.1639443Z "digest": "sha256:049f3bd1fa828e09f2b95b85222e78d1369b0d9b32c63dba4a621ef4b3fdf4b0" 2025-06-05T23:50:33.1640428Z }, 2025-06-05T23:50:33.1641008Z + exit 0 2025-06-05T23:50:33.1641525Z { 2025-06-05T23:50:33.1641997Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1642571Z "size": 622, 2025-06-05T23:50:33.1643254Z "digest": "sha256:8f296761951c2477ba8d9546ac834b6cf17e772fbe388f9e3b2f4e822beb7713" 2025-06-05T23:50:33.1669797Z }, 2025-06-05T23:50:33.1670217Z { 2025-06-05T23:50:33.1670737Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1671556Z "size": 19308725, 2025-06-05T23:50:33.1672152Z "digest": "sha256:f9c927f03c6aba2421ca61827c3ba57321d629b5cd394bf199d0fda0f3373a5e" 2025-06-05T23:50:33.1672825Z }, 2025-06-05T23:50:33.1673095Z { 2025-06-05T23:50:33.1673545Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1674127Z "size": 736, 2025-06-05T23:50:33.1674675Z "digest": "sha256:4420b1e1a07f73643ce79401c2021c6970bc6e411c501a43b58d157e19090d5a" 2025-06-05T23:50:33.1675316Z }, 2025-06-05T23:50:33.1675587Z { 2025-06-05T23:50:33.1676047Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1676616Z "size": 131417895, 2025-06-05T23:50:33.1677225Z "digest": "sha256:fa5411ca12c0b4cc5391abc0d46354e4ebf811724698c909d35a8bc79acbae42" 2025-06-05T23:50:33.1677863Z }, 2025-06-05T23:50:33.1678145Z { 2025-06-05T23:50:33.1678590Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1679170Z "size": 445, 2025-06-05T23:50:33.1679713Z "digest": "sha256:172401b941b1764c760147d40814402d1238a7f1c7287fd8c0c9dd4897f09610" 2025-06-05T23:50:33.1680340Z }, 2025-06-05T23:50:33.1680611Z { 2025-06-05T23:50:33.1681051Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1681625Z "size": 102, 2025-06-05T23:50:33.1682174Z "digest": "sha256:08f9a627d97be81309ccf16cf39ed5beb24962447ad72a1615b0748e4173b204" 2025-06-05T23:50:33.1682821Z }, 2025-06-05T23:50:33.1683089Z { 2025-06-05T23:50:33.1683539Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1684099Z "size": 636, 2025-06-05T23:50:33.1684653Z "digest": "sha256:2d7e5abdd88dbf42ba6487b146573396d6f489b24623393763a4916452feeb69" 2025-06-05T23:50:33.1685290Z }, 2025-06-05T23:50:33.1685566Z { 2025-06-05T23:50:33.1686003Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1686584Z "size": 35165342, 2025-06-05T23:50:33.1687175Z "digest": "sha256:0e4e4efb264486fade95db2dcaeeed53768fdf1fd6972a24431bca5d3e4abfed" 2025-06-05T23:50:33.1687840Z }, 2025-06-05T23:50:33.1688110Z { 2025-06-05T23:50:33.1688576Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1689138Z "size": 318, 2025-06-05T23:50:33.1689689Z "digest": "sha256:380307a36ed2d54c982df9262fd1ec3b7fb61743ad1a24e7d1b691bc44edba7a" 2025-06-05T23:50:33.1690343Z }, 2025-06-05T23:50:33.1690608Z { 2025-06-05T23:50:33.1691066Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1691634Z "size": 252129603, 2025-06-05T23:50:33.1692230Z "digest": "sha256:c39259ba6557e88adff97daca9051eb3b7557220d56a15a595e102e0b7888888" 2025-06-05T23:50:33.1692959Z }, 2025-06-05T23:50:33.1693246Z { 2025-06-05T23:50:33.1693693Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1694277Z "size": 475, 2025-06-05T23:50:33.1694957Z "digest": "sha256:3ec19c2849b3bf6807efe10c62465e3f4d91dfd9fc8c1ff5b3667814c740339d" 2025-06-05T23:50:33.1695621Z }, 2025-06-05T23:50:33.1695899Z { 2025-06-05T23:50:33.1696354Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1696919Z "size": 1041, 2025-06-05T23:50:33.1697483Z "digest": "sha256:c906c3b73c9a07577673cc305885ff3cb88a96410f3536d3cc37d1ab95ea8105" 2025-06-05T23:50:33.1698115Z }, 2025-06-05T23:50:33.1698384Z { 2025-06-05T23:50:33.1698836Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1699396Z "size": 613, 2025-06-05T23:50:33.1699972Z "digest": "sha256:5e70c61fded41a31ea65efce907d9dff9acbc03826fb949591a55cfdd3385730" 2025-06-05T23:50:33.1700632Z }, 2025-06-05T23:50:33.1700913Z { 2025-06-05T23:50:33.1701350Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1701930Z "size": 77567180, 2025-06-05T23:50:33.1702511Z "digest": "sha256:32d238decf552efed879fd5a38ef4c28a93691784cfa4cf29f72f02ff98b663c" 2025-06-05T23:50:33.1703252Z }, 2025-06-05T23:50:33.1703522Z { 2025-06-05T23:50:33.1704206Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1704770Z "size": 572, 2025-06-05T23:50:33.1705322Z "digest": "sha256:82809b17e34970c5fc644204a01b9174222a6532e2bf50080d656bf431502fcb" 2025-06-05T23:50:33.1705941Z }, 2025-06-05T23:50:33.1706207Z { 2025-06-05T23:50:33.1706657Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1707225Z "size": 208, 2025-06-05T23:50:33.1707812Z "digest": "sha256:beff343a364c42297e426fde8abbfacb4531230cc6c28639cb27af09f8a6aeaa" 2025-06-05T23:50:33.1708462Z }, 2025-06-05T23:50:33.1708757Z { 2025-06-05T23:50:33.1709199Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1709781Z "size": 1190, 2025-06-05T23:50:33.1710338Z "digest": "sha256:5630a9397492da6fac00fcc2b54281af300c4762827878ad79bbf050d7f1388d" 2025-06-05T23:50:33.1710981Z }, 2025-06-05T23:50:33.1711253Z { 2025-06-05T23:50:33.1711709Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1712272Z "size": 679, 2025-06-05T23:50:33.1712845Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:50:33.1713491Z }, 2025-06-05T23:50:33.1713776Z { 2025-06-05T23:50:33.1714217Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1714785Z "size": 6857042734, 2025-06-05T23:50:33.1715371Z "digest": "sha256:91905b6f2f52504df72b723d19817eec2b201bee33ae760808b079869acb2f6b" 2025-06-05T23:50:33.1716004Z }, 2025-06-05T23:50:33.1716284Z { 2025-06-05T23:50:33.1716730Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1717309Z "size": 1383, 2025-06-05T23:50:33.1717872Z "digest": "sha256:09dac94eaf912c1143008ab2c199dc2a0547cf68fe2b08e1b96af9c2895928ae" 2025-06-05T23:50:33.1718528Z }, 2025-06-05T23:50:33.1718789Z { 2025-06-05T23:50:33.1719251Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1719816Z "size": 679, 2025-06-05T23:50:33.1720385Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:50:33.1721027Z }, 2025-06-05T23:50:33.1721298Z { 2025-06-05T23:50:33.1721726Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1722282Z "size": 232891491, 2025-06-05T23:50:33.1722854Z "digest": "sha256:6d88f3766b32d28d76e4b977173ca059882b729a62bfb97b74b2e112a7e07081" 2025-06-05T23:50:33.1723478Z }, 2025-06-05T23:50:33.1723760Z { 2025-06-05T23:50:33.1724201Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1724920Z "size": 827, 2025-06-05T23:50:33.1725490Z "digest": "sha256:dec0deaa1ed566de23b66dcd78ea8449250b56b611cab27ebb83b9504d48a46b" 2025-06-05T23:50:33.1726171Z }, 2025-06-05T23:50:33.1726441Z { 2025-06-05T23:50:33.1726906Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1727477Z "size": 679, 2025-06-05T23:50:33.1728051Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:50:33.1728698Z }, 2025-06-05T23:50:33.1728970Z { 2025-06-05T23:50:33.1729544Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1730127Z "size": 185012212, 2025-06-05T23:50:33.1730726Z "digest": "sha256:f8e551473643076aad7336eff42fb9eade23f8abdf765265391eb601688a508e" 2025-06-05T23:50:33.1731367Z }, 2025-06-05T23:50:33.1731656Z { 2025-06-05T23:50:33.1732102Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1732691Z "size": 530, 2025-06-05T23:50:33.1733253Z "digest": "sha256:e8c9ad02b5187f5d1cb1d0cce8e115dd9462726f44a685de71b4cbe4f70c67e6" 2025-06-05T23:50:33.1733915Z }, 2025-06-05T23:50:33.1734183Z { 2025-06-05T23:50:33.1734733Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1735439Z "size": 679, 2025-06-05T23:50:33.1736020Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:50:33.1736668Z }, 2025-06-05T23:50:33.1736951Z { 2025-06-05T23:50:33.1737391Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1737952Z "size": 354, 2025-06-05T23:50:33.1738520Z "digest": "sha256:ca22a013d303766ddf153f37526c40fa37dc1c0d112176fdb33378c50a81c354" 2025-06-05T23:50:33.1739158Z }, 2025-06-05T23:50:33.1739442Z { 2025-06-05T23:50:33.1739956Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1740573Z "size": 32, 2025-06-05T23:50:33.1741140Z "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1" 2025-06-05T23:50:33.1741797Z }, 2025-06-05T23:50:33.1742067Z { 2025-06-05T23:50:33.1742511Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1743074Z "size": 166, 2025-06-05T23:50:33.1743647Z "digest": "sha256:646de239c5522c189eeafe3c3e40d524fdb04e611ff7ac7ed962067edc79e37c" 2025-06-05T23:50:33.1744289Z }, 2025-06-05T23:50:33.1744567Z { 2025-06-05T23:50:33.1745009Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1745568Z "size": 1109, 2025-06-05T23:50:33.1746148Z "digest": "sha256:c2b62aa0dc26b7dd48338aef7893ebaf56403579f42aa88a56bd416c04f43619" 2025-06-05T23:50:33.1746792Z }, 2025-06-05T23:50:33.1747072Z { 2025-06-05T23:50:33.1747516Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1748095Z "size": 32, 2025-06-05T23:50:33.1748648Z "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1" 2025-06-05T23:50:33.1749304Z }, 2025-06-05T23:50:33.1749572Z { 2025-06-05T23:50:33.1750025Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:33.1750589Z "size": 108, 2025-06-05T23:50:33.1751155Z "digest": "sha256:f6779e1a371ff37aa81f30b1933474705799f32406c2afea442a0cada6c51e93" 2025-06-05T23:50:33.1751785Z } 2025-06-05T23:50:33.1752138Z ] 2025-06-05T23:50:33.1752407Z } 2025-06-05T23:50:33.1789612Z ##[group]Run set -eux 2025-06-05T23:50:33.1790051Z set -eux 2025-06-05T23:50:33.1791595Z 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:50:33.1800275Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:50:33.1800792Z env: 2025-06-05T23:50:33.1801175Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:33.1801908Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:33.1802345Z PR_NUMBER: 2025-06-05T23:50:33.1817854Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:50:33.1833667Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:33.1834472Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:33.1835234Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:33.1835765Z ##[endgroup] 2025-06-05T23:50:33.1865743Z + aws secretsmanager get-secret-value --secret-id docker_hub_readonly_token 2025-06-05T23:50:33.1866740Z + jq --raw-output .SecretString 2025-06-05T23:50:33.1868297Z + jq -r .docker_hub_readonly_token 2025-06-05T23:50:33.1870302Z + docker login --username pytorchbot --password-stdin 2025-06-05T23:50:33.7971112Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:50:33.7972009Z Configure a credential helper to remove this warning. See 2025-06-05T23:50:33.7973521Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:50:33.7974302Z 2025-06-05T23:50:33.7974561Z Login Succeeded 2025-06-05T23:50:33.8067285Z Prepare all required actions 2025-06-05T23:50:33.8112403Z ##[group]Run ./test-infra/.github/actions/pull-docker-image 2025-06-05T23:50:33.8112914Z with: 2025-06-05T23:50:33.8113809Z docker-image: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:33.8114931Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:33.8115471Z env: 2025-06-05T23:50:33.8115822Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:33.8116319Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:33.8116715Z PR_NUMBER: 2025-06-05T23:50:33.8131704Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:50:33.8147277Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:33.8148205Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:33.8149084Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:33.8149627Z ##[endgroup] 2025-06-05T23:50:33.8171393Z ##[group]Run set -x 2025-06-05T23:50:33.8171786Z set -x 2025-06-05T23:50:33.8172120Z set +e 2025-06-05T23:50:33.8172430Z  2025-06-05T23:50:33.8172729Z login() { 2025-06-05T23:50:33.8173387Z  aws ecr get-login-password --region us-east-1 | docker login -u AWS --password-stdin "$1" 2025-06-05T23:50:33.8174088Z } 2025-06-05T23:50:33.8174395Z  2025-06-05T23:50:33.8174815Z retry () { 2025-06-05T23:50:33.8175217Z  $* || (sleep 1 && $*) || (sleep 2 && $*) 2025-06-05T23:50:33.8175654Z } 2025-06-05T23:50:33.8175965Z  2025-06-05T23:50:33.8176284Z retry login "${DOCKER_REGISTRY}" 2025-06-05T23:50:33.8176727Z  2025-06-05T23:50:33.8177374Z IMAGE_SIZE=$(docker manifest inspect "${DOCKER_IMAGE}" | jq '[.layers[].size, .config.size] | add / 1024 / 1024') 2025-06-05T23:50:33.8178274Z echo "Compressed size of image in MB: ${IMAGE_SIZE}" 2025-06-05T23:50:33.8178779Z  2025-06-05T23:50:33.8179082Z set -e 2025-06-05T23:50:33.8179540Z # ignore output since only exit code is used for conditional 2025-06-05T23:50:33.8180213Z # only pull docker image if it's not available locally 2025-06-05T23:50:33.8180940Z if ! docker inspect --type=image "${DOCKER_IMAGE}" >/dev/null 2>/dev/null; then 2025-06-05T23:50:33.8181634Z  retry docker pull "${DOCKER_IMAGE}" 2025-06-05T23:50:33.8182070Z fi 2025-06-05T23:50:33.8188431Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:50:33.8188952Z env: 2025-06-05T23:50:33.8189817Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:33.8190849Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:33.8191243Z PR_NUMBER: 2025-06-05T23:50:33.8206604Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:50:33.8222301Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:33.8223092Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:33.8223851Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:33.8224508Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:33.8225055Z ##[endgroup] 2025-06-05T23:50:33.8251383Z + set +e 2025-06-05T23:50:33.8251984Z + retry login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:33.8252590Z + login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:33.8255769Z + aws ecr get-login-password --region us-east-1 2025-06-05T23:50:33.8256965Z + docker login -u AWS --password-stdin 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:34.3852833Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:50:34.3853862Z Configure a credential helper to remove this warning. See 2025-06-05T23:50:34.3855356Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:50:34.3856334Z 2025-06-05T23:50:34.3856548Z Login Succeeded 2025-06-05T23:50:34.3876170Z ++ docker manifest inspect 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:34.3877369Z ++ jq '[.layers[].size, .config.size] | add / 1024 / 1024' 2025-06-05T23:50:34.6014948Z + IMAGE_SIZE=7601.84158706665 2025-06-05T23:50:34.6015844Z + echo 'Compressed size of image in MB: 7601.84158706665' 2025-06-05T23:50:34.6016632Z + set -e 2025-06-05T23:50:34.6017230Z Compressed size of image in MB: 7601.84158706665 2025-06-05T23:50:34.6018547Z + docker inspect --type=image 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:34.6129065Z + retry docker pull 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:34.6131484Z + docker pull 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:34.8589171Z 6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa: Pulling from executorch/executorch-ubuntu-22.04-clang12 2025-06-05T23:50:34.8590297Z f557aa5ee224: Pulling fs layer 2025-06-05T23:50:34.8590800Z e9a71f6cf6a0: Pulling fs layer 2025-06-05T23:50:34.8591209Z 049f3bd1fa82: Pulling fs layer 2025-06-05T23:50:34.8591667Z 8f296761951c: Pulling fs layer 2025-06-05T23:50:34.8592080Z f9c927f03c6a: Pulling fs layer 2025-06-05T23:50:34.8592536Z 4420b1e1a07f: Pulling fs layer 2025-06-05T23:50:34.8593002Z fa5411ca12c0: Pulling fs layer 2025-06-05T23:50:34.8593624Z 172401b941b1: Pulling fs layer 2025-06-05T23:50:34.8594104Z 08f9a627d97b: Pulling fs layer 2025-06-05T23:50:34.8594515Z 4420b1e1a07f: Waiting 2025-06-05T23:50:34.8595022Z f9c927f03c6a: Waiting 2025-06-05T23:50:34.8595384Z 2d7e5abdd88d: Pulling fs layer 2025-06-05T23:50:34.8595800Z 0e4e4efb2644: Pulling fs layer 2025-06-05T23:50:34.8596180Z 8f296761951c: Waiting 2025-06-05T23:50:34.8596545Z 380307a36ed2: Pulling fs layer 2025-06-05T23:50:34.8596919Z 08f9a627d97b: Waiting 2025-06-05T23:50:34.8597277Z c39259ba6557: Pulling fs layer 2025-06-05T23:50:34.8597665Z 3ec19c2849b3: Pulling fs layer 2025-06-05T23:50:34.8598060Z c906c3b73c9a: Pulling fs layer 2025-06-05T23:50:34.8598486Z 5e70c61fded4: Pulling fs layer 2025-06-05T23:50:34.8598956Z 32d238decf55: Pulling fs layer 2025-06-05T23:50:34.8599384Z 2d7e5abdd88d: Waiting 2025-06-05T23:50:34.8599731Z 0e4e4efb2644: Waiting 2025-06-05T23:50:34.8600086Z 380307a36ed2: Waiting 2025-06-05T23:50:34.8600920Z c39259ba6557: Waiting 2025-06-05T23:50:34.8601556Z 3ec19c2849b3: Waiting 2025-06-05T23:50:34.8602114Z fa5411ca12c0: Waiting 2025-06-05T23:50:34.8602540Z 5e70c61fded4: Waiting 2025-06-05T23:50:34.8602873Z c906c3b73c9a: Waiting 2025-06-05T23:50:34.8603263Z 82809b17e349: Pulling fs layer 2025-06-05T23:50:34.8603926Z beff343a364c: Pulling fs layer 2025-06-05T23:50:34.8604320Z 172401b941b1: Waiting 2025-06-05T23:50:34.8604686Z 5630a9397492: Pulling fs layer 2025-06-05T23:50:34.8605087Z 1fc2d9899ffb: Pulling fs layer 2025-06-05T23:50:34.8605479Z beff343a364c: Waiting 2025-06-05T23:50:34.8605965Z 91905b6f2f52: Pulling fs layer 2025-06-05T23:50:34.8606347Z 5630a9397492: Waiting 2025-06-05T23:50:34.8606716Z 09dac94eaf91: Pulling fs layer 2025-06-05T23:50:34.8607100Z 91905b6f2f52: Waiting 2025-06-05T23:50:34.8607470Z 6d88f3766b32: Pulling fs layer 2025-06-05T23:50:34.8607853Z 1fc2d9899ffb: Waiting 2025-06-05T23:50:34.8608217Z 09dac94eaf91: Waiting 2025-06-05T23:50:34.8608747Z dec0deaa1ed5: Pulling fs layer 2025-06-05T23:50:34.8609148Z 6d88f3766b32: Waiting 2025-06-05T23:50:34.8609507Z f8e551473643: Pulling fs layer 2025-06-05T23:50:34.8609920Z e8c9ad02b518: Pulling fs layer 2025-06-05T23:50:34.8610295Z e8c9ad02b518: Waiting 2025-06-05T23:50:34.8610660Z ca22a013d303: Pulling fs layer 2025-06-05T23:50:34.8611045Z 4f4fb700ef54: Pulling fs layer 2025-06-05T23:50:34.8611429Z 646de239c552: Pulling fs layer 2025-06-05T23:50:34.8611826Z dec0deaa1ed5: Waiting 2025-06-05T23:50:34.8612162Z ca22a013d303: Waiting 2025-06-05T23:50:34.8612530Z c2b62aa0dc26: Pulling fs layer 2025-06-05T23:50:34.8612909Z 4f4fb700ef54: Waiting 2025-06-05T23:50:34.8613339Z 646de239c552: Waiting 2025-06-05T23:50:34.8613683Z f6779e1a371f: Pulling fs layer 2025-06-05T23:50:34.8614074Z f8e551473643: Waiting 2025-06-05T23:50:34.8614498Z c2b62aa0dc26: Waiting 2025-06-05T23:50:34.8614862Z f6779e1a371f: Waiting 2025-06-05T23:50:34.9359494Z e9a71f6cf6a0: Download complete 2025-06-05T23:50:35.0330641Z 8f296761951c: Verifying Checksum 2025-06-05T23:50:35.0331379Z 8f296761951c: Download complete 2025-06-05T23:50:35.2367290Z f557aa5ee224: Verifying Checksum 2025-06-05T23:50:35.2368039Z f557aa5ee224: Download complete 2025-06-05T23:50:35.2691519Z f9c927f03c6a: Verifying Checksum 2025-06-05T23:50:35.2692294Z f9c927f03c6a: Download complete 2025-06-05T23:50:35.3053454Z 4420b1e1a07f: Download complete 2025-06-05T23:50:35.3817001Z 172401b941b1: Verifying Checksum 2025-06-05T23:50:35.3817800Z 172401b941b1: Download complete 2025-06-05T23:50:35.4443442Z 08f9a627d97b: Verifying Checksum 2025-06-05T23:50:35.4444201Z 08f9a627d97b: Download complete 2025-06-05T23:50:35.5353653Z 2d7e5abdd88d: Download complete 2025-06-05T23:50:35.9500371Z 0e4e4efb2644: Verifying Checksum 2025-06-05T23:50:35.9500907Z 0e4e4efb2644: Download complete 2025-06-05T23:50:36.0226387Z 380307a36ed2: Verifying Checksum 2025-06-05T23:50:36.0226899Z 380307a36ed2: Download complete 2025-06-05T23:50:36.3008452Z f557aa5ee224: Pull complete 2025-06-05T23:50:36.3222604Z e9a71f6cf6a0: Pull complete 2025-06-05T23:50:36.4148672Z 049f3bd1fa82: Verifying Checksum 2025-06-05T23:50:36.4149697Z 049f3bd1fa82: Download complete 2025-06-05T23:50:36.5011777Z 3ec19c2849b3: Verifying Checksum 2025-06-05T23:50:36.5012583Z 3ec19c2849b3: Download complete 2025-06-05T23:50:36.5697293Z c906c3b73c9a: Verifying Checksum 2025-06-05T23:50:36.5698048Z c906c3b73c9a: Download complete 2025-06-05T23:50:36.6343682Z fa5411ca12c0: Verifying Checksum 2025-06-05T23:50:36.6344528Z fa5411ca12c0: Download complete 2025-06-05T23:50:36.6368338Z 5e70c61fded4: Verifying Checksum 2025-06-05T23:50:36.6369358Z 5e70c61fded4: Download complete 2025-06-05T23:50:36.7000886Z 82809b17e349: Download complete 2025-06-05T23:50:36.7785884Z beff343a364c: Verifying Checksum 2025-06-05T23:50:36.7787129Z beff343a364c: Download complete 2025-06-05T23:50:36.8686881Z 5630a9397492: Download complete 2025-06-05T23:50:36.9607274Z 1fc2d9899ffb: Verifying Checksum 2025-06-05T23:50:36.9608156Z 1fc2d9899ffb: Download complete 2025-06-05T23:50:37.4580498Z 32d238decf55: Verifying Checksum 2025-06-05T23:50:37.4581303Z 32d238decf55: Download complete 2025-06-05T23:50:37.6220848Z 09dac94eaf91: Verifying Checksum 2025-06-05T23:50:37.6221678Z 09dac94eaf91: Download complete 2025-06-05T23:50:38.5925749Z c39259ba6557: Verifying Checksum 2025-06-05T23:50:38.5926598Z c39259ba6557: Download complete 2025-06-05T23:50:38.6647867Z dec0deaa1ed5: Verifying Checksum 2025-06-05T23:50:38.6648716Z dec0deaa1ed5: Download complete 2025-06-05T23:50:40.0058539Z 6d88f3766b32: Verifying Checksum 2025-06-05T23:50:40.0059176Z 6d88f3766b32: Download complete 2025-06-05T23:50:40.0889123Z e8c9ad02b518: Download complete 2025-06-05T23:50:40.1680383Z ca22a013d303: Verifying Checksum 2025-06-05T23:50:40.1681189Z ca22a013d303: Download complete 2025-06-05T23:50:40.1755030Z 4f4fb700ef54: Verifying Checksum 2025-06-05T23:50:40.1755581Z 4f4fb700ef54: Download complete 2025-06-05T23:50:40.2666301Z 646de239c552: Verifying Checksum 2025-06-05T23:50:40.2667114Z 646de239c552: Download complete 2025-06-05T23:50:40.3365984Z c2b62aa0dc26: Download complete 2025-06-05T23:50:40.4217562Z f6779e1a371f: Verifying Checksum 2025-06-05T23:50:40.4218287Z f6779e1a371f: Download complete 2025-06-05T23:50:40.5545660Z f8e551473643: Verifying Checksum 2025-06-05T23:50:40.5547988Z f8e551473643: Download complete 2025-06-05T23:50:40.6766009Z 049f3bd1fa82: Pull complete 2025-06-05T23:50:40.6979627Z 8f296761951c: Pull complete 2025-06-05T23:50:40.9593153Z f9c927f03c6a: Pull complete 2025-06-05T23:50:40.9795163Z 4420b1e1a07f: Pull complete 2025-06-05T23:50:43.6474998Z fa5411ca12c0: Pull complete 2025-06-05T23:50:43.6681140Z 172401b941b1: Pull complete 2025-06-05T23:50:43.6881916Z 08f9a627d97b: Pull complete 2025-06-05T23:50:43.7090293Z 2d7e5abdd88d: Pull complete 2025-06-05T23:50:44.3314889Z 0e4e4efb2644: Pull complete 2025-06-05T23:50:44.3517459Z 380307a36ed2: Pull complete 2025-06-05T23:50:50.0730125Z c39259ba6557: Pull complete 2025-06-05T23:50:50.1041811Z 3ec19c2849b3: Pull complete 2025-06-05T23:50:50.1573655Z c906c3b73c9a: Pull complete 2025-06-05T23:50:50.2661072Z 5e70c61fded4: Pull complete 2025-06-05T23:50:52.3950336Z 32d238decf55: Pull complete 2025-06-05T23:50:52.5946520Z 82809b17e349: Pull complete 2025-06-05T23:50:52.7387798Z beff343a364c: Pull complete 2025-06-05T23:50:52.8796337Z 5630a9397492: Pull complete 2025-06-05T23:50:53.0396861Z 1fc2d9899ffb: Pull complete 2025-06-05T23:51:45.5854839Z 91905b6f2f52: Verifying Checksum 2025-06-05T23:51:45.5855426Z 91905b6f2f52: Download complete 2025-06-05T23:52:58.8085110Z 91905b6f2f52: Pull complete 2025-06-05T23:52:59.0367797Z 09dac94eaf91: Pull complete 2025-06-05T23:53:05.4688868Z 6d88f3766b32: Pull complete 2025-06-05T23:53:05.7015387Z dec0deaa1ed5: Pull complete 2025-06-05T23:53:12.9133987Z f8e551473643: Pull complete 2025-06-05T23:53:13.1008776Z e8c9ad02b518: Pull complete 2025-06-05T23:53:13.5565148Z ca22a013d303: Pull complete 2025-06-05T23:53:13.7884618Z 4f4fb700ef54: Pull complete 2025-06-05T23:53:14.0139576Z 646de239c552: Pull complete 2025-06-05T23:53:14.2428550Z c2b62aa0dc26: Pull complete 2025-06-05T23:53:14.6867456Z f6779e1a371f: Pull complete 2025-06-05T23:53:14.7202029Z Digest: sha256:4cd9e207005b6720f61c5035e99d041f7d33aa7b787473b2143d086595b815e8 2025-06-05T23:53:14.7878773Z Status: Downloaded newer image for 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:53:14.8115593Z 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:53:14.8165856Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:53:14.8167138Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:53:14.8174106Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:53:14.8174728Z env: 2025-06-05T23:53:14.8175091Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:53:14.8175617Z REPOSITORY: pytorch/executorch 2025-06-05T23:53:14.8176016Z PR_NUMBER: 2025-06-05T23:53:14.8191205Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:53:14.8207145Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:53:14.8207940Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:53:14.8208702Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:53:14.8209377Z ##[endgroup] 2025-06-05T23:53:14.8375940Z ##[group]Run set -ex 2025-06-05T23:53:14.8376352Z set -ex 2025-06-05T23:53:14.8376671Z { 2025-06-05T23:53:14.8377014Z  echo "#!/usr/bin/env bash"; 2025-06-05T23:53:14.8377466Z  echo "set -eou pipefail"; 2025-06-05T23:53:14.8377920Z  # shellcheck disable=SC2016 2025-06-05T23:53:14.8378395Z  echo 'eval "$(conda shell.bash hook)"'; 2025-06-05T23:53:14.8378882Z  echo "set -x"; 2025-06-05T23:53:14.8379303Z  echo "${SCRIPT}"; 2025-06-05T23:53:14.8379715Z } > "${RUNNER_TEMP}/exec_script" 2025-06-05T23:53:14.8380208Z chmod +x "${RUNNER_TEMP}/exec_script" 2025-06-05T23:53:14.8381293Z python3 "/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py" "EXECUTORCH_HF_TOKEN" 2025-06-05T23:53:14.8388186Z shell: /usr/bin/bash -e {0} 2025-06-05T23:53:14.8388586Z env: 2025-06-05T23:53:14.8389517Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:53:14.8390537Z REPOSITORY: pytorch/executorch 2025-06-05T23:53:14.8390965Z PR_NUMBER: 2025-06-05T23:53:14.8406580Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:53:14.8422340Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:53:14.8423191Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:53:14.8423960Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:53:15.5409229Z ALL_SECRETS: { "EXECUTORCH_MAVEN_SIGNING_GPG_KEY_CONTENTS": "***\n", "EXECUTORCH_MAVEN_CENTRAL_USERNAME": "***", "EXECUTORCH_DEMO_BUILD_PROVISION_PROFILE_BASE64": "***", "EXECUTORCH_MAVEN_SIGNING_KEYID": "***", "BUILD_CERTIFICATE_BASE64": "***", "TOKEN_COREML_PRIVATE_REPO": "***", "EXECUTORCH_BENCHMARK_BUILD_PROVISION_PROFILE_BASE64": "***", "BUILD_PROVISION_PROFILE_BASE64": "***", "github_token": "***", "EXECUTORCH_HF_TOKEN": "***\n", "EXECUTORCH_MAVEN_SIGNING_PASSWORD": "***", "KEYCHAIN_PASSWORD": "***", "EXECUTORCH_MAVEN_CENTRAL_PASSWORD": "***" } 2025-06-05T23:53:15.5411949Z ##[endgroup] 2025-06-05T23:53:15.5444384Z + echo '#!/usr/bin/env bash' 2025-06-05T23:53:15.5444830Z + echo 'set -eou pipefail' 2025-06-05T23:53:15.5445234Z + echo 'eval "$(conda shell.bash hook)"' 2025-06-05T23:53:15.5445692Z + echo 'set -x' 2025-06-05T23:53:15.5446123Z + echo 'echo "::group::Set up ExecuTorch" 2025-06-05T23:53:15.5446784Z # The generic Linux job chooses to use base env, not the one setup by the image 2025-06-05T23:53:15.5448017Z CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") 2025-06-05T23:53:15.5448595Z conda activate "${CONDA_ENV}" 2025-06-05T23:53:15.5449264Z PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake 2025-06-05T23:53:15.5449965Z # Build executor_runner with ETdump enabled 2025-06-05T23:53:15.5450564Z PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ 2025-06-05T23:53:15.5451121Z -DCMAKE_INSTALL_PREFIX=cmake-out \ 2025-06-05T23:53:15.5451576Z -DEXECUTORCH_ENABLE_LOGGING=1 \ 2025-06-05T23:53:15.5451998Z -DCMAKE_BUILD_TYPE=Release \ 2025-06-05T23:53:15.5452434Z -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ 2025-06-05T23:53:15.5452949Z -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ 2025-06-05T23:53:15.5453425Z -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ 2025-06-05T23:53:15.5453894Z -DEXECUTORCH_BUILD_XNNPACK=ON \ 2025-06-05T23:53:15.5454346Z -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ 2025-06-05T23:53:15.5454931Z -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ 2025-06-05T23:53:15.5455402Z -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ 2025-06-05T23:53:15.5455870Z -DEXECUTORCH_BUILD_DEVTOOLS=ON \ 2025-06-05T23:53:15.5456301Z -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ 2025-06-05T23:53:15.5456738Z -Bcmake-out . 2025-06-05T23:53:15.5457182Z cmake --build cmake-out -j16 --target install --config Release 2025-06-05T23:53:15.5457743Z echo "::endgroup::" 2025-06-05T23:53:15.5457938Z 2025-06-05T23:53:15.5458103Z echo "::group::Set up Hugging Face" 2025-06-05T23:53:15.5458548Z pip install -U "huggingface_hub[cli]" 2025-06-05T23:53:15.5459072Z huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN 2025-06-05T23:53:15.5459738Z git clone https://github.com/huggingface/optimum-executorch 2025-06-05T23:53:15.5460277Z pushd optimum-executorch 2025-06-05T23:53:15.5460850Z # There is no release yet, for CI stability, always test from the same commit on main 2025-06-05T23:53:15.5461737Z git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 2025-06-05T23:53:15.5462249Z pip install .[tests] 2025-06-05T23:53:15.5462582Z popd 2025-06-05T23:53:15.5462749Z 2025-06-05T23:53:15.5463025Z if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then 2025-06-05T23:53:15.5463708Z # Fixes for gemma-3 is not available in the released version 2025-06-05T23:53:15.5464339Z git clone https://github.com/huggingface/transformers.git 2025-06-05T23:53:15.5464997Z pushd transformers 2025-06-05T23:53:15.5465424Z git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f 2025-06-05T23:53:15.5465933Z pip install -e . 2025-06-05T23:53:15.5466253Z popd 2025-06-05T23:53:15.5466551Z fi 2025-06-05T23:53:15.5466832Z pip list 2025-06-05T23:53:15.5467149Z echo "::endgroup::" 2025-06-05T23:53:15.5467343Z 2025-06-05T23:53:15.5467511Z echo "::group::Export to ExecuTorch" 2025-06-05T23:53:15.5467995Z # Pass matrix variable as environment variable 2025-06-05T23:53:15.5468502Z export MODEL_ID="HuggingFaceTB/SmolLM2-135M" 2025-06-05T23:53:15.5469062Z export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" 2025-06-05T23:53:15.5469577Z pushd optimum-executorch 2025-06-05T23:53:15.5469817Z 2025-06-05T23:53:15.5469982Z optimum-cli export executorch \ 2025-06-05T23:53:15.5470375Z --model ${MODEL_ID} \ 2025-06-05T23:53:15.5470751Z --task text-generation \ 2025-06-05T23:53:15.5471121Z --recipe xnnpack \ 2025-06-05T23:53:15.5471461Z --use_custom_sdpa \ 2025-06-05T23:53:15.5471836Z --output_dir ${OUTPUT_DIR} \ 2025-06-05T23:53:15.5472208Z --qlinear 2025-06-05T23:53:15.5472382Z 2025-06-05T23:53:15.5472532Z ls -FlAGhp ${OUTPUT_DIR} 2025-06-05T23:53:15.5472875Z popd 2025-06-05T23:53:15.5473174Z echo "::endgroup::" 2025-06-05T23:53:15.5473381Z 2025-06-05T23:53:15.5473548Z echo "::group::Inference using python API" 2025-06-05T23:53:15.5474011Z pushd optimum-executorch 2025-06-05T23:53:15.5474363Z python -c " 2025-06-05T23:53:15.5474669Z import os 2025-06-05T23:53:15.5475141Z from optimum.executorch import ExecuTorchModelForCausalLM 2025-06-05T23:53:15.5475770Z from transformers import AutoTokenizer 2025-06-05T23:53:15.5476058Z 2025-06-05T23:53:15.5476222Z model_id = os.getenv('\''MODEL_ID'\'') 2025-06-05T23:53:15.5476677Z pte_dir = os.getenv('\''OUTPUT_DIR'\'') 2025-06-05T23:53:15.5477184Z print(f'\''Loading model {model_id} from {pte_dir}.'\'') 2025-06-05T23:53:15.5477815Z model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) 2025-06-05T23:53:15.5478391Z generated_text = model.text_generation( 2025-06-05T23:53:15.5478978Z tokenizer=AutoTokenizer.from_pretrained(model_id), 2025-06-05T23:53:15.5479610Z prompt='\''Simply put, the theory of relativity states that'\'', 2025-06-05T23:53:15.5480143Z max_seq_len=64 2025-06-05T23:53:15.5480462Z ) 2025-06-05T23:53:15.5480750Z print(generated_text) 2025-06-05T23:53:15.5481094Z " 2025-06-05T23:53:15.5481357Z popd 2025-06-05T23:53:15.5481661Z echo "::endgroup::" 2025-06-05T23:53:15.5481853Z 2025-06-05T23:53:15.5482093Z echo "::group::Inference using executor_runner with ETDump" 2025-06-05T23:53:15.5482643Z ./cmake-out/executor_runner \ 2025-06-05T23:53:15.5483076Z --model_path ${OUTPUT_DIR}/model.pte \ 2025-06-05T23:53:15.5483543Z --etdump_path ${OUTPUT_DIR}/etdump.etdp 2025-06-05T23:53:15.5483856Z 2025-06-05T23:53:15.5484147Z export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv 2025-06-05T23:53:15.5484730Z mkdir -p $(dirname "$TSV_PATH") 2025-06-05T23:53:15.5485205Z python3 -m devtools.inspector.inspector_cli \ 2025-06-05T23:53:15.5485724Z --etdump_path ${OUTPUT_DIR}/etdump.etdp \ 2025-06-05T23:53:15.5486194Z --tsv_path ${TSV_PATH} 2025-06-05T23:53:15.5486421Z 2025-06-05T23:53:15.5486573Z echo "::endgroup::" 2025-06-05T23:53:15.5486907Z ' 2025-06-05T23:53:15.5487322Z + chmod +x /home/ec2-user/actions-runner/_work/_temp/exec_script 2025-06-05T23:53:15.5488451Z + python3 /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py EXECUTORCH_HF_TOKEN 2025-06-05T23:53:56.7100934Z Running command: 2025-06-05T23:53:56.7112647Z docker run -e PR_NUMBER -e RUNNER_ARTIFACT_DIR=/artifacts -e RUNNER_DOCS_DIR=/docs -e RUNNER_TEST_RESULTS_DIR=/test-results --env-file="/home/ec2-user/actions-runner/_work/_temp/github_env_15475023371" `# It is unknown why the container sees a different value for this.` -e GITHUB_STEP_SUMMARY -e SECRET_EXECUTORCH_HF_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_e6efd105-96ab-4017-9b3c-d403ded44540":"/home/ec2-user/actions-runner/_work/_temp/_runner_file_commands/step_summary_e6efd105-96ab-4017-9b3c-d403ded44540" -w /pytorch/executorch "308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa" 2025-06-05T23:53:56.7120535Z 2025-06-05T23:53:56.7121030Z aee75772ca265fd786ae6594647e6928bb8ac63c7fb4922f994085c218954074 2025-06-05T23:53:56.7121957Z Running command: docker exec -t aee75772ca265fd786ae6594647e6928bb8ac63c7fb4922f994085c218954074 /exec 2025-06-05T23:53:56.7122794Z + echo '::group::Set up ExecuTorch' 2025-06-05T23:53:56.7123588Z ##[group]Set up ExecuTorch 2025-06-05T23:53:56.7123979Z ++ conda env list --json 2025-06-05T23:53:56.7124360Z ++ local cmd=env 2025-06-05T23:53:56.7124686Z ++ case "$cmd" in 2025-06-05T23:53:56.7125039Z ++ __conda_exe env list --json 2025-06-05T23:53:56.7125430Z ++ jq -r '.envs | .[-1]' 2025-06-05T23:53:56.7125822Z ++ /opt/conda/bin/conda env list --json 2025-06-05T23:53:56.7126269Z + CONDA_ENV=/opt/conda/envs/py_3.10 2025-06-05T23:53:56.7126721Z + conda activate /opt/conda/envs/py_3.10 2025-06-05T23:53:56.7127268Z + local cmd=activate 2025-06-05T23:53:56.7127616Z + case "$cmd" in 2025-06-05T23:53:56.7128011Z + __conda_activate activate /opt/conda/envs/py_3.10 2025-06-05T23:53:56.7128477Z + '[' -n '' ']' 2025-06-05T23:53:56.7128806Z + local ask_conda 2025-06-05T23:53:56.7129130Z ++ PS1='(base) ' 2025-06-05T23:53:56.7129560Z ++ __conda_exe shell.posix activate /opt/conda/envs/py_3.10 2025-06-05T23:53:56.7130220Z ++ /opt/conda/bin/conda shell.posix activate /opt/conda/envs/py_3.10 2025-06-05T23:53:56.7130817Z + ask_conda='PS1='\''(py_3.10) '\'' 2025-06-05T23:53:56.7131973Z 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:53:56.7133222Z export CONDA_PREFIX='\''/opt/conda/envs/py_3.10'\'' 2025-06-05T23:53:56.7133709Z export CONDA_SHLVL='\''2'\'' 2025-06-05T23:53:56.7134129Z export CONDA_DEFAULT_ENV='\''py_3.10'\'' 2025-06-05T23:53:56.7134740Z export CONDA_PROMPT_MODIFIER='\''(py_3.10) '\'' 2025-06-05T23:53:56.7135253Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2025-06-05T23:53:56.7135733Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2025-06-05T23:53:56.7136200Z export _CE_M='\'''\'' 2025-06-05T23:53:56.7136602Z export _CE_CONDA='\'''\'' 2025-06-05T23:53:56.7137066Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2025-06-05T23:53:56.7137570Z + eval 'PS1='\''(py_3.10) '\'' 2025-06-05T23:53:56.7138712Z 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:53:56.7140144Z export CONDA_PREFIX='\''/opt/conda/envs/py_3.10'\'' 2025-06-05T23:53:56.7140650Z export CONDA_SHLVL='\''2'\'' 2025-06-05T23:53:56.7141057Z export CONDA_DEFAULT_ENV='\''py_3.10'\'' 2025-06-05T23:53:56.7141553Z export CONDA_PROMPT_MODIFIER='\''(py_3.10) '\'' 2025-06-05T23:53:56.7142047Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2025-06-05T23:53:56.7142623Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2025-06-05T23:53:56.7143072Z export _CE_M='\'''\'' 2025-06-05T23:53:56.7143439Z export _CE_CONDA='\'''\'' 2025-06-05T23:53:56.7143891Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2025-06-05T23:53:56.7144402Z ++ PS1='(py_3.10) ' 2025-06-05T23:53:56.7145466Z ++ 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:53:56.7147320Z ++ 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:53:56.7148472Z ++ export CONDA_PREFIX=/opt/conda/envs/py_3.10 2025-06-05T23:53:56.7148962Z ++ CONDA_PREFIX=/opt/conda/envs/py_3.10 2025-06-05T23:53:56.7149398Z ++ export CONDA_SHLVL=2 2025-06-05T23:53:56.7149762Z ++ CONDA_SHLVL=2 2025-06-05T23:53:56.7150111Z ++ export CONDA_DEFAULT_ENV=py_3.10 2025-06-05T23:53:56.7150556Z ++ CONDA_DEFAULT_ENV=py_3.10 2025-06-05T23:53:56.7150975Z ++ export 'CONDA_PROMPT_MODIFIER=(py_3.10) ' 2025-06-05T23:53:56.7151462Z ++ CONDA_PROMPT_MODIFIER='(py_3.10) ' 2025-06-05T23:53:56.7151900Z ++ export CONDA_PREFIX_1=/opt/conda 2025-06-05T23:53:56.7152323Z ++ CONDA_PREFIX_1=/opt/conda 2025-06-05T23:53:56.7152738Z ++ export CONDA_EXE=/opt/conda/bin/conda 2025-06-05T23:53:56.7153176Z ++ CONDA_EXE=/opt/conda/bin/conda 2025-06-05T23:53:56.7153583Z ++ export _CE_M= 2025-06-05T23:53:56.7153900Z ++ _CE_M= 2025-06-05T23:53:56.7154214Z ++ export _CE_CONDA= 2025-06-05T23:53:56.7154546Z ++ _CE_CONDA= 2025-06-05T23:53:56.7154923Z ++ export CONDA_PYTHON_EXE=/opt/conda/bin/python 2025-06-05T23:53:56.7155416Z ++ CONDA_PYTHON_EXE=/opt/conda/bin/python 2025-06-05T23:53:56.7155854Z + __conda_hashr 2025-06-05T23:53:56.7156166Z + '[' -n '' ']' 2025-06-05T23:53:56.7156490Z + '[' -n '' ']' 2025-06-05T23:53:56.7156800Z + hash -r 2025-06-05T23:53:56.7157112Z + PYTHON_EXECUTABLE=python 2025-06-05T23:53:56.7157579Z + bash .ci/scripts/setup-linux.sh --build-tool cmake 2025-06-05T23:53:56.7158091Z ++ dirname .ci/scripts/setup-linux.sh 2025-06-05T23:53:56.7158546Z + source .ci/scripts/utils.sh 2025-06-05T23:53:56.7158956Z + read -r BUILD_TOOL BUILD_MODE EDITABLE 2025-06-05T23:53:56.7159416Z ++ parse_args --build-tool cmake 2025-06-05T23:53:56.7159823Z ++ args=('--build-tool' 'cmake') 2025-06-05T23:53:56.7160222Z ++ local args 2025-06-05T23:53:56.7160524Z ++ local i 2025-06-05T23:53:56.7160837Z ++ local BUILD_TOOL= 2025-06-05T23:53:56.7161184Z ++ local BUILD_MODE= 2025-06-05T23:53:56.7161536Z ++ local EDITABLE= 2025-06-05T23:53:56.7161855Z ++ (( i=0 )) 2025-06-05T23:53:56.7162152Z ++ (( i<2 )) 2025-06-05T23:53:56.7162471Z ++ case "${args[$i]}" in 2025-06-05T23:53:56.7162826Z ++ BUILD_TOOL=cmake 2025-06-05T23:53:56.7163150Z ++ i=1 2025-06-05T23:53:56.7163429Z ++ (( i++ )) 2025-06-05T23:53:56.7163733Z ++ (( i<2 )) 2025-06-05T23:53:56.7164034Z ++ '[' -z cmake ']' 2025-06-05T23:53:56.7164384Z ++ [[ cmake =~ ^(cmake|buck2)$ ]] 2025-06-05T23:53:56.7164782Z ++ BUILD_MODE=Release 2025-06-05T23:53:56.7165159Z ++ [[ Release =~ ^(Debug|Release)$ ]] 2025-06-05T23:53:56.7165564Z ++ EDITABLE=false 2025-06-05T23:53:56.7165900Z ++ [[ false =~ ^(true|false)$ ]] 2025-06-05T23:53:56.7166310Z ++ echo 'cmake Release false' 2025-06-05T23:53:56.7166691Z + [[ false == \t\r\u\e ]] 2025-06-05T23:53:56.7167105Z + install_executorch --use-pt-pinned-commit 2025-06-05T23:53:56.7167551Z + which pip 2025-06-05T23:53:56.7167879Z /opt/conda/envs/py_3.10/bin/pip 2025-06-05T23:53:56.7168426Z + ./install_executorch.sh --use-pt-pinned-commit 2025-06-05T23:53:56.7169075Z 2025-06-05 23:53:55,699 [ExecuTorch] INFO: All required submodules are present. 2025-06-05T23:53:56.7169953Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cpu 2025-06-05T23:53:56.7171049Z Requirement already satisfied: torch in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (2.8.0a0+git5616fa4) 2025-06-05T23:53:56.7172343Z Requirement already satisfied: torchvision in /var/lib/ci-user/.local/lib/python3.10/site-packages (0.22.0a0+966da7e) 2025-06-05T23:53:56.7173582Z Requirement already satisfied: torchaudio in /var/lib/ci-user/.local/lib/python3.10/site-packages (2.6.0a0+1a8f621) 2025-06-05T23:53:56.7174675Z Collecting timm==1.0.7 (from -r requirements-examples.txt (line 3)) 2025-06-05T23:53:56.7175387Z Downloading timm-1.0.7-py3-none-any.whl.metadata (47 kB) 2025-06-05T23:53:56.7176513Z 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:53:56.7177735Z Collecting torchtune>=0.6.1 (from -r requirements-examples.txt (line 5)) 2025-06-05T23:53:56.7178488Z Downloading torchtune-0.6.1-py3-none-any.whl.metadata (24 kB) 2025-06-05T23:53:56.7179713Z 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:53:56.7180928Z Collecting cmake<4.0.0,>=3.19 (from -r requirements-dev.txt (line 1)) 2025-06-05T23:53:56.7181813Z Downloading cmake-3.31.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.3 kB) 2025-06-05T23:53:56.7183081Z 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:53:56.7184584Z 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:53:56.7186141Z 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:53:56.7187671Z 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:53:56.7189182Z 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:53:56.7190681Z 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:53:56.7192327Z 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:53:56.7194099Z 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:53:56.7195874Z 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:53:56.7197693Z 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:53:59.7848291Z 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:53:59.7850199Z 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:53:59.7852056Z 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:53:59.7854191Z 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:53:59.7856200Z 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:53:59.7858200Z 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:53:59.7860181Z 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:53:59.7862152Z 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:53:59.7863724Z 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:53:59.7864974Z Requirement already satisfied: networkx in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (3.4.2) 2025-06-05T23:53:59.7866192Z Requirement already satisfied: jinja2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (3.1.6) 2025-06-05T23:53:59.7867475Z 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:53:59.7868628Z Collecting torchdata==0.11.0 (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:59.7869469Z Downloading torchdata-0.11.0-py3-none-any.whl.metadata (6.3 kB) 2025-06-05T23:53:59.7870284Z Collecting datasets (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:59.7871082Z Downloading datasets-3.6.0-py3-none-any.whl.metadata (19 kB) 2025-06-05T23:53:59.7871881Z Collecting kagglehub (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:59.7872689Z Downloading kagglehub-0.3.12-py3-none-any.whl.metadata (38 kB) 2025-06-05T23:53:59.7873530Z Collecting sentencepiece (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:59.7874841Z 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:53:59.7876753Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.3 MB ? eta -:--:-- 2025-06-05T23:53:59.7877674Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 99.0 MB/s eta 0:00:00 2025-06-05T23:53:59.7878614Z [?25hCollecting tiktoken (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:59.7879648Z Downloading tiktoken-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) 2025-06-05T23:53:59.7880658Z Collecting blobfile>=2 (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:59.7881631Z Downloading https://download.pytorch.org/whl/nightly/blobfile-3.0.0-py3-none-any.whl (75 kB) 2025-06-05T23:53:59.7882613Z Collecting omegaconf (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:59.7883602Z Downloading https://download.pytorch.org/whl/nightly/omegaconf-2.3.0-py3-none-any.whl (79 kB) 2025-06-05T23:53:59.7884570Z Collecting psutil (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:59.7885710Z 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:53:59.7887405Z 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:53:59.7889024Z Collecting pycryptodomex>=3.8 (from blobfile>=2->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:59.7890165Z Downloading pycryptodomex-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.4 kB) 2025-06-05T23:53:59.7891754Z 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:53:59.7893389Z 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:53:59.7894734Z Collecting pyarrow>=15.0.0 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:59.7895685Z Downloading pyarrow-20.0.0-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (3.3 kB) 2025-06-05T23:53:59.7896645Z Collecting dill<0.3.9,>=0.3.0 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:59.7897647Z Downloading https://download.pytorch.org/whl/nightly/dill-0.3.8-py3-none-any.whl (116 kB) 2025-06-05T23:53:59.7899084Z 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:53:59.7900484Z Collecting xxhash (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:59.7901724Z 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:53:59.7903008Z Collecting multiprocess<0.70.17 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:59.7904846Z Downloading https://download.pytorch.org/whl/nightly/multiprocess-0.70.16-py310-none-any.whl (134 kB) 2025-06-05T23:53:59.7905956Z Collecting fsspec>=2023.5.0 (from huggingface_hub->timm==1.0.7->-r requirements-examples.txt (line 3)) 2025-06-05T23:53:59.7906847Z Downloading fsspec-2025.3.0-py3-none-any.whl.metadata (11 kB) 2025-06-05T23:53:59.7907865Z 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:53:59.7909091Z Downloading aiohttp-3.12.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.6 kB) 2025-06-05T23:53:59.7910431Z 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:53:59.7911657Z Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl.metadata (5.9 kB) 2025-06-05T23:53:59.7912814Z 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:53:59.7913960Z Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) 2025-06-05T23:53:59.7915109Z 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:53:59.7916268Z Downloading async_timeout-5.0.1-py3-none-any.whl.metadata (5.1 kB) 2025-06-05T23:53:59.7917838Z 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:53:59.7919885Z 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:53:59.7921394Z 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:53:59.7923044Z 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:53:59.7924346Z Downloading multidict-6.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) 2025-06-05T23:53:59.7925762Z 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:53:59.7927064Z Downloading propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (10 kB) 2025-06-05T23:53:59.7928359Z 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:53:59.7929591Z Downloading yarl-1.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (72 kB) 2025-06-05T23:54:01.7029784Z 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:54:01.7032327Z 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:54:01.7034568Z 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:54:01.7036368Z Collecting hf-transfer>=0.1.4 (from huggingface_hub[hf_transfer]->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:54:01.7037672Z Downloading hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.7 kB) 2025-06-05T23:54:01.7039051Z 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:54:01.7040423Z Collecting antlr4-python3-runtime==4.9.* (from omegaconf->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:54:01.7041718Z Downloading https://download.pytorch.org/whl/nightly/antlr4_python3_runtime-4.9.3.tar.gz (117 kB) 2025-06-05T23:54:01.7042946Z Preparing metadata (setup.py) ... [?25l- done 2025-06-05T23:54:01.7044669Z [?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:54:01.7046931Z 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:54:01.7049085Z 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:54:01.7051351Z 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:54:01.7052784Z Downloading timm-1.0.7-py3-none-any.whl (2.3 MB) 2025-06-05T23:54:01.7053751Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:54:01.7054791Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 99.4 MB/s eta 0:00:00 2025-06-05T23:54:01.7055865Z [?25hDownloading cmake-3.31.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.8 MB) 2025-06-05T23:54:01.7056995Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/27.8 MB ? eta -:--:-- 2025-06-05T23:54:01.7058279Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 27.8/27.8 MB 144.6 MB/s eta 0:00:00 2025-06-05T23:54:01.7059148Z [?25hDownloading torchtune-0.6.1-py3-none-any.whl (910 kB) 2025-06-05T23:54:01.7060040Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/910.7 kB ? eta -:--:-- 2025-06-05T23:54:01.7061145Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 910.7/910.7 kB 77.7 MB/s eta 0:00:00 2025-06-05T23:54:01.7062204Z [?25hDownloading torchdata-0.11.0-py3-none-any.whl (61 kB) 2025-06-05T23:54:01.7063181Z Downloading pycryptodomex-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB) 2025-06-05T23:54:01.7064227Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:54:01.7065112Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 160.5 MB/s eta 0:00:00 2025-06-05T23:54:01.7065888Z [?25hDownloading datasets-3.6.0-py3-none-any.whl (491 kB) 2025-06-05T23:54:01.7091981Z Downloading fsspec-2025.3.0-py3-none-any.whl (193 kB) 2025-06-05T23:54:01.7093304Z Downloading aiohttp-3.12.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB) 2025-06-05T23:54:01.7094499Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.6 MB ? eta -:--:-- 2025-06-05T23:54:01.7095519Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 125.8 MB/s eta 0:00:00 2025-06-05T23:54:01.7096336Z [?25hDownloading async_timeout-5.0.1-py3-none-any.whl (6.2 kB) 2025-06-05T23:54:01.7097197Z Downloading multidict-6.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (219 kB) 2025-06-05T23:54:01.7098200Z Downloading yarl-1.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (333 kB) 2025-06-05T23:54:01.7099024Z Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl (15 kB) 2025-06-05T23:54:01.7099715Z Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) 2025-06-05T23:54:01.7100740Z 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:54:01.7101969Z Downloading propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206 kB) 2025-06-05T23:54:01.7102892Z Downloading pyarrow-20.0.0-cp310-cp310-manylinux_2_28_x86_64.whl (42.3 MB) 2025-06-05T23:54:01.7104031Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/42.3 MB ? eta -:--:-- 2025-06-05T23:54:01.7105011Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 42.2/42.3 MB 292.6 MB/s eta 0:00:01 2025-06-05T23:54:01.7105943Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.3/42.3 MB 183.4 MB/s eta 0:00:00 2025-06-05T23:54:01.7106980Z [?25hDownloading hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB) 2025-06-05T23:54:01.7108230Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/3.6 MB ? eta -:--:-- 2025-06-05T23:54:01.7109142Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/3.6 MB 138.8 MB/s eta 0:00:00 2025-06-05T23:54:01.7109898Z [?25hDownloading kagglehub-0.3.12-py3-none-any.whl (67 kB) 2025-06-05T23:54:01.7111024Z 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:54:01.7112193Z Downloading tiktoken-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB) 2025-06-05T23:54:01.7113200Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.2 MB ? eta -:--:-- 2025-06-05T23:54:01.7114066Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 130.4 MB/s eta 0:00:00 2025-06-05T23:54:01.7114895Z [?25hBuilding wheels for collected packages: antlr4-python3-runtime 2025-06-05T23:54:01.7118201Z  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:54:01.7121191Z  Building wheel for antlr4-python3-runtime (setup.py) ... [?25l- \ done 2025-06-05T23:54:01.7122802Z [?25h Created wheel for antlr4-python3-runtime: filename=antlr4_python3_runtime-4.9.3-py3-none-any.whl size=144590 sha256=a6058af617e48671d88dcf51cfc5a147ef80db74d31dd6f0945af88b27987b66 2025-06-05T23:54:01.7124407Z Stored in directory: /var/lib/ci-user/.cache/pip/wheels/8e/0c/ef/6e1004d7898c3e61c08b70be9a80232ee72e7c55c9a9bffa33 2025-06-05T23:54:01.7125319Z Successfully built antlr4-python3-runtime 2025-06-05T23:54:11.3770017Z 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:54:11.3774262Z [?25l 2025-06-05T23:54:11.3775585Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/27 [pycryptodomex] 2025-06-05T23:54:11.3777113Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/27 [pycryptodomex] 2025-06-05T23:54:11.3780696Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/27 [pycryptodomex] 2025-06-05T23:54:11.3782287Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:11.3783808Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:11.3785321Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:11.3786768Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:11.3788273Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:11.3790102Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:11.3791583Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  5/27 [psutil] 2025-06-05T23:54:11.3793067Z  ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  7/27 [omegaconf] 2025-06-05T23:54:11.3794237Z  Attempting uninstall: fsspec 2025-06-05T23:54:11.3795377Z ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  7/27 [omegaconf] 2025-06-05T23:54:11.3796825Z  Found existing installation: fsspec 2025.5.1 2025-06-05T23:54:11.3798126Z ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  7/27 [omegaconf] 2025-06-05T23:54:11.3799277Z  Uninstalling fsspec-2025.5.1: 2025-06-05T23:54:11.3800498Z ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  7/27 [omegaconf] 2025-06-05T23:54:11.3801759Z  Successfully uninstalled fsspec-2025.5.1 2025-06-05T23:54:11.3803038Z ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  7/27 [omegaconf] 2025-06-05T23:54:11.3804789Z  ━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 10/27 [fsspec] 2025-06-05T23:54:11.3806204Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:11.3807643Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:11.3809136Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:11.3810558Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:11.3811968Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:11.3813498Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:11.3815108Z  ━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 15/27 [aiohappyeyeballs] 2025-06-05T23:54:11.3816638Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 19/27 [kagglehub] 2025-06-05T23:54:11.3818051Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 23/27 [aiohttp] 2025-06-05T23:54:11.3819130Z  Attempting uninstall: timm 2025-06-05T23:54:11.3820556Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 23/27 [aiohttp] 2025-06-05T23:54:11.3821766Z  Found existing installation: timm 0.6.13 2025-06-05T23:54:11.3823070Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 23/27 [aiohttp] 2025-06-05T23:54:11.3824171Z  Uninstalling timm-0.6.13: 2025-06-05T23:54:11.3825341Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 23/27 [aiohttp] 2025-06-05T23:54:11.3826979Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:11.3828124Z  Successfully uninstalled timm-0.6.13 2025-06-05T23:54:11.3829396Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:11.3830769Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:11.3832195Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:11.3833586Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:11.3834975Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 25/27 [datasets] 2025-06-05T23:54:11.3836383Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 25/27 [datasets] 2025-06-05T23:54:11.3837891Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 26/27 [torchtune] 2025-06-05T23:54:11.3839375Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 26/27 [torchtune] 2025-06-05T23:54:11.3840736Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 27/27 [torchtune] 2025-06-05T23:54:11.3841649Z [?25h 2025-06-05T23:54:11.3847168Z 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:54:11.3852109Z Processing ./third-party/ao 2025-06-05T23:54:11.3853079Z Preparing metadata (setup.py) ... [?25l- done 2025-06-05T23:54:11.3854087Z [?25hProcessing ./extension/llm/tokenizers 2025-06-05T23:54:11.3855382Z Preparing metadata (pyproject.toml) ... [?25l- \ done 2025-06-05T23:54:18.0707238Z [?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:54:18.0710174Z 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:54:18.0713064Z 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:54:18.0716486Z 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:54:18.0719640Z 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:54:18.0723185Z 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:54:18.0726678Z 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:54:18.0729995Z 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:54:18.0733487Z 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:54:18.0737059Z 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:54:18.0740599Z 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:54:18.0744267Z 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:54:18.0747978Z 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:54:18.0751633Z 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:54:18.0755199Z 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:54:18.0758947Z 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:54:18.0762704Z 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:54:18.0765243Z Building wheels for collected packages: torchao, pytorch_tokenizers 2025-06-05T23:54:18.0771328Z  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:54:18.0777066Z  Building wheel for torchao (setup.py) ... [?25l- \ | / - done 2025-06-05T23:54:18.0780059Z [?25h Created wheel for torchao: filename=torchao-0.12.0+gitbc68b11-cp39-abi3-linux_x86_64.whl size=955946 sha256=98804d21a73fb6d810979ce5843d496d0b3cc592d1491defb9d649c51c53395b 2025-06-05T23:54:18.0783227Z Stored in directory: /tmp/pip-ephem-wheel-cache-cdfjeqzb/wheels/0b/23/ff/2261dc1c4a27252503fe159d9fc88676b133e0e8d621abf36f 2025-06-05T23:54:18.0785748Z Building wheel for pytorch_tokenizers (pyproject.toml) ... [?25l- \ done 2025-06-05T23:54:18.0788726Z [?25h Created wheel for pytorch_tokenizers: filename=pytorch_tokenizers-0.1.0-py3-none-any.whl size=10999 sha256=4610e577b65f282145716f59a15fcf2d050681e5b6d3a9c1affaa3e161734c94 2025-06-05T23:54:18.0791943Z Stored in directory: /tmp/pip-ephem-wheel-cache-cdfjeqzb/wheels/27/7b/a1/358699b32a468639d6f9ef263f9676280bc5ee318b0bd9a0b2 2025-06-05T23:54:18.0793913Z Successfully built torchao pytorch_tokenizers 2025-06-05T23:54:18.0795021Z Installing collected packages: torchao, pytorch_tokenizers 2025-06-05T23:54:18.0796028Z [?25l 2025-06-05T23:54:18.0796944Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:54:18.0798218Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:54:18.0799499Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:54:18.0800795Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:54:18.0802127Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2/2 [pytorch_tokenizers] 2025-06-05T23:54:18.0803127Z [?25h 2025-06-05T23:54:18.0804464Z Successfully installed pytorch_tokenizers-0.1.0 torchao-0.12.0+gitbc68b11 2025-06-05T23:54:18.0806106Z Using pip 25.1 from /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pip (python 3.10) 2025-06-05T23:54:18.0807941Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cpu 2025-06-05T23:54:18.0809285Z Processing /pytorch/executorch 2025-06-05T23:54:18.0810157Z Running command Preparing metadata (pyproject.toml) 2025-06-05T23:54:18.0812672Z /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:54:18.0815186Z !! 2025-06-05T23:54:18.0815475Z 2025-06-05T23:54:18.0815800Z ******************************************************************************** 2025-06-05T23:54:18.0817989Z 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:54:18.0819848Z 2025-06-05T23:54:18.0820402Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-06-05T23:54:18.0821606Z or your builds will no longer be supported. 2025-06-05T23:54:18.0822186Z 2025-06-05T23:54:18.0823044Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:18.0824552Z ******************************************************************************** 2025-06-05T23:54:18.0825182Z 2025-06-05T23:54:18.0825379Z !! 2025-06-05T23:54:18.0825928Z corresp(dist, value, root_dir) 2025-06-05T23:54:18.0828079Z /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:54:18.0830297Z !! 2025-06-05T23:54:18.0830580Z 2025-06-05T23:54:18.0830877Z ******************************************************************************** 2025-06-05T23:54:18.0832265Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:54:18.0833342Z 2025-06-05T23:54:18.0833705Z License :: OSI Approved :: BSD License 2025-06-05T23:54:18.0834268Z 2025-06-05T23:54:18.0835162Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:18.0836648Z ******************************************************************************** 2025-06-05T23:54:18.0837243Z 2025-06-05T23:54:18.0837450Z !! 2025-06-05T23:54:18.0838006Z dist._finalize_license_expression() 2025-06-05T23:54:18.0839954Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:54:18.0842098Z !! 2025-06-05T23:54:18.0842368Z 2025-06-05T23:54:18.0842679Z ******************************************************************************** 2025-06-05T23:54:18.0844059Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:54:18.0845131Z 2025-06-05T23:54:18.0845634Z License :: OSI Approved :: BSD License 2025-06-05T23:54:18.0846242Z 2025-06-05T23:54:18.0847156Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:18.0848649Z ******************************************************************************** 2025-06-05T23:54:18.0849278Z 2025-06-05T23:54:18.0849494Z !! 2025-06-05T23:54:18.0850019Z self._finalize_license_expression() 2025-06-05T23:54:18.0850783Z running dist_info 2025-06-05T23:54:18.0851645Z creating /tmp/pip-modern-metadata-dkihx4vy/executorch.egg-info 2025-06-05T23:54:18.0853079Z writing /tmp/pip-modern-metadata-dkihx4vy/executorch.egg-info/PKG-INFO 2025-06-05T23:54:18.0855046Z writing dependency_links to /tmp/pip-modern-metadata-dkihx4vy/executorch.egg-info/dependency_links.txt 2025-06-05T23:54:18.0857123Z writing entry points to /tmp/pip-modern-metadata-dkihx4vy/executorch.egg-info/entry_points.txt 2025-06-05T23:54:18.0859067Z writing requirements to /tmp/pip-modern-metadata-dkihx4vy/executorch.egg-info/requires.txt 2025-06-05T23:54:18.0861010Z writing top-level names to /tmp/pip-modern-metadata-dkihx4vy/executorch.egg-info/top_level.txt 2025-06-05T23:54:19.9602121Z writing manifest file '/tmp/pip-modern-metadata-dkihx4vy/executorch.egg-info/SOURCES.txt' 2025-06-05T23:54:19.9603255Z reading manifest file '/tmp/pip-modern-metadata-dkihx4vy/executorch.egg-info/SOURCES.txt' 2025-06-05T23:54:19.9604472Z adding license file 'LICENSE' 2025-06-05T23:54:19.9605160Z writing manifest file '/tmp/pip-modern-metadata-dkihx4vy/executorch.egg-info/SOURCES.txt' 2025-06-05T23:54:19.9606169Z creating '/tmp/pip-modern-metadata-dkihx4vy/executorch-0.7.0a0+bd57234.dist-info' 2025-06-05T23:54:19.9607588Z Preparing metadata (pyproject.toml) ... [?25l[?25hdone 2025-06-05T23:54:19.9608658Z 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:54:19.9609726Z Collecting flatbuffers (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:19.9611382Z 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:54:19.9614201Z Downloading flatbuffers-25.2.10-py2.py3-none-any.whl.metadata (875 bytes) 2025-06-05T23:54:19.9616218Z 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:54:19.9617790Z 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:54:19.9620403Z 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:54:19.9623164Z 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:54:19.9625798Z 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:54:19.9628473Z 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:54:19.9629972Z 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:54:19.9631220Z Collecting pytest-xdist (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:19.9632834Z 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:54:19.9634727Z Downloading pytest_xdist-3.7.0-py3-none-any.whl.metadata (3.0 kB) 2025-06-05T23:54:19.9635587Z Collecting pytest-rerunfailures (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:19.9637322Z 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:54:19.9639306Z Downloading pytest_rerunfailures-15.1-py3-none-any.whl.metadata (20 kB) 2025-06-05T23:54:19.9641289Z 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:54:19.9643937Z 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:54:19.9645419Z 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:54:19.9646418Z Collecting tabulate (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:19.9647950Z 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:54:19.9649506Z Downloading tabulate-0.9.0-py3-none-any.whl.metadata (34 kB) 2025-06-05T23:54:19.9650675Z 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:54:19.9651824Z Collecting coremltools==8.3 (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:19.9653506Z 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:54:19.9655474Z Downloading coremltools-8.3.0-cp310-none-manylinux1_x86_64.whl.metadata (2.6 kB) 2025-06-05T23:54:19.9656429Z Collecting protobuf>=3.1.0 (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:54:19.9658267Z 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:54:19.9660028Z Downloading protobuf-6.31.1-cp39-abi3-manylinux2014_x86_64.whl.metadata (593 bytes) 2025-06-05T23:54:19.9661299Z 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:54:19.9664136Z 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:54:19.9666312Z Collecting cattrs (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:54:19.9669205Z 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:54:19.9672097Z Downloading cattrs-25.1.1-py3-none-any.whl.metadata (8.4 kB) 2025-06-05T23:54:19.9673383Z Collecting pyaml (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:54:19.9676252Z 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:54:19.9678189Z Downloading pyaml-25.5.0-py3-none-any.whl.metadata (12 kB) 2025-06-05T23:54:19.9679612Z 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:54:19.9681327Z 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:54:19.9683037Z 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:54:19.9684766Z 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:54:19.9686588Z 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:54:19.9688410Z 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:54:19.9690354Z 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:54:19.9693273Z 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:54:19.9696173Z 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:54:19.9698114Z Collecting pytest (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:19.9700816Z 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:54:19.9703871Z Downloading pytest-8.4.0-py3-none-any.whl.metadata (7.7 kB) 2025-06-05T23:54:19.9705939Z 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:54:19.9708131Z Collecting execnet>=2.1 (from pytest-xdist->executorch==0.7.0a0+bd57234) 2025-06-05T23:54:19.9711115Z 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:54:19.9713922Z Downloading execnet-2.1.1-py3-none-any.whl.metadata (2.9 kB) 2025-06-05T23:54:19.9715154Z 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:54:19.9716409Z Downloading coremltools-8.3.0-cp310-none-manylinux1_x86_64.whl (2.3 MB) 2025-06-05T23:54:19.9717465Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:54:19.9718414Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 87.1 MB/s eta 0:00:00 2025-06-05T23:54:21.5516753Z [?25hDownloading protobuf-6.31.1-cp39-abi3-manylinux2014_x86_64.whl (321 kB) 2025-06-05T23:54:21.5518084Z Downloading cattrs-25.1.1-py3-none-any.whl (69 kB) 2025-06-05T23:54:21.5519417Z Downloading flatbuffers-25.2.10-py2.py3-none-any.whl (30 kB) 2025-06-05T23:54:21.5520577Z Downloading pyaml-25.5.0-py3-none-any.whl (26 kB) 2025-06-05T23:54:21.5521645Z Downloading pytest_rerunfailures-15.1-py3-none-any.whl (13 kB) 2025-06-05T23:54:21.5522825Z Downloading pytest-8.4.0-py3-none-any.whl (363 kB) 2025-06-05T23:54:21.5523836Z Downloading pytest_xdist-3.7.0-py3-none-any.whl (46 kB) 2025-06-05T23:54:21.5524942Z Downloading execnet-2.1.1-py3-none-any.whl (40 kB) 2025-06-05T23:54:21.5526220Z Downloading tabulate-0.9.0-py3-none-any.whl (35 kB) 2025-06-05T23:54:21.5527235Z Building wheels for collected packages: executorch 2025-06-05T23:54:21.5528384Z Running command Building wheel for executorch (pyproject.toml) 2025-06-05T23:54:21.5530986Z /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:54:21.5533255Z !! 2025-06-05T23:54:21.5533526Z 2025-06-05T23:54:21.5533851Z ******************************************************************************** 2025-06-05T23:54:21.5536127Z 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:54:21.5537961Z 2025-06-05T23:54:21.5538512Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-06-05T23:54:21.5539707Z or your builds will no longer be supported. 2025-06-05T23:54:21.5540343Z 2025-06-05T23:54:21.5541238Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:21.5542638Z ******************************************************************************** 2025-06-05T23:54:21.5543261Z 2025-06-05T23:54:21.5543450Z !! 2025-06-05T23:54:21.5543987Z corresp(dist, value, root_dir) 2025-06-05T23:54:21.5546180Z /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:54:21.5548365Z !! 2025-06-05T23:54:21.5548643Z 2025-06-05T23:54:21.5548937Z ******************************************************************************** 2025-06-05T23:54:21.5550338Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:54:21.5551425Z 2025-06-05T23:54:21.5551752Z License :: OSI Approved :: BSD License 2025-06-05T23:54:21.5552346Z 2025-06-05T23:54:21.5553243Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:21.5554734Z ******************************************************************************** 2025-06-05T23:54:21.5555334Z 2025-06-05T23:54:21.5555548Z !! 2025-06-05T23:54:21.5556115Z dist._finalize_license_expression() 2025-06-05T23:54:21.5558084Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:54:21.5560015Z !! 2025-06-05T23:54:21.5560287Z 2025-06-05T23:54:21.5560594Z ******************************************************************************** 2025-06-05T23:54:21.5561928Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:54:21.5562905Z 2025-06-05T23:54:21.5563225Z License :: OSI Approved :: BSD License 2025-06-05T23:54:21.5563937Z 2025-06-05T23:54:21.5564800Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:21.5566227Z ******************************************************************************** 2025-06-05T23:54:21.5566826Z 2025-06-05T23:54:21.5567002Z !! 2025-06-05T23:54:21.5567523Z self._finalize_license_expression() 2025-06-05T23:54:21.5568291Z running bdist_wheel 2025-06-05T23:54:21.5568990Z running build 2025-06-05T23:54:21.5569619Z command options for 'CustomBuild': 2025-06-05T23:54:21.5570384Z build_base = pip-out 2025-06-05T23:54:21.5571040Z build_purelib = pip-out/lib 2025-06-05T23:54:21.5571915Z build_platlib = pip-out/lib.linux-x86_64-cpython-310 2025-06-05T23:54:21.5572918Z build_lib = pip-out/lib.linux-x86_64-cpython-310 2025-06-05T23:54:21.5573837Z build_scripts = pip-out/scripts-3.10 2025-06-05T23:54:21.5574851Z build_temp = pip-out/temp.linux-x86_64-cpython-310 2025-06-05T23:54:21.5575781Z plat_name = linux-x86_64 2025-06-05T23:54:21.5576472Z compiler = None 2025-06-05T23:54:21.5577080Z parallel = None 2025-06-05T23:54:21.5577661Z debug = None 2025-06-05T23:54:21.5578229Z force = None 2025-06-05T23:54:21.5578938Z executable = /opt/conda/envs/py_3.10/bin/python 2025-06-05T23:54:21.5580229Z creating /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:54:21.5581862Z clearing /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:54:21.5583065Z Preset CMake variables: 2025-06-05T23:54:21.5583507Z 2025-06-05T23:54:21.5583804Z CMAKE_OSX_DEPLOYMENT_TARGET="12.0" 2025-06-05T23:54:21.5584980Z EXECUTORCH_BUILD_PRESET_FILE="/pytorch/executorch/tools/cmake/preset/pybind.cmake" 2025-06-05T23:54:21.5585936Z 2025-06-05T23:54:21.5586275Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:54:21.5587231Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:54:21.5588096Z -- Detecting C compiler ABI info 2025-06-05T23:54:21.5588854Z -- Detecting C compiler ABI info - done 2025-06-05T23:54:21.5589833Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:54:21.5590816Z -- Detecting C compile features 2025-06-05T23:54:21.5591627Z -- Detecting C compile features - done 2025-06-05T23:54:21.5592437Z -- Detecting CXX compiler ABI info 2025-06-05T23:54:21.5593266Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:54:21.5594286Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:54:21.5595275Z -- Detecting CXX compile features 2025-06-05T23:54:21.5596042Z -- Detecting CXX compile features - done 2025-06-05T23:54:21.5597227Z -- Loading build preset: /pytorch/executorch/tools/cmake/preset/pybind.cmake 2025-06-05T23:54:21.5598400Z -- --- Configured Options --- 2025-06-05T23:54:21.5598880Z 2025-06-05T23:54:21.5599194Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:54:21.5600126Z -- CMAKE_SYSTEM_PROCESSOR : x86_64 2025-06-05T23:54:21.5601083Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:54:21.5602175Z -- PYTHON_EXECUTABLE : /opt/conda/envs/py_3.10/bin/python 2025-06-05T23:54:21.5603315Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-06-05T23:54:21.5605142Z -- CMAKE_TOOLCHAIN_FILE x (unset) 2025-06-05T23:54:21.5605998Z -- BUCK2 : 2025-06-05T23:54:21.5607259Z -- EXECUTORCH_BUILD_PRESET_FILE : /pytorch/executorch/tools/cmake/preset/pybind.cmake 2025-06-05T23:54:21.5608652Z -- EXECUTORCH_ENABLE_LOGGING : ON 2025-06-05T23:54:21.5609564Z -- EXECUTORCH_BUILD_COREML : ON 2025-06-05T23:54:21.5610518Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:54:21.5611484Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-06-05T23:54:21.5612879Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-06-05T23:54:21.5614638Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:54:21.5615591Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:54:21.5616533Z -- EXECUTORCH_ENABLE_EVENT_TRACER : OFF 2025-06-05T23:54:21.5617431Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-06-05T23:54:21.5618339Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-06-05T23:54:21.5619445Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : ON 2025-06-05T23:54:21.5620393Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : ON 2025-06-05T23:54:21.5621329Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : ON 2025-06-05T23:54:21.5622296Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : OFF 2025-06-05T23:54:21.5623241Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : ON 2025-06-05T23:54:21.5624199Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:54:21.5625108Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : OFF 2025-06-05T23:54:21.5626046Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : ON 2025-06-05T23:54:21.5626961Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : ON 2025-06-05T23:54:21.5627899Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : OFF 2025-06-05T23:54:21.5628772Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:54:21.5629665Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:54:21.5630554Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:54:21.5631506Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:54:21.5632396Z -- EXECUTORCH_BUILD_PYBIND : ON 2025-06-05T23:54:21.5633305Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:54:21.5634202Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : OFF 2025-06-05T23:54:21.5635130Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : ON 2025-06-05T23:54:21.5636036Z -- EXECUTORCH_BUILD_DEVTOOLS : OFF 2025-06-05T23:54:21.5636956Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:54:21.5637884Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:54:21.5638785Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:54:21.5639735Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:54:21.5640660Z -- EXECUTORCH_BUILD_XNNPACK : ON 2025-06-05T23:54:21.5641578Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:54:21.5642476Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:54:21.5643336Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:54:21.5644208Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:54:21.5645022Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:54:21.5645833Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:54:21.5646710Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:54:21.5647600Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-06-05T23:54:21.5648450Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-06-05T23:54:21.5649310Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:54:21.5650236Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:54:21.5651102Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:54:21.5652037Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:54:21.5652854Z -- -------------------------- 2025-06-05T23:54:21.5653934Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:54:21.5655797Z CMake Deprecation Warning at third-party/pybind11/CMakeLists.txt:13 (cmake_minimum_required): 2025-06-05T23:54:21.5657502Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:21.5658558Z CMake. 2025-06-05T23:54:21.5658869Z 2025-06-05T23:54:21.5659427Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:21.5660841Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:21.5662221Z to work with policies introduced by or earlier. 2025-06-05T23:54:21.5662876Z 2025-06-05T23:54:21.5662885Z 2025-06-05T23:54:21.5663142Z -- pybind11 v2.13.6 2025-06-05T23:54:21.5664571Z -- Found PythonInterp: /opt/conda/envs/py_3.10/bin/python (found suitable version "3.10.16", minimum required is "3.7") 2025-06-05T23:54:21.5666378Z -- Found PythonLibs: /opt/conda/envs/py_3.10/lib/libpython3.10.so 2025-06-05T23:54:21.5667407Z -- Performing Test HAS_FLTO_THIN 2025-06-05T23:54:21.5668311Z -- Performing Test HAS_FLTO_THIN - Success 2025-06-05T23:54:21.5669661Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:54:21.5671288Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:21.5672372Z CMake. 2025-06-05T23:54:21.5672664Z 2025-06-05T23:54:30.4725333Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:30.4726995Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:30.4728208Z to work with policies introduced by or earlier. 2025-06-05T23:54:30.4728865Z 2025-06-05T23:54:30.4728943Z 2025-06-05T23:54:30.4729382Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:54:30.4730504Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:54:30.4731499Z -- Setting Clang compiler options 2025-06-05T23:54:30.4733245Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:54:30.4736013Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:54:30.4737903Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:30.4738873Z CMake. 2025-06-05T23:54:30.4739129Z 2025-06-05T23:54:30.4739647Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:30.4740939Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:30.4742047Z to work with policies introduced by or earlier. 2025-06-05T23:54:30.4742640Z 2025-06-05T23:54:30.4742649Z 2025-06-05T23:54:30.4743558Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:54:30.4745258Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:30.4746273Z CMake. 2025-06-05T23:54:30.4746569Z 2025-06-05T23:54:30.4747074Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:30.4748444Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:30.4749622Z to work with policies introduced by or earlier. 2025-06-05T23:54:30.4750310Z 2025-06-05T23:54:30.4750318Z 2025-06-05T23:54:30.4750670Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-05T23:54:30.4751645Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-06-05T23:54:30.4752552Z -- Found Threads: TRUE 2025-06-05T23:54:30.4754016Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:54:30.4755973Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:30.4757031Z CMake. 2025-06-05T23:54:30.4757332Z 2025-06-05T23:54:30.4757907Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:30.4759236Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:30.4760380Z to work with policies introduced by or earlier. 2025-06-05T23:54:30.4760985Z 2025-06-05T23:54:30.4760994Z 2025-06-05T23:54:30.4761227Z -- Resolved buck2 as buck2. 2025-06-05T23:54:30.4761905Z -- Killing buck2 daemon 2025-06-05T23:54:30.4762500Z 'buck2 killall' 2025-06-05T23:54:30.4763447Z -- executorch: Generating source lists 2025-06-05T23:54:30.4765039Z -- executorch: Generating source file list /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/executorch_srcs.cmake 2025-06-05T23:54:30.4767461Z -- executorch: Using sources file /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/executorch_srcs.cmake 2025-06-05T23:54:30.4769979Z '/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:54:30.4771792Z -- Generating operator lib: 2025-06-05T23:54:30.4772480Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:54:30.4773414Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:54:30.4774373Z -- ROOT_OPS: 2025-06-05T23:54:30.4775041Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:30.4777990Z 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:54:30.4781057Z -- Generating kernel bindings: 2025-06-05T23:54:30.4781855Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:54:30.4782911Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:54:30.4783917Z -- CUSTOM_OPS_YAML: 2025-06-05T23:54:30.4784387Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:54:30.4786982Z 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:54:30.4789558Z -- Generating operator lib: 2025-06-05T23:54:30.4789994Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:54:30.4790417Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:54:30.4790860Z -- DEPS: executorch_core 2025-06-05T23:54:30.4791260Z -- Generating operator lib: 2025-06-05T23:54:30.4791686Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:54:30.4792259Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:54:30.4792863Z -- ROOT_OPS: 2025-06-05T23:54:30.4793194Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:30.4794962Z 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:54:30.4796799Z -- Generating kernel bindings: 2025-06-05T23:54:30.4797224Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:54:30.4797792Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:54:30.4798407Z -- CUSTOM_OPS_YAML: 2025-06-05T23:54:30.4798774Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:54:30.4801380Z 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:54:30.4804219Z -- Generating operator lib: 2025-06-05T23:54:30.4804641Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:54:30.4805068Z -- KERNEL_LIBS: optimized_kernels 2025-06-05T23:54:30.4805512Z -- DEPS: executorch_core 2025-06-05T23:54:30.4805905Z -- Merging kernel yaml files: 2025-06-05T23:54:30.4806591Z -- FUNCTIONS_YAML: /pytorch/executorch/configurations/../kernels/optimized/optimized.yaml 2025-06-05T23:54:30.4807738Z -- FALLBACK_YAML: /pytorch/executorch/configurations/../kernels/portable/functions.yaml 2025-06-05T23:54:30.4808750Z -- OUTPUT_DIR: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations 2025-06-05T23:54:30.4809492Z -- Generating operator lib: 2025-06-05T23:54:30.4809937Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:54:30.4810871Z -- OPS_SCHEMA_YAML: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/merged.yaml 2025-06-05T23:54:30.4811701Z -- ROOT_OPS: 2025-06-05T23:54:30.4812030Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:30.4814068Z 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:54:30.4816248Z -- Generating kernel bindings: 2025-06-05T23:54:30.4816712Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:54:30.4817563Z -- FUNCTIONS_YAML: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/merged.yaml 2025-06-05T23:54:30.4818412Z -- CUSTOM_OPS_YAML: 2025-06-05T23:54:30.4818787Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:54:30.4821521Z 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:54:30.4824254Z -- Generating operator lib: 2025-06-05T23:54:30.4824682Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:54:30.4825235Z -- KERNEL_LIBS: optimized_kernels;optimized_portable_kernels 2025-06-05T23:54:30.4825787Z -- DEPS: executorch_core 2025-06-05T23:54:30.4826449Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:54:30.4827341Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:30.4827916Z CMake. 2025-06-05T23:54:30.4828092Z 2025-06-05T23:54:30.4828407Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:30.4829166Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:30.4829841Z to work with policies introduced by or earlier. 2025-06-05T23:54:30.4830205Z 2025-06-05T23:54:30.4830209Z 2025-06-05T23:54:30.4830374Z -- Looking for C++ include unistd.h 2025-06-05T23:54:30.4830827Z -- Looking for C++ include unistd.h - found 2025-06-05T23:54:30.4831286Z -- Looking for C++ include stdint.h 2025-06-05T23:54:30.4831743Z -- Looking for C++ include stdint.h - found 2025-06-05T23:54:30.4832207Z -- Looking for C++ include inttypes.h 2025-06-05T23:54:30.4832686Z -- Looking for C++ include inttypes.h - found 2025-06-05T23:54:30.4833157Z -- Looking for C++ include sys/types.h 2025-06-05T23:54:30.4833638Z -- Looking for C++ include sys/types.h - found 2025-06-05T23:54:30.4834106Z -- Looking for C++ include sys/stat.h 2025-06-05T23:54:30.4834576Z -- Looking for C++ include sys/stat.h - found 2025-06-05T23:54:30.4835046Z -- Looking for C++ include fnmatch.h 2025-06-05T23:54:30.4835514Z -- Looking for C++ include fnmatch.h - found 2025-06-05T23:54:30.4835978Z -- Looking for C++ include stddef.h 2025-06-05T23:54:30.4836443Z -- Looking for C++ include stddef.h - found 2025-06-05T23:54:30.4836895Z -- Check size of uint32_t 2025-06-05T23:54:30.4837302Z -- Check size of uint32_t - done 2025-06-05T23:54:30.4837711Z -- Looking for strtoll 2025-06-05T23:54:30.4838098Z -- Looking for strtoll - found 2025-06-05T23:54:30.4838650Z -- The ASM compiler identification is Clang with GNU-like command-line 2025-06-05T23:54:30.4839397Z -- Found assembler: /opt/cache/bin/cc 2025-06-05T23:54:30.4839885Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-06-05T23:54:30.4840716Z -- Found Python: /opt/conda/envs/py_3.10/bin/python3.10 (found version "3.10.16") found components: Interpreter 2025-06-05T23:54:30.4841527Z -- Generating microkernels.cmake 2025-06-05T23:54:30.4842060Z No microkernel found in src/reference/binary-elementwise.cc 2025-06-05T23:54:30.4842732Z No microkernel found in src/reference/packing.cc 2025-06-05T23:54:31.3215916Z No microkernel found in src/reference/unary-elementwise.cc 2025-06-05T23:54:31.3217899Z '/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:54:31.3219762Z -- MKL_ARCH: None, set to ` intel64` by default 2025-06-05T23:54:31.3220653Z -- MKL_ROOT /opt/conda/envs/py_3.10 2025-06-05T23:54:31.3222982Z -- MKL_LINK: None, set to ` dynamic` by default 2025-06-05T23:54:31.3224066Z -- MKL_INTERFACE_FULL: None, set to ` intel_ilp64` by default 2025-06-05T23:54:31.3225366Z -- MKL_THREADING: None, set to ` intel_thread` by default 2025-06-05T23:54:31.3226328Z -- MKL_MPI: None, set to ` intelmpi` by default 2025-06-05T23:54:31.3228102Z 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:54:31.3229938Z static library kineto_LIBRARY-NOTFOUND not found. 2025-06-05T23:54:31.3230842Z Call Stack (most recent call first): 2025-06-05T23:54:31.3232477Z /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:54:31.3234295Z tools/cmake/Utils.cmake:267 (find_package) 2025-06-05T23:54:31.3235168Z CMakeLists.txt:610 (find_package_torch) 2025-06-05T23:54:31.3235743Z 2025-06-05T23:54:31.3235752Z 2025-06-05T23:54:31.3236486Z -- Found Torch: /opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/lib/libtorch.so 2025-06-05T23:54:31.3239061Z -- 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:54:31.3241150Z -- Generating operator lib: 2025-06-05T23:54:31.3241890Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:54:31.3242956Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:54:31.3244056Z -- ROOT_OPS: 2025-06-05T23:54:31.3244613Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:31.3247960Z 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:54:31.3251531Z -- Generating kernel bindings: 2025-06-05T23:54:31.3252305Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:54:31.3253051Z -- FUNCTIONS_YAML: 2025-06-05T23:54:31.3253986Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:54:31.3255246Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:54:31.3264864Z 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:54:31.3274889Z -- Generating operator lib: 2025-06-05T23:54:31.3275704Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:54:31.3276497Z -- OPS_SCHEMA_YAML: 2025-06-05T23:54:31.3283463Z -- 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:54:31.3290310Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:31.3299615Z 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:54:31.3309681Z -- Generating kernel bindings: 2025-06-05T23:54:31.3310459Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:54:31.3311245Z -- FUNCTIONS_YAML: 2025-06-05T23:54:31.3312199Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:54:31.3313350Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:54:31.3314136Z -- Generating custom ops aot lib: 2025-06-05T23:54:31.3314938Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:54:31.3316353Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/embeddingxb.cpp 2025-06-05T23:54:31.3318400Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_add.cpp 2025-06-05T23:54:31.3320441Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_choose_qparams.cpp 2025-06-05T23:54:31.3322606Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_dequantize.cpp 2025-06-05T23:54:31.3324717Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding.cpp 2025-06-05T23:54:31.3326839Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding2b.cpp 2025-06-05T23:54:31.3328987Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding4b.cpp 2025-06-05T23:54:31.3331129Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_mixed_linear.cpp 2025-06-05T23:54:31.3333259Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_mixed_mm.cpp 2025-06-05T23:54:31.3335434Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_quantize.cpp 2025-06-05T23:54:31.3337552Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/portable/cpu/util/reduce_util.cpp 2025-06-05T23:54:31.3339751Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../runtime/core/exec_aten/util/tensor_util_aten.cpp 2025-06-05T23:54:31.3341310Z -- Generating operator lib: 2025-06-05T23:54:31.3342069Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:54:31.3345035Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:54:31.3346332Z -- ROOT_OPS: 2025-06-05T23:54:31.3347898Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:31.3351608Z 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:54:31.3355499Z -- Generating kernel bindings: 2025-06-05T23:54:31.3356284Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:54:31.3357105Z -- FUNCTIONS_YAML: 2025-06-05T23:54:31.3358045Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:54:31.3359219Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:54:31.3359998Z -- Generating operator lib: 2025-06-05T23:54:31.3360784Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:54:31.3361679Z -- KERNEL_LIBS: quantized_pybind_kernels_lib 2025-06-05T23:54:31.3362534Z -- DEPS: portable_lib 2025-06-05T23:54:31.3363228Z -- Generating operator lib: 2025-06-05T23:54:31.3363953Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:54:31.3364740Z -- KERNEL_LIBS: quantized_kernels 2025-06-05T23:54:31.3365516Z -- DEPS: executorch_core 2025-06-05T23:54:31.3366243Z -- Configuring done (10.1s) 2025-06-05T23:54:31.3366952Z -- Generating done (0.5s) 2025-06-05T23:54:31.3368297Z -- Build files have been written to: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:54:31.3371506Z 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:54:31.3374231Z [ 0%] Creating directories for 'flatcc_external_project' 2025-06-05T23:54:31.3375473Z [ 0%] Creating directories for 'flatbuffers_external_project' 2025-06-05T23:54:31.3377248Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-06-05T23:54:31.3379630Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-06-05T23:54:31.3381973Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-06-05T23:54:31.3384052Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-06-05T23:54:31.3386612Z [ 0%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/single.cpp.o 2025-06-05T23:54:31.3388195Z [ 0%] No download step for 'flatcc_external_project' 2025-06-05T23:54:31.3389373Z [ 0%] No download step for 'flatbuffers_external_project' 2025-06-05T23:54:31.3390567Z [ 0%] No update step for 'flatcc_external_project' 2025-06-05T23:54:31.3391581Z [ 0%] No update step for 'flatbuffers_external_project' 2025-06-05T23:54:31.3392699Z [ 0%] No patch step for 'flatcc_external_project' 2025-06-05T23:54:32.3461959Z [ 0%] No patch step for 'flatbuffers_external_project' 2025-06-05T23:54:32.3463067Z [ 0%] Performing configure step for 'flatcc_external_project' 2025-06-05T23:54:32.3464242Z [ 1%] Performing configure step for 'flatbuffers_external_project' 2025-06-05T23:54:32.3465233Z CMake Warning: 2025-06-05T23:54:32.3465983Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:54:32.3466669Z 2025-06-05T23:54:32.3466727Z 2025-06-05T23:54:32.3466986Z CMake Warning: 2025-06-05T23:54:32.3467732Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:54:32.3468383Z 2025-06-05T23:54:32.3468391Z 2025-06-05T23:54:32.3468922Z CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:54:32.3470255Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:32.3471253Z CMake. 2025-06-05T23:54:32.3471557Z 2025-06-05T23:54:32.3472336Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:32.3473591Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:32.3474712Z to work with policies introduced by or earlier. 2025-06-05T23:54:32.3475319Z 2025-06-05T23:54:32.3475327Z 2025-06-05T23:54:32.3475651Z fatal: No names found, cannot describe anything. 2025-06-05T23:54:32.3476581Z CMake Warning at CMake/Version.cmake:32 (message): 2025-06-05T23:54:32.3477673Z git describe failed with exit code: 128 2025-06-05T23:54:32.3478166Z 2025-06-05T23:54:32.3478531Z Make sure you cloned with tags or run 'git fetch --tags'. 2025-06-05T23:54:32.3479419Z Call Stack (most recent call first): 2025-06-05T23:54:32.3480141Z CMakeLists.txt:5 (include) 2025-06-05T23:54:32.3480566Z 2025-06-05T23:54:32.3480573Z 2025-06-05T23:54:32.3480839Z -- Proceeding with version: 24.3.25.0 2025-06-05T23:54:32.3482101Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-06-05T23:54:32.3484002Z [ 2%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-06-05T23:54:32.3485898Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-06-05T23:54:32.3487628Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-06-05T23:54:32.3488941Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:54:32.3489776Z -- Detecting C compiler ABI info 2025-06-05T23:54:32.3490921Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o 2025-06-05T23:54:32.3492654Z [ 2%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o 2025-06-05T23:54:32.3494459Z [ 2%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/double.cpp.o 2025-06-05T23:54:32.3496400Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o 2025-06-05T23:54:32.3498250Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o 2025-06-05T23:54:32.3499666Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:54:32.3500706Z -- Detecting CXX compiler ABI info 2025-06-05T23:54:32.3502237Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o 2025-06-05T23:54:32.3503999Z [ 2%] Linking C static library libpthreadpool.a 2025-06-05T23:54:32.3504846Z [ 2%] Built target pthreadpool 2025-06-05T23:54:32.3506203Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o 2025-06-05T23:54:32.3508411Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o 2025-06-05T23:54:32.3510087Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o 2025-06-05T23:54:32.3510891Z -- Detecting C compiler ABI info - done 2025-06-05T23:54:32.3512254Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o 2025-06-05T23:54:32.3526246Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:54:32.3526969Z -- Detecting C compile features 2025-06-05T23:54:32.3527420Z -- Detecting C compile features - done 2025-06-05T23:54:32.3527999Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:54:32.3528629Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:54:32.3529195Z -- Setting Clang compiler options 2025-06-05T23:54:32.3530152Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:54:32.3531130Z -- Configuring done (0.3s) 2025-06-05T23:54:32.3531533Z -- Generating done (0.0s) 2025-06-05T23:54:32.3532843Z -- 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:54:32.3534400Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:54:32.3535742Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:54:32.3536756Z [ 2%] Performing build step for 'flatcc_external_project' 2025-06-05T23:54:32.3537423Z [ 3%] Building C object src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:54:32.3538138Z [ 6%] Building C object src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:54:32.3539337Z [ 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:54:32.3540523Z [ 9%] Building C object src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:54:32.3541145Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:54:32.3541945Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o 2025-06-05T23:54:32.3542854Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:54:32.3543415Z -- Detecting CXX compile features 2025-06-05T23:54:32.3543877Z -- Detecting CXX compile features - done 2025-06-05T23:54:32.3544715Z [ 2%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_single.cpp.o 2025-06-05T23:54:32.3546144Z [ 2%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9x-minmax-f16c-c8.c.o 2025-06-05T23:54:32.3547810Z [ 2%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-fma3-acc2.c.o 2025-06-05T23:54:32.3548889Z -- Looking for strtof_l 2025-06-05T23:54:32.3549421Z [ 12%] Building C object src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:54:32.3550392Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:54:32.3551791Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-fma3.c.o 2025-06-05T23:54:32.3553009Z [ 15%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:54:32.3553962Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-06-05T23:54:32.3555119Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-06-05T23:54:32.3556248Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-06-05T23:54:32.3557218Z [ 18%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:54:32.3558444Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-fma3.c.o 2025-06-05T23:54:32.3560841Z [ 3%] 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:54:32.3563039Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-06-05T23:54:32.3564163Z -- Looking for strtof_l - found 2025-06-05T23:54:32.3564727Z -- Looking for strtoull_l 2025-06-05T23:54:32.3565632Z [ 3%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_double.cpp.o 2025-06-05T23:54:32.3568201Z [ 3%] 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:54:32.3570510Z [ 21%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:54:32.3571634Z [ 21%] Built target flatccrt 2025-06-05T23:54:32.3572300Z [ 3%] Linking C static library libcpuinfo.a 2025-06-05T23:54:32.3573467Z [ 24%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/str_set.c.o 2025-06-05T23:54:32.3575474Z [ 3%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/xerbla.cpp.o 2025-06-05T23:54:32.3576877Z [ 3%] Built target cpuinfo 2025-06-05T23:54:32.3577849Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotm.c.o 2025-06-05T23:54:32.3578976Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotmg.c.o 2025-06-05T23:54:32.3580003Z [ 27%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/ptr_set.c.o 2025-06-05T23:54:32.3581309Z [ 3%] 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:54:32.3582685Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotm.c.o 2025-06-05T23:54:32.3583699Z [ 30%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/symbol_table.c.o 2025-06-05T23:54:32.3584589Z [ 33%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/scope_table.c.o 2025-06-05T23:54:32.3585293Z -- Looking for strtoull_l - found 2025-06-05T23:54:32.3585720Z -- Looking for realpath 2025-06-05T23:54:32.3586684Z [ 3%] 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:54:32.3588501Z [ 36%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/name_table.c.o 2025-06-05T23:54:32.3590706Z [ 3%] 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:54:32.3592899Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotmg.c.o 2025-06-05T23:54:33.3553582Z [ 39%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/schema_table.c.o 2025-06-05T23:54:33.3555323Z [ 42%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/value_set.c.o 2025-06-05T23:54:33.3557641Z [ 4%] 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:54:33.3559833Z [ 45%] Building C object src/compiler/CMakeFiles/flatcc.dir/fileio.c.o 2025-06-05T23:54:33.3561534Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/lsame.c.o 2025-06-05T23:54:33.3563248Z [ 48%] Building C object src/compiler/CMakeFiles/flatcc.dir/parser.c.o 2025-06-05T23:54:33.3564963Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dspmv.c.o 2025-06-05T23:54:33.3567064Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ssbmv.c.o 2025-06-05T23:54:33.3569756Z [ 4%] 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:54:33.3572418Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chbmv.c.o 2025-06-05T23:54:33.3575167Z [ 4%] 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:54:33.3577455Z [ 51%] Building C object src/compiler/CMakeFiles/flatcc.dir/semantics.c.o 2025-06-05T23:54:33.3579970Z [ 4%] 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:54:33.3582524Z -- Looking for realpath - found 2025-06-05T23:54:33.3583431Z -- CMAKE_CXX_FLAGS: "-DFLATBUFFERS_MAX_ALIGNMENT=1024" 2025-06-05T23:54:33.3584348Z -- Configuring done (1.2s) 2025-06-05T23:54:33.3586503Z [ 4%] 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:54:33.3589607Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/sspmv.c.o 2025-06-05T23:54:33.3591090Z -- Generating done (0.0s) 2025-06-05T23:54:33.3593334Z -- 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:54:33.3595994Z [ 54%] Building C object src/compiler/CMakeFiles/flatcc.dir/coerce.c.o 2025-06-05T23:54:33.3597259Z [ 4%] Performing build step for 'flatbuffers_external_project' 2025-06-05T23:54:33.3598535Z [ 2%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o 2025-06-05T23:54:33.3599815Z [ 57%] Building C object src/compiler/CMakeFiles/flatcc.dir/flatcc.c.o 2025-06-05T23:54:33.3601557Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhbmv.c.o 2025-06-05T23:54:33.3603314Z [ 60%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c.c.o 2025-06-05T23:54:33.3606215Z [ 4%] 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:54:33.3609148Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chpmv.c.o 2025-06-05T23:54:33.3611004Z [ 63%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_reader.c.o 2025-06-05T23:54:33.3612521Z [ 66%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sort.c.o 2025-06-05T23:54:33.3614483Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-06-05T23:54:33.3616956Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-06-05T23:54:33.3619264Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dsbmv.c.o 2025-06-05T23:54:33.3621405Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhpmv.c.o 2025-06-05T23:54:33.3624394Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-igemm/gen/f16-f32acc-igemm-4x16-minmax-avx2-broadcast.c.o 2025-06-05T23:54:33.3627084Z [ 69%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_builder.c.o 2025-06-05T23:54:33.3629647Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-avx512skx-c64.c.o 2025-06-05T23:54:33.3632093Z [ 5%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o 2025-06-05T23:54:33.3633832Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-06-05T23:54:33.3636098Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-06-05T23:54:33.3638218Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dtbmv.c.o 2025-06-05T23:54:33.3640095Z [ 72%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_verifier.c.o 2025-06-05T23:54:33.3641972Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/stbmv.c.o 2025-06-05T23:54:33.3643815Z [ 75%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sorter.c.o 2025-06-05T23:54:33.3645674Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-06-05T23:54:33.3647917Z [ 78%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_parser.c.o 2025-06-05T23:54:33.3650470Z [ 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:54:33.3653932Z [ 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:54:33.3657030Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ctbmv.c.o 2025-06-05T23:54:33.3659085Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-06-05T23:54:33.3660961Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ztbmv.c.o 2025-06-05T23:54:33.3662822Z [ 81%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_printer.c.o 2025-06-05T23:54:33.3664433Z [ 84%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/builder.c.o 2025-06-05T23:54:33.3666205Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/complexdots.c.o 2025-06-05T23:54:33.3667835Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o 2025-06-05T23:54:33.3668861Z [ 7%] Built target logging 2025-06-05T23:54:33.3669899Z [ 87%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/emitter.c.o 2025-06-05T23:54:33.3671412Z [ 90%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/refmap.c.o 2025-06-05T23:54:33.3673516Z [ 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:54:33.3675361Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-06-05T23:54:33.3676215Z [ 7%] Linking CXX static library libeigen_blas.a 2025-06-05T23:54:33.3677133Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-06-05T23:54:33.3678223Z [ 93%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatcc.a 2025-06-05T23:54:33.3679258Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-06-05T23:54:33.3680093Z [ 7%] Built target eigen_blas 2025-06-05T23:54:33.3680642Z [ 7%] Built target indirection 2025-06-05T23:54:33.3681448Z [ 10%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o 2025-06-05T23:54:33.3683123Z [ 7%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-06-05T23:54:33.3684540Z [ 93%] Built target flatcc 2025-06-05T23:54:33.3685484Z [ 96%] Building C object src/cli/CMakeFiles/flatcc_cli.dir/flatcc_cli.c.o 2025-06-05T23:54:33.3686510Z [ 7%] Built target microparams-init 2025-06-05T23:54:33.3687787Z [ 13%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_binary.cpp.o 2025-06-05T23:54:33.3688930Z [ 7%] Built target normalization 2025-06-05T23:54:33.3690909Z [ 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:54:33.3693118Z [ 15%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o 2025-06-05T23:54:33.3695188Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-06-05T23:54:33.3696946Z [100%] Linking C executable /pytorch/executorch/third-party/flatcc/bin/flatcc 2025-06-05T23:54:33.3698099Z [ 7%] Built target packing 2025-06-05T23:54:33.3699305Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-06-05T23:54:33.3701750Z [ 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:54:33.3704029Z [100%] Built target flatcc_cli 2025-06-05T23:54:33.3704884Z [ 7%] Performing install step for 'flatcc_external_project' 2025-06-05T23:54:33.3705836Z [ 7%] Built target allocator 2025-06-05T23:54:33.3707062Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-06-05T23:54:33.3708397Z [ 21%] Built target flatccrt 2025-06-05T23:54:33.3710632Z [ 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:54:33.3712719Z [ 7%] Built target cache 2025-06-05T23:54:33.4085172Z [ 93%] Built target flatcc 2025-06-05T23:54:33.4087098Z [ 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:54:33.4089321Z [ 18%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_csharp.cpp.o 2025-06-05T23:54:33.4090467Z [100%] Built target flatcc_cli 2025-06-05T23:54:33.4091194Z Install the project... 2025-06-05T23:54:33.4092000Z -- Install configuration: "" 2025-06-05T23:54:33.4093736Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc 2025-06-05T23:54:33.4096740Z -- 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:54:33.4099922Z -- 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:54:33.4102946Z -- 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:54:33.4106192Z -- 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:54:33.4109321Z -- 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:54:33.4112431Z -- 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:54:33.4115445Z -- 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:54:33.4118622Z -- 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:54:33.4121679Z -- 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:54:33.4124744Z -- 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:54:33.4127852Z -- 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:54:33.4130983Z -- 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:54:33.4134214Z -- 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:54:33.4137532Z -- 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:54:33.4140705Z -- 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:54:33.4145906Z -- 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:54:33.4150682Z -- 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:54:33.4154074Z -- 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:54:33.4158260Z -- 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:54:33.4161638Z -- 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:54:33.4164788Z -- 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:54:33.4168912Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable 2025-06-05T23:54:33.4172297Z -- 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:54:33.4176568Z -- 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:54:33.4179745Z -- 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:54:33.4183899Z -- 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:54:33.4187144Z -- 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:54:33.4190336Z -- 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:54:33.4193548Z -- 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:54:33.4196860Z -- 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:54:33.4200227Z -- 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:54:33.4203526Z -- 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:54:33.4209595Z -- 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:54:33.4212979Z -- 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:54:33.4216674Z -- 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:54:33.4220123Z -- 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:54:33.4223578Z -- 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:54:33.4227022Z -- 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:54:33.4230267Z -- 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:54:33.4233612Z -- 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:54:33.4236813Z -- 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:54:33.4239910Z -- 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:54:33.4243036Z -- 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:54:33.4246338Z -- 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:54:33.4248896Z -- 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:54:33.4252028Z -- 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:54:33.4255405Z -- 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:54:33.4257551Z -- 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:54:33.4259291Z -- 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:54:34.0347317Z -- 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:54:34.0350654Z -- 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:54:34.0353999Z -- 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:54:34.0357341Z -- 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:54:34.0360625Z -- 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:54:34.0363869Z -- 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:54:34.0367163Z -- 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:54:34.0370502Z -- 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:54:34.0373710Z -- 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:54:34.0377042Z -- 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:54:34.0380576Z -- 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:54:34.0383752Z -- 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:54:34.0387163Z -- 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:54:34.0390348Z -- 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:54:34.0393436Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection 2025-06-05T23:54:34.0396477Z -- 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:54:34.0399898Z -- 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:54:34.0403770Z -- 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:54:34.0407325Z -- 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:54:34.0410735Z -- 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:54:34.0414128Z -- 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:54:34.0417435Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/support 2025-06-05T23:54:34.0420415Z -- 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:54:34.0423526Z -- 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:54:34.0426692Z -- 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:54:34.0429858Z -- 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:54:34.0432987Z -- 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:54:34.0435890Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/lib/libflatccrt.a 2025-06-05T23:54:34.0438597Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/lib/libflatcc.a 2025-06-05T23:54:34.0441132Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/bin/flatcc 2025-06-05T23:54:34.0442794Z [ 7%] Built target datatype 2025-06-05T23:54:34.0443500Z [ 7%] Completed 'flatcc_external_project' 2025-06-05T23:54:34.0444781Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-06-05T23:54:34.0446303Z [ 21%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o 2025-06-05T23:54:34.0447568Z [ 7%] Built target flatcc_external_project 2025-06-05T23:54:34.0448581Z [ 23%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin.cpp.o 2025-06-05T23:54:34.0450756Z [ 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:54:34.0452665Z [ 7%] Built target memory 2025-06-05T23:54:34.0453615Z [ 26%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin_kmp.cpp.o 2025-06-05T23:54:34.0455752Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-06-05T23:54:34.0457792Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-06-05T23:54:34.0460578Z [ 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:54:34.0463002Z [ 8%] Built target microkernel-utils 2025-06-05T23:54:34.0464803Z [ 8%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-06-05T23:54:34.0467626Z [ 8%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-06-05T23:54:34.0469461Z [ 8%] Built target mutex 2025-06-05T23:54:34.0470893Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-06-05T23:54:34.0473425Z [ 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:54:34.0476328Z [ 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:54:34.0479360Z [ 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:54:34.0481258Z [ 8%] Built target operator-utils 2025-06-05T23:54:34.0483164Z [ 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:54:34.0485319Z [ 28%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o 2025-06-05T23:54:34.0486538Z [ 31%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_java.cpp.o 2025-06-05T23:54:34.0487552Z [ 8%] Built target reference-ukernels 2025-06-05T23:54:34.0488534Z [ 34%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_ts.cpp.o 2025-06-05T23:54:34.0489732Z [ 36%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o 2025-06-05T23:54:34.0491006Z [ 39%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o 2025-06-05T23:54:34.0493162Z [ 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:54:34.0496182Z [ 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:54:34.0498949Z [ 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:54:34.0501668Z [ 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:54:34.0504619Z [ 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:54:34.0507101Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-06-05T23:54:34.0509553Z [ 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:54:35.4777214Z [ 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:54:35.4779434Z [ 42%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o 2025-06-05T23:54:35.4780780Z [ 44%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o 2025-06-05T23:54:35.4782108Z [ 47%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o 2025-06-05T23:54:35.4783430Z [ 8%] Built target operator-run 2025-06-05T23:54:35.4784426Z [ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o 2025-06-05T23:54:35.4786547Z [ 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:54:35.4788706Z [ 52%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o 2025-06-05T23:54:35.4790927Z [ 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:54:35.4793880Z [ 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:54:35.4796248Z [ 8%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:54:35.4798627Z [ 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:54:35.4801541Z [ 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:54:35.4803908Z [ 55%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_swift.cpp.o 2025-06-05T23:54:35.4805169Z [ 57%] Building CXX object CMakeFiles/flatc.dir/src/file_name_saving_file_manager.cpp.o 2025-06-05T23:54:35.4807532Z [ 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:54:35.4809964Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:54:35.4812356Z [ 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:54:35.4814871Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:54:35.4816547Z [ 60%] Building CXX object CMakeFiles/flatc.dir/src/file_binary_writer.cpp.o 2025-06-05T23:54:35.4817905Z [ 63%] Building CXX object CMakeFiles/flatc.dir/src/file_writer.cpp.o 2025-06-05T23:54:35.4819140Z [ 65%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o 2025-06-05T23:54:35.4820634Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:54:35.4822162Z [ 68%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o 2025-06-05T23:54:35.4824070Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-06-05T23:54:35.4826867Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-f16c-u16.c.o 2025-06-05T23:54:35.4829305Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:54:35.4830693Z [ 11%] Built target hardware-config 2025-06-05T23:54:35.4831778Z [ 71%] Building CXX object CMakeFiles/flatc.dir/src/binary_annotator.cpp.o 2025-06-05T23:54:35.4833633Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-06-05T23:54:35.4835507Z [ 73%] Building CXX object CMakeFiles/flatc.dir/src/annotated_binary_text_gen.cpp.o 2025-06-05T23:54:35.4837276Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:54:35.4839992Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrsubc-f16c-u16.c.o 2025-06-05T23:54:35.4842823Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-06-05T23:54:35.4845503Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-06-05T23:54:35.4848430Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-06-05T23:54:35.4850682Z [ 11%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:54:35.4851940Z [ 11%] Built target flatccrt 2025-06-05T23:54:35.4853606Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-06-05T23:54:35.4855741Z [ 76%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_lua.cpp.o 2025-06-05T23:54:35.4857933Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiff-f16c-u16.c.o 2025-06-05T23:54:35.4860805Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-06-05T23:54:35.4862787Z [ 78%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_nim.cpp.o 2025-06-05T23:54:35.4865000Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiffc-f16c-u16.c.o 2025-06-05T23:54:35.4867715Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-06-05T23:54:35.4870212Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-06-05T23:54:35.4872814Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-06-05T23:54:35.4875464Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-06-05T23:54:35.4878229Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-06-05T23:54:35.4880937Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-06-05T23:54:35.4883729Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsub-f16c-u16.c.o 2025-06-05T23:54:35.4886641Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsubc-f16c-u16.c.o 2025-06-05T23:54:35.4888865Z [ 81%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o 2025-06-05T23:54:35.4890833Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-06-05T23:54:35.4893337Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-06-05T23:54:35.4895420Z [ 84%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o 2025-06-05T23:54:35.4897384Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-06-05T23:54:35.4899947Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vclamp/gen/f16-vclamp-f16c-u16.c.o 2025-06-05T23:54:35.4902780Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-06-05T23:54:35.4908835Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-velu/gen/f16-velu-avx2-rr1-p3-u16.c.o 2025-06-05T23:54:35.4912002Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-06-05T23:54:35.4914530Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-06-05T23:54:35.4916530Z [ 86%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o 2025-06-05T23:54:35.4918277Z [ 89%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o 2025-06-05T23:54:35.4920595Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-06-05T23:54:35.4923613Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vhswish/gen/f16-vhswish-f16c-u16.c.o 2025-06-05T23:54:35.4926235Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-06-05T23:54:35.4928646Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-06-05T23:54:35.4931323Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vlrelu/gen/f16-vlrelu-f16c-u16.c.o 2025-06-05T23:54:35.4934605Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-fma3-2x.c.o 2025-06-05T23:54:35.4937726Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndd-f16c-u16.c.o 2025-06-05T23:54:35.4940717Z [ 92%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/python_generator.cc.o 2025-06-05T23:54:35.4942803Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-06-05T23:54:35.4945393Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-06-05T23:54:36.5227048Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-06-05T23:54:36.5229895Z [ 13%] 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:54:36.5232890Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndu-f16c-u16.c.o 2025-06-05T23:54:36.5235824Z [ 14%] 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:54:36.5238847Z [ 14%] 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:54:36.5241459Z [ 94%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/swift_generator.cc.o 2025-06-05T23:54:36.5242711Z [ 14%] Built target operators 2025-06-05T23:54:36.5244735Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-u32.c.o 2025-06-05T23:54:36.5248026Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-f16c-rsqrt-u32.c.o 2025-06-05T23:54:36.5250745Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-06-05T23:54:36.5252867Z [ 97%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/ts_generator.cc.o 2025-06-05T23:54:36.5255576Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u72.c.o 2025-06-05T23:54:36.5259174Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-fma3-polynomial-p19h9t2-u32.c.o 2025-06-05T23:54:36.5262220Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-06-05T23:54:36.5264666Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vabs-sse2-u16.c.o 2025-06-05T23:54:36.5267167Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-06-05T23:54:36.5269704Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-06-05T23:54:36.5272328Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-06-05T23:54:36.5275144Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vneg-sse2-u16.c.o 2025-06-05T23:54:36.5279454Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-06-05T23:54:36.5282857Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-06-05T23:54:36.5286140Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vsqr-f16c-u16.c.o 2025-06-05T23:54:36.5289553Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-06-05T23:54:36.5291214Z [100%] Linking CXX executable flatc 2025-06-05T23:54:36.5293219Z [ 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:54:36.5296231Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-06-05T23:54:36.5298594Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-06-05T23:54:36.5301371Z [ 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:54:36.5304323Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-06-05T23:54:36.5306825Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-06-05T23:54:36.5309490Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-06-05T23:54:36.5312464Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-06-05T23:54:36.5315530Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-06-05T23:54:36.5318136Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-06-05T23:54:36.5320705Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-06-05T23:54:36.5323705Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-sse2-c4.c.o 2025-06-05T23:54:36.5326984Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-06-05T23:54:36.5329866Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-06-05T23:54:36.5332741Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-sse2-c4.c.o 2025-06-05T23:54:36.5335653Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-06-05T23:54:36.5338498Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-06-05T23:54:36.5340919Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-06-05T23:54:36.5344028Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:54:36.5347155Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-06-05T23:54:36.5350251Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-sse-c4.c.o 2025-06-05T23:54:36.5353002Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-06-05T23:54:36.5355478Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-06-05T23:54:36.5358055Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-06-05T23:54:36.5361048Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o 2025-06-05T23:54:36.5363872Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-06-05T23:54:36.5366275Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-06-05T23:54:36.5369370Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-sse-c4.c.o 2025-06-05T23:54:36.5372012Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-06-05T23:54:36.5374945Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o 2025-06-05T23:54:36.5377880Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-06-05T23:54:36.5381403Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-06-05T23:54:36.5383730Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-06-05T23:54:36.5386033Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-06-05T23:54:36.5388885Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.o 2025-06-05T23:54:36.5391595Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-06-05T23:54:36.5394189Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx512f.c.o 2025-06-05T23:54:36.5397487Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o 2025-06-05T23:54:36.5400598Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o 2025-06-05T23:54:36.5406741Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-avx.c.o 2025-06-05T23:54:37.1503388Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-fma3.c.o 2025-06-05T23:54:37.1506099Z [ 18%] Built target subgraph 2025-06-05T23:54:37.1508092Z [ 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:54:37.1511518Z [ 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:54:37.1515156Z [ 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:54:37.1518397Z [ 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:54:37.1521616Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-fma3.c.o 2025-06-05T23:54:37.1524941Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2025-06-05T23:54:37.1528297Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o 2025-06-05T23:54:37.1531494Z [ 19%] 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:54:37.1534806Z [ 19%] 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:54:37.1538056Z [ 19%] 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:54:37.1541314Z [ 19%] 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:54:37.1544665Z [ 19%] 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:54:37.1547971Z [ 19%] 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:54:37.1551192Z [ 19%] 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:54:37.1554582Z [ 19%] 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:54:37.1558057Z [ 19%] 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:54:37.1561457Z [ 19%] 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:54:37.1564870Z [ 19%] 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:54:37.1568181Z [ 19%] 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:54:37.1571353Z [ 19%] 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:54:37.1573418Z [100%] Built target flatc 2025-06-05T23:54:37.1574334Z [ 19%] Performing install step for 'flatbuffers_external_project' 2025-06-05T23:54:37.1576635Z [ 20%] 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:54:37.1579906Z [ 20%] 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:54:37.1583305Z [ 20%] 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:54:37.1586482Z [ 20%] 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:54:37.1590104Z [ 20%] 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:54:37.1593949Z [ 20%] 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:54:37.1596220Z [100%] Built target flatc 2025-06-05T23:54:37.1596918Z Install the project... 2025-06-05T23:54:37.1597600Z -- Install configuration: "" 2025-06-05T23:54:37.1599497Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers 2025-06-05T23:54:37.1602747Z -- 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:54:37.1606160Z -- 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:54:37.1609477Z -- 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:54:37.1612761Z -- 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:54:37.1616236Z -- 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:54:37.1619757Z -- 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:54:37.1623305Z -- 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:54:37.1626923Z -- 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:54:37.1630474Z -- 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:54:37.1633972Z -- 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:54:37.1637562Z -- 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:54:37.1641078Z -- 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:54:37.1644481Z -- 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:54:37.1647836Z -- 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:54:37.1651353Z -- 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:54:37.1654853Z -- 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:54:37.1658386Z -- 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:54:37.1661677Z -- 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:54:37.1665157Z -- 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:54:37.1668465Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch 2025-06-05T23:54:37.1671842Z -- 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:54:37.1675315Z -- 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:54:37.1678678Z -- 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:54:37.9149557Z -- 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:54:37.9152756Z -- 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:54:37.9154505Z -- 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:54:37.9156282Z -- 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:54:37.9159430Z -- 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:54:37.9162566Z -- 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:54:37.9165081Z -- 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:54:37.9166817Z -- 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:54:37.9168572Z -- 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:54:37.9171717Z -- 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:54:37.9175263Z -- 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:54:37.9178852Z -- 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:54:37.9182582Z -- 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:54:37.9185987Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/bin/flatc 2025-06-05T23:54:37.9189377Z -- 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:54:37.9192894Z [ 20%] 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:54:37.9196661Z -- 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:54:37.9199049Z [ 20%] Completed 'flatbuffers_external_project' 2025-06-05T23:54:37.9201396Z [ 20%] 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:54:37.9205758Z [ 20%] 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:54:37.9208146Z [ 20%] Built target flatbuffers_external_project 2025-06-05T23:54:37.9210458Z [ 20%] 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:54:37.9214068Z [ 20%] 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:54:37.9217888Z [ 20%] 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:54:37.9221593Z [ 20%] 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:54:37.9225076Z [ 20%] 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:54:37.9227148Z [ 20%] Generating common_schema headers 2025-06-05T23:54:37.9229316Z [ 20%] 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:54:37.9231545Z [ 22%] Generating xnnpack_schema headers 2025-06-05T23:54:37.9232360Z [ 22%] Built target common_schema 2025-06-05T23:54:37.9234531Z [ 22%] 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:54:37.9236671Z [ 22%] Built target xnnpack_schema 2025-06-05T23:54:37.9238663Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4.c.o 2025-06-05T23:54:37.9241725Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-u24.c.o 2025-06-05T23:54:37.9243617Z [ 23%] Generating program_schema headers 2025-06-05T23:54:37.9245583Z [ 23%] 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:54:37.9247584Z [ 23%] Built target program_schema 2025-06-05T23:54:37.9249389Z [ 23%] 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:54:37.9252465Z [ 23%] 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:54:37.9254994Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-06-05T23:54:37.9257359Z [ 23%] 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:54:37.9260608Z [ 23%] 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:54:37.9262791Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-06-05T23:54:37.9265245Z [ 23%] 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:54:37.9268070Z [ 23%] 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:54:37.9270907Z [ 23%] 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:54:37.9273409Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-06-05T23:54:37.9275706Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-06-05T23:54:37.9278319Z [ 23%] 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:54:37.9281619Z [ 23%] 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:54:37.9284353Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-06-05T23:54:37.9286043Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-06-05T23:54:37.9287689Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-06-05T23:54:37.9290004Z [ 23%] 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:54:37.9292322Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-06-05T23:54:37.9294063Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-06-05T23:54:37.9295939Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-06-05T23:54:37.9297725Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-06-05T23:54:37.9300147Z [ 23%] 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:54:37.9303088Z [ 23%] 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:54:37.9305699Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-06-05T23:54:37.9307704Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-06-05T23:54:39.3655541Z [ 24%] 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:54:39.3658620Z [ 24%] 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:54:39.3660059Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-06-05T23:54:39.3661013Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-06-05T23:54:39.3661872Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-06-05T23:54:39.3662770Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-06-05T23:54:39.3663683Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-06-05T23:54:39.3665252Z [ 25%] 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:54:39.3667228Z [ 25%] 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:54:39.3669374Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-06-05T23:54:39.3672058Z [ 25%] 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:54:39.3674520Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-06-05T23:54:39.3676230Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.o 2025-06-05T23:54:39.3678583Z [ 25%] 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:54:39.3681692Z [ 25%] 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:54:39.3684660Z [ 25%] 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:54:39.3687588Z [ 25%] 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:54:39.3690508Z [ 25%] 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:54:39.3692525Z [ 25%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:54:39.3693388Z [ 25%] Built target executorch_core 2025-06-05T23:54:39.3695364Z [ 25%] 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:54:39.3698461Z [ 25%] 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:54:39.3701709Z [ 25%] 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:54:39.3704560Z [ 25%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-06-05T23:54:39.3706252Z [ 27%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-06-05T23:54:39.3708507Z [ 27%] 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:54:39.3710500Z [ 27%] 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:54:39.3712070Z [ 27%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr.cpp.o 2025-06-05T23:54:39.3713772Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-06-05T23:54:39.3715527Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-06-05T23:54:39.3717282Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-06-05T23:54:39.3718956Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-06-05T23:54:39.3721095Z [ 27%] 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:54:39.3723118Z [ 27%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr_maker.cpp.o 2025-06-05T23:54:39.3724976Z [ 27%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-06-05T23:54:39.3727270Z [ 27%] 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:54:39.3729861Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-06-05T23:54:39.3731939Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-06-05T23:54:39.3734408Z [ 28%] 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:54:39.3737606Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o 2025-06-05T23:54:39.3740842Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:54:39.3743637Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-06-05T23:54:39.3745254Z [ 29%] Linking CXX static library libextension_tensor.a 2025-06-05T23:54:39.3746223Z [ 29%] Linking CXX static library libexecutorch.a 2025-06-05T23:54:39.3748237Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:54:39.3750325Z [ 29%] Built target extension_tensor 2025-06-05T23:54:39.3751697Z [ 29%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-06-05T23:54:39.3753086Z [ 29%] Built target executorch 2025-06-05T23:54:39.3754473Z [ 29%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-06-05T23:54:39.3756648Z [ 29%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-06-05T23:54:39.3758601Z [ 29%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-06-05T23:54:39.3760544Z [ 29%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/file_data_loader.cpp.o 2025-06-05T23:54:39.3762490Z [ 29%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/mmap_data_loader.cpp.o 2025-06-05T23:54:39.3765295Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:54:39.3768506Z [ 29%] 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:54:39.3771099Z [ 29%] 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:54:39.3772935Z [ 29%] 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:54:39.3774299Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-06-05T23:54:39.3775380Z [ 29%] Linking CXX static library libextension_threadpool.a 2025-06-05T23:54:39.3775992Z [ 29%] Linking CXX static library libextension_data_loader.a 2025-06-05T23:54:39.3776676Z [ 29%] Built target extension_threadpool 2025-06-05T23:54:39.3777448Z [ 29%] Built target extension_data_loader 2025-06-05T23:54:39.3778196Z [ 29%] Generating etdump headers 2025-06-05T23:54:39.3778942Z [ 29%] Generating bundled_program headers 2025-06-05T23:54:39.3780285Z [ 29%] Building CXX object devtools/bundled_program/CMakeFiles/bundled_program.dir/bundled_program.cpp.o 2025-06-05T23:54:39.3781991Z [ 29%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/etdump_flatcc.cpp.o 2025-06-05T23:54:39.3783636Z [ 29%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/emitter.cpp.o 2025-06-05T23:54:39.3785187Z [ 29%] Building CXX object CMakeFiles/util.dir/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:54:39.3787369Z [ 29%] 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:54:39.3790043Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:54:39.3792309Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-06-05T23:54:39.3794999Z [ 29%] 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:54:39.3797107Z [ 29%] Linking CXX static library libbundled_program.a 2025-06-05T23:54:39.3798350Z [ 29%] Building CXX object CMakeFiles/util.dir/extension/aten_util/aten_bridge.cpp.o 2025-06-05T23:54:41.0998657Z [ 29%] 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:54:41.1000769Z [ 29%] Built target bundled_program 2025-06-05T23:54:41.1002160Z [ 29%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/buffer_data_sink.cpp.o 2025-06-05T23:54:41.1004553Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:54:41.1006756Z [ 30%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/file_data_sink.cpp.o 2025-06-05T23:54:41.1008759Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:54:41.1011406Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2025-06-05T23:54:41.1014138Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-06-05T23:54:41.1016822Z [ 30%] 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:54:41.1019474Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-06-05T23:54:41.1021209Z [ 30%] Linking CXX static library libetdump.a 2025-06-05T23:54:41.1063529Z [ 30%] Built target etdump 2025-06-05T23:54:41.1065168Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-06-05T23:54:41.1068060Z [ 30%] 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:54:41.1071455Z [ 30%] 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:54:41.1074136Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:54:41.1076303Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:54:41.1078417Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:54:41.1080955Z [ 30%] 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:54:41.1083522Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-06-05T23:54:41.1085751Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-06-05T23:54:41.1088434Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2c4-minmax-sse.c.o 2025-06-05T23:54:41.1091536Z [ 32%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-06-05T23:54:41.1093793Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:54:41.1096269Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:54:41.1098985Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2025-06-05T23:54:41.1102165Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o 2025-06-05T23:54:41.1105149Z [ 32%] 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:54:41.1107107Z [ 32%] Linking CXX static library libutil.a 2025-06-05T23:54:41.1107925Z [ 32%] Built target util 2025-06-05T23:54:41.1109083Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/BlasKernel.cpp.o 2025-06-05T23:54:41.1110777Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/CPUBlas.cpp.o 2025-06-05T23:54:41.1112730Z [ 32%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-06-05T23:54:41.1114965Z [ 32%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-06-05T23:54:41.1117709Z [ 32%] 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:54:41.1120989Z [ 32%] 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:54:41.1123761Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:54:41.1125968Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:54:41.1128706Z [ 32%] 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:54:41.1132294Z [ 32%] 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:54:41.1135755Z [ 32%] 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:54:41.1137946Z [ 32%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:54:41.1138954Z [ 32%] Built target kernels_util_all_deps 2025-06-05T23:54:41.1140467Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:54:41.1143124Z [ 32%] 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:54:41.1145828Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:54:41.1147352Z [ 33%] Linking CXX static library libcpublas.a 2025-06-05T23:54:41.1148221Z [ 33%] Built target cpublas 2025-06-05T23:54:41.1149609Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:54:41.1152428Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:54:41.1155792Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-sse-c4.c.o 2025-06-05T23:54:41.1159378Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o 2025-06-05T23:54:41.1162695Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-sse-c4.c.o 2025-06-05T23:54:41.1165537Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:54:41.1168471Z [ 33%] 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:54:41.1171372Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:54:41.1173671Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:54:41.1176804Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:54:41.1180448Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:54:41.1183317Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:54:41.1185490Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:54:41.1188255Z [ 35%] 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:54:41.1190970Z [ 35%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/binary_ops.cpp.o 2025-06-05T23:54:41.1192941Z [ 35%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:54:41.1194851Z [ 35%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:54:41.1196753Z [ 35%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:54:41.1199416Z [ 35%] 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:54:41.1201902Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:54:41.1205526Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-avx-broadcast.c.o 2025-06-05T23:54:41.1209157Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-avx2-broadcast.c.o 2025-06-05T23:54:43.6952282Z [ 35%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:54:43.6954401Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:54:43.6957338Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-fma3-broadcast.c.o 2025-06-05T23:54:43.6960914Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:54:43.6964229Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-sse41-dup.c.o 2025-06-05T23:54:43.6967517Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:54:43.6971655Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-7x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:54:43.6975455Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:54:43.6978554Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:54:43.6980762Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:54:43.6983034Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:54:43.6985317Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:54:43.6988289Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:54:43.6991213Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:54:43.6993866Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:54:43.6996841Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:54:43.7000551Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:54:43.7004591Z [ 35%] 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:54:43.7007319Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:54:43.7010155Z [ 37%] 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:54:43.7013567Z [ 37%] 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:54:43.7016446Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:54:43.7018693Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:54:43.7020929Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:54:43.7023700Z [ 37%] 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:54:43.7027262Z [ 37%] 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:54:43.7030118Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:54:43.7032279Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:54:43.7035195Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-avx2-broadcast.c.o 2025-06-05T23:54:43.7038183Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:54:43.7040552Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:54:43.7043519Z [ 38%] 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:54:43.7047456Z [ 38%] 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:54:43.7051035Z [ 38%] 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:54:43.7054155Z [ 38%] 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:54:43.7057076Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:54:43.7059953Z [ 38%] 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:54:43.7063281Z [ 38%] 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:54:43.7066010Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:54:43.7068139Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:54:43.7070274Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:54:43.7073035Z [ 38%] 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:54:43.7076334Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:54:43.7079099Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:54:43.7081748Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-u32.c.o 2025-06-05T23:54:43.7084456Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:54:43.7086562Z [ 38%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:54:43.7088717Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:54:43.7091468Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-u32.c.o 2025-06-05T23:54:43.7094690Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-u32.c.o 2025-06-05T23:54:43.7097239Z [ 38%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_c2r.cpp.o 2025-06-05T23:54:43.7099259Z [ 38%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_r2c.cpp.o 2025-06-05T23:54:43.7101296Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:54:43.7104032Z [ 39%] 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:54:43.7106417Z [ 39%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:54:43.7108992Z [ 39%] 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:54:43.7111563Z [ 39%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:54:43.7113542Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:54:43.7115966Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:54:43.7118779Z [ 39%] 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:54:43.7122197Z [ 39%] 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:54:43.7124846Z [ 39%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_linear.cpp.o 2025-06-05T23:54:47.3632310Z [ 39%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:54:47.3634439Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:54:47.3637137Z [ 39%] 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:54:47.3640295Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-u32.c.o 2025-06-05T23:54:47.3643918Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc2.c.o 2025-06-05T23:54:47.3646882Z [ 39%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:54:47.3648814Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:54:47.3650794Z [ 39%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:54:47.3653797Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc2.c.o 2025-06-05T23:54:47.3657120Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:54:47.3659335Z [ 40%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:54:47.3662521Z [ 40%] 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:54:47.3666638Z [ 40%] 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:54:47.3669742Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:54:47.3672380Z [ 40%] 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:54:47.3675683Z [ 40%] 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:54:47.3678872Z [ 40%] 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:54:47.3681594Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:54:47.3683840Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:54:47.3686445Z [ 41%] 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:54:47.3689648Z [ 41%] 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:54:47.3692507Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:54:47.3694726Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:54:47.3697329Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-avx512f-u64-acc4.c.o 2025-06-05T23:54:47.3700576Z [ 43%] 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:54:47.3703801Z [ 43%] 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:54:47.3706431Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:54:47.3708566Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:54:47.3711291Z [ 43%] 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:54:47.3714457Z [ 43%] 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:54:47.3717653Z [ 43%] 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:54:47.3720336Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:54:47.3722477Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:54:47.3725088Z [ 43%] 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:54:47.3728149Z [ 43%] 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:54:47.3730701Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:54:47.3733297Z [ 43%] 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:54:47.3736013Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:54:47.3738597Z [ 43%] 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:54:47.3741081Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:54:47.3743541Z [ 43%] 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:54:47.3746103Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:54:47.3748628Z [ 43%] 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:54:47.3751721Z [ 43%] 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:54:47.3754884Z [ 43%] 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:54:47.3757468Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:54:47.3759468Z [ 43%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:54:47.3762117Z [ 43%] 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:54:47.3765107Z [ 43%] 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:54:47.3767571Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:54:47.3770256Z [ 43%] 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:54:47.3773197Z [ 44%] 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:54:47.3776205Z [ 44%] 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:54:47.3778772Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:54:47.3781271Z [ 44%] 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:54:47.3785589Z [ 44%] 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:54:47.3788119Z [ 44%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:54:47.3790620Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u8.c.o 2025-06-05T23:54:47.3793136Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:54:47.3795644Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-sse-u8.c.o 2025-06-05T23:54:47.3798499Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-avx-u16.c.o 2025-06-05T23:54:47.3801079Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:54:47.3803266Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:54:51.3592495Z [ 45%] 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:54:51.3595544Z [ 45%] 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:54:51.3598007Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:54:51.3600469Z [ 45%] 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:54:51.3603344Z [ 45%] 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:54:51.3605910Z [ 45%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:54:51.3607853Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:54:51.3610511Z [ 45%] 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:54:51.3613076Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:54:51.3615656Z [ 45%] 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:54:51.3618529Z [ 45%] 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:54:51.3621404Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:54:51.3623896Z [ 45%] 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:54:51.3626995Z [ 45%] 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:54:51.3629585Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:54:51.3632265Z [ 46%] 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:54:51.3635248Z [ 46%] 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:54:51.3637950Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:54:51.3640649Z [ 46%] 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:54:51.3643079Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:54:51.3645597Z [ 46%] 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:54:51.3648112Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:54:51.3650657Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u8.c.o 2025-06-05T23:54:51.3653022Z [ 46%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:54:51.3655225Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:54:51.3657789Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-sse-u8.c.o 2025-06-05T23:54:51.3660681Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-avx-u16.c.o 2025-06-05T23:54:51.3663147Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:54:51.3665247Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:54:51.3667826Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-avx512f-u32.c.o 2025-06-05T23:54:51.3670389Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:54:51.3672992Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2025-06-05T23:54:51.3675479Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:54:51.3678131Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-sse-u8.c.o 2025-06-05T23:54:51.3681061Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-avx-u16.c.o 2025-06-05T23:54:51.3683626Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:54:51.3685819Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:54:51.3688581Z [ 48%] 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:54:51.3691505Z [ 48%] 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:54:51.3694697Z [ 48%] 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:54:51.3697154Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:54:51.3699237Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:54:51.3701780Z [ 48%] 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:54:51.3708304Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:54:51.3710974Z [ 48%] 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:54:51.3713571Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:54:51.3715946Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:54:51.3718472Z [ 49%] 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:54:51.3721414Z [ 49%] 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:54:51.3723936Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:54:51.3726458Z [ 49%] 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:54:51.3729200Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:54:51.3731865Z [ 49%] 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:54:51.3734937Z [ 49%] 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:54:51.3737802Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:54:51.3740615Z [ 49%] 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:54:51.3743533Z [ 49%] 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:54:51.3748293Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:54:51.3750897Z [ 49%] 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:54:51.3753848Z [ 49%] 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:54:51.3756334Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:54:51.3758796Z [ 49%] 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:54:51.3761255Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:54:51.3763589Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:54:53.9058686Z [ 49%] 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:54:53.9061719Z [ 49%] 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:54:53.9064582Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:54:53.9067243Z [ 49%] 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:54:53.9070308Z [ 49%] 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:54:53.9072866Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:54:53.9075440Z [ 49%] 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:54:53.9078081Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:54:53.9080448Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:54:53.9083199Z [ 51%] 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:54:53.9086172Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u2.c.o 2025-06-05T23:54:53.9089184Z [ 51%] 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:54:53.9091769Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:54:53.9094088Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:54:53.9096581Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:54:53.9099262Z [ 51%] 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:54:53.9102390Z [ 51%] 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:54:53.9105231Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:54:53.9107778Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u8.c.o 2025-06-05T23:54:53.9110349Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:54:53.9112450Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:54:53.9115035Z [ 51%] 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:54:53.9118026Z [ 51%] 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:54:53.9120514Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:54:53.9122722Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:54:53.9125177Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:54:53.9127865Z [ 51%] 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:54:53.9130574Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:54:53.9133116Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:54:53.9135930Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u8.c.o 2025-06-05T23:54:53.9138934Z [ 51%] 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:54:53.9141464Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:54:53.9143549Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:54:53.9146084Z [ 51%] 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:54:53.9149211Z [ 51%] 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:54:53.9152359Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u8.c.o 2025-06-05T23:54:53.9154889Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:54:53.9157018Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:54:53.9159607Z [ 51%] 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:54:53.9162611Z [ 51%] 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:54:53.9165212Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:54:53.9167559Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:54:53.9170344Z [ 54%] 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:54:53.9173118Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:54:53.9175618Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:54:53.9178417Z [ 54%] 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:54:53.9181046Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:54:53.9183259Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:54:53.9185894Z [ 54%] 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:54:53.9188819Z [ 54%] 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:54:53.9191410Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:54:53.9194014Z [ 54%] 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:54:53.9197218Z [ 54%] 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:54:53.9199946Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:54:53.9202721Z [ 54%] 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:54:53.9205552Z [ 54%] 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:54:53.9208596Z [ 54%] 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:54:53.9211649Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u8.c.o 2025-06-05T23:54:53.9214734Z [ 54%] 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:54:53.9217432Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:54:53.9219871Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:54:53.9222299Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:54:53.9224607Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:54:53.9226755Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:54:55.8158389Z [ 54%] 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:54:55.8160840Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:54:55.8162150Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:54:55.8163687Z [ 54%] 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:54:55.8165398Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u4.c.o 2025-06-05T23:54:55.8166904Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:54:55.8168202Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:54:55.8169611Z [ 55%] 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:54:55.8171265Z [ 55%] 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:54:55.8172726Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:54:55.8174135Z [ 56%] 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:54:55.8175684Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:54:55.8177168Z [ 56%] 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:54:55.8178650Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:54:55.8180152Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:54:55.8181405Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:54:55.8182797Z [ 56%] 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:54:55.8184281Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:54:55.8185690Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx.c.o 2025-06-05T23:54:55.8187143Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:54:55.8188405Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:54:55.8189945Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx512f.c.o 2025-06-05T23:54:55.8191100Z [ 56%] Linking CXX static library liboptimized_kernels.a 2025-06-05T23:54:55.8192322Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-06-05T23:54:55.8193776Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:54:55.8195010Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:54:55.8196345Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-sse2.c.o 2025-06-05T23:54:55.8197977Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx.c.o 2025-06-05T23:54:55.8199556Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx512f.c.o 2025-06-05T23:54:55.8201233Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-06-05T23:54:55.8202257Z [ 56%] Built target optimized_kernels 2025-06-05T23:54:55.8203071Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:54:55.8204656Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-sse2.c.o 2025-06-05T23:54:55.8206081Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:54:55.8207353Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:54:55.8208493Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:54:55.8209878Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx.c.o 2025-06-05T23:54:55.8211468Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx512f.c.o 2025-06-05T23:54:55.8213099Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-06-05T23:54:55.8214763Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-sse2.c.o 2025-06-05T23:54:55.8216116Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:54:55.8217334Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:54:55.8218588Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:54:55.8220451Z [ 58%] 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:54:55.8223145Z [ 59%] 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:54:55.8225391Z [ 59%] 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:54:55.8227769Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:54:55.8229595Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:54:55.8231591Z [ 59%] 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:54:55.8233575Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:54:55.8235173Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:54:55.8236799Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:54:55.8238837Z [ 59%] 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:54:55.8241005Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:54:55.8242642Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:54:55.8244724Z [ 59%] 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:54:55.8247396Z [ 59%] 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:54:55.8249057Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:54:55.8250446Z [ 59%] 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:54:55.8252759Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:54:55.8255427Z [ 59%] 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:54:55.8257550Z [ 59%] 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:54:55.8259095Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:54:55.8260965Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:54:55.8262776Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:54:57.2952502Z [ 59%] 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:54:57.2955495Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:54:57.2958600Z [ 59%] 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:54:57.2961704Z [ 59%] 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:54:57.2964247Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:54:57.2967035Z [ 60%] 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:54:57.2970082Z [ 60%] 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:54:57.2973045Z [ 60%] 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:54:57.2976206Z [ 60%] 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:54:57.2978877Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:54:57.2981142Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:54:57.2983252Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:54:57.2985319Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:54:57.2987735Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:54:57.2990759Z [ 61%] 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:54:57.2993938Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:54:57.2996747Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:54:57.2999339Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:54:57.3002232Z [ 61%] 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:54:57.3005609Z [ 61%] 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:54:57.3008447Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:54:57.3010908Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:54:57.3013759Z [ 61%] 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:54:57.3016691Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:54:57.3019085Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:54:57.3021850Z [ 61%] 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:54:57.3024852Z [ 61%] 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:54:57.3027860Z [ 61%] 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:54:57.3031174Z [ 61%] 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:54:57.3033849Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:54:57.3036728Z [ 61%] 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:54:57.3039667Z [ 61%] 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:54:57.3042885Z [ 61%] 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:54:57.3046330Z [ 61%] 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:54:57.3049504Z [ 61%] 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:54:57.3052467Z [ 61%] 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:54:57.3055529Z [ 61%] 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:54:57.3058178Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:54:57.3060481Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:54:57.3063203Z [ 61%] 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:54:57.3065969Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:54:57.3068720Z [ 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:54:57.3071442Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:54:57.3073992Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:54:57.3076757Z [ 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:54:57.3079607Z [ 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:54:57.3082162Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:54:57.3084482Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:54:57.3086826Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:54:57.3089473Z [ 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:54:57.3092437Z [ 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:54:57.3095618Z [ 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:54:57.3098389Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:54:57.3100928Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:54:57.3105334Z [ 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:54:57.3108398Z [ 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:54:57.3111251Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:54:57.3113832Z [ 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:54:57.3116725Z [ 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:54:57.3119587Z [ 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:54:57.3122582Z [ 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:54:58.5279921Z [ 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:54:58.5283025Z [ 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:54:58.5285909Z [ 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:54:58.5288734Z [ 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:54:58.5291693Z [ 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:54:58.5294812Z [ 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:54:58.5297002Z [ 65%] Linking CXX static library liboptimized_portable_kernels.a 2025-06-05T23:54:58.5299053Z [ 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:54:58.5302055Z [ 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:54:58.5305235Z [ 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:54:58.5308138Z [ 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:54:58.5311292Z [ 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:54:58.5314498Z [ 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:54:58.5317689Z [ 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:54:58.5320712Z [ 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:54:58.5323820Z [ 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:54:58.5327047Z [ 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:54:58.5329548Z [ 65%] Built target optimized_portable_kernels 2025-06-05T23:54:58.5331701Z [ 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:54:58.5333810Z [ 65%] Merging kernel yaml files 2025-06-05T23:54:58.5336422Z [ 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:54:58.5340252Z [ 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:54:58.5343828Z [ 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:54:58.5347362Z [ 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:54:58.5350682Z [ 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:54:58.5353665Z [ 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:54:58.5355986Z [ 66%] Generating selected_operators.yaml for optimized_native_cpu_ops_lib 2025-06-05T23:54:58.5358271Z [ 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:54:58.5361394Z [ 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:54:58.5364467Z [ 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:54:58.5367674Z [ 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:54:58.5370904Z [ 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:54:58.5374063Z [ 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:54:58.5377416Z [ 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:54:58.5380723Z [ 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:54:58.5383678Z [ 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:54:58.5386358Z [ 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:54:58.5388571Z [ 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:54:58.5390680Z [ 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:54:58.5392842Z [ 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:54:58.5394994Z [ 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:54:58.5396491Z [ 67%] Generating code for kernel registration 2025-06-05T23:54:58.5398146Z [ 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:54:58.5400283Z [ 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:54:58.5402563Z [ 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:54:58.5405499Z [ 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:54:58.5408134Z [ 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:54:58.5411372Z [ 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:54:58.5414881Z [ 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:54:58.5418535Z [ 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:54:58.5422133Z [ 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:54:58.5425697Z [ 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:54:58.5429258Z [ 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:54:58.5432644Z [ 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:54:58.5436170Z [ 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:54:58.5439718Z [ 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:54:58.5443392Z [ 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:54:58.5447086Z [ 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:54:59.7671046Z [ 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:54:59.7673180Z [ 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:54:59.7675098Z [ 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:54:59.7676967Z [ 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:54:59.7678841Z [ 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:54:59.7680755Z [ 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:54:59.7684300Z [ 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:54:59.7688088Z [ 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:54:59.7692150Z [ 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:54:59.7696071Z [ 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:54:59.7700272Z [ 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:54:59.7704407Z [ 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:54:59.7708186Z [ 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:54:59.7711895Z [ 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:54:59.7715913Z [ 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:54:59.7719868Z [ 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:54:59.7723557Z [ 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:54:59.7725599Z [ 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:54:59.7727582Z [ 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:54:59.7729739Z [ 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:54:59.7731833Z [ 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:54:59.7734033Z [ 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:54:59.7736285Z [ 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:54:59.7738402Z [ 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:54:59.7740512Z [ 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:54:59.7742536Z [ 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:54:59.7744516Z [ 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:54:59.7746728Z [ 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:54:59.7748738Z [ 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:54:59.7750821Z [ 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:54:59.7752870Z [ 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:54:59.7755213Z [ 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:54:59.7758341Z [ 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:54:59.7760690Z [ 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:54:59.7762758Z [ 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:54:59.7764799Z [ 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:54:59.7766948Z [ 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:54:59.7769078Z [ 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:54:59.7771199Z [ 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:54:59.7773335Z [ 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:54:59.7775448Z [ 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:54:59.7777526Z [ 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:54:59.7779542Z [ 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:54:59.7781606Z [ 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:54:59.7783550Z [ 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:54:59.7786157Z [ 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:54:59.7790220Z [ 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:54:59.7794630Z [ 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:55:00.7150296Z [ 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:55:00.7154284Z [ 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:55:00.7156958Z [ 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:55:00.7159614Z [ 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:55:00.7162119Z [ 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:55:00.7164766Z [ 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:55:00.7167227Z [ 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:55:00.7169813Z [ 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:55:00.7171892Z [ 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:55:00.7173984Z [ 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:55:00.7176100Z [ 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:55:00.7178078Z [ 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:55:00.7180351Z [ 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:55:00.7182304Z [ 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:55:00.7184466Z [ 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:55:00.7186436Z [ 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:55:00.7188515Z [ 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:55:00.7190789Z [ 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:55:00.7192671Z [ 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:55:00.7194413Z [ 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:55:00.7196067Z [ 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:55:00.7198079Z [ 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:55:00.7199798Z [ 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:55:00.7201665Z [ 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:55:00.7203390Z [ 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:55:00.7206301Z [ 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:55:00.7209421Z [ 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:55:00.7212069Z [ 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:55:00.7214790Z [ 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:55:00.7216796Z [ 74%] Building CXX object configurations/CMakeFiles/optimized_native_cpu_ops_lib.dir/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:55:00.7218932Z [ 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:55:00.7221366Z [ 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:55:00.7224169Z [ 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:55:00.7227203Z [ 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:55:00.7230298Z [ 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:55:00.7233593Z [ 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:55:00.7236696Z [ 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:55:00.7238854Z [ 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:55:00.7240983Z [ 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:55:00.7243052Z [ 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:55:00.7244505Z [ 75%] Linking CXX static library liboptimized_native_cpu_ops_lib.a 2025-06-05T23:55:00.7246004Z [ 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:55:00.7247404Z [ 75%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:55:00.7248959Z [ 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:55:00.7251082Z [ 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:55:00.7253355Z [ 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:55:00.7256628Z [ 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:55:00.7259591Z [ 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:55:00.7262068Z [ 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:55:00.7264335Z [ 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:55:00.7266912Z [ 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:55:01.6753402Z [ 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:55:01.6757566Z [ 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:55:01.6761784Z [ 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:55:01.6765724Z [ 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:55:01.6769865Z [ 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:55:01.6773878Z [ 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:55:01.6777852Z [ 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:55:01.6791380Z [ 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:55:01.6795152Z [ 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:55:01.6798835Z [ 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:55:01.6802857Z [ 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:55:01.6807064Z [ 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:55:01.6811168Z [ 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:55:01.6815228Z [ 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:55:01.6818924Z [ 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:55:01.6822770Z [ 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:55:01.6826457Z [ 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:55:01.6830074Z [ 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:55:01.6833743Z [ 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:55:01.6837558Z [ 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:55:01.6841350Z [ 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:55:01.6845182Z [ 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:55:01.6849031Z [ 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:55:01.6852832Z [ 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:55:01.6856584Z [ 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:55:01.6860322Z [ 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:55:01.6864065Z [ 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:55:01.6867727Z [ 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:55:01.6871645Z [ 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:55:01.6875421Z [ 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:55:01.6879194Z [ 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:55:01.6882820Z [ 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:55:01.6886566Z [ 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:55:01.6890123Z [ 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:55:01.6893989Z [ 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:55:01.6897961Z [ 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:55:01.6902540Z [ 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:55:01.6906194Z [ 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:55:01.6909701Z [ 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:55:01.6913220Z [ 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:55:01.6916687Z [ 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:55:01.6919926Z [ 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:55:01.6923056Z [ 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:55:01.6926240Z [ 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:55:01.6929334Z [ 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:55:01.6932345Z [ 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:55:01.6935639Z [ 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:55:01.6939044Z [ 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:55:01.6942505Z [ 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:55:01.6945865Z [ 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:55:02.5387466Z [ 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:55:02.5390869Z [ 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:55:02.5394247Z [ 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:55:02.5397700Z [ 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:55:02.5401048Z [ 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:55:02.5404939Z [ 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:55:02.5408668Z [ 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:55:02.5411882Z [ 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:55:02.5415492Z [ 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:55:02.5418950Z [ 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:55:02.5422170Z [ 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:55:02.5425096Z [ 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:55:02.5427959Z [ 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:55:02.5430924Z [ 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:55:02.5433883Z [ 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:55:02.5436856Z [ 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:55:02.5439690Z [ 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:55:02.5442695Z [ 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:55:02.5445705Z [ 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:55:02.5448846Z [ 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:55:02.5452056Z [ 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:55:02.5455205Z [ 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:55:02.5458247Z [ 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:55:02.5461296Z [ 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:55:02.5464580Z [ 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:55:02.5467820Z [ 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:55:02.5470847Z [ 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:55:02.5473704Z [ 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:55:02.5476479Z [ 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:55:02.5479750Z [ 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:55:02.5483186Z [ 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:55:02.5486253Z [ 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:55:02.5489266Z [ 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:55:02.5492152Z [ 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:55:02.5495075Z [ 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:55:02.5497951Z [ 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:55:02.5500948Z [ 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:55:02.5503331Z [ 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:55:02.5506242Z [ 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:55:02.5509475Z [ 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:55:02.5512743Z [ 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:55:02.5516263Z [ 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:55:02.5519647Z [ 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:55:02.5522996Z [ 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:55:02.5526289Z [ 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:55:02.5529767Z [ 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:55:02.5533373Z [ 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:55:02.5537059Z [ 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:55:02.5540560Z [ 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:55:02.5544068Z [ 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:55:02.5547436Z [ 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:55:02.5551029Z [ 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:55:02.5554211Z [ 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:55:03.5383452Z [ 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:55:03.5386714Z [ 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:55:03.5389913Z [ 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:55:03.5393015Z [ 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:55:03.5396147Z [ 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:55:03.5399227Z [ 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:55:03.5402573Z [ 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:55:03.5406254Z [ 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:55:03.5409721Z [ 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:55:03.5413043Z [ 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:55:03.5416567Z [ 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:55:03.5419947Z [ 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:55:03.5423326Z [ 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:55:03.5426660Z [ 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:55:03.5430073Z [ 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:55:03.5433547Z [ 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:55:03.5436939Z [ 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:55:03.5440308Z [ 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:55:03.5443484Z [ 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:55:03.5446804Z [ 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:55:03.5450394Z [ 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:55:03.5454171Z [ 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:55:03.5457802Z [ 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:55:03.5461432Z [ 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:55:03.5464881Z [ 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:55:03.5468337Z [ 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:55:03.5471707Z [ 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:55:03.5475143Z [ 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:55:03.5478598Z [ 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:55:03.5482072Z [ 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:55:03.5485531Z [ 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:55:03.5488547Z [ 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:55:03.5491496Z [ 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:55:03.5493862Z [ 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:55:03.5495710Z [ 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:55:03.5497520Z [ 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:55:03.5499256Z [ 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:55:03.5501094Z [ 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:55:03.5502881Z [ 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:55:03.5507215Z [ 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:55:03.5509075Z [ 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:55:03.5511038Z [ 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:55:03.5512885Z [ 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:55:03.5515599Z [ 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:55:03.5519104Z [ 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:55:03.5521446Z [ 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:55:03.5523449Z [ 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:55:03.5525182Z [ 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:55:03.5526986Z [ 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:55:03.5528712Z [ 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:55:03.5530336Z [ 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:55:03.5532013Z [ 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:55:03.5533755Z [ 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:55:04.3746178Z [ 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:55:04.3748286Z [ 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:55:04.3749814Z [ 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:55:04.3751313Z [ 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:55:04.3752807Z [ 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:55:04.3754299Z [ 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:55:04.3756216Z [ 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:55:04.3758819Z [ 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:55:04.3761739Z [ 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:55:04.3764716Z [ 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:55:04.3767824Z [ 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:55:04.3770807Z [ 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:55:04.3773790Z [ 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:55:04.3776840Z [ 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:55:04.3780208Z [ 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:55:04.3783459Z [ 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:55:04.3787080Z [ 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:55:04.3790619Z [ 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:55:04.3794134Z [ 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:55:04.3796883Z [ 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:55:04.3798628Z [ 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:55:04.3800456Z [ 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:55:04.3802117Z [ 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:55:04.3803871Z [ 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:55:04.3805508Z [ 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:55:04.3807185Z [ 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:55:04.3808787Z [ 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:55:04.3810497Z [ 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:55:04.3812568Z [ 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:55:04.3814217Z [ 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:55:04.3815969Z [ 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:55:04.3817547Z [ 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:55:04.3819193Z [ 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:55:04.3820848Z [ 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:55:04.3822309Z [ 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:55:04.3823791Z [ 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:55:04.3825384Z [ 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:55:04.3827149Z [ 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:55:04.3828728Z [ 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:55:04.3830389Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2025-06-05T23:55:04.3831970Z [ 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:55:04.3833759Z [ 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:55:04.3835296Z [ 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:55:04.3836726Z [ 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:55:04.3838180Z [ 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:55:04.3839685Z [ 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:55:04.3841195Z [ 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:55:04.3843445Z [ 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:55:04.3846316Z [ 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:55:04.3849537Z [ 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:55:04.3852598Z [ 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:55:04.3854851Z [ 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:55:04.3856630Z [ 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:55:04.3858364Z [ 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:55:04.3860006Z [ 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:55:04.3861654Z [ 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:55:05.6394432Z [ 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:55:05.6397115Z [ 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:55:05.6398950Z [ 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:55:05.6400678Z [ 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:55:05.6402665Z [ 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:55:05.6404537Z [ 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:55:05.6406356Z [ 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:55:05.6408110Z [ 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:55:05.6409808Z [ 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:55:05.6411329Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-06-05T23:55:05.6412800Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-sse2.c.o 2025-06-05T23:55:05.6414237Z [ 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:55:05.6415721Z [ 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:55:05.6417140Z [ 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:55:05.6418538Z [ 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:55:05.6419948Z [ 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:55:05.6421336Z [ 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:55:05.6422745Z [ 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:55:05.6424140Z [ 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:55:05.6425728Z [ 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:55:05.6427462Z [ 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:55:05.6429210Z [ 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:55:05.6430797Z [ 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:55:05.6432240Z [ 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:55:05.6433770Z [ 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:55:05.6435387Z [ 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:55:05.6436941Z [ 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:55:05.6438422Z [ 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:55:05.6440027Z [ 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:55:05.6441795Z [ 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:55:05.6443462Z [ 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:55:05.6445169Z [ 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:55:05.6446884Z [ 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:55:05.6448627Z [ 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:55:05.6450379Z [ 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:55:05.6451998Z [ 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:55:05.6453377Z [ 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:55:05.6454872Z [ 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:55:05.6456246Z [ 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:55:05.6457636Z [ 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:55:05.6459012Z [ 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:55:05.6460404Z [ 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:55:05.6461776Z [ 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:55:05.6463218Z [ 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:55:05.6464678Z [ 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:55:05.6466118Z [ 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:55:05.6467547Z [ 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:55:05.6469003Z [ 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:55:05.6470588Z [ 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:55:05.6472117Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-06-05T23:55:05.6473512Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-06-05T23:55:05.6474918Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-06-05T23:55:05.6476351Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-06-05T23:55:05.6477845Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-06-05T23:55:05.6479297Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-06-05T23:55:05.6480732Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-06-05T23:55:05.6482263Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-06-05T23:55:05.6483614Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-06-05T23:55:05.6484535Z [ 97%] Linking C static library libmicrokernels-prod.a 2025-06-05T23:55:05.6485046Z [ 97%] Built target microkernels-prod 2025-06-05T23:55:15.3404025Z [ 97%] Generating build_identifier.c 2025-06-05T23:55:15.3405882Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-06-05T23:55:15.3408139Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-06-05T23:55:15.3410203Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-06-05T23:55:15.3412288Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-06-05T23:55:15.3414241Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-06-05T23:55:15.3416508Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-06-05T23:55:15.3418817Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-06-05T23:55:15.3421295Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-06-05T23:55:15.3423590Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-06-05T23:55:15.3425043Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-06-05T23:55:15.3426367Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-06-05T23:55:15.3427646Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-06-05T23:55:15.3428888Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-06-05T23:55:15.3430142Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-06-05T23:55:15.3431616Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-06-05T23:55:15.3433955Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-06-05T23:55:15.3435874Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-06-05T23:55:15.3437695Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-06-05T23:55:15.3439351Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-06-05T23:55:15.3441177Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-06-05T23:55:15.3443137Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-06-05T23:55:15.3445678Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-06-05T23:55:15.3447700Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-06-05T23:55:15.3449444Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-06-05T23:55:15.3451404Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-06-05T23:55:15.3453139Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-06-05T23:55:15.3454880Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-06-05T23:55:15.3456440Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-06-05T23:55:15.3457962Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-06-05T23:55:15.3459075Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-06-05T23:55:15.3460141Z [100%] Linking CXX static library libXNNPACK.a 2025-06-05T23:55:15.3460615Z [100%] Built target XNNPACK 2025-06-05T23:55:15.3461373Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNCompiler.cpp.o 2025-06-05T23:55:15.3463304Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNHeader.cpp.o 2025-06-05T23:55:15.3465233Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNExecutor.cpp.o 2025-06-05T23:55:15.3467222Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNPACKBackend.cpp.o 2025-06-05T23:55:15.3469455Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/profiling/XNNProfiler.cpp.o 2025-06-05T23:55:15.3471641Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNWeightsCache.cpp.o 2025-06-05T23:55:15.3473158Z [100%] Linking CXX static library libxnnpack_backend.a 2025-06-05T23:55:15.3474037Z [100%] Built target xnnpack_backend 2025-06-05T23:55:15.3475274Z [100%] Building CXX object CMakeFiles/portable_lib.dir/extension/pybindings/pybindings.cpp.o 2025-06-05T23:55:15.3476903Z [100%] Linking CXX shared library _portable_lib.cpython-310-x86_64-linux-gnu.so 2025-06-05T23:55:15.3478003Z [100%] Built target portable_lib 2025-06-05T23:55:15.3479270Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_util.dir/runtime/util/json_util.cpp.o 2025-06-05T23:55:15.3481324Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/memory_stream.cpp.o 2025-06-05T23:55:15.3483694Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/reversed_memory_stream.cpp.o 2025-06-05T23:55:15.3486127Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/inmemory_filesystem.cpp.o 2025-06-05T23:55:15.3488471Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/memory_buffer.cpp.o 2025-06-05T23:55:15.3489944Z Linking CXX static library libcoreml_util.a 2025-06-05T23:55:15.3490713Z Built target coreml_util 2025-06-05T23:55:15.3491433Z Linking CXX static library libcoreml_inmemoryfs.a 2025-06-05T23:55:15.3492268Z Built target coreml_inmemoryfs 2025-06-05T23:55:15.3493869Z Building CXX object backends/apple/coreml/CMakeFiles/executorchcoreml.dir/runtime/inmemoryfs/inmemory_filesystem_py.cpp.o 2025-06-05T23:55:15.3496247Z Building CXX object backends/apple/coreml/CMakeFiles/executorchcoreml.dir/runtime/inmemoryfs/inmemory_filesystem_utils.cpp.o 2025-06-05T23:55:15.3497484Z Linking CXX shared library executorchcoreml.cpython-310-x86_64-linux-gnu.so 2025-06-05T23:55:15.3498296Z Built target executorchcoreml 2025-06-05T23:55:15.3498742Z [ 1%] Built target flatbuffers_external_project 2025-06-05T23:55:15.3499256Z [ 1%] Built target flatcc_external_project 2025-06-05T23:55:15.3499714Z [ 2%] Built target pthreadpool 2025-06-05T23:55:15.3500123Z [ 2%] Built target common_schema 2025-06-05T23:55:15.3500699Z [ 3%] Built target xnnpack_schema 2025-06-05T23:55:15.3501209Z [ 4%] Built target cpuinfo 2025-06-05T23:55:15.3501754Z [ 6%] Built target logging 2025-06-05T23:55:15.3502149Z [ 7%] Built target flatccrt 2025-06-05T23:55:15.3502562Z [ 7%] Built target indirection 2025-06-05T23:55:15.3502987Z [ 7%] Built target microparams-init 2025-06-05T23:55:15.3503441Z [ 8%] Built target eigen_blas 2025-06-05T23:55:15.3504904Z [ 8%] Built target normalization 2025-06-05T23:55:15.3505341Z [ 8%] Built target datatype 2025-06-05T23:55:15.3505755Z [ 8%] Built target microkernel-utils 2025-06-05T23:55:15.3506223Z [ 8%] Built target mutex 2025-06-05T23:55:15.3506609Z [ 8%] Built target memory 2025-06-05T23:55:15.3507117Z [ 8%] Built target operator-utils 2025-06-05T23:55:15.3507557Z [ 8%] Built target reference-ukernels 2025-06-05T23:55:15.3508000Z [ 8%] Built target operator-run 2025-06-05T23:55:15.3508438Z [ 8%] Built target program_schema 2025-06-05T23:55:15.3508950Z [ 8%] Built target hardware-config 2025-06-05T23:55:15.3509399Z [ 8%] Built target packing 2025-06-05T23:55:15.3509799Z [ 8%] Built target allocator 2025-06-05T23:55:15.3510207Z [ 8%] Built target cache 2025-06-05T23:55:15.3510597Z [ 11%] Built target operators 2025-06-05T23:55:15.3511013Z [ 12%] Built target executorch_core 2025-06-05T23:55:15.3511454Z [ 12%] Built target extension_data_loader 2025-06-05T23:55:15.3511929Z [ 12%] Built target extension_threadpool 2025-06-05T23:55:15.3512383Z [ 12%] Built target extension_tensor 2025-06-05T23:55:15.3512814Z [ 14%] Built target subgraph 2025-06-05T23:55:15.3513208Z [ 16%] Built target executorch 2025-06-05T23:55:15.3513627Z [ 16%] Built target bundled_program 2025-06-05T23:55:15.3514042Z [ 17%] Built target cpublas 2025-06-05T23:55:15.3514442Z [ 17%] Built target etdump 2025-06-05T23:55:15.3514842Z [ 18%] Built target kernels_util_all_deps 2025-06-05T23:55:15.3515282Z [ 18%] Built target util 2025-06-05T23:55:15.3515679Z [ 19%] Built target optimized_kernels 2025-06-05T23:55:15.3516144Z [ 34%] Built target optimized_portable_kernels 2025-06-05T23:55:15.3516662Z [ 34%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:55:15.3517210Z [ 97%] Built target microkernels-prod 2025-06-05T23:55:15.3517808Z [100%] Built target XNNPACK 2025-06-05T23:55:15.3518335Z [100%] Built target xnnpack_backend 2025-06-05T23:55:15.3518776Z [100%] Built target portable_lib 2025-06-05T23:55:15.3519518Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fallback.cpp.o 2025-06-05T23:55:15.3520696Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fast_hadamard_transform.cpp.o 2025-06-05T23:55:15.3521834Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_sdpa.cpp.o 2025-06-05T23:55:15.3522910Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_update_cache.cpp.o 2025-06-05T23:55:15.3524123Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/spinquant/fast_hadamard_transform.cpp.o 2025-06-05T23:55:15.3525427Z [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:55:15.3526592Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_sdpa_aot.cpp.o 2025-06-05T23:55:15.3527773Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fast_hadamard_transform_aten.cpp.o 2025-06-05T23:55:22.8595855Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_tile_crop.cpp.o 2025-06-05T23:55:22.8597709Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_tile_crop_aot.cpp.o 2025-06-05T23:55:22.8598610Z [100%] Linking CXX shared library libcustom_ops_aot_lib.so 2025-06-05T23:55:22.8599282Z [100%] Built target custom_ops_aot_lib 2025-06-05T23:55:22.8599820Z [ 1%] Built target flatbuffers_external_project 2025-06-05T23:55:22.8600533Z [ 1%] Built target flatcc_external_project 2025-06-05T23:55:22.8601042Z [ 2%] Built target pthreadpool 2025-06-05T23:55:22.8601600Z [ 3%] Built target cpuinfo 2025-06-05T23:55:22.8602025Z [ 3%] Built target common_schema 2025-06-05T23:55:22.8602506Z [ 4%] Built target xnnpack_schema 2025-06-05T23:55:22.8603034Z [ 6%] Built target eigen_blas 2025-06-05T23:55:22.8603531Z [ 7%] Built target logging 2025-06-05T23:55:22.8604134Z [ 8%] Built target flatccrt 2025-06-05T23:55:22.8604572Z [ 8%] Built target indirection 2025-06-05T23:55:22.8605074Z [ 8%] Built target microparams-init 2025-06-05T23:55:22.8605648Z [ 8%] Built target normalization 2025-06-05T23:55:22.8606072Z [ 8%] Built target datatype 2025-06-05T23:55:22.8606521Z [ 8%] Built target reference-ukernels 2025-06-05T23:55:22.8606970Z [ 8%] Built target operator-utils 2025-06-05T23:55:22.8607560Z [ 8%] Built target operator-run 2025-06-05T23:55:22.8608037Z [ 8%] Built target program_schema 2025-06-05T23:55:22.8608530Z [ 8%] Built target hardware-config 2025-06-05T23:55:22.8608964Z [ 8%] Built target packing 2025-06-05T23:55:22.8609348Z [ 8%] Built target allocator 2025-06-05T23:55:22.8609783Z [ 8%] Built target cache 2025-06-05T23:55:22.8610337Z [ 8%] Built target memory 2025-06-05T23:55:22.8610744Z [ 8%] Built target microkernel-utils 2025-06-05T23:55:22.8611226Z [ 8%] Built target mutex 2025-06-05T23:55:22.8611617Z [ 9%] Built target executorch_core 2025-06-05T23:55:22.8612074Z [ 12%] Built target operators 2025-06-05T23:55:22.8612673Z [ 13%] Built target executorch 2025-06-05T23:55:22.8613094Z [ 13%] Built target extension_data_loader 2025-06-05T23:55:22.8613636Z [ 13%] Built target extension_threadpool 2025-06-05T23:55:22.8614084Z [ 13%] Built target extension_tensor 2025-06-05T23:55:22.8614682Z [ 15%] Built target subgraph 2025-06-05T23:55:22.8615218Z [ 16%] Built target kernels_util_all_deps 2025-06-05T23:55:22.8615691Z [ 16%] Built target bundled_program 2025-06-05T23:55:22.8616173Z [ 16%] Built target etdump 2025-06-05T23:55:22.8616558Z [ 18%] Built target cpublas 2025-06-05T23:55:22.8616972Z [ 19%] Built target optimized_kernels 2025-06-05T23:55:22.8617397Z [ 19%] Built target util 2025-06-05T23:55:22.8617816Z [ 33%] Built target optimized_portable_kernels 2025-06-05T23:55:22.8618317Z [ 33%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:55:22.8618812Z [ 95%] Built target microkernels-prod 2025-06-05T23:55:22.8619371Z [ 97%] Built target XNNPACK 2025-06-05T23:55:22.8619913Z [ 97%] Built target xnnpack_backend 2025-06-05T23:55:22.8620336Z [ 97%] Built target portable_lib 2025-06-05T23:55:22.8621292Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_add.cpp.o 2025-06-05T23:55:22.8622481Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:55:22.8623695Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:55:22.8625025Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:55:22.8626365Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding.cpp.o 2025-06-05T23:55:22.8627782Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:55:22.8629235Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:55:22.8630613Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:55:22.8632067Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:55:22.8633320Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_quantize.cpp.o 2025-06-05T23:55:22.8634252Z [ 98%] Linking CXX static library libquantized_pybind_kernels_lib.a 2025-06-05T23:55:22.8634838Z [ 98%] Built target quantized_pybind_kernels_lib 2025-06-05T23:55:22.8635567Z [ 98%] Generating selected_operators.yaml for quantized_ops_pybind_lib 2025-06-05T23:55:22.8636298Z [ 98%] Generating code for kernel registration 2025-06-05T23:55:22.8637688Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_pybind_lib.dir/quantized_ops_pybind_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:55:22.8638889Z [ 98%] Linking CXX static library libquantized_ops_pybind_lib.a 2025-06-05T23:55:22.8639577Z [ 98%] Built target quantized_ops_pybind_lib 2025-06-05T23:55:22.8640264Z [ 98%] Generating selected_operators.yaml for quantized_ops_aot_lib 2025-06-05T23:55:22.8644341Z 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:55:22.8648069Z [ 98%] Generating code for kernel registration 2025-06-05T23:55:22.8649237Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/quantized_ops_aot_lib/RegisterCPUCustomOps.cpp.o 2025-06-05T23:55:22.8650802Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/quantized_ops_aot_lib/RegisterSchema.cpp.o 2025-06-05T23:55:22.8652084Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:55:22.8653403Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_add.cpp.o 2025-06-05T23:55:22.8654513Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:55:22.8656022Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:55:22.8657158Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding.cpp.o 2025-06-05T23:55:22.8658530Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:55:22.8659673Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:55:22.8661059Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:55:22.8662273Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:55:22.8663496Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_quantize.cpp.o 2025-06-05T23:55:22.8664830Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/__/portable/cpu/util/reduce_util.cpp.o 2025-06-05T23:55:22.8666270Z [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:55:22.8667423Z [100%] Linking CXX shared library libquantized_ops_aot_lib.so 2025-06-05T23:55:22.8667970Z [100%] Built target quantized_ops_aot_lib 2025-06-05T23:55:22.8668421Z running build_py 2025-06-05T23:55:22.8668890Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:55:22.8669990Z copying src/executorch/codegen/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:55:22.8671109Z copying src/executorch/codegen/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:55:22.8672491Z copying src/executorch/codegen/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:55:22.8673774Z copying src/executorch/codegen/parse.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:55:22.8674667Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools 2025-06-05T23:55:22.8675554Z copying src/executorch/devtools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools 2025-06-05T23:55:22.8676686Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8677535Z copying src/executorch/exir/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8678715Z copying src/executorch/exir/_warnings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8679715Z copying src/executorch/exir/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8680773Z copying src/executorch/exir/control_flow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8681995Z copying src/executorch/exir/delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8683239Z copying src/executorch/exir/dim_order_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8684456Z copying src/executorch/exir/dynamic_shape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8685626Z copying src/executorch/exir/error.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8686677Z copying src/executorch/exir/graph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8687791Z copying src/executorch/exir/graph_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8688984Z copying src/executorch/exir/lowered_backend_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8690075Z copying src/executorch/exir/memory.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8691301Z copying src/executorch/exir/memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8692588Z copying src/executorch/exir/pass_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8768787Z copying src/executorch/exir/pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8769932Z copying src/executorch/exir/print_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8771070Z copying src/executorch/exir/scalar_type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8772196Z copying src/executorch/exir/schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8773274Z copying src/executorch/exir/sym_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8774383Z copying src/executorch/exir/tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8775591Z copying src/executorch/exir/tracer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8776575Z copying src/executorch/exir/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8777754Z copying src/executorch/exir/version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8778977Z copying src/executorch/exir/wrap.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:22.8779820Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime 2025-06-05T23:55:22.8780747Z copying src/executorch/runtime/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime 2025-06-05T23:55:22.8781712Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:55:22.8782831Z copying src/executorch/util/activation_memory_profiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:55:22.8784258Z copying src/executorch/util/collect_env.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:55:22.8785327Z copying src/executorch/util/python_profiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:55:22.8786368Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:22.8787506Z copying src/executorch/backends/arm/arm_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:22.8788742Z copying src/executorch/backends/arm/arm_vela.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:22.8790054Z copying src/executorch/backends/arm/ethosu_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:22.8791494Z copying src/executorch/backends/arm/ethosu_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:22.8792873Z copying src/executorch/backends/arm/process_node.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:22.8794212Z copying src/executorch/backends/arm/tosa_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:22.8795500Z copying src/executorch/backends/arm/tosa_mapping.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:22.8796944Z copying src/executorch/backends/arm/tosa_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:22.8798259Z copying src/executorch/backends/arm/tosa_quant_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:22.8799634Z copying src/executorch/backends/arm/tosa_specification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:22.8801161Z copying src/executorch/backends/arm/tosa_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:22.8802504Z copying src/executorch/backends/arm/vgf_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:22.8804299Z copying src/executorch/backends/arm/vgf_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:22.8805434Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:55:22.8806639Z copying src/executorch/backends/example/example_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:55:22.8808380Z copying src/executorch/backends/example/example_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:55:22.8810139Z copying src/executorch/backends/example/example_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:55:22.8811606Z copying src/executorch/backends/example/test_example_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:55:22.8812965Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:55:22.8814020Z copying src/executorch/backends/mediatek/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:55:22.8815528Z copying src/executorch/backends/mediatek/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:55:22.8816933Z copying src/executorch/backends/mediatek/preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:55:22.8818147Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:55:22.8819232Z copying src/executorch/backends/nxp/neutron_node_extraction.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:55:22.8820836Z copying src/executorch/backends/nxp/neutron_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:55:22.8822291Z copying src/executorch/backends/nxp/neutron_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:55:22.8823708Z copying src/executorch/backends/nxp/nxp_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:55:22.8824740Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:55:22.8825838Z copying src/executorch/backends/openvino/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:55:22.8827270Z copying src/executorch/backends/openvino/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:55:22.8828652Z copying src/executorch/backends/openvino/preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:55:22.8829741Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm 2025-06-05T23:55:22.8830846Z copying src/executorch/backends/qualcomm/qnn_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm 2025-06-05T23:55:22.8831943Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:22.8833028Z copying src/executorch/backends/transforms/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:22.8834593Z copying src/executorch/backends/transforms/addmm_mm_to_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:22.8836145Z copying src/executorch/backends/transforms/convert_dtype_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:22.8837681Z copying src/executorch/backends/transforms/decompose_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:22.8839240Z copying src/executorch/backends/transforms/duplicate_dynamic_quant_chain.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:22.8840814Z 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:55:22.8842350Z copying src/executorch/backends/transforms/fuse_conv_with_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:22.8844011Z copying src/executorch/backends/transforms/fuse_view_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:22.8845469Z copying src/executorch/backends/transforms/mean_to_sum_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:22.8847070Z 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:55:22.8848547Z copying src/executorch/backends/transforms/remove_clone_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:22.8850180Z copying src/executorch/backends/transforms/remove_getitem_op.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:22.8851855Z copying src/executorch/backends/transforms/replace_scalar_with_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:22.8853375Z copying src/executorch/backends/transforms/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:22.8855273Z 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:55:22.8856482Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:22.8857650Z copying src/executorch/backends/vulkan/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:22.8859042Z copying src/executorch/backends/vulkan/custom_ops_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:22.8860697Z copying src/executorch/backends/vulkan/op_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:22.8862000Z copying src/executorch/backends/vulkan/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:22.8971337Z copying src/executorch/backends/vulkan/vulkan_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:22.8972760Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:55:22.8973800Z copying src/executorch/backends/xnnpack/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:55:22.8975455Z copying src/executorch/backends/xnnpack/xnnpack_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:55:22.8976837Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-06-05T23:55:22.8978041Z copying src/executorch/backends/apple/mps/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-06-05T23:55:22.8979558Z copying src/executorch/backends/apple/mps/mps_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-06-05T23:55:22.8980947Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler 2025-06-05T23:55:22.8982424Z 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:55:22.8984562Z 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:55:22.8986064Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition 2025-06-05T23:55:22.8987760Z 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:55:22.8989663Z 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:55:22.8991318Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer 2025-06-05T23:55:22.8992808Z 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:55:22.8994855Z 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:55:22.8996680Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test 2025-06-05T23:55:22.8998026Z 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:55:22.9000262Z 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:55:22.9001851Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/runtime/test 2025-06-05T23:55:22.9003514Z 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:55:22.9005678Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:55:22.9007012Z 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:55:22.9009219Z 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:55:22.9011084Z 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:55:22.9013006Z 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:55:22.9015172Z 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:55:22.9016999Z 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:55:22.9019002Z 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:55:22.9021131Z 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:55:22.9022961Z 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:55:22.9024974Z 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:55:22.9027069Z 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:55:22.9028768Z 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:55:22.9030646Z 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:55:22.9032534Z 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:55:22.9034146Z 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:55:22.9035994Z 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:55:22.9037622Z 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:55:22.9039401Z 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:55:22.9041142Z 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:55:22.9042866Z 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:55:22.9044207Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition 2025-06-05T23:55:22.9045588Z 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:55:22.9047512Z 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:55:22.9049100Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization 2025-06-05T23:55:22.9050780Z 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:55:22.9052692Z 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:55:22.9054361Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:55:22.9055644Z 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:55:22.9057488Z 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:55:22.9059091Z 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:55:22.9060980Z 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:55:22.9062766Z 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:55:22.9064386Z 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:55:22.9066266Z 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:55:22.9067486Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils 2025-06-05T23:55:22.9068978Z 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:55:22.9070517Z 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:55:22.9072023Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:55:22.9142665Z copying src/executorch/backends/arm/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:55:22.9144472Z copying src/executorch/backends/arm/_passes/_debug_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:55:22.9146031Z 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:55:22.9156260Z 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:55:22.9157988Z copying src/executorch/backends/arm/_passes/arm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:55:22.9159680Z 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:55:22.9161135Z 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:55:22.9162972Z 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:55:22.9164486Z 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:55:22.9166058Z 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:55:22.9167726Z 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:55:22.9169284Z 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:55:22.9171262Z 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:55:22.9173166Z 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:55:22.9174834Z 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:55:22.9176659Z 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:55:22.9178224Z 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:55:22.9179940Z 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:55:22.9181571Z 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:55:22.9183188Z 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:55:22.9184983Z 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:55:22.9186481Z 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:55:22.9188188Z 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:55:22.9189750Z 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:55:22.9191513Z 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:55:22.9193099Z 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:55:22.9194889Z 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:55:22.9196469Z 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:55:22.9198123Z 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:55:22.9199640Z copying src/executorch/backends/arm/_passes/decompose_select.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:55:22.9201375Z 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:55:22.9203402Z 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:55:22.9205348Z 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:55:22.9207299Z 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:55:22.9209258Z 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:55:22.9210764Z 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:55:22.9212551Z 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:55:22.9214150Z 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:55:22.9216011Z 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:55:22.9217737Z 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:55:22.9219429Z 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:55:22.9221290Z 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:55:22.9222997Z 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:55:22.9224694Z 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:55:22.9226466Z 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:55:22.9228020Z 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:55:22.9229571Z 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:55:22.9231321Z 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:55:22.9232942Z 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:55:22.9234612Z 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:55:22.9236255Z 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:55:22.9237865Z 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:55:22.9239675Z 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:55:22.9241007Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:55:22.9242387Z 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:55:22.9244331Z 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:55:22.9293315Z 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:55:22.9295886Z 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:55:22.9297906Z 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:55:22.9300173Z 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:55:22.9302202Z 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:55:22.9305229Z 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:55:22.9307252Z 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:55:22.9309172Z 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:55:22.9311143Z 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:55:22.9312466Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9313813Z copying src/executorch/backends/arm/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9315402Z copying src/executorch/backends/arm/operators/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9316887Z copying src/executorch/backends/arm/operators/op_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9318508Z copying src/executorch/backends/arm/operators/op_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9320220Z copying src/executorch/backends/arm/operators/op_amax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9321739Z copying src/executorch/backends/arm/operators/op_amin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9323220Z copying src/executorch/backends/arm/operators/op_any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9324836Z 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:55:22.9326390Z copying src/executorch/backends/arm/operators/op_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9327839Z copying src/executorch/backends/arm/operators/op_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9329275Z copying src/executorch/backends/arm/operators/op_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9330927Z 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:55:22.9332535Z copying src/executorch/backends/arm/operators/op_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9333988Z copying src/executorch/backends/arm/operators/op_cos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9335524Z copying src/executorch/backends/arm/operators/op_eq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9337368Z copying src/executorch/backends/arm/operators/op_erf.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9339053Z copying src/executorch/backends/arm/operators/op_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9340591Z copying src/executorch/backends/arm/operators/op_ge.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9342227Z copying src/executorch/backends/arm/operators/op_gt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9343645Z copying src/executorch/backends/arm/operators/op_le.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9345176Z copying src/executorch/backends/arm/operators/op_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9346721Z copying src/executorch/backends/arm/operators/op_lt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9348189Z 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:55:22.9349775Z copying src/executorch/backends/arm/operators/op_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9351532Z copying src/executorch/backends/arm/operators/op_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9353012Z copying src/executorch/backends/arm/operators/op_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9354510Z copying src/executorch/backends/arm/operators/op_neg.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9356094Z copying src/executorch/backends/arm/operators/op_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9357664Z copying src/executorch/backends/arm/operators/op_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9359130Z copying src/executorch/backends/arm/operators/op_reciprocal.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9360763Z copying src/executorch/backends/arm/operators/op_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9362239Z copying src/executorch/backends/arm/operators/op_rescale.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9363838Z 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:55:22.9365468Z copying src/executorch/backends/arm/operators/op_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9367106Z copying src/executorch/backends/arm/operators/op_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9368634Z copying src/executorch/backends/arm/operators/op_sin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9370214Z copying src/executorch/backends/arm/operators/op_slice.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9371755Z copying src/executorch/backends/arm/operators/op_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9373172Z copying src/executorch/backends/arm/operators/op_sum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9374832Z copying src/executorch/backends/arm/operators/op_table.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9376479Z copying src/executorch/backends/arm/operators/op_tanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9378022Z 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:55:22.9379572Z 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:55:22.9381267Z copying src/executorch/backends/arm/operators/op_transpose.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9382974Z 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:55:22.9384582Z 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:55:22.9386222Z copying src/executorch/backends/arm/operators/op_view.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9387796Z copying src/executorch/backends/arm/operators/op_where.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9389368Z 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:55:22.9439892Z copying src/executorch/backends/arm/operators/ops_binary.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9441995Z copying src/executorch/backends/arm/operators/ops_identity.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9443859Z copying src/executorch/backends/arm/operators/ops_unary.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:22.9445175Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:55:22.9446485Z copying src/executorch/backends/arm/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:55:22.9448219Z copying src/executorch/backends/arm/quantizer/arm_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:55:22.9449854Z 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:55:22.9451774Z copying src/executorch/backends/arm/quantizer/quantization_annotator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:55:22.9453766Z copying src/executorch/backends/arm/quantizer/quantization_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:55:22.9455158Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/scripts 2025-06-05T23:55:22.9456515Z 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:55:22.9457776Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:55:22.9459099Z copying src/executorch/backends/arm/test/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:55:22.9460598Z copying src/executorch/backends/arm/test/conftest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:55:22.9462064Z copying src/executorch/backends/arm/test/runner_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:55:22.9463843Z copying src/executorch/backends/arm/test/test_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:55:22.9465630Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/util 2025-06-05T23:55:22.9467887Z 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:55:22.9470039Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:55:22.9472368Z 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:55:22.9475644Z 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:55:22.9478706Z 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:55:22.9481681Z 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:55:22.9484725Z 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:55:22.9487801Z 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:55:22.9490909Z 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:55:22.9494079Z 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:55:22.9497324Z 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:55:22.9500680Z 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:55:22.9504139Z 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:55:22.9506392Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:55:22.9508709Z 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:55:22.9511766Z 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:55:22.9514791Z 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:55:22.9517727Z 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:55:22.9520680Z 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:55:22.9523764Z 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:55:22.9526906Z 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:55:22.9530057Z 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:55:22.9533147Z 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:55:22.9536336Z 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:55:22.9539638Z 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:55:22.9541877Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:55:22.9544009Z 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:55:22.9546888Z 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:55:22.9549697Z 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:55:22.9552512Z 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:55:22.9555255Z 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:55:22.9557972Z 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:55:22.9560739Z 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:55:22.9563500Z 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:55:22.9566279Z 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:55:22.9569135Z 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:55:22.9571972Z 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:55:22.9574888Z 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:55:22.9577597Z 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:55:22.9580330Z 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:55:22.9583096Z 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:55:22.9585983Z 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:55:22.9588840Z 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:55:22.9591640Z 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:55:22.9594474Z 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:55:22.9597251Z 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:55:22.9600262Z 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:55:22.9603115Z 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:55:22.9604887Z 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:55:22.9606646Z 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:55:22.9609258Z 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:55:22.9611955Z 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:55:22.9614939Z 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:55:22.9617731Z 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:55:22.9620477Z 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:55:22.9623337Z 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:55:22.9626040Z 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:55:22.9628775Z 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:55:22.9631601Z 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:55:22.9634350Z 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:55:22.9637143Z 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:55:22.9640073Z 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:55:22.9642934Z 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:55:22.9645791Z 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:55:22.9648587Z 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:55:22.9651361Z 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:55:22.9654297Z 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:55:22.9657300Z 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:55:22.9660081Z 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:55:22.9662849Z 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:55:22.9665698Z 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:55:22.9668550Z 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:55:22.9671289Z 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:55:22.9674019Z 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:55:22.9676868Z 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:55:22.9679496Z 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:55:22.9681427Z 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:55:22.9684406Z 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:55:22.9686260Z 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:55:22.9687672Z 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:55:22.9689062Z 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:55:22.9690469Z 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:55:22.9692314Z 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:55:22.9695184Z 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:55:22.9697939Z 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:55:22.9699777Z 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:55:22.9701242Z 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:55:22.9703327Z 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:55:22.9706241Z 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:55:22.9709007Z 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:55:22.9711836Z 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:55:22.9714703Z 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:55:22.9717512Z 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:55:22.9720276Z 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:55:22.9723081Z 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:55:22.9725943Z 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:55:22.9728900Z 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:55:22.9731739Z 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:55:22.9734461Z 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:55:22.9737510Z 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:55:22.9740304Z 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:55:22.9743100Z 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:55:22.9746027Z 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:55:22.9748811Z 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:55:22.9751611Z 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:55:22.9754347Z 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:55:22.9757076Z 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:55:22.9759836Z 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:55:22.9762624Z 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:55:22.9765432Z 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:55:22.9768465Z 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:55:22.9771525Z 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:55:22.9774440Z 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:55:22.9777283Z 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:55:22.9780039Z 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:55:22.9782787Z 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:55:22.9784367Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:55:22.9786759Z 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:55:22.9789171Z 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:55:22.9792277Z 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:55:22.9795311Z 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:55:22.9798607Z 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:55:22.9800551Z 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:55:22.9802284Z 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:55:22.9805612Z 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:55:22.9808600Z 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:55:22.9810557Z 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:55:22.9813706Z 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:55:22.9817081Z 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:55:22.9819414Z 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:55:22.9821045Z 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:55:22.9822670Z 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:55:22.9824349Z 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:55:22.9827455Z 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:55:22.9830835Z 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:55:22.9833024Z 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:55:22.9835894Z 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:55:22.9838896Z 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:55:22.9842144Z 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:55:22.9844708Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/quantizer 2025-06-05T23:55:22.9847208Z 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:55:22.9849707Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-06-05T23:55:22.9851907Z 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:55:22.9853666Z 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:55:22.9855350Z 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:55:22.9856989Z 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:55:22.9859250Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tosautil 2025-06-05T23:55:22.9861742Z 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:55:22.9864186Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib 2025-06-05T23:55:22.9866815Z 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:55:22.9868595Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:55:22.9870415Z 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:55:22.9872810Z 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:55:22.9874652Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:55:22.9876591Z 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:55:22.9879036Z 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:55:22.9881351Z 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:55:22.9883701Z 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:55:22.9886087Z 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:55:22.9888457Z 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:55:22.9891821Z 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:55:22.9895639Z 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:55:22.9897957Z 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:55:22.9900368Z 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:55:22.9902865Z 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:55:22.9907526Z 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:55:22.9912298Z 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:55:22.9916739Z 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:55:22.9921294Z 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:55:22.9925846Z 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:55:22.9930332Z 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:55:22.9934964Z 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:55:22.9939606Z 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:55:22.9944185Z 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:55:22.9948530Z 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:55:22.9952629Z 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:55:22.9957223Z 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:55:22.9961842Z 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:55:22.9965008Z 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:55:22.9967639Z 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:55:22.9970040Z 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:55:22.9972539Z 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:55:22.9975440Z 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:55:22.9978137Z 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:55:22.9981114Z 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:55:22.9983761Z 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:55:22.9986491Z 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:55:22.9989093Z 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:55:22.9990828Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts 2025-06-05T23:55:22.9992652Z 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:55:22.9994476Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit 2025-06-05T23:55:22.9996459Z 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:55:22.9998446Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:55:23.0000637Z 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:55:23.0002712Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan 2025-06-05T23:55:23.0005198Z 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:55:23.0007504Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:55:23.0009837Z 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:55:23.0012908Z 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:55:23.0015302Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:55:23.0017377Z 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:55:23.0020060Z 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:55:23.0022127Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:55:23.0024488Z 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:55:23.0026624Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:55:23.0028928Z 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:55:23.0031844Z 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:55:23.0034659Z 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:55:23.0037505Z 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:55:23.0040578Z 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:55:23.0042788Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:55:23.0045105Z 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:55:23.0047961Z 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:55:23.0051036Z 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:55:23.0053408Z 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:55:23.0056107Z 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:55:23.0058505Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp 2025-06-05T23:55:23.0061247Z 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:55:23.0063705Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp 2025-06-05T23:55:23.0066008Z 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:55:23.0068979Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart 2025-06-05T23:55:23.0071622Z 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:55:23.0074006Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go 2025-06-05T23:55:23.0076450Z 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:55:23.0078631Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java 2025-06-05T23:55:23.0080863Z 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:55:23.0083449Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin 2025-06-05T23:55:23.0087502Z 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:55:23.0091864Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster 2025-06-05T23:55:23.0096303Z 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:55:23.0100652Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua 2025-06-05T23:55:23.0105076Z 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:55:23.0108652Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim 2025-06-05T23:55:23.0112592Z 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:55:23.0116883Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php 2025-06-05T23:55:23.0121042Z 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:55:23.0125064Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:55:23.0129165Z 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:55:23.0134901Z 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:55:23.0140474Z 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:55:23.0144404Z 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:55:23.0148664Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust 2025-06-05T23:55:23.0151444Z 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:55:23.0155656Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift 2025-06-05T23:55:23.0159983Z 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:55:23.0164138Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts 2025-06-05T23:55:23.0168253Z 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:55:23.0172217Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests 2025-06-05T23:55:23.0175137Z 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:55:23.0179555Z 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:55:23.0184457Z 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:55:23.0189689Z 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:55:23.0192254Z 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:55:23.0194961Z 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:55:23.0198504Z 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:55:23.0202176Z 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:55:23.0206000Z 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:55:23.0208618Z 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:55:23.0211171Z 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:55:23.0214510Z 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:55:23.0217785Z 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:55:23.0220231Z 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:55:23.0222845Z 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:55:23.0226216Z 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:55:23.0229592Z 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:55:23.0234768Z 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:55:23.0239674Z 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:55:23.0244663Z 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:55:23.0251128Z 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:55:23.0256374Z 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:55:23.0259509Z 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:55:23.0266089Z 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:55:23.0272826Z 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:55:23.0277813Z 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:55:23.0282756Z 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:55:23.0288619Z 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:55:23.0295193Z 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:55:23.0298839Z 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:55:23.0302369Z 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:55:23.0306001Z 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:55:23.0310582Z 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:55:23.0317265Z 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:55:23.0323328Z 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:55:23.0327961Z 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:55:23.0334975Z 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:55:23.0341698Z 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:55:23.0345726Z 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:55:23.0349218Z 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:55:23.0353507Z 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:55:23.0360435Z 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:55:23.0366765Z 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:55:23.0370354Z 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:55:23.0376130Z 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:55:23.0379871Z 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:55:23.0384015Z 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:55:23.0390773Z 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:55:23.0396219Z 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:55:23.0401478Z 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:55:23.0408407Z 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:55:23.0413627Z 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:55:23.0419280Z 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:55:23.0426075Z 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:55:23.0433539Z 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:55:23.0439947Z 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:55:23.0447086Z 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:55:23.0453915Z 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:55:23.0461383Z 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:55:23.0466891Z 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:55:23.0469769Z 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:55:23.0473701Z 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:55:23.0477559Z 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:55:23.0481320Z 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:55:23.0487108Z 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:55:23.0492217Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:55:23.0496123Z 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:55:23.0501905Z 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:55:23.0505975Z 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:55:23.0511563Z 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:55:23.0517500Z 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:55:23.0522194Z 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:55:23.0525278Z 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:55:23.0528313Z 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:55:23.0531327Z 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:55:23.0534470Z 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:55:23.0537050Z 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:55:23.0539660Z 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:55:23.0543061Z 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:55:23.0546389Z 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:55:23.0549662Z 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:55:23.0554368Z 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:55:23.0560892Z 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:55:23.0567422Z 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:55:23.0573954Z 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:55:23.0580581Z 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:55:23.0587046Z 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:55:23.0592620Z 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:55:23.0597548Z 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:55:23.0603178Z 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:55:23.0608088Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:55:23.0612370Z 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:55:23.0618433Z 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:55:23.0622046Z 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:55:23.0626243Z 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:55:23.0630255Z 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:55:23.0634843Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:55:23.0637553Z 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:55:23.0643285Z 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:55:23.0649029Z 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:55:23.0654823Z 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:55:23.0659655Z 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:55:23.0662866Z 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:55:23.0665044Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim 2025-06-05T23:55:23.0667356Z 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:55:23.0671121Z 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:55:23.0675980Z 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:55:23.0682177Z 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:55:23.0688288Z 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:55:23.0692702Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:55:23.0697051Z 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:55:23.0701442Z 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:55:23.0705631Z 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:55:23.0710840Z 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:55:23.0716601Z 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:55:23.0722969Z 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:55:23.0729268Z 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:55:23.0735528Z 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:55:23.0741617Z 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:55:23.0747241Z 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:55:23.0753559Z 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:55:23.0759302Z 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:55:23.0765356Z 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:55:23.0771419Z 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:55:23.0777014Z 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:55:23.0782274Z 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:55:23.0788720Z 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:55:23.0794987Z 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:55:23.0800949Z 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:55:23.0807420Z 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:55:23.0813802Z 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:55:23.0819619Z 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:55:23.0825587Z 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:55:23.0831828Z 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:55:23.0836129Z 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:55:23.0840851Z 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:55:23.0846925Z 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:55:23.0851667Z 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:55:23.0856748Z 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:55:23.0863349Z 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:55:23.0870137Z 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:55:23.0876930Z 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:55:23.0882931Z 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:55:23.0889874Z 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:55:23.0896587Z 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:55:23.0901591Z 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:55:23.0906813Z 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:55:23.0912385Z 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:55:23.0919170Z 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:55:23.0925958Z 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:55:23.0930876Z 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:55:23.0935961Z 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:55:23.0942474Z 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:55:23.0947564Z 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:55:23.0952569Z 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:55:23.0959956Z 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:55:23.0967307Z 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:55:23.0973697Z 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:55:23.0981005Z 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:55:23.0985287Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.0987390Z copying src/executorch/backends/cadence/aot/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.0989661Z copying src/executorch/backends/cadence/aot/compiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.0992364Z copying src/executorch/backends/cadence/aot/compiler_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.0995362Z copying src/executorch/backends/cadence/aot/decompose_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.0998230Z copying src/executorch/backends/cadence/aot/export_example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.1001128Z copying src/executorch/backends/cadence/aot/fuse_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.1004042Z copying src/executorch/backends/cadence/aot/graph_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.1006913Z copying src/executorch/backends/cadence/aot/memory_constraints.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.1009845Z copying src/executorch/backends/cadence/aot/memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.1012769Z copying src/executorch/backends/cadence/aot/ops_registrations.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.1015650Z copying src/executorch/backends/cadence/aot/pass_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.1018123Z copying src/executorch/backends/cadence/aot/passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.1019748Z copying src/executorch/backends/cadence/aot/ref_implementations.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.1021230Z copying src/executorch/backends/cadence/aot/remove_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.1022705Z copying src/executorch/backends/cadence/aot/reorder_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.1024360Z copying src/executorch/backends/cadence/aot/replace_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.1025878Z copying src/executorch/backends/cadence/aot/simplify_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.1027449Z copying src/executorch/backends/cadence/aot/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.1028796Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:55:23.1030053Z copying src/executorch/backends/cadence/runtime/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:55:23.1031654Z copying src/executorch/backends/cadence/runtime/executor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:55:23.1033274Z copying src/executorch/backends/cadence/runtime/runtime.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:55:23.1034855Z copying src/executorch/backends/cadence/runtime/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:55:23.1036124Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:55:23.1037339Z copying src/executorch/backends/cadence/utils/facto_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:55:23.1038899Z copying src/executorch/backends/cadence/utils/gen_header.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:55:23.1040522Z copying src/executorch/backends/cadence/utils/post_compilation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:55:23.1041809Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-06-05T23:55:23.1043229Z 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:55:23.1045171Z 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:55:23.1046927Z 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:55:23.1048750Z 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:55:23.1050106Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:55:23.1051469Z 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:55:23.1053245Z 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:55:23.1055124Z 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:55:23.1057015Z 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:55:23.1058722Z 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:55:23.1060512Z 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:55:23.1062489Z 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:55:23.1064347Z 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:55:23.1066070Z 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:55:23.1067374Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO 2025-06-05T23:55:23.1068620Z 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:55:23.1069918Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:55:23.1071376Z 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:55:23.1073234Z 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:55:23.1074692Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:55:23.1076124Z 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:55:23.1078031Z 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:55:23.1079932Z 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:55:23.1081365Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto 2025-06-05T23:55:23.1082893Z 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:55:23.1084618Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-06-05T23:55:23.1086369Z 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:55:23.1088037Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:55:23.1089638Z 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:55:23.1091783Z 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:55:23.1093958Z 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:55:23.1096233Z 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:55:23.1098079Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:55:23.1099943Z 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:55:23.1102355Z 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:55:23.1104945Z 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:55:23.1106670Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:55:23.1108788Z 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:55:23.1111397Z 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:55:23.1113859Z 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:55:23.1116215Z 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:55:23.1118049Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:55:23.1130128Z 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:55:23.1132440Z 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:55:23.1135073Z 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:55:23.1137684Z 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:55:23.1139934Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:55:23.1141775Z 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:55:23.1144126Z 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:55:23.1146012Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:55:23.1147671Z 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:55:23.1150189Z 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:55:23.1152200Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:55:23.1153938Z 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:55:23.1156493Z 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:55:23.1158974Z 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:55:23.1161509Z 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:55:23.1165165Z 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:55:23.1167405Z 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:55:23.1169768Z 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:55:23.1171552Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:55:23.1173156Z 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:55:23.1175654Z 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:55:23.1178052Z 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:55:23.1180368Z 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:55:23.1182711Z 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:55:23.1185175Z 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:55:23.1187497Z 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:55:23.1189826Z 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:55:23.1191927Z 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:55:23.1194116Z 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:55:23.1196586Z 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:55:23.1198989Z 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:55:23.1201218Z 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:55:23.1203470Z 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:55:23.1205822Z 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:55:23.1207460Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops 2025-06-05T23:55:23.1208595Z 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:55:23.1209794Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-06-05T23:55:23.1211059Z 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:55:23.1212451Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test 2025-06-05T23:55:23.1213677Z 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:55:23.1215214Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:55:23.1217029Z 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:55:23.1219277Z 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:55:23.1220905Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:55:23.1222378Z 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:55:23.1224153Z 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:55:23.1226104Z 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:55:23.1227988Z 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:55:23.1229904Z 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:55:23.1231641Z 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:55:23.1233681Z 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:55:23.1235526Z 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:55:23.1237530Z 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:55:23.1239448Z 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:55:23.1240807Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes 2025-06-05T23:55:23.1242138Z copying src/executorch/backends/mediatek/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes 2025-06-05T23:55:23.1243848Z 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:55:23.1245310Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:55:23.1246751Z copying src/executorch/backends/mediatek/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:55:23.1248354Z copying src/executorch/backends/mediatek/quantizer/annotator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:55:23.1250218Z copying src/executorch/backends/mediatek/quantizer/qconfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:55:23.1252084Z copying src/executorch/backends/mediatek/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:55:23.1253319Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-06-05T23:55:23.1254971Z 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:55:23.1256755Z 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:55:23.1258537Z 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:55:23.1260017Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-06-05T23:55:23.1261311Z copying src/executorch/backends/nxp/backend/edge_helper.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-06-05T23:55:23.1263121Z 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:55:23.1265026Z 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:55:23.1267037Z 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:55:23.1268326Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:55:23.1269970Z copying src/executorch/backends/nxp/quantizer/neutron_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:55:23.1271761Z copying src/executorch/backends/nxp/quantizer/patterns.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:55:23.1273404Z copying src/executorch/backends/nxp/quantizer/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:55:23.1274663Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:55:23.1275957Z copying src/executorch/backends/nxp/tests/executorch_pipeline.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:55:23.1277517Z copying src/executorch/backends/nxp/tests/executors.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:55:23.1279249Z 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:55:23.1280864Z copying src/executorch/backends/nxp/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:55:23.1282937Z 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:55:23.1284581Z 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:55:23.1286345Z 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:55:23.1288093Z 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:55:23.1289678Z 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:55:23.1291337Z 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:55:23.1293060Z copying src/executorch/backends/nxp/tests/test_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:55:23.1294227Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-06-05T23:55:23.1295682Z 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:55:23.1297512Z 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:55:23.1299120Z 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:55:23.1300770Z 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:55:23.1302090Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:55:23.1303521Z 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:55:23.1305710Z 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:55:23.1307962Z 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:55:23.1309974Z 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:55:23.1311375Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib 2025-06-05T23:55:23.1312772Z 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:55:23.1314625Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:55:23.1316084Z 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:55:23.1318292Z 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:55:23.1319797Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:55:23.1321244Z 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:55:23.1323125Z 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:55:23.1325069Z 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:55:23.1327395Z 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:55:23.1329693Z 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:55:23.1331815Z 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:55:23.1333323Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:55:23.1335116Z 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:55:23.1337191Z 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:55:23.1339434Z 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:55:23.1341856Z 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:55:23.1343580Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:55:23.1345251Z 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:55:23.1347638Z 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:55:23.1349940Z 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:55:23.1352124Z 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:55:23.1354192Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters 2025-06-05T23:55:23.1355839Z 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:55:23.1357753Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:55:23.1359860Z 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:55:23.1362560Z 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:55:23.1365267Z 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:55:23.1368231Z 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:55:23.1371112Z 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:55:23.1374072Z 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:55:23.1376889Z 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:55:23.1379789Z 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:55:23.1382611Z 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:55:23.1385582Z 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:55:23.1388363Z 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:55:23.1391261Z 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:55:23.1394042Z 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:55:23.1396076Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:55:23.1398229Z 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:55:23.1400748Z 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:55:23.1403393Z 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:55:23.1406138Z 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:55:23.1407973Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:55:23.1409639Z 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:55:23.1411573Z 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:55:23.1413667Z 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:55:23.1416026Z 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:55:23.1417929Z 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:55:23.1420040Z 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:55:23.1422107Z 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:55:23.1425697Z 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:55:23.1427908Z 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:55:23.1430086Z 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:55:23.1432415Z 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:55:23.1434834Z 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:55:23.1437102Z 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:55:23.1439222Z 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:55:23.1441553Z 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:55:23.1443695Z 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:55:23.1445864Z 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:55:23.1447922Z 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:55:23.1450042Z 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:55:23.1452166Z 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:55:23.1454274Z 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:55:23.1456547Z 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:55:23.1458435Z 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:55:23.1460409Z 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:55:23.1462484Z 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:55:23.1464764Z 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:55:23.1466824Z 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:55:23.1468909Z 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:55:23.1470977Z 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:55:23.1473028Z 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:55:23.1475160Z 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:55:23.1477330Z 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:55:23.1479438Z 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:55:23.1481367Z 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:55:23.1483532Z 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:55:23.1485835Z 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:55:23.1487826Z 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:55:23.1489939Z 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:55:23.1491978Z 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:55:23.1493954Z 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:55:23.1496134Z 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:55:23.1498389Z 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:55:23.1500516Z 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:55:23.1502572Z 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:55:23.1504763Z 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:55:23.1506751Z 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:55:23.1508723Z 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:55:23.1510758Z 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:55:23.1512825Z 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:55:23.1515005Z 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:55:23.1517337Z 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:55:23.1519561Z 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:55:23.1521927Z 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:55:23.1523955Z 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:55:23.1525949Z 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:55:23.1528089Z 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:55:23.1530285Z 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:55:23.1532451Z 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:55:23.1535346Z 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:55:23.1537516Z 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:55:23.1539614Z 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:55:23.1541784Z 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:55:23.1543825Z 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:55:23.1545812Z 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:55:23.1547823Z 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:55:23.1549923Z 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:55:23.1551968Z 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:55:23.1553837Z 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:55:23.1555700Z 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:55:23.1557638Z 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:55:23.1559502Z 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:55:23.1561661Z 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:55:23.1563883Z 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:55:23.1565951Z 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:55:23.1568107Z 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:55:23.1570241Z 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:55:23.1572298Z 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:55:23.1574525Z 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:55:23.1576871Z 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:55:23.1579198Z 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:55:23.1581185Z 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:55:23.1583324Z 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:55:23.1585364Z 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:55:23.1587361Z 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:55:23.1589321Z 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:55:23.1591407Z 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:55:23.1593714Z 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:55:23.1595886Z 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:55:23.1597916Z 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:55:23.1599878Z 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:55:23.1601915Z 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:55:23.1604093Z 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:55:23.1606073Z 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:55:23.1608131Z 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:55:23.1610071Z 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:55:23.1612039Z 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:55:23.1614100Z 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:55:23.1616266Z 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:55:23.1618634Z 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:55:23.1620822Z 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:55:23.1623120Z 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:55:23.1624976Z 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:55:23.1626975Z 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:55:23.1628853Z 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:55:23.1630849Z 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:55:23.1633666Z 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:55:23.1635814Z 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:55:23.1637747Z 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:55:23.1639754Z 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:55:23.1641874Z 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:55:23.1643992Z 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:55:23.1646161Z 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:55:23.1648257Z 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:55:23.1650185Z 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:55:23.1652185Z 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:55:23.1654201Z 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:55:23.1656173Z 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:55:23.1658189Z 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:55:23.1660235Z 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:55:23.1662241Z 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:55:23.1664260Z 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:55:23.1666336Z 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:55:23.1668262Z 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:55:23.1670223Z 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:55:23.1672105Z 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:55:23.1674097Z 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:55:23.1676088Z 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:55:23.1677959Z 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:55:23.1680116Z 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:55:23.1682599Z 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:55:23.1684822Z 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:55:23.1687049Z 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:55:23.1689043Z 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:55:23.1691162Z 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:55:23.1693144Z 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:55:23.1695208Z 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:55:23.1697428Z 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:55:23.1699560Z 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:55:23.1701655Z 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:55:23.1704207Z 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:55:23.1706796Z 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:55:23.1709089Z 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:55:23.1711344Z 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:55:23.1713764Z 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:55:23.1716189Z 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:55:23.1718481Z 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:55:23.1720684Z 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:55:23.1723087Z 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:55:23.1725429Z 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:55:23.1727520Z 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:55:23.1729684Z 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:55:23.1731963Z 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:55:23.1734354Z 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:55:23.1736841Z 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:55:23.1739065Z 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:55:23.1741456Z 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:55:23.1743771Z 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:55:23.1745905Z 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:55:23.1748096Z 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:55:23.1750626Z 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:55:23.1752862Z 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:55:23.1754730Z 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:55:23.1756873Z 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:55:23.1758812Z 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:55:23.1760693Z 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:55:23.1762819Z 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:55:23.1764920Z 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:55:23.1766941Z 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:55:23.1769203Z 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:55:23.1771319Z 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:55:23.1773225Z 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:55:23.1775616Z 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:55:23.1777887Z 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:55:23.1779876Z 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:55:23.1782030Z 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:55:23.1784417Z 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:55:23.1786787Z 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:55:23.1788957Z 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:55:23.1791261Z 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:55:23.1793370Z 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:55:23.1795341Z 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:55:23.1797422Z 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:55:23.1799614Z 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:55:23.1801642Z 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:55:23.1803403Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:55:23.1805588Z 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:55:23.1807866Z 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:55:23.1810181Z 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:55:23.1812777Z 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:55:23.1815481Z 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:55:23.1818147Z 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:55:23.1820836Z 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:55:23.1823533Z 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:55:23.1826369Z 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:55:23.1829179Z 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:55:23.1831833Z 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:55:23.1834400Z 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:55:23.1836868Z 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:55:23.1839566Z 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:55:23.1842389Z 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:55:23.1845100Z 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:55:23.1847777Z 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:55:23.1850372Z 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:55:23.1853025Z 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:55:23.1855808Z 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:55:23.1858184Z 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:55:23.1860709Z 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:55:23.1863363Z 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:55:23.1865929Z 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:55:23.1868532Z 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:55:23.1872118Z 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:55:23.1874693Z 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:55:23.1877022Z 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:55:23.1879523Z 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:55:23.1881994Z 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:55:23.1884617Z 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:55:23.1887052Z 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:55:23.1889723Z 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:55:23.1892400Z 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:55:23.1895006Z 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:55:23.1897401Z 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:55:23.1899957Z 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:55:23.1902588Z 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:55:23.1905346Z 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:55:23.1907903Z 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:55:23.1910277Z 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:55:23.1912828Z 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:55:23.1915400Z 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:55:23.1918001Z 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:55:23.1920612Z 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:55:23.1923223Z 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:55:23.1925819Z 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:55:23.1929116Z 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:55:23.1933591Z 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:55:23.1938500Z 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:55:23.1941737Z 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:55:23.1944656Z 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:55:23.1949122Z 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:55:23.1953715Z 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:55:23.1958327Z 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:55:23.1962950Z 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:55:23.1967614Z 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:55:23.1972320Z 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:55:23.1977082Z 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:55:23.1981802Z 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:55:23.1986711Z 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:55:23.1991622Z 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:55:23.1996405Z 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:55:23.2001083Z 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:55:23.2005844Z 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:55:23.2010397Z 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:55:23.2015288Z 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:55:23.2020057Z 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:55:23.2024734Z 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:55:23.2029012Z 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:55:23.2031617Z 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:55:23.2033995Z 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:55:23.2036406Z 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:55:23.2040561Z 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:55:23.2045228Z 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:55:23.2049860Z 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:55:23.2054378Z 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:55:23.2058997Z 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:55:23.2063655Z 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:55:23.2068382Z 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:55:23.2073296Z 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:55:23.2078418Z 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:55:23.2082132Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-06-05T23:55:23.2085847Z 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:55:23.2089236Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:55:23.2092374Z 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:55:23.2096292Z 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:55:23.2100155Z 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:55:23.2103318Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:55:23.2106951Z 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:55:23.2111470Z 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:55:23.2116322Z 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:55:23.2121273Z 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:55:23.2126083Z 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:55:23.2130999Z 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:55:23.2136103Z 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:55:23.2140918Z 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:55:23.2145631Z 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:55:23.2150640Z 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:55:23.2155588Z 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:55:23.2160364Z 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:55:23.2165354Z 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:55:23.2170172Z 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:55:23.2175324Z 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:55:23.2180475Z 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:55:23.2184247Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:55:23.2187516Z 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:55:23.2191922Z 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:55:23.2196244Z 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:55:23.2200512Z 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:55:23.2204994Z 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:55:23.2209367Z 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:55:23.2213725Z 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:55:23.2218075Z 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:55:23.2222403Z 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:55:23.2225447Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:55:23.2227780Z copying src/executorch/backends/openvino/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:55:23.2230848Z copying src/executorch/backends/openvino/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:55:23.2233211Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests 2025-06-05T23:55:23.2235469Z copying src/executorch/backends/openvino/tests/test_runner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests 2025-06-05T23:55:23.2237791Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/models 2025-06-05T23:55:23.2240602Z 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:55:23.2243184Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:55:23.2245664Z 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:55:23.2249019Z 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:55:23.2252123Z 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:55:23.2255188Z 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:55:23.2258341Z 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:55:23.2261590Z 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:55:23.2264745Z 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:55:23.2266522Z 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:55:23.2269628Z 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:55:23.2272817Z 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:55:23.2275934Z 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:55:23.2278305Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:23.2280338Z copying src/executorch/backends/qualcomm/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:23.2282392Z 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:55:23.2284883Z 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:55:23.2287956Z copying src/executorch/backends/qualcomm/_passes/annotate_stack.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:23.2291037Z copying src/executorch/backends/qualcomm/_passes/annotate_unbind.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:23.2292908Z 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:55:23.2294850Z 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:55:23.2297971Z 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:55:23.2301140Z 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:55:23.2302871Z copying src/executorch/backends/qualcomm/_passes/decompose_any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:23.2304804Z copying src/executorch/backends/qualcomm/_passes/decompose_cdist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:23.2306715Z copying src/executorch/backends/qualcomm/_passes/decompose_einsum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:23.2309918Z copying src/executorch/backends/qualcomm/_passes/decompose_expm1.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:23.2313105Z 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:55:23.2316030Z copying src/executorch/backends/qualcomm/_passes/decompose_roll.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:23.2319041Z copying src/executorch/backends/qualcomm/_passes/decompose_silu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:23.2322245Z 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:55:23.2325474Z 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:55:23.2328500Z copying src/executorch/backends/qualcomm/_passes/fold_qdq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:23.2331529Z 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:55:23.2334828Z 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:55:23.2337942Z 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:55:23.2339818Z 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:55:23.2342321Z copying src/executorch/backends/qualcomm/_passes/insert_requantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:23.2345411Z copying src/executorch/backends/qualcomm/_passes/layout_transform.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:23.2348619Z 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:55:23.2351805Z 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:55:23.2354562Z 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:55:23.2357786Z 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:55:23.2360935Z 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:55:23.2363784Z 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:55:23.2366620Z copying src/executorch/backends/qualcomm/_passes/remove_redundancy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:23.2369731Z 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:55:23.2373096Z 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:55:23.2375958Z 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:55:23.2377662Z 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:55:23.2379172Z copying src/executorch/backends/qualcomm/_passes/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:23.2380342Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2381555Z copying src/executorch/backends/qualcomm/builders/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2383104Z copying src/executorch/backends/qualcomm/builders/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2384665Z copying src/executorch/backends/qualcomm/builders/op_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2386271Z 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:55:23.2388916Z copying src/executorch/backends/qualcomm/builders/op_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2391812Z copying src/executorch/backends/qualcomm/builders/op_amax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2394765Z copying src/executorch/backends/qualcomm/builders/op_and.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2397001Z copying src/executorch/backends/qualcomm/builders/op_arange.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2399936Z copying src/executorch/backends/qualcomm/builders/op_argmin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2403000Z 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:55:23.2406274Z 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:55:23.2409273Z copying src/executorch/backends/qualcomm/builders/op_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2412214Z copying src/executorch/backends/qualcomm/builders/op_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2414283Z copying src/executorch/backends/qualcomm/builders/op_ceil.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2417264Z copying src/executorch/backends/qualcomm/builders/op_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2419794Z copying src/executorch/backends/qualcomm/builders/op_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2421380Z copying src/executorch/backends/qualcomm/builders/op_cos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2424283Z 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:55:23.2427358Z 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:55:23.2430698Z copying src/executorch/backends/qualcomm/builders/op_dequantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2433752Z copying src/executorch/backends/qualcomm/builders/op_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2436339Z copying src/executorch/backends/qualcomm/builders/op_elu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2438013Z copying src/executorch/backends/qualcomm/builders/op_embedding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2439672Z copying src/executorch/backends/qualcomm/builders/op_eq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2441955Z copying src/executorch/backends/qualcomm/builders/op_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2443674Z copying src/executorch/backends/qualcomm/builders/op_expand.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2445237Z copying src/executorch/backends/qualcomm/builders/op_full.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2446907Z 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:55:23.2448893Z copying src/executorch/backends/qualcomm/builders/op_gather.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2450572Z copying src/executorch/backends/qualcomm/builders/op_ge.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2452083Z copying src/executorch/backends/qualcomm/builders/op_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2453660Z 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:55:23.2455296Z copying src/executorch/backends/qualcomm/builders/op_gt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2456879Z copying src/executorch/backends/qualcomm/builders/op_hardsigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2458488Z copying src/executorch/backends/qualcomm/builders/op_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2460195Z copying src/executorch/backends/qualcomm/builders/op_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2462045Z copying src/executorch/backends/qualcomm/builders/op_index.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2463691Z 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:55:23.2465294Z 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:55:23.2466918Z 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:55:23.2468473Z copying src/executorch/backends/qualcomm/builders/op_le.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2469991Z copying src/executorch/backends/qualcomm/builders/op_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2471517Z copying src/executorch/backends/qualcomm/builders/op_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2473175Z 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:55:23.2475076Z 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:55:23.2477149Z copying src/executorch/backends/qualcomm/builders/op_lt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2479003Z copying src/executorch/backends/qualcomm/builders/op_matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2480714Z copying src/executorch/backends/qualcomm/builders/op_max.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2482416Z 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:55:23.2484199Z 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:55:23.2485938Z copying src/executorch/backends/qualcomm/builders/op_min.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2487589Z copying src/executorch/backends/qualcomm/builders/op_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2489304Z copying src/executorch/backends/qualcomm/builders/op_ne.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2491040Z copying src/executorch/backends/qualcomm/builders/op_neg.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2492724Z copying src/executorch/backends/qualcomm/builders/op_or.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2494368Z copying src/executorch/backends/qualcomm/builders/op_pad.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2496208Z copying src/executorch/backends/qualcomm/builders/op_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2497908Z copying src/executorch/backends/qualcomm/builders/op_prelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2499678Z copying src/executorch/backends/qualcomm/builders/op_quantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2501312Z copying src/executorch/backends/qualcomm/builders/op_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2502848Z copying src/executorch/backends/qualcomm/builders/op_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2504609Z copying src/executorch/backends/qualcomm/builders/op_reshape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2506183Z copying src/executorch/backends/qualcomm/builders/op_resize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2507849Z 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:55:23.2509714Z copying src/executorch/backends/qualcomm/builders/op_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2511508Z 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:55:23.2513378Z 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:55:23.2515416Z copying src/executorch/backends/qualcomm/builders/op_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2517256Z copying src/executorch/backends/qualcomm/builders/op_sin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2519115Z 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:55:23.2520981Z 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:55:23.2522730Z copying src/executorch/backends/qualcomm/builders/op_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2524562Z 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:55:23.2526393Z 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:55:23.2528262Z copying src/executorch/backends/qualcomm/builders/op_sqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2530109Z copying src/executorch/backends/qualcomm/builders/op_squeeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2531845Z copying src/executorch/backends/qualcomm/builders/op_stack.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2533534Z copying src/executorch/backends/qualcomm/builders/op_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2535407Z 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:55:23.2537256Z copying src/executorch/backends/qualcomm/builders/op_tanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2539010Z copying src/executorch/backends/qualcomm/builders/op_to.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2540748Z copying src/executorch/backends/qualcomm/builders/op_topk.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2542318Z copying src/executorch/backends/qualcomm/builders/op_transpose.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2544095Z copying src/executorch/backends/qualcomm/builders/op_unbind.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2545875Z copying src/executorch/backends/qualcomm/builders/op_unsqueeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2547746Z 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:55:23.2549965Z 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:55:23.2552911Z copying src/executorch/backends/qualcomm/builders/op_where.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2555962Z copying src/executorch/backends/qualcomm/builders/qnn_constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2558992Z copying src/executorch/backends/qualcomm/builders/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:23.2561463Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/debugger 2025-06-05T23:55:23.2563752Z copying src/executorch/backends/qualcomm/debugger/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/debugger 2025-06-05T23:55:23.2566075Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:55:23.2568616Z copying src/executorch/backends/qualcomm/partition/common_defs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:55:23.2571810Z copying src/executorch/backends/qualcomm/partition/qnn_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:55:23.2575043Z copying src/executorch/backends/qualcomm/partition/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:55:23.2577365Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:55:23.2579798Z copying src/executorch/backends/qualcomm/quantizer/annotators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:55:23.2583054Z copying src/executorch/backends/qualcomm/quantizer/custom_annotation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:55:23.2586256Z copying src/executorch/backends/qualcomm/quantizer/qconfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:55:23.2589378Z copying src/executorch/backends/qualcomm/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:55:23.2591829Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-06-05T23:55:23.2594352Z copying src/executorch/backends/qualcomm/serialization/qc_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-06-05T23:55:23.2597758Z 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:55:23.2600298Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:55:23.2602564Z copying src/executorch/backends/qualcomm/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:55:23.2605702Z 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:55:23.2608621Z copying src/executorch/backends/qualcomm/tests/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:55:23.2610842Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:55:23.2613095Z copying src/executorch/backends/qualcomm/utils/constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:55:23.2616045Z copying src/executorch/backends/qualcomm/utils/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:55:23.2618422Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:55:23.2621364Z 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:55:23.2625322Z 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:55:23.2628129Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test 2025-06-05T23:55:23.2630725Z 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:55:23.2634441Z 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:55:23.2637717Z 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:55:23.2640225Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:55:23.2642376Z copying src/executorch/backends/vulkan/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:55:23.2645178Z 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:55:23.2648204Z 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:55:23.2651309Z 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:55:23.2654344Z copying src/executorch/backends/vulkan/_passes/remove_asserts.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:55:23.2657520Z 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:55:23.2660439Z 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:55:23.2663407Z 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:55:23.2666475Z 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:55:23.2668833Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/partitioner 2025-06-05T23:55:23.2671339Z copying src/executorch/backends/vulkan/partitioner/vulkan_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/partitioner 2025-06-05T23:55:23.2686900Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/quantizer 2025-06-05T23:55:23.2689326Z copying src/executorch/backends/vulkan/quantizer/vulkan_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/quantizer 2025-06-05T23:55:23.2691726Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime 2025-06-05T23:55:23.2694003Z 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:55:23.2696458Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:55:23.2699048Z 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:55:23.2702521Z 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:55:23.2706157Z 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:55:23.2708670Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-06-05T23:55:23.2710922Z copying src/executorch/backends/vulkan/test/test_serialization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-06-05T23:55:23.2713900Z 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:55:23.2717140Z 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:55:23.2719713Z 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:55:23.2721080Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests 2025-06-05T23:55:23.2722320Z 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:55:23.2725058Z 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:55:23.2728439Z 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:55:23.2731183Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:55:23.2733830Z 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:55:23.2737362Z 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:55:23.2740921Z 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:55:23.2744484Z 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:55:23.2748096Z 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:55:23.2751608Z 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:55:23.2754212Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/volk 2025-06-05T23:55:23.2756766Z 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:55:23.2759558Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:55:23.2762941Z 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:55:23.2767302Z 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:55:23.2771118Z 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:55:23.2775523Z 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:55:23.2779797Z 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:55:23.2783831Z 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:55:23.2788250Z 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:55:23.2791739Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-06-05T23:55:23.2795498Z 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:55:23.2799234Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-06-05T23:55:23.2803333Z 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:55:23.2807104Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:55:23.2809309Z copying src/executorch/backends/xnnpack/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:55:23.2812389Z 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:55:23.2815718Z 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:55:23.2818779Z 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:55:23.2821759Z 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:55:23.2824103Z 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:55:23.2826665Z copying src/executorch/backends/xnnpack/_passes/decompose_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:55:23.2829664Z 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:55:23.2832795Z 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:55:23.2835901Z 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:55:23.2838943Z 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:55:23.2840296Z copying src/executorch/backends/xnnpack/_passes/xnnpack_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:55:23.2840948Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2842316Z copying src/executorch/backends/xnnpack/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2843641Z copying src/executorch/backends/xnnpack/operators/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2844989Z copying src/executorch/backends/xnnpack/operators/op_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2846310Z copying src/executorch/backends/xnnpack/operators/op_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2847851Z copying src/executorch/backends/xnnpack/operators/op_addmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2849309Z 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:55:23.2850785Z copying src/executorch/backends/xnnpack/operators/op_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2852125Z copying src/executorch/backends/xnnpack/operators/op_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2853180Z copying src/executorch/backends/xnnpack/operators/op_ceiling.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2854528Z copying src/executorch/backends/xnnpack/operators/op_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2855975Z copying src/executorch/backends/xnnpack/operators/op_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2857311Z copying src/executorch/backends/xnnpack/operators/op_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2858883Z 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:55:23.2860377Z 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:55:23.2861720Z copying src/executorch/backends/xnnpack/operators/op_elu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2863048Z copying src/executorch/backends/xnnpack/operators/op_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2864398Z copying src/executorch/backends/xnnpack/operators/op_floor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2865767Z copying src/executorch/backends/xnnpack/operators/op_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2866915Z copying src/executorch/backends/xnnpack/operators/op_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2868327Z copying src/executorch/backends/xnnpack/operators/op_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2869680Z 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:55:23.2871064Z copying src/executorch/backends/xnnpack/operators/op_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2872398Z copying src/executorch/backends/xnnpack/operators/op_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2873937Z 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:55:23.2875333Z 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:55:23.2876303Z 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:55:23.2877364Z copying src/executorch/backends/xnnpack/operators/op_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2878895Z 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:55:23.2880261Z copying src/executorch/backends/xnnpack/operators/op_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2881546Z copying src/executorch/backends/xnnpack/operators/op_multiply.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2882930Z copying src/executorch/backends/xnnpack/operators/op_negate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2884300Z copying src/executorch/backends/xnnpack/operators/op_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2885667Z copying src/executorch/backends/xnnpack/operators/op_prelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2886777Z 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:55:23.2887490Z copying src/executorch/backends/xnnpack/operators/op_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2888238Z copying src/executorch/backends/xnnpack/operators/op_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2888922Z copying src/executorch/backends/xnnpack/operators/op_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2889640Z copying src/executorch/backends/xnnpack/operators/op_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2890358Z 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:55:23.2891540Z 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:55:23.2892921Z copying src/executorch/backends/xnnpack/operators/op_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2894283Z copying src/executorch/backends/xnnpack/operators/op_square.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2895776Z 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:55:23.2897185Z copying src/executorch/backends/xnnpack/operators/op_squeeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2898666Z 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:55:23.2900244Z 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:55:23.2901600Z copying src/executorch/backends/xnnpack/operators/op_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2902950Z 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:55:23.2904516Z copying src/executorch/backends/xnnpack/operators/quant_params.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:23.2905116Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-06-05T23:55:23.2905849Z copying src/executorch/backends/xnnpack/partition/configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-06-05T23:55:23.2906837Z copying src/executorch/backends/xnnpack/partition/xnnpack_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-06-05T23:55:23.2907198Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer 2025-06-05T23:55:23.2907970Z copying src/executorch/backends/xnnpack/quantizer/xnnpack_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer 2025-06-05T23:55:23.2908843Z 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:55:23.2909236Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:55:23.2910052Z 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:55:23.2910901Z 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:55:23.2911254Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test 2025-06-05T23:55:23.2911959Z 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:55:23.2912700Z 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:55:23.2913065Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party 2025-06-05T23:55:23.2914144Z 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:55:23.2914767Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:55:23.2916038Z copying src/executorch/backends/xnnpack/utils/configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:55:23.2917292Z copying src/executorch/backends/xnnpack/utils/quant_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:55:23.2918518Z copying src/executorch/backends/xnnpack/utils/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:55:23.2919900Z copying src/executorch/backends/xnnpack/utils/xnnpack_constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:55:23.2920687Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:55:23.2922208Z 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:55:23.2923809Z 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:55:23.2925518Z 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:55:23.2926451Z 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:55:23.2927330Z 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:55:23.2928176Z 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:55:23.2928593Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs 2025-06-05T23:55:23.2929530Z 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:55:23.2930324Z 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:55:23.2930703Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:55:23.2931504Z 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:55:23.2932220Z 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:55:23.2932969Z 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:55:23.2933731Z 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:55:23.2934488Z 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:55:23.2935710Z 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:55:23.2937145Z 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:55:23.2938553Z 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:55:23.2940025Z 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:55:23.2941456Z 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:55:23.2942947Z 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:55:23.2944424Z 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:55:23.2945744Z 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:55:23.2946445Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:55:23.2947766Z 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:55:23.2949124Z 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:55:23.2950531Z 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:55:23.2951937Z 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:55:23.2953297Z 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:55:23.2954517Z 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:55:23.2955890Z 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:55:23.2957506Z 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:55:23.2958855Z 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:55:23.2960357Z 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:55:23.2961723Z 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:55:23.2963063Z 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:55:23.2964362Z 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:55:23.2965703Z 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:55:23.2967068Z 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:55:23.2968422Z 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:55:23.2969853Z 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:55:23.2971228Z 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:55:23.2972623Z 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:55:23.2974029Z 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:55:23.2975440Z 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:55:23.2976813Z 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:55:23.2978160Z 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:55:23.2979557Z 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:55:23.2980959Z 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:55:23.2982343Z 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:55:23.2983743Z 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:55:23.2985125Z 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:55:23.2986498Z 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:55:23.2987879Z 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:55:23.2989196Z 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:55:23.2990720Z 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:55:23.2992203Z 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:55:23.2993685Z 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:55:23.2995060Z 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:55:23.2996376Z 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:55:23.2997774Z 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:55:23.2999196Z 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:55:23.3000437Z 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:55:23.3001148Z 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:55:23.3001868Z 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:55:23.3002647Z 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:55:23.3003341Z 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:55:23.3003942Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:55:23.3004757Z 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:55:23.3005569Z 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:55:23.3006438Z 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:55:23.3007244Z 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:55:23.3008060Z 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:55:23.3008857Z 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:55:23.3009673Z 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:55:23.3010069Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:55:23.3010926Z 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:55:23.3011774Z 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:55:23.3012759Z 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:55:23.3013187Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization 2025-06-05T23:55:23.3014190Z 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:55:23.3015176Z 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:55:23.3015558Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester 2025-06-05T23:55:23.3016278Z 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:55:23.3017000Z 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:55:23.3017420Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:55:23.3018232Z 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:55:23.3018661Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:55:23.3019479Z 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:55:23.3019899Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:55:23.3020745Z 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:55:23.3021204Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:55:23.3022102Z 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:55:23.3022597Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:55:23.3023522Z 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:55:23.3024456Z 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:55:23.3025394Z 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:55:23.3025895Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-06-05T23:55:23.3026841Z 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:55:23.3027315Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:55:23.3028268Z 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:55:23.3029255Z 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:55:23.3030372Z 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:55:23.3031350Z 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:55:23.3031859Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.3032885Z 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:55:23.3033886Z 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:55:23.3034920Z 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:55:23.3035989Z 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:55:23.3037036Z 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:55:23.3038050Z 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:55:23.3039015Z 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:55:23.3040044Z 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:55:23.3041057Z 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:55:23.3042045Z 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:55:23.3043003Z 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:55:23.3044048Z 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:55:23.3045063Z 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:55:23.3046162Z 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:55:23.3047175Z 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:55:23.3048151Z 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:55:23.3049179Z 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:55:23.3050150Z 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:55:23.3051192Z 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:55:23.3052199Z 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:55:23.3053269Z 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:55:23.3054305Z 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:55:23.3055361Z 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:55:23.3056262Z 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:55:23.3433073Z 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:55:23.3434263Z 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:55:23.3435452Z 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:55:23.3436222Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:55:23.3437425Z 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:55:23.3438585Z 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:55:23.3439803Z 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:55:23.3440454Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:55:23.3441681Z 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:55:23.3442073Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:55:23.3442601Z copying src/executorch/codegen/api/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:55:23.3443153Z copying src/executorch/codegen/api/custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:55:23.3443899Z copying src/executorch/codegen/api/et_cpp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:55:23.3444425Z copying src/executorch/codegen/api/unboxing.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:55:23.3444883Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:23.3445519Z copying src/executorch/codegen/test/test_executorch_custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:23.3446244Z copying src/executorch/codegen/test/test_executorch_gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:23.3447092Z copying src/executorch/codegen/test/test_executorch_signatures.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:23.3447732Z copying src/executorch/codegen/test/test_executorch_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:23.3448427Z copying src/executorch/codegen/test/test_executorch_unboxing.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:23.3449020Z copying src/executorch/codegen/test/test_selective_build.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:23.3449335Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:23.3449860Z copying src/executorch/codegen/tools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:23.3450419Z copying src/executorch/codegen/tools/gen_all_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:23.3450957Z copying src/executorch/codegen/tools/gen_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:23.3451492Z copying src/executorch/codegen/tools/gen_ops_def.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:23.3452275Z copying src/executorch/codegen/tools/gen_selected_op_variants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:23.3452819Z copying src/executorch/codegen/tools/merge_yaml.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:23.3453361Z copying src/executorch/codegen/tools/yaml_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:23.3453720Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:55:23.3454291Z copying src/executorch/codegen/api/types/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:55:23.3454990Z copying src/executorch/codegen/api/types/signatures.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:55:23.3455607Z copying src/executorch/codegen/api/types/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:55:23.3455919Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-06-05T23:55:23.3456716Z 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:55:23.3457460Z 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:55:23.3458211Z 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:55:23.3458924Z 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:55:23.3459257Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-06-05T23:55:23.3459874Z copying src/executorch/devtools/backend_debug/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-06-05T23:55:23.3460629Z copying src/executorch/devtools/backend_debug/delegation_info.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-06-05T23:55:23.3461044Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:55:23.3461869Z copying src/executorch/devtools/bundled_program/config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:55:23.3462606Z copying src/executorch/devtools/bundled_program/core.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:55:23.3463392Z copying src/executorch/devtools/bundled_program/version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:55:23.3463730Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-06-05T23:55:23.3464360Z copying src/executorch/devtools/debug_format/base_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-06-05T23:55:23.3464973Z copying src/executorch/devtools/debug_format/et_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-06-05T23:55:23.3465280Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:55:23.3465916Z copying src/executorch/devtools/etdump/schema_flatcc.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:55:23.3466620Z copying src/executorch/devtools/etdump/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:55:23.3466999Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:55:23.3467625Z copying src/executorch/devtools/etrecord/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:55:23.3468251Z copying src/executorch/devtools/etrecord/_etrecord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:55:23.3468635Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:23.3469221Z copying src/executorch/devtools/inspector/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:23.3469833Z copying src/executorch/devtools/inspector/_inspector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:23.3470549Z copying src/executorch/devtools/inspector/_inspector_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:23.3471388Z copying src/executorch/devtools/inspector/_intermediate_output_capturer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:23.3472017Z copying src/executorch/devtools/inspector/inspector_cli.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:23.3472483Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/size_analysis_tool 2025-06-05T23:55:23.3473289Z 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:55:23.3474043Z 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:55:23.3474382Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:55:23.3475028Z copying src/executorch/devtools/visualization/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:55:23.3590779Z copying src/executorch/devtools/visualization/visualization_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:55:23.3591585Z copying src/executorch/devtools/visualization/visualization_utils_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:55:23.3591957Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug/tests 2025-06-05T23:55:23.3592782Z 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:55:23.3593477Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-06-05T23:55:23.3594213Z 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:55:23.3595258Z 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:55:23.3595674Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-06-05T23:55:23.3596489Z 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:55:23.3596942Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test 2025-06-05T23:55:23.3597706Z 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:55:23.3598518Z 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:55:23.3599376Z 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:55:23.3599857Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/util 2025-06-05T23:55:23.3600623Z 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:55:23.3601099Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/test 2025-06-05T23:55:23.3602027Z 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:55:23.3602462Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/test 2025-06-05T23:55:23.3603498Z 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:55:23.3604076Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/tests 2025-06-05T23:55:23.3604769Z copying src/executorch/devtools/etdump/tests/serialize_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/tests 2025-06-05T23:55:23.3605122Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/tests 2025-06-05T23:55:23.3605814Z copying src/executorch/devtools/etrecord/tests/etrecord_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/tests 2025-06-05T23:55:23.3606166Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:55:23.3607003Z 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:55:23.3607721Z copying src/executorch/devtools/inspector/tests/inspector_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:55:23.3608527Z 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:55:23.3609419Z 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:55:23.3610247Z 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:55:23.3610662Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:55:23.3611493Z 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:55:23.3612205Z 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:55:23.3612995Z 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:55:23.3613667Z 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:55:23.3614367Z 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:55:23.3614785Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:55:23.3615411Z copying src/executorch/examples/models/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:55:23.3616086Z copying src/executorch/examples/models/checkpoint.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:55:23.3616670Z copying src/executorch/examples/models/model_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:55:23.3617392Z copying src/executorch/examples/models/model_factory.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:55:23.3617757Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-06-05T23:55:23.3618470Z 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:55:23.3619359Z 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:55:23.3620049Z 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:55:23.3620738Z 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:55:23.3621542Z 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:55:23.3621941Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-06-05T23:55:23.3622704Z 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:55:23.3623486Z 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:55:23.3624375Z 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:55:23.3625153Z 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:55:23.3626001Z 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:55:23.3626473Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts 2025-06-05T23:55:23.3627202Z 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:55:23.3627963Z 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:55:23.3628499Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3 2025-06-05T23:55:23.3629173Z 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:55:23.3629832Z 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:55:23.3630234Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:55:23.3630889Z copying src/executorch/examples/models/edsr/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:55:23.3631577Z copying src/executorch/examples/models/edsr/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:55:23.3631994Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam 2025-06-05T23:55:23.3632713Z 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:55:23.3762777Z 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:55:23.3763269Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt 2025-06-05T23:55:23.3764007Z 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:55:23.3764772Z 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:55:23.3765134Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3 2025-06-05T23:55:23.3765835Z 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:55:23.3766606Z 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:55:23.3767138Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4 2025-06-05T23:55:23.3767906Z 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:55:23.3768597Z 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:55:23.3768971Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:23.3769843Z copying src/executorch/examples/models/llama/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:23.3770571Z copying src/executorch/examples/models/llama/attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:23.3771219Z copying src/executorch/examples/models/llama/eval_llama.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:23.3771940Z 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:55:23.3772758Z copying src/executorch/examples/models/llama/export_llama.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:23.3773551Z 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:55:23.3774203Z copying src/executorch/examples/models/llama/fairseq2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:23.3775077Z copying src/executorch/examples/models/llama/hf_download.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:23.3776098Z 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:55:23.3776863Z copying src/executorch/examples/models/llama/llama_transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:23.3777721Z copying src/executorch/examples/models/llama/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:23.3778448Z copying src/executorch/examples/models/llama/model_args.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:23.3779222Z copying src/executorch/examples/models/llama/norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:23.3779935Z copying src/executorch/examples/models/llama/rope.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:23.3780635Z copying src/executorch/examples/models/llama/static_attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:23.3781018Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision 2025-06-05T23:55:23.3781744Z 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:55:23.3782154Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:55:23.3782981Z copying src/executorch/examples/models/llava/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:55:23.3783755Z copying src/executorch/examples/models/llava/export_llava.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:55:23.3784490Z copying src/executorch/examples/models/llava/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:55:23.3784981Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:55:23.3785644Z copying src/executorch/examples/models/lstm/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:55:23.3786323Z copying src/executorch/examples/models/lstm/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:55:23.3786808Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:55:23.3787676Z copying src/executorch/examples/models/mobilebert/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:55:23.3788482Z copying src/executorch/examples/models/mobilebert/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:55:23.3788928Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2 2025-06-05T23:55:23.3789703Z 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:55:23.3790629Z 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:55:23.3791015Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3 2025-06-05T23:55:23.3791752Z 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:55:23.3792605Z 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:55:23.3793042Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini-lora 2025-06-05T23:55:23.3793928Z 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:55:23.3794295Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:55:23.3795267Z 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:55:23.3796047Z 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:55:23.3797093Z 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:55:23.3797793Z 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:55:23.3798609Z 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:55:23.3799161Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini 2025-06-05T23:55:23.3799811Z 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:55:23.3800541Z 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:55:23.3800953Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5 2025-06-05T23:55:23.3801876Z 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:55:23.3802784Z 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:55:23.3803124Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-06-05T23:55:23.3803948Z copying src/executorch/examples/models/qwen3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-06-05T23:55:23.3804728Z copying src/executorch/examples/models/qwen3/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-06-05T23:55:23.3805160Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:55:23.3805990Z copying src/executorch/examples/models/resnet/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:55:23.3806628Z copying src/executorch/examples/models/resnet/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:55:23.3806980Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-06-05T23:55:23.3890288Z copying src/executorch/examples/models/smollm2/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-06-05T23:55:23.3891196Z copying src/executorch/examples/models/smollm2/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-06-05T23:55:23.3891529Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-06-05T23:55:23.3892162Z copying src/executorch/examples/models/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-06-05T23:55:23.3892858Z copying src/executorch/examples/models/test/test_export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-06-05T23:55:23.3893258Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit 2025-06-05T23:55:23.3894237Z 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:55:23.3895240Z 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:55:23.3895730Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model 2025-06-05T23:55:23.3896572Z 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:55:23.3897324Z 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:55:23.3897743Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:55:23.3898565Z copying src/executorch/examples/models/wav2letter/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:55:23.3899334Z copying src/executorch/examples/models/wav2letter/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:55:23.3899901Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:55:23.3901239Z 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:55:23.3902277Z 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:55:23.3903294Z 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:55:23.3904787Z 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:55:23.3905891Z 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:55:23.3907103Z 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:55:23.3907501Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate 2025-06-05T23:55:23.3908326Z 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:55:23.3909088Z 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:55:23.3909506Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-06-05T23:55:23.3910343Z 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:55:23.3911177Z 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:55:23.3912244Z 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:55:23.3913284Z 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:55:23.3913727Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner 2025-06-05T23:55:23.3914446Z 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:55:23.3915645Z 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:55:23.3916371Z 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:55:23.3917045Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:55:23.3917944Z 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:55:23.3919030Z 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:55:23.3920022Z 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:55:23.3921004Z 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:55:23.3922088Z 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:55:23.3922968Z 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:55:23.3923929Z 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:55:23.3925228Z 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:55:23.3926220Z 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:55:23.3927201Z 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:55:23.3928139Z 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:55:23.3929223Z 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:55:23.3930277Z 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:55:23.3931341Z 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:55:23.3932476Z 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:55:23.3933523Z 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:55:23.3934539Z 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:55:23.3935975Z 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:55:23.3936350Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:55:23.4036636Z 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:55:23.4038204Z 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:55:23.4039568Z 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:55:23.4040639Z 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:55:23.4042116Z 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:55:23.4043535Z 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:55:23.4045069Z 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:55:23.4045843Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tokenizer 2025-06-05T23:55:23.4047335Z 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:55:23.4048229Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:55:23.4049788Z 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:55:23.4050759Z 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:55:23.4051635Z 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:55:23.4053261Z 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:55:23.4054071Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:55:23.4055761Z 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:55:23.4057360Z 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:55:23.4059028Z 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:55:23.4060645Z 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:55:23.4061516Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder 2025-06-05T23:55:23.4063220Z 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:55:23.4064354Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:55:23.4066095Z 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:55:23.4067987Z 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:55:23.4068956Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:55:23.4070767Z 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:55:23.4072699Z 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:55:23.4073693Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:55:23.4075559Z 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:55:23.4077574Z 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:55:23.4078280Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test 2025-06-05T23:55:23.4079652Z 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:55:23.4081029Z 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:55:23.4081679Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/moshi/mimi 2025-06-05T23:55:23.4083055Z 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:55:23.4083629Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:23.4084618Z copying src/executorch/exir/_serialize/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:23.4085632Z copying src/executorch/exir/_serialize/_cord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:23.4086670Z copying src/executorch/exir/_serialize/_dataclass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:23.4087754Z copying src/executorch/exir/_serialize/_flatbuffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:23.4088852Z copying src/executorch/exir/_serialize/_named_data_store.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:23.4089921Z copying src/executorch/exir/_serialize/_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:23.4090962Z copying src/executorch/exir/_serialize/_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:23.4092099Z copying src/executorch/exir/_serialize/data_serializer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:23.4093100Z copying src/executorch/exir/_serialize/padding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:23.4093796Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:23.4094942Z copying src/executorch/exir/backend/backend_api.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:23.4096012Z copying src/executorch/exir/backend/backend_details.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:23.4097261Z copying src/executorch/exir/backend/compile_spec_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:23.4098371Z copying src/executorch/exir/backend/operator_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:23.4099463Z copying src/executorch/exir/backend/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:23.4100412Z copying src/executorch/exir/backend/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:23.4100971Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:55:23.4101936Z copying src/executorch/exir/capture/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:55:23.4102927Z copying src/executorch/exir/capture/_capture.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:55:23.4104138Z copying src/executorch/exir/capture/_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:55:23.4105095Z copying src/executorch/exir/capture/_unlift.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:55:23.4105652Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:55:23.4106634Z copying src/executorch/exir/dialects/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:55:23.4107574Z copying src/executorch/exir/dialects/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:55:23.4108105Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:55:23.4199739Z copying src/executorch/exir/emit/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:55:23.4200273Z copying src/executorch/exir/emit/_emit_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:55:23.4200754Z copying src/executorch/exir/emit/_emitter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:55:23.4201084Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:55:23.4201645Z copying src/executorch/exir/operator/convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:55:23.4202503Z copying src/executorch/exir/operator/manip.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:55:23.4203057Z copying src/executorch/exir/operator/util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:55:23.4203367Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4204146Z copying src/executorch/exir/passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4204910Z copying src/executorch/exir/passes/_quant_patterns_and_replacements.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4205549Z copying src/executorch/exir/passes/const_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4206214Z copying src/executorch/exir/passes/constant_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4206946Z copying src/executorch/exir/passes/debug_handle_generator_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4207565Z copying src/executorch/exir/passes/dim_order_ops_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4208324Z copying src/executorch/exir/passes/dynamic_shape_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4208974Z copying src/executorch/exir/passes/executorch_prim_ops_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4209573Z copying src/executorch/exir/passes/external_constants_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4210401Z copying src/executorch/exir/passes/init_mutable_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4211276Z 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:55:23.4211951Z copying src/executorch/exir/passes/memory_format_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4212655Z copying src/executorch/exir/passes/memory_planning_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4213275Z copying src/executorch/exir/passes/normalize_transpose_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4214000Z 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:55:23.4214869Z copying src/executorch/exir/passes/pass_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4215497Z copying src/executorch/exir/passes/prune_empty_tensors_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4216072Z copying src/executorch/exir/passes/quant_fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4216749Z copying src/executorch/exir/passes/quantize_io_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4217423Z copying src/executorch/exir/passes/remove_graph_asserts_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4218059Z copying src/executorch/exir/passes/remove_mixed_type_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4218700Z copying src/executorch/exir/passes/remove_noop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4219577Z copying src/executorch/exir/passes/remove_unused_parameters_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4220191Z 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:55:23.4220947Z 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:55:23.4221732Z 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:55:23.4222754Z 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:55:23.4223926Z 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:55:23.4224976Z copying src/executorch/exir/passes/scalar_to_tensor_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4226034Z copying src/executorch/exir/passes/spec_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4227118Z copying src/executorch/exir/passes/sym_shape_eval_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4228187Z copying src/executorch/exir/passes/sym_to_tensor_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4229357Z copying src/executorch/exir/passes/weights_to_outputs_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:23.4230042Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:55:23.4231033Z copying src/executorch/exir/program/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:55:23.4232084Z copying src/executorch/exir/program/_fake_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:55:23.4233210Z copying src/executorch/exir/program/_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:55:23.4233739Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:23.4234632Z copying src/executorch/exir/serde/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:23.4235707Z copying src/executorch/exir/serde/export_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:23.4236639Z copying src/executorch/exir/serde/schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:23.4237633Z copying src/executorch/exir/serde/schema_check.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:23.4238614Z copying src/executorch/exir/serde/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:23.4239525Z copying src/executorch/exir/serde/union.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:23.4240065Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4241015Z copying src/executorch/exir/tests/asr_joiner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4241941Z copying src/executorch/exir/tests/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4243018Z copying src/executorch/exir/tests/control_flow_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4244106Z copying src/executorch/exir/tests/dynamic_shape_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4245057Z copying src/executorch/exir/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4246105Z copying src/executorch/exir/tests/test_arg_validator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4247113Z copying src/executorch/exir/tests/test_capture.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4248073Z copying src/executorch/exir/tests/test_common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4249092Z copying src/executorch/exir/tests/test_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4250113Z copying src/executorch/exir/tests/test_dim_order_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4251258Z copying src/executorch/exir/tests/test_dynamic_shape_propagation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4252224Z copying src/executorch/exir/tests/test_error.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4253238Z copying src/executorch/exir/tests/test_joint_graph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4254402Z 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:55:23.4255661Z 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:55:23.4256893Z 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:55:23.4347164Z copying src/executorch/exir/tests/test_memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4347737Z copying src/executorch/exir/tests/test_op_convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4348390Z copying src/executorch/exir/tests/test_pass_infra.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4349222Z copying src/executorch/exir/tests/test_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4349794Z copying src/executorch/exir/tests/test_print_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4350514Z 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:55:23.4351408Z copying src/executorch/exir/tests/test_quant_fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4351993Z copying src/executorch/exir/tests/test_quantization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4352812Z copying src/executorch/exir/tests/test_quantize_io_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4353462Z 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:55:23.4354085Z copying src/executorch/exir/tests/test_remove_view_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4354653Z copying src/executorch/exir/tests/test_serde.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4355388Z copying src/executorch/exir/tests/test_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4355911Z copying src/executorch/exir/tests/test_tracer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4356631Z copying src/executorch/exir/tests/test_verification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4357297Z copying src/executorch/exir/tests/test_warnings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4357941Z copying src/executorch/exir/tests/transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:23.4358320Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:55:23.4359082Z copying src/executorch/exir/verification/arg_validator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:55:23.4359683Z copying src/executorch/exir/verification/dev_html.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:55:23.4360302Z copying src/executorch/exir/verification/interpreter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:55:23.4360969Z copying src/executorch/exir/verification/verifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:55:23.4361508Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:55:23.4362110Z copying src/executorch/exir/_serialize/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:55:23.4362759Z copying src/executorch/exir/_serialize/test/test_cord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:55:23.4363620Z copying src/executorch/exir/_serialize/test/test_flatbuffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:55:23.4364356Z 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:55:23.4364980Z copying src/executorch/exir/_serialize/test/test_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:55:23.4365558Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-06-05T23:55:23.4366561Z 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:55:23.4367664Z 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:55:23.4368905Z 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:55:23.4370051Z 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:55:23.4371117Z 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:55:23.4371485Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:55:23.4372395Z 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:55:23.4373157Z 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:55:23.4374008Z 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:55:23.4374846Z 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:55:23.4375512Z 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:55:23.4376154Z 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:55:23.4376946Z 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:55:23.4377840Z 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:55:23.4378557Z copying src/executorch/exir/backend/test/test_backends.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:55:23.4379302Z 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:55:23.4379948Z 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:55:23.4380833Z copying src/executorch/exir/backend/test/test_compatibility.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:55:23.4381575Z 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:55:23.4382261Z 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:55:23.4382921Z 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:55:23.4383597Z 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:55:23.4384449Z copying src/executorch/exir/backend/test/test_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:55:23.4385199Z copying src/executorch/exir/backend/test/test_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:55:23.4386064Z 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:55:23.4386909Z copying src/executorch/exir/backend/test/test_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:55:23.4387290Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos 2025-06-05T23:55:23.4388340Z 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:55:23.4389083Z 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:55:23.4389458Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc 2025-06-05T23:55:23.4390305Z 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:55:23.4391332Z 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:55:23.4392096Z 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:55:23.4392504Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend 2025-06-05T23:55:23.4547826Z copying src/executorch/exir/dialects/backend/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend 2025-06-05T23:55:23.4548350Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:55:23.4549112Z copying src/executorch/exir/dialects/edge/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:55:23.4549521Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/test 2025-06-05T23:55:23.4550396Z 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:55:23.4550875Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend/test 2025-06-05T23:55:23.4551672Z 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:55:23.4552005Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg 2025-06-05T23:55:23.4552981Z 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:55:23.4553730Z 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:55:23.4554094Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype 2025-06-05T23:55:23.4555084Z 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:55:23.4555861Z 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:55:23.4556827Z 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:55:23.4557170Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op 2025-06-05T23:55:23.4557862Z 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:55:23.4558686Z 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:55:23.4559026Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec 2025-06-05T23:55:23.4559947Z 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:55:23.4560755Z 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:55:23.4561244Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/test 2025-06-05T23:55:23.4562144Z 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:55:23.4563077Z 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:55:23.4563581Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op/test 2025-06-05T23:55:23.4564290Z 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:55:23.4564600Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/test 2025-06-05T23:55:23.4565297Z copying src/executorch/exir/emit/test/test_emit.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/test 2025-06-05T23:55:23.4565752Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/test 2025-06-05T23:55:23.4566392Z copying src/executorch/exir/operator/test/test_operator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/test 2025-06-05T23:55:23.4566714Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:55:23.4567494Z copying src/executorch/exir/program/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:55:23.4568154Z 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:55:23.4568769Z copying src/executorch/exir/program/test/test_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:55:23.4569124Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/test 2025-06-05T23:55:23.4569820Z copying src/executorch/exir/verification/test/test_verifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/test 2025-06-05T23:55:23.4570153Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:55:23.4570756Z copying src/executorch/extension/export_util/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:55:23.4571367Z copying src/executorch/extension/export_util/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:55:23.4571759Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor 2025-06-05T23:55:23.4572545Z copying src/executorch/extension/flat_tensor/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor 2025-06-05T23:55:23.4572988Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:55:23.4573664Z copying src/executorch/extension/gguf_util/convert_main.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:55:23.4574504Z copying src/executorch/extension/gguf_util/converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:55:23.4575254Z copying src/executorch/extension/gguf_util/load_gguf.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:55:23.4575598Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:55:23.4576511Z copying src/executorch/extension/pybindings/portable_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:55:23.4576951Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree 2025-06-05T23:55:23.4577591Z copying src/executorch/extension/pytree/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree 2025-06-05T23:55:23.4578096Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training 2025-06-05T23:55:23.4578741Z copying src/executorch/extension/training/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training 2025-06-05T23:55:23.4579187Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-06-05T23:55:23.4579913Z 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:55:23.4580707Z 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:55:23.4581473Z 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:55:23.4581838Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/test 2025-06-05T23:55:23.4582782Z 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:55:23.4583314Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/converters 2025-06-05T23:55:23.4584160Z 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:55:23.4584592Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:55:23.4585539Z 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:55:23.4586320Z 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:55:23.4587089Z 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:55:23.4587844Z 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:55:23.4588582Z 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:55:23.4589591Z 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:55:23.4590519Z 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:55:23.4591330Z 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:55:23.4592114Z 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:55:23.4592623Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:55:23.4801458Z copying src/executorch/extension/llm/export/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:55:23.4802383Z copying src/executorch/extension/llm/export/builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:55:23.4803411Z copying src/executorch/extension/llm/export/export_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:55:23.4804357Z copying src/executorch/extension/llm/export/partitioner_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:55:23.4805093Z copying src/executorch/extension/llm/export/quantizer_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:55:23.4805944Z 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:55:23.4806282Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:55:23.4806911Z copying src/executorch/extension/llm/modules/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:55:23.4807653Z copying src/executorch/extension/llm/modules/_position_embeddings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:55:23.4808513Z copying src/executorch/extension/llm/modules/attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:55:23.4809264Z copying src/executorch/extension/llm/modules/kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:55:23.4809683Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers 2025-06-05T23:55:23.4810522Z copying src/executorch/extension/llm/tokenizers/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers 2025-06-05T23:55:23.4811020Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant 2025-06-05T23:55:23.4811907Z 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:55:23.4812428Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:55:23.4813424Z 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:55:23.4814404Z 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:55:23.4814865Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test 2025-06-05T23:55:23.4815547Z 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:55:23.4816267Z 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:55:23.4816623Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-06-05T23:55:23.4817370Z 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:55:23.4818167Z 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:55:23.4819027Z 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:55:23.4819929Z 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:55:23.4820481Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:55:23.4821558Z 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:55:23.4822723Z 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:55:23.4823837Z 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:55:23.4824874Z 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:55:23.4825864Z 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:55:23.4826258Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test 2025-06-05T23:55:23.4827155Z 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:55:23.4827755Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-06-05T23:55:23.4828845Z 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:55:23.4829432Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:55:23.4830539Z 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:55:23.4831686Z 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:55:23.4832381Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:55:23.4833599Z 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:55:23.4834806Z 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:55:23.4835382Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:55:23.4836618Z 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:55:23.4837211Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:55:23.4838365Z 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:55:23.4839549Z 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:55:23.4840130Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-06-05T23:55:23.4841346Z 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:55:23.4842060Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-06-05T23:55:23.4843297Z 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:55:23.4843954Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-06-05T23:55:23.4845098Z 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:55:23.4845724Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:55:23.4947806Z 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:55:23.4948609Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-06-05T23:55:23.4949854Z 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:55:23.4950445Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-06-05T23:55:23.4951716Z 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:55:23.4952340Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:55:23.4953584Z 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:55:23.4954782Z 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:55:23.4955809Z 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:55:23.4956909Z 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:55:23.4958262Z 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:55:23.4959444Z 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:55:23.4960636Z 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:55:23.4961787Z 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:55:23.4962307Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-06-05T23:55:23.4963637Z 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:55:23.4964198Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:55:23.4965243Z 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:55:23.4966263Z 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:55:23.4967414Z 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:55:23.4967987Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:55:23.4969145Z 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:55:23.4970136Z 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:55:23.4971070Z 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:55:23.4971646Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-06-05T23:55:23.4972787Z 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:55:23.4973364Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-06-05T23:55:23.4974457Z 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:55:23.4975205Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:55:23.4976604Z 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:55:23.4978086Z 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:55:23.4978791Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:55:23.4980441Z 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:55:23.4981991Z 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:55:23.4983670Z 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:55:23.4985390Z 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:55:23.4985946Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:55:23.4987073Z 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:55:23.4988368Z 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:55:23.4989708Z 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:55:23.4990821Z 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:55:23.4991896Z 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:55:23.4992482Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools 2025-06-05T23:55:23.4993807Z 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:55:23.4994514Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:55:24.9228655Z 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:55:24.9232086Z 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:55:24.9234347Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/module/test/resources 2025-06-05T23:55:24.9235947Z 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:55:24.9237307Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-06-05T23:55:24.9239050Z copying src/executorch/extension/pybindings/test/make_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-06-05T23:55:24.9240901Z 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:55:24.9242839Z copying src/executorch/extension/pybindings/test/test_pybindings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-06-05T23:55:24.9244165Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/test 2025-06-05T23:55:24.9245501Z copying src/executorch/extension/pytree/test/test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/test 2025-06-05T23:55:24.9246645Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-06-05T23:55:24.9248309Z copying src/executorch/extension/training/pybindings/_training_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-06-05T23:55:24.9250082Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR 2025-06-05T23:55:24.9251543Z 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:55:24.9253733Z 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:55:24.9255309Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR/test 2025-06-05T23:55:24.9257118Z 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:55:24.9258661Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/test 2025-06-05T23:55:24.9260154Z 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:55:24.9261758Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:55:24.9262830Z copying src/executorch/kernels/quantized/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:55:24.9264127Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test 2025-06-05T23:55:24.9265462Z 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:55:24.9267291Z 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:55:24.9268731Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test 2025-06-05T23:55:24.9269750Z copying src/executorch/runtime/test/test_runtime.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test 2025-06-05T23:55:24.9270874Z running egg_info 2025-06-05T23:55:24.9271226Z creating executorch.egg-info 2025-06-05T23:55:24.9271656Z writing executorch.egg-info/PKG-INFO 2025-06-05T23:55:24.9272247Z writing dependency_links to executorch.egg-info/dependency_links.txt 2025-06-05T23:55:24.9272962Z writing entry points to executorch.egg-info/entry_points.txt 2025-06-05T23:55:24.9273606Z writing requirements to executorch.egg-info/requires.txt 2025-06-05T23:55:24.9274369Z writing top-level names to executorch.egg-info/top_level.txt 2025-06-05T23:55:24.9274997Z writing manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:55:24.9275616Z reading manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:55:24.9276222Z adding license file 'LICENSE' 2025-06-05T23:55:24.9276721Z writing manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:55:24.9277536Z copying src/executorch/exir/delegate.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:24.9278417Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:55:24.9279695Z copying src/executorch/schema/program.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:55:24.9280901Z copying src/executorch/schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:55:24.9282660Z copying src/executorch/backends/apple/coreml/executorchcoreml.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml 2025-06-05T23:55:24.9284702Z 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:55:24.9286383Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/schema 2025-06-05T23:55:24.9288262Z 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:55:24.9291111Z 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:55:24.9293561Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:55:24.9296213Z 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:55:24.9299065Z 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:55:24.9301936Z 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:55:24.9304395Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection 2025-06-05T23:55:24.9307481Z 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:55:24.9310583Z 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:55:24.9313687Z 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:55:24.9316100Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap 2025-06-05T23:55:24.9318362Z 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:55:24.9321227Z 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:55:24.9324212Z 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:55:24.9327106Z 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:55:24.9329979Z 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:55:24.9333062Z 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:55:24.9336384Z 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:55:24.9339519Z 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:55:24.9342554Z 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:55:24.9345623Z 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:55:24.9348608Z 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:55:24.9351505Z 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:55:24.9354469Z 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:55:24.9357395Z 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:55:24.9360257Z 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:55:24.9363406Z 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:55:24.9366352Z 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:55:24.9369267Z 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:55:24.9372323Z 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:55:24.9375284Z 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:55:24.9378232Z 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:55:24.9381821Z 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:55:24.9385176Z 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:55:24.9388161Z 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:55:24.9390662Z 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:55:24.9393255Z 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:55:24.9395888Z 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:55:24.9398595Z 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:55:24.9401266Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:55:24.9403845Z 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:55:24.9407074Z 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:55:24.9410190Z 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:55:24.9412621Z 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:55:24.9415184Z 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:55:24.9418440Z 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:55:24.9420795Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema 2025-06-05T23:55:24.9423226Z 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:55:24.9426495Z 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:55:24.9429199Z 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:55:24.9431835Z 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:55:24.9434775Z 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:55:24.9438231Z 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:55:24.9441139Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit 2025-06-05T23:55:24.9443897Z 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:55:24.9447545Z 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:55:24.9451438Z 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:55:24.9454451Z 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:55:24.9457320Z 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:55:24.9461205Z 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:55:24.9464692Z 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:55:24.9468936Z 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:55:24.9471999Z 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:55:24.9474462Z 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:55:24.9476952Z 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:55:24.9480393Z 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:55:24.9482883Z 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:55:24.9485408Z 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:55:24.9487913Z 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:55:24.9490255Z 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:55:24.9492857Z 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:55:24.9495532Z 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:55:24.9498860Z 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:55:24.9502085Z 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:55:24.9505685Z 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:55:24.9508931Z 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:55:24.9512348Z 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:55:24.9515016Z 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:55:24.9517902Z 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:55:24.9521860Z 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:55:24.9525697Z 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:55:24.9528584Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:55:24.9539790Z 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:55:24.9543328Z 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:55:24.9546705Z 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:55:24.9550146Z 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:55:24.9553526Z 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:55:24.9556884Z 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:55:24.9560455Z 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:55:24.9563891Z 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:55:24.9567301Z 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:55:24.9570756Z 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:55:24.9574211Z 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:55:24.9577709Z 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:55:24.9581184Z 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:55:24.9583756Z 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:55:24.9586279Z 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:55:24.9588794Z 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:55:24.9591436Z 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:55:24.9594817Z 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:55:24.9597368Z 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:55:24.9599895Z 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:55:24.9603128Z 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:55:24.9606525Z 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:55:24.9608890Z 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:55:24.9611455Z 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:55:24.9615259Z 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:55:24.9618277Z 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:55:24.9621289Z 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:55:24.9625152Z 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:55:24.9628426Z 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:55:24.9631988Z 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:55:24.9636616Z 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:55:24.9639951Z 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:55:24.9643363Z 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:55:24.9646622Z 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:55:24.9649754Z 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:55:24.9652927Z 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:55:24.9656168Z 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:55:24.9660131Z 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:55:24.9664204Z 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:55:24.9667200Z 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:55:24.9670095Z 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:55:24.9673931Z 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:55:24.9676517Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/schemas 2025-06-05T23:55:24.9678053Z 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:55:24.9680029Z 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:55:24.9682015Z copying src/executorch/backends/cadence/aot/functions.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:24.9683797Z 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:55:24.9685846Z copying src/executorch/backends/cadence/aot/functions_hifi.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:24.9687592Z 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:55:24.9689496Z 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:55:24.9691207Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/aot/ir 2025-06-05T23:55:24.9692593Z 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:55:24.9694529Z copying src/executorch/backends/vulkan/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:55:24.9696200Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:55:24.9698190Z 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:55:24.9700604Z 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:55:24.9702947Z 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:55:24.9705680Z 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:55:24.9707985Z 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:55:24.9710354Z 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:55:24.9712625Z 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:55:24.9715216Z 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:55:24.9717902Z 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:55:24.9720204Z 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:55:24.9722259Z 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:55:24.9724254Z 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:55:24.9726453Z 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:55:24.9728827Z 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:55:24.9731228Z 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:55:24.9733410Z 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:55:24.9735795Z 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:55:24.9738249Z 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:55:24.9740524Z 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:55:24.9742481Z 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:55:24.9744752Z 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:55:24.9747136Z 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:55:24.9749509Z 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:55:24.9751576Z 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:55:24.9753881Z 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:55:24.9756162Z 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:55:24.9758091Z 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:55:24.9760254Z 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:55:24.9762447Z 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:55:24.9764407Z 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:55:24.9771076Z 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:55:24.9773383Z 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:55:24.9775724Z 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:55:24.9777981Z 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:55:24.9780299Z 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:55:24.9782572Z 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:55:24.9784759Z 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:55:24.9786925Z 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:55:24.9789209Z 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:55:24.9791448Z 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:55:24.9793778Z 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:55:24.9795947Z 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:55:24.9798190Z 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:55:24.9800339Z 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:55:24.9802530Z 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:55:24.9805125Z 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:55:24.9807346Z 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:55:24.9809607Z 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:55:24.9811729Z 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:55:24.9813859Z 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:55:24.9816045Z 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:55:24.9818306Z 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:55:24.9820724Z 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:55:24.9823219Z 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:55:24.9825402Z 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:55:24.9827612Z 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:55:24.9829763Z 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:55:24.9831867Z 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:55:24.9834092Z 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:55:24.9836256Z 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:55:24.9838285Z 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:55:24.9840486Z 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:55:24.9842639Z 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:55:24.9844566Z 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:55:24.9846252Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl 2025-06-05T23:55:24.9847490Z 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:55:24.9849436Z 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:55:24.9851203Z 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:55:24.9852823Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:55:24.9854277Z 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:55:24.9856524Z 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:55:24.9858593Z 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:55:24.9860498Z 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:55:24.9862686Z 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:55:24.9864701Z 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:55:24.9866759Z copying src/executorch/backends/xnnpack/serialization/runtime_schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:55:24.9868785Z copying src/executorch/backends/xnnpack/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:55:24.9870641Z 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:55:24.9872719Z 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:55:24.9916888Z 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:55:24.9918947Z 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:55:24.9920924Z 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:55:24.9923401Z 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:55:24.9926021Z 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:55:24.9927790Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:55:24.9929597Z 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:55:24.9932080Z 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:55:24.9934414Z 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:55:24.9936719Z 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:55:24.9939173Z 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:55:24.9941644Z 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:55:24.9943801Z 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:55:24.9947487Z 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:55:24.9951490Z 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:55:24.9955486Z 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:55:24.9959693Z 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:55:24.9963953Z 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:55:24.9967498Z 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:55:24.9971289Z 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:55:24.9974082Z 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:55:24.9977254Z 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:55:24.9981142Z 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:55:24.9984455Z 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:55:24.9988180Z 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:55:24.9991669Z 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:55:24.9995460Z 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:55:24.9999449Z 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:55:25.0003385Z 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:55:25.0007495Z 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:55:25.0011306Z 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:55:25.0014473Z 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:55:25.0018359Z 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:55:25.0021880Z 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:55:25.0025543Z 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:55:25.0028911Z 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:55:25.0032231Z 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:55:25.0035997Z 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:55:25.0039883Z 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:55:25.0043366Z 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:55:25.0046071Z 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:55:25.0048630Z 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:55:25.0051014Z 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:55:25.0053100Z 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:55:25.0055524Z 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:55:25.0057868Z 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:55:25.0060079Z 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:55:25.0062079Z 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:55:25.0064287Z 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:55:25.0066502Z 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:55:25.0068561Z 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:55:25.0070726Z 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:55:25.0073038Z 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:55:25.0075409Z 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:55:25.0077713Z 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:55:25.0079987Z 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:55:25.0082439Z 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:55:25.0084818Z 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:55:25.0087036Z 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:55:25.0089363Z 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:55:25.0091746Z 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:55:25.0094116Z 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:55:25.0096591Z 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:55:25.0098987Z 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:55:25.0101367Z 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:55:25.0103916Z 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:55:25.0106184Z 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:55:25.0108692Z 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:55:25.0111011Z 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:55:25.0113289Z 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:55:25.0115730Z 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:55:25.0118138Z 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:55:25.0120504Z 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:55:25.0122562Z 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:55:25.0124916Z 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:55:25.0127323Z 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:55:25.0129613Z 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:55:25.0131764Z 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:55:25.0133844Z 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:55:25.0136122Z 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:55:25.0138420Z 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:55:25.0140845Z 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:55:25.0143260Z 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:55:25.0146037Z 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:55:25.0148576Z 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:55:25.0150804Z 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:55:25.0152971Z 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:55:25.0155121Z 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:55:25.0157306Z 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:55:25.1177460Z 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:55:25.1179896Z 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:55:25.1182513Z 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:55:25.1185124Z 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:55:25.1187845Z 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:55:25.1190407Z 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:55:25.1192797Z 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:55:25.1195063Z 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:55:25.1197393Z 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:55:25.1199738Z 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:55:25.1202079Z 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:55:25.1204773Z 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:55:25.1207191Z 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:55:25.1209607Z 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:55:25.1211816Z 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:55:25.1214082Z 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:55:25.1216522Z 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:55:25.1218819Z 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:55:25.1221052Z 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:55:25.1222977Z copying src/executorch/devtools/etdump/etdump_schema_flatcc.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:55:25.1224532Z copying src/executorch/devtools/etdump/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:55:25.1226417Z 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:55:25.1228282Z 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:55:25.1230190Z 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:55:25.1232191Z 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:55:25.1234095Z 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:55:25.1235817Z 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:55:25.1237769Z 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:55:25.1239486Z copying src/executorch/exir/dialects/edge/edge.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:55:25.1241041Z copying src/executorch/extension/pybindings/pybindings.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:55:25.1242877Z 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:55:25.1244815Z 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:55:25.1247046Z 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:55:25.1249797Z 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:55:25.1252103Z copying src/executorch/extension/training/pybindings/_training_lib.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-06-05T23:55:25.1253855Z copying src/executorch/kernels/quantized/quantized.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:55:25.1255829Z 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:55:25.1257070Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/kernel/test 2025-06-05T23:55:25.1258504Z copying src/executorch/runtime/kernel/test/functions.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/kernel/test 2025-06-05T23:55:25.1259732Z copying schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:25.1261014Z copying schema/program.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:25.1262338Z 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:55:25.1264186Z copying devtools/bundled_program/schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-06-05T23:55:25.1265325Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/share/cmake 2025-06-05T23:55:25.1266760Z copying tools/cmake/executorch-wheel-config.cmake -> pip-out/lib.linux-x86_64-cpython-310/executorch/share/cmake/executorch-config.cmake 2025-06-05T23:55:25.1268022Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1269340Z copying runtime/core/array_ref.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1270577Z copying runtime/core/data_loader.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1272196Z copying runtime/core/defines.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1273385Z copying runtime/core/error.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1274743Z copying runtime/core/evalue.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1276036Z copying runtime/core/event_tracer.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1331567Z copying runtime/core/event_tracer_hooks.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1333275Z copying runtime/core/event_tracer_hooks_delegate.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1334731Z copying runtime/core/freeable_buffer.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1336303Z copying runtime/core/function_ref.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1337635Z copying runtime/core/hierarchical_allocator.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1339253Z copying runtime/core/memory_allocator.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1340647Z copying runtime/core/named_data_map.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1342005Z copying runtime/core/result.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1343267Z copying runtime/core/span.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1344614Z copying runtime/core/tag.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1345967Z copying runtime/core/tensor_layout.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1347407Z copying runtime/core/tensor_shape_dynamism.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.1348769Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten 2025-06-05T23:55:25.1350151Z 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:55:25.1351720Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:55:25.1353282Z 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:55:25.1355356Z 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:55:25.1357052Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:55:25.1358453Z 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:55:25.1360343Z 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:55:25.1362224Z 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:55:25.1363997Z 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:55:25.1366482Z 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:55:25.1368098Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:55:25.1369560Z 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:55:25.1371424Z 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:55:25.1373295Z 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:55:25.1374940Z 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:55:25.1376784Z 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:55:25.1378579Z 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:55:25.1380121Z 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:55:25.1381959Z 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:55:25.1383747Z 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:55:25.1385328Z 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:55:25.1387176Z 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:55:25.1388951Z 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:55:25.1390571Z 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:55:25.1392464Z 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:55:25.1394090Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:55:25.1395809Z 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:55:25.1398006Z 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:55:25.1399839Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:55:25.1401462Z 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:55:25.1403858Z 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:55:25.1405998Z 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:55:25.1408239Z 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:55:25.1410299Z 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:55:25.1412442Z 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:55:25.1414731Z 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:55:25.1416890Z 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:55:25.1418997Z 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:55:25.1420932Z 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:55:25.1422901Z 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:55:25.1424847Z 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:55:25.1426347Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:25.1427510Z copying runtime/kernel/kernel_includes.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:25.2152090Z copying runtime/kernel/kernel_runtime_context.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:25.2153873Z copying runtime/kernel/operator_registry.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:25.2155532Z copying runtime/kernel/thread_parallel_interface.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:25.2156798Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/test 2025-06-05T23:55:25.2158286Z copying runtime/kernel/test/test_util.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/test 2025-06-05T23:55:25.2159620Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:25.2160982Z copying runtime/platform/abort.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:25.2162557Z copying runtime/platform/assert.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:25.2163983Z copying runtime/platform/clock.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:25.2165637Z copying runtime/platform/compat_unistd.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:25.2167251Z copying runtime/platform/compiler.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:25.2168651Z copying runtime/platform/log.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:25.2170106Z copying runtime/platform/platform.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:25.2171858Z copying runtime/platform/profiler.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:25.2173182Z copying runtime/platform/runtime.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:25.2174827Z copying runtime/platform/system.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:25.2176291Z copying runtime/platform/types.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:25.2177671Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-06-05T23:55:25.2179130Z copying runtime/platform/test/pal_spy.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-06-05T23:55:25.2180600Z copying runtime/platform/test/stub_platform.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-06-05T23:55:25.2182107Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-06-05T23:55:25.2183679Z 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:55:25.2185374Z copying extension/kernel_util/meta_programming.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-06-05T23:55:25.2186947Z copying extension/kernel_util/type_list.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-06-05T23:55:25.2188364Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:55:25.2189502Z copying extension/tensor/tensor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:55:25.2191075Z copying extension/tensor/tensor_accessor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:55:25.2192543Z copying extension/tensor/tensor_ptr.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:55:25.2193972Z copying extension/tensor/tensor_ptr_maker.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:55:25.2195401Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:55:25.2196736Z copying extension/threadpool/cpuinfo_utils.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:55:25.2198419Z copying extension/threadpool/threadpool.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:55:25.2200125Z copying extension/threadpool/threadpool_guard.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:55:25.2201112Z running build_ext 2025-06-05T23:55:25.2201847Z creating /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin 2025-06-05T23:55:25.2203795Z 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:55:25.2205851Z 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:55:25.2207811Z 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:55:25.2210314Z 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:55:25.2213163Z 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:55:25.2216016Z 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:55:25.2217643Z installing to pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:55:25.2218112Z running install 2025-06-05T23:55:25.2218461Z running install_lib 2025-06-05T23:55:25.2219039Z creating pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:55:25.2219588Z creating pip-out/bdist.linux-x86_64/wheel/executorch 2025-06-05T23:55:25.2220195Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen 2025-06-05T23:55:25.2221496Z 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:55:25.2222862Z 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:55:25.2224456Z 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:55:25.2226071Z 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:55:25.2227120Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/api 2025-06-05T23:55:25.2228437Z 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:55:25.2229991Z 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:55:25.2231663Z 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:55:25.2233209Z 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:55:25.2234510Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/api/types 2025-06-05T23:55:25.2235932Z 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:55:25.2237685Z 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:55:25.2239526Z 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:55:25.2240934Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/test 2025-06-05T23:55:25.2242155Z 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:55:25.2244072Z 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:55:25.2246026Z 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:55:25.2247938Z 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:55:25.2297780Z 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:55:25.2300084Z 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:55:25.2301576Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/tools 2025-06-05T23:55:25.2303060Z 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:55:25.2305320Z 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:55:25.2307189Z 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:55:25.2309132Z 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:55:25.2311099Z 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:55:25.2313104Z 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:55:25.2314987Z 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:55:25.2316230Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/tools/test 2025-06-05T23:55:25.2317843Z 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:55:25.2320017Z 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:55:25.2322251Z 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:55:25.2324325Z 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:55:25.2325648Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools 2025-06-05T23:55:25.2326806Z 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:55:25.2327986Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/backend_debug 2025-06-05T23:55:25.2329467Z 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:55:25.2331264Z 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:55:25.2332863Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/backend_debug/tests 2025-06-05T23:55:25.2334419Z 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:55:25.2336190Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program 2025-06-05T23:55:25.2337820Z 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:55:25.2339693Z 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:55:25.2341883Z 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:55:25.2343595Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/schema 2025-06-05T23:55:25.2345164Z 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:55:25.2347608Z 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:55:25.2349321Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/schema/test 2025-06-05T23:55:25.2351158Z 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:55:25.2353572Z 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:55:25.2355976Z 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:55:25.2357547Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/serialize 2025-06-05T23:55:25.2359287Z 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:55:25.2361079Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/serialize/test 2025-06-05T23:55:25.2362792Z 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:55:25.2365343Z 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:55:25.2367999Z 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:55:25.2369741Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/test 2025-06-05T23:55:25.2371387Z 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:55:25.2373649Z 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:55:25.2375751Z 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:55:25.2377410Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/util 2025-06-05T23:55:25.2379016Z 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:55:25.2380498Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/debug_format 2025-06-05T23:55:25.2382067Z 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:55:25.2383995Z 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:55:25.2385426Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etdump 2025-06-05T23:55:25.2386919Z 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:55:25.2388789Z 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:55:25.2390233Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etdump/tests 2025-06-05T23:55:25.2391877Z 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:55:25.2393791Z 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:55:25.2395645Z 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:55:25.2397069Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etrecord 2025-06-05T23:55:25.2447435Z 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:55:25.2449404Z 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:55:25.2450947Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etrecord/tests 2025-06-05T23:55:25.2452332Z 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:55:25.2453857Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/inspector 2025-06-05T23:55:25.2455195Z 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:55:25.2457092Z 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:55:25.2458991Z 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:55:25.2461012Z 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:55:25.2462855Z 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:55:25.2464468Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/inspector/tests 2025-06-05T23:55:25.2466037Z 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:55:25.2468276Z 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:55:25.2470511Z 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:55:25.2472695Z 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:55:25.2475167Z 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:55:25.2476758Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/size_analysis_tool 2025-06-05T23:55:25.2478283Z 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:55:25.2480555Z 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:55:25.2482255Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/visualization 2025-06-05T23:55:25.2483559Z 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:55:25.2485658Z 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:55:25.2487981Z 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:55:25.2489416Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir 2025-06-05T23:55:25.2490568Z 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:55:25.2491986Z 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:55:25.2493416Z 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:55:25.2495103Z 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:55:25.2496524Z 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:55:25.2498093Z 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:55:25.2499763Z 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:55:25.2501164Z 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:55:25.2502748Z 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:55:25.2504311Z 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:55:25.2506065Z 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:55:25.2507658Z 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:55:25.2509209Z 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:55:25.2510836Z 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:55:25.2512206Z 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:55:25.2513777Z 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:55:25.2515407Z 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:55:25.2516888Z 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:55:25.2518327Z 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:55:25.2519838Z 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:55:25.2521451Z 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:55:25.2522799Z 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:55:25.2524375Z 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:55:25.2525913Z 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:55:25.2527004Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/_serialize 2025-06-05T23:55:25.2528220Z 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:55:25.2529925Z 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:55:25.2531825Z 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:55:25.2533650Z 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:55:25.2535489Z 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:55:25.2537395Z 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:55:25.2539266Z 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:55:25.2540916Z 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:55:25.2542814Z 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:55:25.2579223Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/_serialize/test 2025-06-05T23:55:25.2580988Z 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:55:25.2582719Z 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:55:25.2584624Z 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:55:25.2586679Z 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:55:25.2588731Z 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:55:25.2590720Z 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:55:25.2592446Z 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:55:25.2593879Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend 2025-06-05T23:55:25.2595152Z 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:55:25.2597064Z 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:55:25.2598981Z 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:55:25.2600832Z 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:55:25.2602710Z 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:55:25.2604735Z 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:55:25.2606168Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/canonical_partitioners 2025-06-05T23:55:25.2607928Z 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:55:25.2610511Z 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:55:25.2613244Z 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:55:25.2615939Z 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:55:25.2618444Z 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:55:25.2620283Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test 2025-06-05T23:55:25.2621923Z 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:55:25.2624105Z 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:55:25.2626328Z 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:55:25.2628597Z 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:55:25.2630836Z 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:55:25.2632863Z 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:55:25.2635028Z 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:55:25.2636975Z 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:55:25.2638988Z 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:55:25.2640911Z 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:55:25.2642876Z 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:55:25.2644942Z 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:55:25.2646805Z 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:55:25.2648741Z 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:55:25.2650765Z 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:55:25.2652783Z 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:55:25.2654829Z 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:55:25.2656673Z 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:55:25.2658896Z 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:55:25.2660847Z 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:55:25.2662181Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test/demos 2025-06-05T23:55:25.2663817Z 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:55:25.2666163Z 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:55:25.2667831Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test/demos/rpc 2025-06-05T23:55:25.2669396Z 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:55:25.2671941Z 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:55:25.2674338Z 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:55:25.2676059Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/capture 2025-06-05T23:55:25.2677292Z 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:55:25.2733928Z 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:55:25.2735943Z 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:55:25.2737761Z 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:55:25.2738899Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects 2025-06-05T23:55:25.2740238Z 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:55:25.2741770Z 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:55:25.2743115Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/backend 2025-06-05T23:55:25.2744378Z 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:55:25.2746003Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/backend/test 2025-06-05T23:55:25.2747577Z 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:55:25.2749100Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge 2025-06-05T23:55:25.2750620Z 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:55:25.2751857Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/arg 2025-06-05T23:55:25.2753457Z 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:55:25.2755377Z 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:55:25.2756833Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/dtype 2025-06-05T23:55:25.2758470Z 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:55:25.2760404Z 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:55:25.2762508Z 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:55:25.2764158Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/op 2025-06-05T23:55:25.2765461Z 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:55:25.2767486Z 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:55:25.2769124Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/op/test 2025-06-05T23:55:25.2770497Z 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:55:25.2772321Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/spec 2025-06-05T23:55:25.2773849Z 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:55:25.2775824Z 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:55:25.2777522Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/test 2025-06-05T23:55:25.2779084Z 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:55:25.2781138Z 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:55:25.2783145Z 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:55:25.2784677Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/test 2025-06-05T23:55:25.2785982Z 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:55:25.2787623Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/emit 2025-06-05T23:55:25.2788734Z 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:55:25.2790443Z 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:55:25.2792252Z 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:55:25.2793364Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/emit/test 2025-06-05T23:55:25.2794835Z 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:55:25.2796004Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/operator 2025-06-05T23:55:25.2797512Z 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:55:25.2799216Z 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:55:25.2801066Z 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:55:25.2802529Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/operator/test 2025-06-05T23:55:25.2804071Z 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:55:25.2805505Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/passes 2025-06-05T23:55:25.2806762Z 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:55:25.2808670Z 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:55:25.2810545Z 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:55:25.2812271Z 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:55:25.2814289Z 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:55:25.2816483Z 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:55:25.2818665Z 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:55:25.2820781Z 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:55:25.2822672Z 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:55:25.2824441Z 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:55:25.2836656Z 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:55:25.2839147Z 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:55:25.2841150Z 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:55:25.2842977Z 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:55:25.2876848Z 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:55:25.2878744Z 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:55:25.2880820Z 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:55:25.2882623Z 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:55:25.2884256Z 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:55:25.2886073Z 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:55:25.2887874Z 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:55:25.2889551Z 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:55:25.2891419Z 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:55:25.2893456Z 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:55:25.2895529Z 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:55:25.2897613Z 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:55:25.2899577Z 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:55:25.2901600Z 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:55:25.2903525Z 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:55:25.2905442Z 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:55:25.2907259Z 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:55:25.2909095Z 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:55:25.2910879Z 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:55:25.2912217Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/program 2025-06-05T23:55:25.2913466Z 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:55:25.2915103Z 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:55:25.2916936Z 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:55:25.2918094Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/program/test 2025-06-05T23:55:25.2919457Z 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:55:25.2921217Z 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:55:25.2923065Z 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:55:25.2924415Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/serde 2025-06-05T23:55:25.2925487Z 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:55:25.2927158Z 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:55:25.2928759Z 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:55:25.2930343Z 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:55:25.2931995Z 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:55:25.2933536Z 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:55:25.2934785Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/tests 2025-06-05T23:55:25.2935896Z 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:55:25.2937510Z 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:55:25.2939631Z 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:55:25.2941310Z 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:55:25.2943076Z 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:55:25.2944837Z 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:55:25.2946718Z 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:55:25.2948343Z 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:55:25.2950221Z 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:55:25.2952054Z 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:55:25.2953739Z 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:55:25.2955422Z 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:55:25.2957069Z 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:55:25.2958721Z 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:55:25.2960490Z 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:55:25.2962421Z 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:55:25.2964244Z 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:55:25.2965837Z 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:55:25.2967588Z 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:55:25.2969245Z 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:55:25.3026060Z 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:55:25.3027958Z 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:55:25.3029909Z 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:55:25.3031675Z 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:55:25.3033595Z 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:55:25.3035646Z 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:55:25.3037778Z 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:55:25.3039760Z 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:55:25.3041513Z 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:55:25.3043279Z 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:55:25.3045075Z 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:55:25.3046919Z 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:55:25.3048598Z 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:55:25.3049797Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/verification 2025-06-05T23:55:25.3051174Z 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:55:25.3052973Z 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:55:25.3054814Z 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:55:25.3056733Z 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:55:25.3058124Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/verification/test 2025-06-05T23:55:25.3059489Z 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:55:25.3061284Z 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:55:25.3062324Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime 2025-06-05T23:55:25.3063460Z 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:55:25.3064532Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/test 2025-06-05T23:55:25.3065716Z 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:55:25.3066939Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/kernel 2025-06-05T23:55:25.3067689Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/kernel/test 2025-06-05T23:55:25.3069237Z 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:55:25.3070453Z creating pip-out/bdist.linux-x86_64/wheel/executorch/util 2025-06-05T23:55:25.3071742Z 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:55:25.3073461Z 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:55:25.3074975Z 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:55:25.3076123Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends 2025-06-05T23:55:25.3076907Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm 2025-06-05T23:55:25.3078043Z 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:55:25.3079743Z 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:55:25.3081397Z 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:55:25.3083072Z 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:55:25.3084842Z 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:55:25.3086583Z 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:55:25.3088223Z 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:55:25.3090155Z 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:55:25.3091959Z 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:55:25.3093700Z 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:55:25.3095673Z 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:55:25.3097463Z 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:55:25.3099252Z 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:55:25.3100748Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/_passes 2025-06-05T23:55:25.3102240Z 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:55:25.3104253Z 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:55:25.3106545Z 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:55:25.3108934Z 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:55:25.3110977Z 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:55:25.3112948Z 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:55:25.3114970Z 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:55:25.3116949Z 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:55:25.3119181Z 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:55:25.3121274Z 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:55:25.3146349Z 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:55:25.3148574Z 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:55:25.3150827Z 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:55:25.3153053Z 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:55:25.3155215Z 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:55:25.3157242Z 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:55:25.3159195Z 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:55:25.3161247Z 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:55:25.3163264Z 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:55:25.3165255Z 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:55:25.3167377Z 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:55:25.3169244Z 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:55:25.3171500Z 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:55:25.3173770Z 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:55:25.3175993Z 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:55:25.3178140Z 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:55:25.3180252Z 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:55:25.3182214Z 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:55:25.3184374Z 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:55:25.3186357Z 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:55:25.3188357Z 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:55:25.3190221Z 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:55:25.3192316Z 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:55:25.3194510Z 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:55:25.3196706Z 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:55:25.3198941Z 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:55:25.3201177Z 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:55:25.3203166Z 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:55:25.3205423Z 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:55:25.3207701Z 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:55:25.3210028Z 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:55:25.3212227Z 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:55:25.3214390Z 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:55:25.3216607Z 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:55:25.3218739Z 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:55:25.3220966Z 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:55:25.3223043Z 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:55:25.3224854Z 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:55:25.3227078Z 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:55:25.3229188Z 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:55:25.3231327Z 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:55:25.3233442Z 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:55:25.3235691Z 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:55:25.3237421Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/operator_support 2025-06-05T23:55:25.3238977Z 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:55:25.3241285Z 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:55:25.3271270Z 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:55:25.3273664Z 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:55:25.3276060Z 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:55:25.3278471Z 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:55:25.3281089Z 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:55:25.3283357Z 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:55:25.3286024Z 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:55:25.3288562Z 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:55:25.3290854Z 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:55:25.3292392Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/operators 2025-06-05T23:55:25.3293901Z 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:55:25.3295983Z 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:55:25.3297975Z 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:55:25.3299746Z 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:55:25.3301753Z 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:55:25.3303918Z 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:55:25.3305883Z 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:55:25.3307669Z 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:55:25.3309710Z 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:55:25.3311648Z 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:55:25.3313640Z 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:55:25.3315453Z 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:55:25.3317424Z 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:55:25.3319417Z 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:55:25.3321277Z 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:55:25.3323026Z 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:55:25.3324998Z 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:55:25.3326891Z 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:55:25.3328740Z 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:55:25.3330581Z 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:55:25.3332557Z 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:55:25.3334972Z 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:55:25.3337086Z 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:55:25.3339425Z 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:55:25.3341336Z 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:55:25.3343381Z 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:55:25.3345411Z 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:55:25.3347443Z 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:55:25.3349341Z 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:55:25.3351356Z 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:55:25.3353438Z 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:55:25.3355503Z 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:55:25.3357515Z 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:55:25.3359441Z 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:55:25.3361545Z 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:55:25.3363491Z 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:55:25.3365388Z 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:55:25.3367233Z 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:55:25.3400954Z 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:55:25.3403001Z 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:55:25.3405204Z 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:55:25.3407124Z 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:55:25.3409351Z 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:55:25.3411336Z 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:55:25.3413480Z 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:55:25.3415780Z 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:55:25.3417851Z 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:55:25.3419793Z 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:55:25.3421761Z 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:55:25.3423899Z 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:55:25.3425949Z 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:55:25.3428035Z 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:55:25.3429411Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/quantizer 2025-06-05T23:55:25.3430882Z 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:55:25.3432843Z 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:55:25.3434827Z 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:55:25.3437001Z 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:55:25.3439201Z 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:55:25.3440725Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/scripts 2025-06-05T23:55:25.3442106Z 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:55:25.3443553Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test 2025-06-05T23:55:25.3444829Z 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:55:25.3446753Z 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:55:25.3448735Z 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:55:25.3450502Z 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:55:25.3452156Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/misc 2025-06-05T23:55:25.3453635Z 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:55:25.3455913Z 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:55:25.3458081Z 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:55:25.3460215Z 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:55:25.3462402Z 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:55:25.3464499Z 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:55:25.3466628Z 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:55:25.3468732Z 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:55:25.3470960Z 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:55:25.3473344Z 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:55:25.3475573Z 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:55:25.3477051Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/models 2025-06-05T23:55:25.3478569Z 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:55:25.3480731Z 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:55:25.3482858Z 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:55:25.3484893Z 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:55:25.3486911Z 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:55:25.3489134Z 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:55:25.3491321Z 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:55:25.3493593Z 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:55:25.3495766Z 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:55:25.3497944Z 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:55:25.3528878Z 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:55:25.3530414Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/ops 2025-06-05T23:55:25.3532112Z 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:55:25.3534015Z 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:55:25.3536122Z 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:55:25.3538261Z 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:55:25.3540492Z 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:55:25.3542665Z 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:55:25.3544760Z 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:55:25.3546632Z 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:55:25.3548745Z 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:55:25.3550798Z 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:55:25.3552877Z 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:55:25.3554772Z 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:55:25.3556705Z 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:55:25.3558805Z 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:55:25.3560759Z 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:55:25.3562803Z 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:55:25.3564768Z 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:55:25.3566935Z 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:55:25.3569127Z 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:55:25.3571157Z 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:55:25.3573199Z 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:55:25.3575386Z 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:55:25.3577590Z 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:55:25.3579643Z 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:55:25.3581706Z 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:55:25.3583726Z 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:55:25.3585741Z 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:55:25.3587768Z 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:55:25.3589913Z 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:55:25.3592025Z 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:55:25.3593971Z 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:55:25.3596018Z 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:55:25.3598017Z 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:55:25.3600164Z 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:55:25.3602368Z 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:55:25.3604771Z 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:55:25.3606920Z 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:55:25.3609041Z 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:55:25.3611318Z 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:55:25.3613432Z 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:55:25.3615569Z 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:55:25.3617473Z 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:55:25.3619434Z 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:55:25.3621440Z 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:55:25.3623341Z 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:55:25.3625365Z 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:55:25.3627457Z 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:55:25.3656594Z 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:55:25.3658756Z 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:55:25.3660886Z 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:55:25.3662953Z 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:55:25.3664902Z 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:55:25.3666765Z 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:55:25.3668715Z 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:55:25.3670653Z 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:55:25.3672467Z 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:55:25.3674334Z 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:55:25.3676287Z 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:55:25.3678256Z 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:55:25.3680380Z 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:55:25.3682423Z 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:55:25.3684555Z 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:55:25.3686587Z 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:55:25.3688669Z 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:55:25.3690579Z 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:55:25.3692611Z 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:55:25.3694741Z 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:55:25.3696783Z 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:55:25.3698658Z 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:55:25.3700663Z 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:55:25.3702789Z 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:55:25.3704976Z 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:55:25.3706815Z 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:55:25.3708909Z 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:55:25.3710864Z 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:55:25.3712862Z 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:55:25.3714865Z 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:55:25.3717111Z 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:55:25.3719216Z 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:55:25.3721469Z 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:55:25.3723473Z 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:55:25.3725772Z 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:55:25.3727865Z 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:55:25.3729965Z 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:55:25.3732294Z 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:55:25.3734502Z 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:55:25.3736694Z 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:55:25.3738773Z 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:55:25.3740888Z 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:55:25.3742993Z 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:55:25.3744400Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/passes 2025-06-05T23:55:25.3746040Z 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:55:25.3748374Z 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:55:25.3750989Z 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:55:25.3754398Z 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:55:25.3756420Z 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:55:25.3758439Z 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:55:25.3760642Z 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:55:25.3762823Z 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:55:25.3764985Z 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:55:25.3767277Z 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:55:25.3769544Z 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:55:25.3771730Z 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:55:25.3773876Z 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:55:25.3776097Z 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:55:25.3778349Z 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:55:25.3780581Z 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:55:25.3782986Z 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:55:25.3785281Z 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:55:25.3787462Z 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:55:25.3789808Z 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:55:25.3791934Z 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:55:25.3794343Z 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:55:25.3796105Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/quantizer 2025-06-05T23:55:25.3797829Z 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:55:25.3799614Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/tester 2025-06-05T23:55:25.3801297Z 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:55:25.3803860Z 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:55:25.3806239Z 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:55:25.3808407Z 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:55:25.3810172Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/tosautil 2025-06-05T23:55:25.3811755Z 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:55:25.3813287Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/util 2025-06-05T23:55:25.3814965Z 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:55:25.3816497Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party 2025-06-05T23:55:25.3817441Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib 2025-06-05T23:55:25.3819878Z 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:55:25.3822646Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python 2025-06-05T23:55:25.3824039Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:55:25.3826136Z 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:55:25.3829227Z 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:55:25.3831542Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:55:25.3833710Z 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:55:25.3836841Z 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:55:25.3839704Z 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:55:25.3842609Z 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:55:25.3845627Z 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:55:25.3848456Z 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:55:25.3851300Z 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:55:25.3854125Z 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:55:25.3857690Z 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:55:25.3861461Z 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:55:25.3864624Z 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:55:25.3867633Z 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:55:25.3870652Z 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:55:25.3873406Z 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:55:25.3876295Z 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:55:25.3879086Z 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:55:25.3882079Z 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:55:25.3884932Z 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:55:25.3888775Z 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:55:25.3892193Z 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:55:25.3895401Z 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:55:25.3898385Z 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:55:25.3901374Z 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:55:25.3904557Z 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:55:25.3907616Z 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:55:25.3910922Z 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:55:25.3914017Z 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:55:25.3917090Z 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:55:25.3920140Z 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:55:25.3923166Z 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:55:25.3926203Z 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:55:25.3929663Z 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:55:25.3933024Z 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:55:25.3936280Z 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:55:25.3938329Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test 2025-06-05T23:55:25.3939744Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test/scripts 2025-06-05T23:55:25.3942299Z 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:55:25.3944677Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit 2025-06-05T23:55:25.3946932Z 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:55:25.3949364Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party 2025-06-05T23:55:25.3950860Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:55:25.3953523Z 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:55:25.3955883Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan 2025-06-05T23:55:25.3958860Z 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:55:25.3961363Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package 2025-06-05T23:55:25.3964136Z 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:55:25.3966707Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:55:25.3969327Z 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:55:25.3973285Z 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:55:25.3976100Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp 2025-06-05T23:55:25.3979010Z 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:55:25.3981996Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp 2025-06-05T23:55:25.3984808Z 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:55:25.3987562Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart 2025-06-05T23:55:25.3990615Z 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:55:25.3993917Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go 2025-06-05T23:55:25.3996628Z 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:55:25.3999090Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java 2025-06-05T23:55:25.4001741Z 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:55:25.4004619Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin 2025-06-05T23:55:25.4007524Z 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:55:25.4010319Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster 2025-06-05T23:55:25.4012922Z 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:55:25.4015808Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua 2025-06-05T23:55:25.4018336Z 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:55:25.4021037Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim 2025-06-05T23:55:25.4023542Z 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:55:25.4026180Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php 2025-06-05T23:55:25.4028830Z 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:55:25.4031515Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:55:25.4034395Z 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:55:25.4038009Z 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:55:25.4041552Z 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:55:25.4045624Z 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:55:25.4048318Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust 2025-06-05T23:55:25.4051020Z 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:55:25.4053790Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift 2025-06-05T23:55:25.4056538Z 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:55:25.4059132Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts 2025-06-05T23:55:25.4061786Z 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:55:25.4064314Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema 2025-06-05T23:55:25.4067029Z 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:55:25.4069551Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:55:25.4072079Z 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:55:25.4075380Z 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:55:25.4078071Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:55:25.4080747Z 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:55:25.4084360Z 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:55:25.4088054Z 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:55:25.4091858Z 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:55:25.4095855Z 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:55:25.4100027Z 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:55:25.4104526Z 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:55:25.4108386Z 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:55:25.4112334Z 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:55:25.4116228Z 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:55:25.4119285Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:55:25.4122404Z 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:55:25.4126731Z 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:55:25.4130729Z 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:55:25.4134790Z 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:55:25.4138781Z 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:55:25.4142844Z 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:55:25.4146901Z 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:55:25.4151157Z 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:55:25.4155713Z 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:55:25.4159888Z 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:55:25.4163994Z 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:55:25.4168019Z 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:55:25.4171993Z 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:55:25.4175777Z 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:55:25.4178285Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:55:25.4181120Z 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:55:25.4184732Z 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:55:25.4187283Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:55:25.4189984Z 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:55:25.4193586Z 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:55:25.4197501Z 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:55:25.4201298Z 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:55:25.4205589Z 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:55:25.4208591Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:55:25.4212106Z 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:55:25.4216284Z 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:55:25.4220128Z 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:55:25.4222860Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:55:25.4225713Z 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:55:25.4229449Z 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:55:25.4233353Z 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:55:25.4236291Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:55:25.4239267Z 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:55:25.4243140Z 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:55:25.4247371Z 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:55:25.4252172Z 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:55:25.4256218Z 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:55:25.4260411Z 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:55:25.4264289Z 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:55:25.4268158Z 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:55:25.4272284Z 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:55:25.4277113Z 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:55:25.4281184Z 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:55:25.4285374Z 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:55:25.4289421Z 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:55:25.4293334Z 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:55:25.4297682Z 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:55:25.4301801Z 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:55:25.4306011Z 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:55:25.4310039Z 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:55:25.4314059Z 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:55:25.4318353Z 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:55:25.4322491Z 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:55:25.4326585Z 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:55:25.4330350Z 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:55:25.4333673Z 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:55:25.4338276Z 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:55:25.4343020Z 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:55:25.4347525Z 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:55:25.4352331Z 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:55:25.4357120Z 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:55:25.4361572Z 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:55:25.4364457Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2 2025-06-05T23:55:25.4367426Z 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:55:25.4371280Z 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:55:25.4374190Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:55:25.4377377Z 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:55:25.4381211Z 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:55:25.4385489Z 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:55:25.4388619Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:55:25.4391181Z 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:55:25.4394878Z 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:55:25.4398624Z 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:55:25.4402140Z 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:55:25.4405982Z 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:55:25.4409629Z 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:55:25.4413156Z 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:55:25.4416770Z 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:55:25.4420264Z 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:55:25.4422826Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:55:25.4425495Z 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:55:25.4429074Z 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:55:25.4432648Z 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:55:25.4435502Z 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:55:25.4438673Z 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:55:25.4442399Z 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:55:25.4445062Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim 2025-06-05T23:55:25.4447592Z 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:55:25.4450398Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:55:25.4453831Z 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:55:25.4457995Z 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:55:25.4461875Z 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:55:25.4464723Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:55:25.4467323Z 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:55:25.4470885Z 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:55:25.4473843Z 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:55:25.4476848Z 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:55:25.4480117Z 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:55:25.4483652Z 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:55:25.4488017Z 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:55:25.4492372Z 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:55:25.4495485Z 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:55:25.4498516Z 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:55:25.4502663Z 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:55:25.4506020Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test 2025-06-05T23:55:25.4508109Z 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:55:25.4511285Z 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:55:25.4515258Z 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:55:25.4519240Z 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:55:25.4523765Z 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:55:25.4527214Z 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:55:25.4530829Z 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:55:25.4535933Z 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:55:25.4540929Z 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:55:25.4545966Z 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:55:25.4550755Z 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:55:25.4554396Z 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:55:25.4557741Z 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:55:25.4562307Z 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:55:25.4566600Z 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:55:25.4570691Z 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:55:25.4574886Z 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:55:25.4578542Z 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:55:25.4582246Z 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:55:25.4586010Z 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:55:25.4589768Z 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:55:25.4593482Z 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:55:25.4597495Z 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:55:25.4613664Z 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:55:25.4617862Z 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:55:25.4621809Z 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:55:25.4625598Z 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:55:25.4629704Z 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:55:25.4633388Z 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:55:25.4637025Z 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:55:25.4640764Z 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:55:25.4644663Z 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:55:25.4648364Z 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:55:25.4652212Z 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:55:25.4654049Z 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:55:25.4655876Z 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:55:25.4657833Z 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:55:25.4659675Z 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:55:25.4661602Z 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:55:25.4662611Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit 2025-06-05T23:55:25.4664674Z 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:55:25.4665839Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution 2025-06-05T23:55:25.4667924Z 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:55:25.4669843Z 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:55:25.4670806Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test 2025-06-05T23:55:25.4672860Z 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:55:25.4674880Z 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:55:25.4675794Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test 2025-06-05T23:55:25.4677812Z 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:55:25.4679772Z 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:55:25.4680689Z 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:55:25.4682561Z 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:55:25.4684409Z 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:55:25.4685280Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field 2025-06-05T23:55:25.4687168Z 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:55:25.4688063Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums 2025-06-05T23:55:25.4689936Z 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:55:25.4690802Z 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:55:25.4692652Z 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:55:25.4694503Z 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:55:25.4696454Z 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:55:25.4698347Z 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:55:25.4699321Z 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:55:25.4701374Z 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:55:25.4703484Z 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:55:25.4705715Z 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:55:25.4706511Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:55:25.4708373Z 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:55:25.4710577Z 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:55:25.4712462Z 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:55:25.4714323Z 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:55:25.4716141Z 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:55:25.4717975Z 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:55:25.4719759Z 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:55:25.4721578Z 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:55:25.4723419Z 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:55:25.4725278Z 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:55:25.4727307Z 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:55:25.4729196Z 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:55:25.4729997Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector 2025-06-05T23:55:25.4731905Z 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:55:25.4732705Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift 2025-06-05T23:55:25.4733681Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests 2025-06-05T23:55:25.4734655Z 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:55:25.4736862Z 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:55:25.4739297Z 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:55:25.4740255Z 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:55:25.4741324Z 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:55:25.4743533Z 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:55:25.4744349Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc 2025-06-05T23:55:25.4745092Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests 2025-06-05T23:55:25.4746961Z 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:55:25.4747777Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples 2025-06-05T23:55:25.4748689Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python 2025-06-05T23:55:25.4749632Z 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:55:25.4751846Z 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:55:25.4753979Z 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:55:25.4755150Z 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:55:25.4757249Z 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:55:25.4759387Z 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:55:25.4761454Z 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:55:25.4763496Z 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:55:25.4765083Z 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:55:25.4765850Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples 2025-06-05T23:55:25.4766741Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter 2025-06-05T23:55:25.4768424Z 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:55:25.4769059Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java 2025-06-05T23:55:25.4769716Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src 2025-06-05T23:55:25.4770545Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test 2025-06-05T23:55:25.4771266Z 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:55:25.4772065Z 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:55:25.4773994Z 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:55:25.4775872Z 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:55:25.4777769Z 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:55:25.4778633Z 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:55:25.4780737Z 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:55:25.4782822Z 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:55:25.4785168Z 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:55:25.4787324Z 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:55:25.4789630Z 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:55:25.4791802Z 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:55:25.4793862Z 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:55:25.4795972Z 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:55:25.4798196Z 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:55:25.4800318Z 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:55:25.4802324Z 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:55:25.4804825Z 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:55:25.4806925Z 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:55:25.4809278Z 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:55:25.4811672Z 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:55:25.4813682Z 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:55:25.4815936Z 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:55:25.4818329Z 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:55:25.4820581Z 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:55:25.4822822Z 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:55:25.4824973Z 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:55:25.4827229Z 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:55:25.4828516Z 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:55:25.4830943Z 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:55:25.4833388Z 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:55:25.4835849Z 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:55:25.4838196Z 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:55:25.4840853Z 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:55:25.4843211Z 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:55:25.4845575Z 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:55:25.4846634Z 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:55:25.4848820Z 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:55:25.4851033Z 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:55:25.4852045Z 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:55:25.4854187Z 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:55:25.4856567Z 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:55:25.4858777Z 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:55:25.4860918Z 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:55:25.4861889Z 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:55:25.4864357Z 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:55:25.4866819Z 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:55:25.4869164Z 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:55:25.4871562Z 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:55:25.4873936Z 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:55:25.4874797Z 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:55:25.4876981Z 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:55:25.4879080Z 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:55:25.4880171Z 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:55:25.4882507Z 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:55:25.4884827Z 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:55:25.4887041Z 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:55:25.4888064Z 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:55:25.4890061Z 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:55:25.4891644Z 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:55:25.4892395Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:55:25.4894024Z 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:55:25.4895807Z 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:55:25.4896752Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:55:25.4898550Z 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:55:25.4900357Z 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:55:25.4902155Z 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:55:25.4903065Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection 2025-06-05T23:55:25.4905146Z 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:55:25.4905787Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap 2025-06-05T23:55:25.4907590Z 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:55:25.4908444Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android 2025-06-05T23:55:25.4909145Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app 2025-06-05T23:55:25.4910129Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src 2025-06-05T23:55:25.4910985Z 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:55:25.4911941Z 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:55:25.4913981Z 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:55:25.4914820Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks 2025-06-05T23:55:25.4915672Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp 2025-06-05T23:55:25.4916764Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers 2025-06-05T23:55:25.4918688Z 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:55:25.4919509Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples 2025-06-05T23:55:25.4920404Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo 2025-06-05T23:55:25.4922175Z 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:55:25.4924164Z 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:55:25.4924778Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/schema 2025-06-05T23:55:25.4926131Z 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:55:25.4926675Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/tosa 2025-06-05T23:55:25.4927025Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/tosa/schemas 2025-06-05T23:55:25.4928113Z 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:55:25.4929230Z 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:55:25.4929657Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example 2025-06-05T23:55:25.4930572Z 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:55:25.4931704Z 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:55:25.4932793Z 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:55:25.4933653Z 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:55:25.4934321Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:55:25.4935688Z 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:55:25.4937129Z 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:55:25.4937543Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example/example_operators 2025-06-05T23:55:25.4938830Z 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:55:25.4939864Z 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:55:25.4940924Z 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:55:25.4942133Z 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:55:25.4943106Z 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:55:25.4944286Z 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:55:25.4945297Z 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:55:25.4946550Z 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:55:25.4947646Z 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:55:25.4948763Z 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:55:25.4949224Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek 2025-06-05T23:55:25.4950150Z 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:55:25.4951046Z 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:55:25.4951946Z 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:55:25.4952300Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek/_passes 2025-06-05T23:55:25.4953368Z 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:55:25.4954429Z 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:55:25.4954828Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek/quantizer 2025-06-05T23:55:25.4955811Z 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:55:25.4956956Z 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:55:25.4957858Z 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:55:25.4959062Z 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:55:25.4959514Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp 2025-06-05T23:55:25.4960512Z 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:55:25.4961457Z 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:55:25.4962372Z 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:55:25.4963310Z 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:55:25.4963701Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/aten_passes 2025-06-05T23:55:25.4965015Z 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:55:25.4966226Z 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:55:25.4967341Z 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:55:25.4967898Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend 2025-06-05T23:55:25.4968903Z 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:55:25.4969924Z 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:55:25.4971169Z 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:55:25.4972234Z 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:55:25.4972632Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir 2025-06-05T23:55:25.4973693Z 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:55:25.4974742Z 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:55:25.4975849Z 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:55:25.4976811Z 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:55:25.4977292Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:55:25.4978327Z 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:55:25.4979671Z 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:55:25.4980818Z 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:55:25.4981921Z 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:55:25.4982434Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:55:25.4983637Z 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:55:25.4985002Z 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:55:25.4986306Z 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:55:25.4987765Z 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:55:25.4988295Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:55:25.4989778Z 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:55:25.4991157Z 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:55:25.4992631Z 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:55:25.4994130Z 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:55:25.4994667Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters 2025-06-05T23:55:25.4996073Z 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:55:25.4996765Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:55:25.4998400Z 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:55:25.5000101Z 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:55:25.5001725Z 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:55:25.5003484Z 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:55:25.5005275Z 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:55:25.5006899Z 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:55:25.5008433Z 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:55:25.5010250Z 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:55:25.5011985Z 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:55:25.5013754Z 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:55:25.5015821Z 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:55:25.5017444Z 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:55:25.5019156Z 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:55:25.5020077Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:55:25.5021543Z 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:55:25.5023303Z 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:55:25.5024799Z 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:55:25.5026349Z 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:55:25.5026760Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/lib 2025-06-05T23:55:25.5027742Z 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:55:25.5028145Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:55:25.5029267Z 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:55:25.5030373Z 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:55:25.5031605Z 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:55:25.5032717Z 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:55:25.5033785Z 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:55:25.5034876Z 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:55:25.5036112Z 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:55:25.5037263Z 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:55:25.5038599Z 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:55:25.5039923Z 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:55:25.5041225Z 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:55:25.5042709Z 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:55:25.5044092Z 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:55:25.5045338Z 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:55:25.5046484Z 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:55:25.5047752Z 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:55:25.5048916Z 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:55:25.5050019Z 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:55:25.5051299Z 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:55:25.5052679Z 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:55:25.5053902Z 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:55:25.5055043Z 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:55:25.5056258Z 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:55:25.5057495Z 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:55:25.5058951Z 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:55:25.5060119Z 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:55:25.5061432Z 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:55:25.5062665Z 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:55:25.5063771Z 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:55:25.5064894Z 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:55:25.5066212Z 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:55:25.5067391Z 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:55:25.5068485Z 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:55:25.5069628Z 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:55:25.5070802Z 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:55:25.5071900Z 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:55:25.5073232Z 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:55:25.5074525Z 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:55:25.5075867Z 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:55:25.5076980Z 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:55:25.5078360Z 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:55:25.5079847Z 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:55:25.5081208Z 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:55:25.5082595Z 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:55:25.5084081Z 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:55:25.5085368Z 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:55:25.5086381Z 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:55:25.5087682Z 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:55:25.5088888Z 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:55:25.5090065Z 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:55:25.5091508Z 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:55:25.5092788Z 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:55:25.5093863Z 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:55:25.5095134Z 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:55:25.5096450Z 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:55:25.5097747Z 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:55:25.5098810Z 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:55:25.5100118Z 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:55:25.5101452Z 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:55:25.5102508Z 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:55:25.5104013Z 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:55:25.5105290Z 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:55:25.5106482Z 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:55:25.5107517Z 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:55:25.5108867Z 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:55:25.5110180Z 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:55:25.5111294Z 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:55:25.5112379Z 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:55:25.5113648Z 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:55:25.5114893Z 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:55:25.5116064Z 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:55:25.5117543Z 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:55:25.5118756Z 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:55:25.5120047Z 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:55:25.5121316Z 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:55:25.5122592Z 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:55:25.5123890Z 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:55:25.5125204Z 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:55:25.5126287Z 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:55:25.5127608Z 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:55:25.5128925Z 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:55:25.5129986Z 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:55:25.5131162Z 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:55:25.5132361Z 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:55:25.5133386Z 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:55:25.5134862Z 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:55:25.5136222Z 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:55:25.5137489Z 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:55:25.5138591Z 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:55:25.5139713Z 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:55:25.5140924Z 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:55:25.5142162Z 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:55:25.5143569Z 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:55:25.5144902Z 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:55:25.5146127Z 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:55:25.5147354Z 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:55:25.5148617Z 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:55:25.5150051Z 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:55:25.5151321Z 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:55:25.5152525Z 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:55:25.5153731Z 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:55:25.5154860Z 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:55:25.5155950Z 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:55:25.5157100Z 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:55:25.5158308Z 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:55:25.5159451Z 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:55:25.5160727Z 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:55:25.5162133Z 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:55:25.5163540Z 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:55:25.5165010Z 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:55:25.5166447Z 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:55:25.5167945Z 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:55:25.5169220Z 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:55:25.5170532Z 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:55:25.5171875Z 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:55:25.5173210Z 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:55:25.5174452Z 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:55:25.5175718Z 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:55:25.5177082Z 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:55:25.5178313Z 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:55:25.5179535Z 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:55:25.5180608Z 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:55:25.5181818Z 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:55:25.5183035Z 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:55:25.5184047Z 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:55:25.5185358Z 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:55:25.5186655Z 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:55:25.5187923Z 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:55:25.5189367Z 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:55:25.5190571Z 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:55:25.5191784Z 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:55:25.5192966Z 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:55:25.5194041Z 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:55:25.5195293Z 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:55:25.5196421Z 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:55:25.5197530Z 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:55:25.5198754Z 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:55:25.5199885Z 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:55:25.5201200Z 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:55:25.5202313Z 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:55:25.5203738Z 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:55:25.5205233Z 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:55:25.5206626Z 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:55:25.5207985Z 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:55:25.5209308Z 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:55:25.5210750Z 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:55:25.5212174Z 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:55:25.5213510Z 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:55:25.5214887Z 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:55:25.5216206Z 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:55:25.5217637Z 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:55:25.5219176Z 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:55:25.5220707Z 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:55:25.5222229Z 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:55:25.5223962Z 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:55:25.5225417Z 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:55:25.5226835Z 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:55:25.5228364Z 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:55:25.5229632Z 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:55:25.5230980Z 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:55:25.5232228Z 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:55:25.5233438Z 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:55:25.5234492Z 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:55:25.5235721Z 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:55:25.5236977Z 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:55:25.5238091Z 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:55:25.5239289Z 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:55:25.5240689Z 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:55:25.5241944Z 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:55:25.5243429Z 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:55:25.5244837Z 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:55:25.5246173Z 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:55:25.5247312Z 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:55:25.5248605Z 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:55:25.5249878Z 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:55:25.5251088Z 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:55:25.5252610Z 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:55:25.5253977Z 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:55:25.5255508Z 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:55:25.5256795Z 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:55:25.5257926Z 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:55:25.5259261Z 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:55:25.5260594Z 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:55:25.5261716Z 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:55:25.5262327Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:55:25.5263548Z 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:55:25.5264778Z 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:55:25.5265566Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:55:25.5267044Z 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:55:25.5268727Z 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:55:25.5270283Z 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:55:25.5271923Z 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:55:25.5273531Z 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:55:25.5275252Z 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:55:25.5276833Z 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:55:25.5278526Z 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:55:25.5280339Z 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:55:25.5282105Z 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:55:25.5283688Z 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:55:25.5285372Z 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:55:25.5286945Z 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:55:25.5288557Z 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:55:25.5289944Z 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:55:25.5291428Z 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:55:25.5292972Z 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:55:25.5294485Z 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:55:25.5296115Z 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:55:25.5297622Z 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:55:25.5299172Z 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:55:25.5300759Z 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:55:25.5302206Z 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:55:25.5304211Z 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:55:25.5305643Z 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:55:25.5307074Z 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:55:25.5308544Z 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:55:25.5309967Z 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:55:25.5311463Z 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:55:25.5312888Z 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:55:25.5314455Z 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:55:25.5315992Z 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:55:25.5317548Z 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:55:25.5319025Z 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:55:25.5320553Z 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:55:25.5322036Z 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:55:25.5323427Z 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:55:25.5324870Z 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:55:25.5326125Z 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:55:25.5327589Z 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:55:25.5328965Z 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:55:25.5330226Z 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:55:25.5331717Z 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:55:25.5333184Z 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:55:25.5334765Z 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:55:25.5336225Z 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:55:25.5337589Z 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:55:25.5338920Z 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:55:25.5340298Z 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:55:25.5341553Z 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:55:25.5342951Z 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:55:25.5344317Z 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:55:25.5345636Z 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:55:25.5347002Z 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:55:25.5348374Z 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:55:25.5349759Z 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:55:25.5351150Z 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:55:25.5352649Z 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:55:25.5354079Z 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:55:25.5355575Z 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:55:25.5357246Z 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:55:25.5358814Z 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:55:25.5360253Z 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:55:25.5361716Z 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:55:25.5363167Z 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:55:25.5364613Z 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:55:25.5366057Z 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:55:25.5367440Z 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:55:25.5368936Z 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:55:25.5370385Z 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:55:25.5371771Z 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:55:25.5373228Z 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:55:25.5374851Z 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:55:25.5376299Z 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:55:25.5377777Z 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:55:25.5379317Z 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:55:25.5380678Z 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:55:25.5382155Z 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:55:25.5383722Z 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:55:25.5385431Z 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:55:25.5387190Z 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:55:25.5388921Z 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:55:25.5389615Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-06-05T23:55:25.5391172Z 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:55:25.5391734Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:55:25.5393078Z 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:55:25.5394298Z 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:55:25.5395528Z 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:55:25.5396032Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:55:25.5397207Z 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:55:25.5398480Z 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:55:25.5399744Z 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:55:25.5400996Z 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:55:25.5402471Z 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:55:25.5404074Z 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:55:25.5404638Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:55:25.5406196Z 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:55:25.5407877Z 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:55:25.5409601Z 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:55:25.5411148Z 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:55:25.5412688Z 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:55:25.5414261Z 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:55:25.5415831Z 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:55:25.5417335Z 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:55:25.5418848Z 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:55:25.5420509Z 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:55:25.5421981Z 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:55:25.5423508Z 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:55:25.5425015Z 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:55:25.5426670Z 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:55:25.5428316Z 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:55:25.5430025Z 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:55:25.5430461Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/quantizer 2025-06-05T23:55:25.5431501Z 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:55:25.5432460Z 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:55:25.5433383Z 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:55:25.5433734Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests 2025-06-05T23:55:25.5434785Z 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:55:25.5435648Z 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:55:25.5436685Z 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:55:25.5437520Z 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:55:25.5438595Z 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:55:25.5439575Z 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:55:25.5440699Z 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:55:25.5441803Z 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:55:25.5442790Z 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:55:25.5443856Z 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:55:25.5444862Z 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:55:25.5445258Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir 2025-06-05T23:55:25.5445786Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir/converter 2025-06-05T23:55:25.5446432Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:55:25.5448035Z 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:55:25.5449562Z 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:55:25.5451122Z 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:55:25.5452650Z 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:55:25.5454161Z 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:55:25.5455738Z 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:55:25.5457173Z 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:55:25.5458690Z 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:55:25.5460197Z 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:55:25.5460574Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino 2025-06-05T23:55:25.5461509Z 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:55:25.5462424Z 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:55:25.5463398Z 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:55:25.5463932Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/quantizer 2025-06-05T23:55:25.5465006Z 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:55:25.5465978Z 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:55:25.5466365Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests 2025-06-05T23:55:25.5467377Z 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:55:25.5467875Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests/models 2025-06-05T23:55:25.5469147Z 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:55:25.5469508Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests/ops 2025-06-05T23:55:25.5470825Z 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:55:25.5471882Z 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:55:25.5472957Z 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:55:25.5474011Z 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:55:25.5475116Z 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:55:25.5476389Z 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:55:25.5477413Z 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:55:25.5478435Z 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:55:25.5479573Z 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:55:25.5480537Z 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:55:25.5481570Z 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:55:25.5481992Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm 2025-06-05T23:55:25.5482852Z 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:55:25.5483256Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/_passes 2025-06-05T23:55:25.5484285Z 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:55:25.5485441Z 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:55:25.5486641Z 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:55:25.5487602Z 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:55:25.5488638Z 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:55:25.5489871Z 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:55:25.5490951Z 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:55:25.5492071Z 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:55:25.5493078Z 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:55:25.5494188Z 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:55:25.5495456Z 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:55:25.5496456Z 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:55:25.5497553Z 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:55:25.5498617Z 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:55:25.5499799Z 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:55:25.5500942Z 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:55:25.5502080Z 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:55:25.5503175Z 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:55:25.5504270Z 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:55:25.5505309Z 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:55:25.5506462Z 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:55:25.5507399Z 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:55:25.5508413Z 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:55:25.5509463Z 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:55:25.5510659Z 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:55:25.5511797Z 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:55:25.5512875Z 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:55:25.5514007Z 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:55:25.5515086Z 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:55:25.5516150Z 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:55:25.5517189Z 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:55:25.5518272Z 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:55:25.5519274Z 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:55:25.5520342Z 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:55:25.5521440Z 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:55:25.5522406Z 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:55:25.5523413Z 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:55:25.5523758Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/builders 2025-06-05T23:55:25.5524792Z 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:55:25.5525829Z 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:55:25.5526857Z 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:55:25.5527917Z 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:55:25.5528916Z 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:55:25.5529928Z 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:55:25.5531002Z 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:55:25.5532058Z 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:55:25.5533116Z 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:55:25.5534205Z 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:55:25.5535342Z 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:55:25.5536279Z 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:55:25.5537318Z 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:55:25.5538310Z 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:55:25.5539347Z 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:55:25.5540367Z 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:55:25.5541325Z 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:55:25.5542337Z 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:55:25.5543322Z 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:55:25.5544397Z 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:55:25.5545355Z 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:55:25.5546340Z 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:55:25.5547412Z 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:55:25.5548411Z 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:55:25.5549442Z 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:55:25.5550390Z 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:55:25.5551431Z 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:55:25.5552593Z 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:55:25.5553653Z 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:55:25.5554680Z 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:55:25.5555627Z 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:55:25.5556829Z 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:55:25.5557978Z 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:55:25.5558968Z 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:55:25.5560085Z 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:55:25.5561080Z 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:55:25.5562083Z 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:55:25.5563035Z 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:55:25.5564249Z 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:55:25.5565299Z 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:55:25.5566273Z 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:55:25.5567390Z 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:55:25.5568268Z 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:55:25.5569347Z 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:55:25.5570246Z 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:55:25.5571365Z 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:55:25.5572269Z 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:55:25.5573454Z 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:55:25.5574747Z 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:55:25.5575673Z 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:55:25.5576806Z 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:55:25.5577665Z 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:55:25.5578888Z 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:55:25.5579939Z 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:55:25.5580938Z 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:55:25.5581955Z 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:55:25.5582924Z 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:55:25.5584056Z 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:55:25.5584970Z 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:55:25.5586070Z 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:55:25.5587012Z 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:55:25.5587925Z 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:55:25.5588933Z 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:55:25.5589901Z 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:55:25.5590914Z 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:55:25.5591864Z 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:55:25.5593063Z 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:55:25.5594149Z 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:55:25.5595289Z 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:55:25.5596567Z 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:55:25.5597527Z 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:55:25.5598621Z 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:55:25.5599813Z 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:55:25.5600825Z 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:55:25.5601987Z 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:55:25.5602994Z 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:55:25.5604189Z 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:55:25.5605401Z 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:55:25.5606400Z 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:55:25.5607523Z 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:55:25.5608675Z 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:55:25.5609583Z 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:55:25.5612471Z 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:55:25.5615018Z 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:55:25.5617272Z 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:55:25.5619429Z 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:55:25.5621571Z 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:55:25.5624344Z 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:55:25.5626839Z 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:55:25.5629423Z 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:55:25.5631070Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/debugger 2025-06-05T23:55:25.5632709Z 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:55:25.5634374Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/partition 2025-06-05T23:55:25.5636082Z 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:55:25.5639000Z 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:55:25.5641023Z 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:55:25.5642413Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/quantizer 2025-06-05T23:55:25.5643991Z 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:55:25.5646281Z 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:55:25.5648566Z 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:55:25.5650660Z 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:55:25.5652469Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:55:25.5654425Z 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:55:25.5657504Z 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:55:25.5659432Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/serialization 2025-06-05T23:55:25.5661185Z 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:55:25.5663575Z 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:55:25.5665982Z 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:55:25.5667757Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/tests 2025-06-05T23:55:25.5669604Z 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:55:25.5671793Z 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:55:25.5674193Z 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:55:25.5675697Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/utils 2025-06-05T23:55:25.5677343Z 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:55:25.5679581Z 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:55:25.5681173Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/aot 2025-06-05T23:55:25.5682168Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/aot/ir 2025-06-05T23:55:25.5683756Z 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:55:25.5685250Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/transforms 2025-06-05T23:55:25.5686699Z 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:55:25.5688894Z 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:55:25.5691171Z 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:55:25.5693281Z 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:55:25.5695740Z 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:55:25.5698219Z 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:55:25.5700390Z 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:55:25.5702699Z 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:55:25.5704907Z 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:55:25.5707210Z 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:55:25.5709333Z 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:55:25.5711752Z 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:55:25.5714117Z 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:55:25.5716558Z 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:55:25.5718936Z 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:55:25.5720642Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/transforms/test 2025-06-05T23:55:25.5722485Z 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:55:25.5725171Z 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:55:25.5727543Z 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:55:25.5729142Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan 2025-06-05T23:55:25.5730542Z 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:55:25.5732531Z 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:55:25.5734499Z 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:55:25.5736502Z 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:55:25.5738485Z 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:55:25.5740087Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/_passes 2025-06-05T23:55:25.5741755Z 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:55:25.5744128Z 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:55:25.5746409Z 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:55:25.5748825Z 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:55:25.5750870Z 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:55:25.5752893Z 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:55:25.5755089Z 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:55:25.5757267Z 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:55:25.5759696Z 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:55:25.5761196Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/partitioner 2025-06-05T23:55:25.5762939Z 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:55:25.5764655Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/quantizer 2025-06-05T23:55:25.5766336Z 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:55:25.5767978Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime 2025-06-05T23:55:25.5769603Z 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:55:25.5771286Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph 2025-06-05T23:55:25.5772392Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph/ops 2025-06-05T23:55:25.5773445Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:55:25.5775520Z 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:55:25.5778422Z 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:55:25.5781168Z 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:55:25.5783873Z 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:55:25.5786605Z 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:55:25.5789207Z 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:55:25.5791943Z 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:55:25.5794724Z 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:55:25.5797738Z 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:55:25.5800876Z 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:55:25.5803777Z 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:55:25.5806599Z 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:55:25.5809256Z 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:55:25.5811993Z 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:55:25.5814833Z 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:55:25.5817700Z 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:55:25.5820467Z 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:55:25.5823385Z 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:55:25.5826081Z 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:55:25.5828864Z 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:55:25.5831546Z 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:55:25.5834439Z 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:55:25.5837361Z 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:55:25.5840035Z 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:55:25.5842885Z 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:55:25.5845576Z 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:55:25.5848267Z 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:55:25.5850823Z 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:55:25.5853519Z 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:55:25.5856469Z 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:55:25.5859159Z 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:55:25.5862033Z 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:55:25.5864685Z 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:55:25.5867495Z 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:55:25.5870183Z 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:55:25.5872973Z 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:55:25.5875783Z 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:55:25.5878447Z 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:55:25.5881233Z 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:55:25.5884359Z 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:55:25.5887534Z 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:55:25.5890536Z 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:55:25.5893321Z 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:55:25.5896031Z 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:55:25.5898851Z 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:55:25.5901613Z 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:55:25.5904492Z 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:55:25.5907302Z 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:55:25.5909946Z 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:55:25.5912415Z 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:55:25.5915059Z 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:55:25.5917845Z 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:55:25.5920665Z 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:55:25.5923462Z 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:55:25.5926050Z 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:55:25.5928364Z 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:55:25.5930864Z 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:55:25.5933521Z 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:55:25.5936206Z 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:55:25.5938776Z 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:55:25.5941271Z 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:55:25.5943680Z 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:55:25.5946169Z 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:55:25.5948562Z 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:55:25.5950377Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/serialization 2025-06-05T23:55:25.5952088Z 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:55:25.5954477Z 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:55:25.5956921Z 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:55:25.5959259Z 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:55:25.5960932Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test 2025-06-05T23:55:25.5962472Z 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:55:25.5964901Z 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:55:25.5967679Z 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:55:25.5969850Z 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:55:25.5971468Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/op_tests 2025-06-05T23:55:25.5973214Z 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:55:25.5975917Z 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:55:25.5978554Z 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:55:25.5980559Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:55:25.5982479Z 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:55:25.5984958Z 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:55:25.5987493Z 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:55:25.5989906Z 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:55:25.5992630Z 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:55:25.5995333Z 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:55:25.5997009Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/glsl 2025-06-05T23:55:25.5998705Z 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:55:25.6001231Z 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:55:25.6003929Z 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:55:25.6005718Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party 2025-06-05T23:55:25.6006694Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/volk 2025-06-05T23:55:25.6008495Z 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:55:25.6010378Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers 2025-06-05T23:55:25.6011628Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:55:25.6013709Z 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:55:25.6016739Z 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:55:25.6019626Z 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:55:25.6022793Z 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:55:25.6025827Z 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:55:25.6028654Z 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:55:25.6031776Z 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:55:25.6033967Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-06-05T23:55:25.6036414Z 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:55:25.6038610Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator 2025-06-05T23:55:25.6040071Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools 2025-06-05T23:55:25.6041832Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-06-05T23:55:25.6044452Z 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:55:25.6046904Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools 2025-06-05T23:55:25.6047918Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools/gpuinfo 2025-06-05T23:55:25.6049099Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:55:25.6050999Z 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:55:25.6053712Z 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:55:25.6056312Z 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:55:25.6058972Z 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:55:25.6061554Z 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:55:25.6064116Z 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:55:25.6065700Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack 2025-06-05T23:55:25.6067023Z 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:55:25.6069165Z 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:55:25.6070582Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/_passes 2025-06-05T23:55:25.6072095Z 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:55:25.6074455Z 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:55:25.6076701Z 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:55:25.6078850Z 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:55:25.6081088Z 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:55:25.6083307Z 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:55:25.6085685Z 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:55:25.6088025Z 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:55:25.6090655Z 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:55:25.6093118Z 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:55:25.6095539Z 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:55:25.6097762Z 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:55:25.6099353Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/operators 2025-06-05T23:55:25.6100951Z 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:55:25.6103117Z 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:55:25.6105539Z 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:55:25.6107657Z 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:55:25.6109912Z 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:55:25.6112187Z 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:55:25.6114633Z 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:55:25.6127008Z 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:55:25.6129586Z 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:55:25.6131678Z 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:55:25.6133789Z 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:55:25.6135968Z 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:55:25.6138237Z 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:55:25.6140664Z 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:55:25.6143043Z 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:55:25.6145159Z 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:55:25.6147316Z 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:55:25.6149536Z 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:55:25.6151647Z 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:55:25.6153767Z 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:55:25.6155935Z 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:55:25.6158168Z 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:55:25.6160288Z 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:55:25.6162449Z 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:55:25.6164706Z 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:55:25.6166935Z 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:55:25.6169073Z 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:55:25.6171184Z 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:55:25.6173323Z 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:55:25.6175618Z 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:55:25.6177874Z 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:55:25.6179951Z 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:55:25.6182054Z 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:55:25.6184238Z 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:55:25.6186538Z 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:55:25.6188658Z 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:55:25.6190825Z 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:55:25.6192932Z 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:55:25.6195035Z 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:55:25.6197198Z 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:55:25.6199444Z 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:55:25.6201666Z 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:55:25.6203991Z 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:55:25.6206488Z 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:55:25.6208920Z 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:55:25.6211296Z 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:55:25.6213334Z 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:55:25.6215713Z 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:55:25.6217798Z 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:55:25.6219520Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition 2025-06-05T23:55:25.6221188Z 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:55:25.6223621Z 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:55:25.6225287Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition/config 2025-06-05T23:55:25.6227050Z 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:55:25.6229719Z 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:55:25.6232334Z 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:55:25.6235047Z 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:55:25.6237662Z 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:55:25.6240224Z 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:55:25.6242062Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition/graphs 2025-06-05T23:55:25.6243819Z 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:55:25.6246166Z 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:55:25.6247775Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/quantizer 2025-06-05T23:55:25.6249566Z 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:55:25.6252039Z 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:55:25.6253772Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/serialization 2025-06-05T23:55:25.6255605Z 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:55:25.6258041Z 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:55:25.6260412Z 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:55:25.6262615Z 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:55:25.6264211Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test 2025-06-05T23:55:25.6265712Z 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:55:25.6267801Z 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:55:25.6269376Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/models 2025-06-05T23:55:25.6270953Z 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:55:25.6273484Z 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:55:25.6275753Z 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:55:25.6278213Z 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:55:25.6280685Z 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:55:25.6283391Z 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:55:25.6285848Z 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:55:25.6288127Z 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:55:25.6290465Z 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:55:25.6292768Z 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:55:25.6295464Z 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:55:25.6298006Z 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:55:25.6300419Z 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:55:25.6302134Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/ops 2025-06-05T23:55:25.6303929Z 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:55:25.6306178Z 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:55:25.6308311Z 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:55:25.6310618Z 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:55:25.6312922Z 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:55:25.6315121Z 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:55:25.6317492Z 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:55:25.6319701Z 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:55:25.6322373Z 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:55:25.6324533Z 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:55:25.6326871Z 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:55:25.6329255Z 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:55:25.6331356Z 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:55:25.6333643Z 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:55:25.6335995Z 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:55:25.6338158Z 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:55:25.6340968Z 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:55:25.6343280Z 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:55:25.6345585Z 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:55:25.6348083Z 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:55:25.6350235Z 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:55:25.6352463Z 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:55:25.6354797Z 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:55:25.6357096Z 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:55:25.6359376Z 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:55:25.6361691Z 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:55:25.6364046Z 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:55:25.6366356Z 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:55:25.6368778Z 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:55:25.6371046Z 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:55:25.6373233Z 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:55:25.6375496Z 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:55:25.6377867Z 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:55:25.6380052Z 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:55:25.6382151Z 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:55:25.6384298Z 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:55:25.6386587Z 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:55:25.6388715Z 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:55:25.6390864Z 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:55:25.6393031Z 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:55:25.6395151Z 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:55:25.6398245Z 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:55:25.6400665Z 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:55:25.6402319Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/passes 2025-06-05T23:55:25.6404256Z 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:55:25.6406598Z 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:55:25.6409131Z 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:55:25.6411772Z 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:55:25.6414158Z 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:55:25.6416932Z 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:55:25.6419501Z 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:55:25.6421230Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:55:25.6423006Z 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:55:25.6425542Z 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:55:25.6427953Z 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:55:25.6430365Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/serialization 2025-06-05T23:55:25.6432215Z 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:55:25.6434748Z 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:55:25.6436496Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/tester 2025-06-05T23:55:25.6438079Z 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:55:25.6440390Z 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:55:25.6442069Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party 2025-06-05T23:55:25.6443088Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:55:25.6445018Z 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:55:25.6446857Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/include 2025-06-05T23:55:25.6448193Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:55:25.6450332Z 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:55:25.6453153Z 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:55:25.6455856Z 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:55:25.6457992Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/test 2025-06-05T23:55:25.6459352Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-06-05T23:55:25.6461541Z 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:55:25.6463866Z 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:55:25.6465533Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:55:25.6467366Z 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:55:25.6469950Z 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:55:25.6471617Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:55:25.6473451Z 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:55:25.6475333Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:55:25.6477530Z 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:55:25.6480468Z 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:55:25.6483519Z 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:55:25.6485490Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/deps 2025-06-05T23:55:25.6486619Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:55:25.6488573Z 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:55:25.6491125Z 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:55:25.6493589Z 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:55:25.6495366Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:55:25.6497239Z 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:55:25.6499765Z 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:55:25.6501464Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK 2025-06-05T23:55:25.6502486Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:55:25.6504990Z 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:55:25.6508109Z 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:55:25.6511465Z 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:55:25.6514667Z 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:55:25.6516851Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:25.6518940Z 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:55:25.6521716Z 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:55:25.6524511Z 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:55:25.6527220Z 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:55:25.6530354Z 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:55:25.6533159Z 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:55:25.6535982Z 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:55:25.6538764Z 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:55:25.6541361Z 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:55:25.6544089Z 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:55:25.6546721Z 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:55:25.6549522Z 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:55:25.6552203Z 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:55:25.6555108Z 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:55:25.6558097Z 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:55:25.6561730Z 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:55:25.6565103Z 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:55:25.6568468Z 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:55:25.6571456Z 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:55:25.6574353Z 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:55:25.6577361Z 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:55:25.6579964Z 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:55:25.6582662Z 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:55:25.6585411Z 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:55:25.6588344Z 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:55:25.6590987Z 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:55:25.6593754Z 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:55:25.6595799Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:55:25.6597930Z 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:55:25.6600834Z 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:55:25.6603448Z 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:55:25.6606563Z 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:55:25.6609354Z 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:55:25.6612032Z 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:55:25.6614844Z 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:55:25.6617389Z 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:55:25.6620236Z 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:55:25.6622984Z 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:55:25.6625857Z 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:55:25.6628697Z 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:55:25.6631452Z 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:55:25.6634197Z 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:55:25.6636833Z 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:55:25.6639634Z 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:55:25.6642160Z 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:55:25.6645101Z 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:55:25.6648191Z 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:55:25.6650933Z 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:55:25.6653795Z 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:55:25.6656717Z 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:55:25.6659481Z 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:55:25.6662250Z 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:55:25.6665157Z 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:55:25.6667821Z 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:55:25.6670570Z 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:55:25.6673555Z 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:55:25.6676472Z 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:55:25.6679762Z 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:55:25.6682445Z 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:55:25.6685049Z 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:55:25.6687819Z 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:55:25.6690597Z 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:55:25.6693302Z 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:55:25.6696362Z 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:55:25.6699081Z 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:55:25.6701800Z 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:55:25.6704799Z 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:55:25.6707642Z 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:55:25.6710398Z 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:55:25.6713146Z 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:55:25.6715881Z 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:55:25.6718494Z 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:55:25.6721249Z 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:55:25.6723949Z 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:55:25.6726804Z 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:55:25.6729810Z 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:55:25.6732931Z 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:55:25.6736337Z 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:55:25.6739117Z 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:55:25.6742291Z 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:55:25.6745544Z 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:55:25.6748805Z 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:55:25.6752107Z 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:55:25.6755167Z 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:55:25.6758656Z 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:55:25.6761505Z 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:55:25.6764036Z 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:55:25.6766522Z 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:55:25.6769019Z 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:55:25.6771476Z 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:55:25.6774088Z 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:55:25.6776653Z 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:55:25.6779089Z 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:55:25.6781528Z 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:55:25.6784052Z 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:55:25.6786720Z 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:55:25.6789062Z 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:55:25.6791457Z 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:55:25.6793844Z 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:55:25.6796297Z 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:55:25.6798737Z 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:55:25.6801173Z 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:55:25.6802205Z 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:55:25.6802549Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/utils 2025-06-05T23:55:25.6803384Z 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:55:25.6804378Z 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:55:25.6805182Z 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:55:25.6806067Z 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:55:25.6806444Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple 2025-06-05T23:55:25.6806773Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps 2025-06-05T23:55:25.6807686Z 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:55:25.6808570Z 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:55:25.6809033Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/operators 2025-06-05T23:55:25.6809989Z 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:55:25.6810943Z 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:55:25.6811943Z 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:55:25.6812842Z 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:55:25.6813772Z 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:55:25.6814967Z 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:55:25.6815908Z 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:55:25.6816941Z 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:55:25.6817854Z 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:55:25.6818981Z 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:55:25.6820025Z 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:55:25.6820995Z 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:55:25.6821936Z 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:55:25.6822844Z 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:55:25.6823807Z 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:55:25.6824737Z 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:55:25.6825643Z 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:55:25.6826556Z 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:55:25.6828010Z 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:55:25.6828921Z 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:55:25.6829285Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/partition 2025-06-05T23:55:25.6830177Z 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:55:25.6831324Z 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:55:25.6831719Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/serialization 2025-06-05T23:55:25.6832791Z 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:55:25.6833793Z 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:55:25.6834830Z 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:55:25.6835240Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/test 2025-06-05T23:55:25.6836151Z 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:55:25.6837040Z 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:55:25.6837932Z 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:55:25.6838815Z 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:55:25.6839686Z 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:55:25.6840570Z 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:55:25.6841428Z 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:55:25.6841758Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/utils 2025-06-05T23:55:25.6842745Z 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:55:25.6843676Z 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:55:25.6844089Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml 2025-06-05T23:55:25.6844469Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/compiler 2025-06-05T23:55:25.6845363Z 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:55:25.6846349Z 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:55:25.6846736Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/partition 2025-06-05T23:55:25.6847657Z 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:55:25.6848728Z 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:55:25.6849109Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/quantizer 2025-06-05T23:55:25.6850034Z 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:55:25.6851029Z 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:55:25.6851442Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/test 2025-06-05T23:55:25.6852410Z 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:55:25.6853417Z 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:55:25.6853790Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/runtime 2025-06-05T23:55:25.6854194Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/runtime/test 2025-06-05T23:55:25.6855331Z 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:55:25.6856241Z 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:55:25.6857295Z 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:55:25.6857613Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence 2025-06-05T23:55:25.6857940Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot 2025-06-05T23:55:25.6858712Z 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:55:25.6859519Z 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:55:25.6860364Z 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:55:25.6861192Z 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:55:25.6862035Z 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:55:25.6862818Z 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:55:25.6863638Z 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:55:25.6864507Z 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:55:25.6865348Z 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:55:25.6866201Z 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:55:25.6867001Z 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:55:25.6867783Z 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:55:25.6868653Z 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:55:25.6869525Z 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:55:25.6870398Z 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:55:25.6871219Z 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:55:25.6872032Z 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:55:25.6872822Z 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:55:25.6873200Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot/quantizer 2025-06-05T23:55:25.6874141Z 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:55:25.6875083Z 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:55:25.6876016Z 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:55:25.6876926Z 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:55:25.6877280Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot/tests 2025-06-05T23:55:25.6878243Z 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:55:25.6879190Z 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:55:25.6880114Z 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:55:25.6881025Z 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:55:25.6881933Z 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:55:25.6882869Z 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:55:25.6883824Z 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:55:25.6884774Z 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:55:25.6885719Z 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:55:25.6886726Z 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:55:25.6887676Z 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:55:25.6888671Z 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:55:25.6889174Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/runtime 2025-06-05T23:55:25.6890052Z 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:55:25.6891068Z 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:55:25.6892039Z 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:55:25.6893070Z 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:55:25.6893414Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils 2025-06-05T23:55:25.6894421Z 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:55:25.6895326Z 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:55:25.6896377Z 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:55:25.6896745Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO 2025-06-05T23:55:25.6897634Z 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:55:25.6898219Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:55:25.6899236Z 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:55:25.6900483Z 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:55:25.6900921Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:55:25.6902113Z 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:55:25.6903194Z 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:55:25.6904525Z 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:55:25.6905109Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto 2025-06-05T23:55:25.6906306Z 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:55:25.6906938Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-06-05T23:55:25.6908336Z 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:55:25.6908853Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:55:25.6910271Z 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:55:25.6911647Z 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:55:25.6912964Z 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:55:25.6913608Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:55:25.6915008Z 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:55:25.6916286Z 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:55:25.6917715Z 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:55:25.6919168Z 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:55:25.6919702Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:55:25.6921139Z 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:55:25.6922596Z 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:55:25.6923976Z 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:55:25.6925272Z 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:55:25.6925933Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:55:25.6927152Z 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:55:25.6928625Z 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:55:25.6929131Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:55:25.6930547Z 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:55:25.6931982Z 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:55:25.6932505Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:55:25.6933934Z 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:55:25.6935460Z 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:55:25.6936711Z 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:55:25.6938136Z 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:55:25.6939574Z 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:55:25.6940935Z 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:55:25.6942261Z 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:55:25.6942818Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:55:25.6943903Z 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:55:25.6945204Z 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:55:25.6946476Z 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:55:25.6947622Z 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:55:25.6948168Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/test 2025-06-05T23:55:25.6948690Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:55:25.6950068Z 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:55:25.6951303Z 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:55:25.6952773Z 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:55:25.6954199Z 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:55:25.6955439Z 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:55:25.6956676Z 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:55:25.6958134Z 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:55:25.6959464Z 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:55:25.6960796Z 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:55:25.6961966Z 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:55:25.6963342Z 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:55:25.6965123Z 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:55:25.6966440Z 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:55:25.6967872Z 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:55:25.6969354Z 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:55:25.6969758Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m 2025-06-05T23:55:25.6970161Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/ops 2025-06-05T23:55:25.6971069Z 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:55:25.6972321Z 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:55:25.6972677Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/passes 2025-06-05T23:55:25.6973936Z 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:55:25.6974373Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/test 2025-06-05T23:55:25.6975587Z 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:55:25.6975876Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples 2025-06-05T23:55:25.6976322Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/llm_pte_finetuning 2025-06-05T23:55:25.6977296Z 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:55:25.6978341Z 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:55:25.6979443Z 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:55:25.6980511Z 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:55:25.6981412Z 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:55:25.6982536Z 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:55:25.6983496Z 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:55:25.6984548Z 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:55:25.6985442Z 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:55:25.6985747Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models 2025-06-05T23:55:25.6986644Z 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:55:25.6987426Z 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:55:25.6988261Z 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:55:25.6989095Z 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:55:25.6989446Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/deeplab_v3 2025-06-05T23:55:25.6990452Z 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:55:25.6991311Z 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:55:25.6991807Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/edsr 2025-06-05T23:55:25.6992679Z 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:55:25.6993575Z 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:55:25.6994065Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/efficient_sam 2025-06-05T23:55:25.6994938Z 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:55:25.6995973Z 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:55:25.6996460Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:55:25.6997782Z 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:55:25.6998953Z 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:55:25.7000250Z 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:55:25.7001579Z 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:55:25.7002658Z 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:55:25.7004109Z 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:55:25.7004487Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/emformer_rnnt 2025-06-05T23:55:25.7005512Z 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:55:25.7006472Z 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:55:25.7006916Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/inception_v3 2025-06-05T23:55:25.7007907Z 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:55:25.7008900Z 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:55:25.7009284Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/inception_v4 2025-06-05T23:55:25.7010227Z 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:55:25.7011433Z 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:55:25.7011752Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama 2025-06-05T23:55:25.7012770Z 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:55:25.7013683Z 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:55:25.7014725Z 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:55:25.7015653Z 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:55:25.7016630Z 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:55:25.7017557Z 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:55:25.7018491Z 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:55:25.7019375Z 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:55:25.7020562Z 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:55:25.7021562Z 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:55:25.7022532Z 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:55:25.7023430Z 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:55:25.7024367Z 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:55:25.7025233Z 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:55:25.7026269Z 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:55:25.7026692Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/evaluate 2025-06-05T23:55:25.7027785Z 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:55:25.7028835Z 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:55:25.7029323Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/experimental 2025-06-05T23:55:25.7030585Z 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:55:25.7031972Z 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:55:25.7033246Z 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:55:25.7034440Z 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:55:25.7034944Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/runner 2025-06-05T23:55:25.7035949Z 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:55:25.7037127Z 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:55:25.7038230Z 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:55:25.7038771Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/source_transformation 2025-06-05T23:55:25.7040058Z 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:55:25.7041482Z 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:55:25.7042951Z 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:55:25.7044376Z 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:55:25.7045705Z 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:55:25.7046978Z 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:55:25.7048479Z 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:55:25.7049884Z 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:55:25.7051336Z 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:55:25.7052722Z 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:55:25.7054068Z 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:55:25.7055707Z 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:55:25.7057159Z 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:55:25.7058645Z 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:55:25.7060250Z 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:55:25.7061757Z 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:55:25.7063205Z 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:55:25.7064459Z 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:55:25.7064896Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/tests 2025-06-05T23:55:25.7066080Z 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:55:25.7067197Z 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:55:25.7068272Z 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:55:25.7069213Z 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:55:25.7070387Z 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:55:25.7071480Z 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:55:25.7072462Z 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:55:25.7072880Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/tokenizer 2025-06-05T23:55:25.7073963Z 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:55:25.7074346Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision 2025-06-05T23:55:25.7075420Z 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:55:25.7076020Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:55:25.7077238Z 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:55:25.7078529Z 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:55:25.7079639Z 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:55:25.7080815Z 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:55:25.7081334Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:55:25.7082449Z 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:55:25.7083764Z 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:55:25.7085084Z 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:55:25.7086087Z 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:55:25.7086801Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/text_decoder 2025-06-05T23:55:25.7087971Z 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:55:25.7088625Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:55:25.7089950Z 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:55:25.7091224Z 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:55:25.7091904Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:55:25.7093069Z 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:55:25.7094256Z 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:55:25.7094988Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:55:25.7096118Z 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:55:25.7097829Z 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:55:25.7098178Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llava 2025-06-05T23:55:25.7099423Z 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:55:25.7100496Z 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:55:25.7101383Z 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:55:25.7101811Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llava/test 2025-06-05T23:55:25.7102895Z 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:55:25.7104205Z 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:55:25.7104578Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/lstm 2025-06-05T23:55:25.7105393Z 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:55:25.7106370Z 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:55:25.7106734Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilebert 2025-06-05T23:55:25.7107893Z 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:55:25.7108788Z 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:55:25.7109342Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilenet_v2 2025-06-05T23:55:25.7110273Z 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:55:25.7111431Z 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:55:25.7111805Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilenet_v3 2025-06-05T23:55:25.7112957Z 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:55:25.7113857Z 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:55:25.7114438Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi-3-mini-lora 2025-06-05T23:55:25.7115429Z 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:55:25.7115974Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi-3-mini 2025-06-05T23:55:25.7116916Z 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:55:25.7118204Z 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:55:25.7119241Z 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:55:25.7120320Z 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:55:25.7121531Z 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:55:25.7121900Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi_4_mini 2025-06-05T23:55:25.7123052Z 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:55:25.7124016Z 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:55:25.7124521Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/qwen2_5 2025-06-05T23:55:25.7125355Z 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:55:25.7126459Z 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:55:25.7126794Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/qwen3 2025-06-05T23:55:25.7127779Z 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:55:25.7128645Z 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:55:25.7129057Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/resnet 2025-06-05T23:55:25.7130007Z 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:55:25.7130956Z 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:55:25.7131339Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/smollm2 2025-06-05T23:55:25.7132170Z 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:55:25.7162429Z 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:55:25.7162962Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/test 2025-06-05T23:55:25.7164172Z 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:55:25.7165025Z 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:55:25.7165475Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/torchvision_vit 2025-06-05T23:55:25.7167042Z 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:55:25.7168730Z 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:55:25.7169341Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/toy_model 2025-06-05T23:55:25.7170968Z 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:55:25.7172476Z 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:55:25.7173065Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/wav2letter 2025-06-05T23:55:25.7174378Z 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:55:25.7176016Z 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:55:25.7176613Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/moshi 2025-06-05T23:55:25.7177225Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/moshi/mimi 2025-06-05T23:55:25.7178795Z 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:55:25.7179306Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple 2025-06-05T23:55:25.7179889Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml 2025-06-05T23:55:25.7180528Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml/llama 2025-06-05T23:55:25.7182118Z 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:55:25.7183850Z 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:55:25.7185427Z 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:55:25.7187026Z 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:55:25.7188625Z 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:55:25.7189268Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml/scripts 2025-06-05T23:55:25.7191006Z 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:55:25.7192660Z 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:55:25.7194407Z 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:55:25.7196109Z 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:55:25.7197971Z 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:55:25.7198516Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/mps 2025-06-05T23:55:25.7199151Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/mps/scripts 2025-06-05T23:55:25.7200884Z 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:55:25.7202469Z 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:55:25.7202931Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension 2025-06-05T23:55:25.7203494Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/export_util 2025-06-05T23:55:25.7205050Z 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:55:25.7206470Z 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:55:25.7207066Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor 2025-06-05T23:55:25.7208450Z 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:55:25.7209121Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor/serialize 2025-06-05T23:55:25.7210761Z 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:55:25.7212513Z 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:55:25.7214140Z 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:55:25.7215890Z 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:55:25.7217584Z 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:55:25.7218189Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor/test 2025-06-05T23:55:25.7219810Z 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:55:25.7220385Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/gguf_util 2025-06-05T23:55:25.7221810Z 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:55:25.7223269Z 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:55:25.7224667Z 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:55:25.7225344Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/gguf_util/converters 2025-06-05T23:55:25.7227051Z 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:55:25.7227777Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pybindings 2025-06-05T23:55:25.7229297Z 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:55:25.7230047Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pybindings/test 2025-06-05T23:55:25.7231626Z 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:55:25.7401059Z 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:55:25.7402191Z 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:55:25.7403268Z 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:55:25.7404637Z 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:55:25.7405083Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pytree 2025-06-05T23:55:25.7406061Z 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:55:25.7406486Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pytree/test 2025-06-05T23:55:25.7407419Z 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:55:25.7407762Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training 2025-06-05T23:55:25.7408641Z 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:55:25.7409081Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/pybindings 2025-06-05T23:55:25.7410258Z 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:55:25.7410809Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/pybindings/test 2025-06-05T23:55:25.7411899Z 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:55:25.7413124Z 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:55:25.7413555Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples 2025-06-05T23:55:25.7414036Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples/XOR 2025-06-05T23:55:25.7415252Z 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:55:25.7416333Z 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:55:25.7416865Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples/XOR/test 2025-06-05T23:55:25.7418334Z 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:55:25.7418706Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm 2025-06-05T23:55:25.7419088Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops 2025-06-05T23:55:25.7420230Z 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:55:25.7421234Z 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:55:25.7422208Z 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:55:25.7423177Z 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:55:25.7424311Z 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:55:25.7425352Z 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:55:25.7426476Z 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:55:25.7427479Z 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:55:25.7428836Z 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:55:25.7429502Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant 2025-06-05T23:55:25.7430807Z 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:55:25.7431439Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant/third-party 2025-06-05T23:55:25.7432035Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:55:25.7433490Z 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:55:25.7434829Z 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:55:25.7436026Z 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:55:25.7436386Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/export 2025-06-05T23:55:25.7437477Z 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:55:25.7438640Z 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:55:25.7439810Z 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:55:25.7441126Z 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:55:25.7442305Z 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:55:25.7443416Z 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:55:25.7443931Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/export/test 2025-06-05T23:55:25.7445140Z 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:55:25.7446535Z 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:55:25.7446868Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/modules 2025-06-05T23:55:25.7447912Z 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:55:25.7448861Z 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:55:25.7449966Z 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:55:25.7450898Z 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:55:25.7451296Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/modules/test 2025-06-05T23:55:25.7486971Z 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:55:25.7488077Z 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:55:25.7489255Z 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:55:25.7490304Z 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:55:25.7490671Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers 2025-06-05T23:55:25.7491519Z 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:55:25.7491998Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:55:25.7493162Z 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:55:25.7494248Z 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:55:25.7495636Z 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:55:25.7497050Z 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:55:25.7498518Z 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:55:25.7499155Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-06-05T23:55:25.7500450Z 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:55:25.7501064Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:55:25.7502534Z 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:55:25.7504114Z 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:55:25.7504558Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/test 2025-06-05T23:55:25.7505704Z 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:55:25.7506189Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party 2025-06-05T23:55:25.7506705Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:55:25.7508122Z 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:55:25.7509480Z 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:55:25.7510112Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:55:25.7510823Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:55:25.7512260Z 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:55:25.7513923Z 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:55:25.7515562Z 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:55:25.7516068Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json 2025-06-05T23:55:25.7516686Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs 2025-06-05T23:55:25.7517542Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs 2025-06-05T23:55:25.7518301Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-06-05T23:55:25.7519988Z 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:55:25.7520612Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests 2025-06-05T23:55:25.7521212Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty 2025-06-05T23:55:25.7522108Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-06-05T23:55:25.7523711Z 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:55:25.7524193Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools 2025-06-05T23:55:25.7524796Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-06-05T23:55:25.7526352Z 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:55:25.7527139Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:55:25.7528866Z 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:55:25.7529560Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-06-05T23:55:25.7531242Z 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:55:25.7531934Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-06-05T23:55:25.7533647Z 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:55:25.7534165Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/pcre2 2025-06-05T23:55:25.7534834Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:55:25.7536294Z 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:55:25.7566099Z 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:55:25.7567636Z 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:55:25.7569314Z 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:55:25.7570810Z 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:55:25.7572304Z 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:55:25.7573703Z 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:55:25.7575179Z 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:55:25.7575753Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2 2025-06-05T23:55:25.7576272Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-06-05T23:55:25.7577550Z 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:55:25.7578052Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:55:25.7579246Z 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:55:25.7580568Z 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:55:25.7581944Z 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:55:25.7582562Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-06-05T23:55:25.7584037Z 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:55:25.7584583Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:55:25.7585856Z 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:55:25.7587279Z 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:55:25.7588663Z 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:55:25.7589192Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece 2025-06-05T23:55:25.7589860Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-06-05T23:55:25.7591131Z 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:55:25.7591771Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:55:25.7593143Z 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:55:25.7594748Z 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:55:25.7595443Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src 2025-06-05T23:55:25.7596129Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:55:25.7597821Z 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:55:25.7599430Z 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:55:25.7601747Z 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:55:25.7603406Z 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:55:25.7603980Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build 2025-06-05T23:55:25.7604528Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib 2025-06-05T23:55:25.7605175Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:55:25.7606507Z 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:55:25.7607989Z 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:55:25.7609437Z 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:55:25.7611116Z 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:55:25.7612581Z 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:55:25.7613367Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools 2025-06-05T23:55:25.7615197Z 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:55:25.7616104Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:55:25.7660840Z 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:55:25.7662710Z 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:55:25.7663035Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module 2025-06-05T23:55:25.7663491Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module/test 2025-06-05T23:55:25.7663912Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module/test/resources 2025-06-05T23:55:25.7664999Z 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:55:25.7665307Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels 2025-06-05T23:55:25.7665654Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels/quantized 2025-06-05T23:55:25.7666468Z 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:55:25.7666908Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels/quantized/test 2025-06-05T23:55:25.7667978Z 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:55:25.7669028Z 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:55:25.7669960Z 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:55:25.7670930Z 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:55:25.7671902Z 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:55:25.7672160Z creating pip-out/bdist.linux-x86_64/wheel/executorch/schema 2025-06-05T23:55:25.7672867Z 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:55:25.7673518Z 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:55:25.7674108Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch 2025-06-05T23:55:25.7674453Z creating pip-out/bdist.linux-x86_64/wheel/executorch/share 2025-06-05T23:55:25.7674741Z creating pip-out/bdist.linux-x86_64/wheel/executorch/share/cmake 2025-06-05T23:55:25.7675756Z 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:55:25.7676079Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include 2025-06-05T23:55:25.7676437Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch 2025-06-05T23:55:25.7676865Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime 2025-06-05T23:55:25.7677264Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core 2025-06-05T23:55:25.7678456Z 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:55:25.7679475Z 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:55:25.7680545Z 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:55:25.7681778Z 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:55:25.7682898Z 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:55:25.7683912Z 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:55:25.7685251Z 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:55:25.7686450Z 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:55:25.7687440Z 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:55:25.7688696Z 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:55:25.7689897Z 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:55:25.7690883Z 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:55:25.7692114Z 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:55:25.7693168Z 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:55:25.7694113Z 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:55:25.7695296Z 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:55:25.7696498Z 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:55:25.7697597Z 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:55:25.7698117Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten 2025-06-05T23:55:25.7699353Z 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:55:25.7700033Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:55:25.7701496Z 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:55:25.7702868Z 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:55:25.7703528Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:55:25.7704994Z 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:55:25.7706412Z 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:55:25.7731144Z 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:55:25.7732695Z 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:55:25.7733941Z 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:55:25.7734481Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:55:25.7735784Z 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:55:25.7737024Z 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:55:25.7738251Z 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:55:25.7739511Z 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:55:25.7740728Z 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:55:25.7742079Z 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:55:25.7743433Z 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:55:25.7744652Z 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:55:25.7745863Z 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:55:25.7747104Z 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:55:25.7748377Z 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:55:25.7749587Z 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:55:25.7750817Z 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:55:25.7752053Z 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:55:25.7752650Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10 2025-06-05T23:55:25.7753183Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10 2025-06-05T23:55:25.7753814Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:55:25.7755268Z 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:55:25.7756689Z 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:55:25.7757308Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:55:25.7758727Z 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:55:25.7760191Z 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:55:25.7761620Z 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:55:25.7763065Z 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:55:25.7764517Z 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:55:25.7766019Z 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:55:25.7767392Z 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:55:25.7768771Z 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:55:25.7770432Z 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:55:25.7772172Z 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:55:25.7773638Z 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:55:25.7775229Z 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:55:25.7775633Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:25.7776763Z 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:55:25.7777922Z 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:55:25.7779065Z 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:55:25.8344011Z 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:55:25.8344525Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/kernel/test 2025-06-05T23:55:25.8345683Z 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:55:25.8346098Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/platform 2025-06-05T23:55:25.8347088Z 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:55:25.8348326Z 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:55:25.8349514Z 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:55:25.8350632Z 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:55:25.8351764Z 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:55:25.8352775Z 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:55:25.8353985Z 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:55:25.8355020Z 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:55:25.8356081Z 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:55:25.8357153Z 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:55:25.8358140Z 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:55:25.8358591Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/platform/test 2025-06-05T23:55:25.8359837Z 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:55:25.8360971Z 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:55:25.8361358Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension 2025-06-05T23:55:25.8361886Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/kernel_util 2025-06-05T23:55:25.8363042Z 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:55:25.8364214Z 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:55:25.8365362Z 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:55:25.8365765Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/tensor 2025-06-05T23:55:25.8366753Z 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:55:25.8367860Z 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:55:25.8368977Z 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:55:25.8370134Z 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:55:25.8370581Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/threadpool 2025-06-05T23:55:25.8371845Z 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:55:25.8372985Z 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:55:25.8374158Z 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:55:25.8374722Z creating pip-out/bdist.linux-x86_64/wheel/executorch/data 2025-06-05T23:55:25.8384897Z creating pip-out/bdist.linux-x86_64/wheel/executorch/data/bin 2025-06-05T23:55:25.8385636Z 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:55:25.8386270Z 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:55:25.8386441Z running install_egg_info 2025-06-05T23:55:25.8386959Z Copying executorch.egg-info to pip-out/bdist.linux-x86_64/wheel/./executorch-0.7.0a0+bd57234-py3.10.egg-info 2025-06-05T23:55:25.8387116Z running install_scripts 2025-06-05T23:55:25.8387502Z creating pip-out/bdist.linux-x86_64/wheel/executorch-0.7.0a0+bd57234.dist-info/WHEEL 2025-06-05T23:55:25.8388276Z creating '/tmp/pip-wheel-3w9zb7g6/.tmp-96fmwza4/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:55:25.8388440Z adding 'executorch/version.py' 2025-06-05T23:55:25.8388904Z adding 'executorch/backends/apple/coreml/executorchcoreml.cpython-310-x86_64-linux-gnu.so' 2025-06-05T23:55:25.8389189Z adding 'executorch/backends/apple/coreml/executorchcoreml.pyi' 2025-06-05T23:55:25.8389477Z adding 'executorch/backends/apple/coreml/compiler/__init__.py' 2025-06-05T23:55:25.8389921Z adding 'executorch/backends/apple/coreml/compiler/coreml_preprocess.py' 2025-06-05T23:55:25.8390341Z adding 'executorch/backends/apple/coreml/partition/__init__.py' 2025-06-05T23:55:25.8390693Z adding 'executorch/backends/apple/coreml/partition/coreml_partitioner.py' 2025-06-05T23:55:25.8390960Z adding 'executorch/backends/apple/coreml/quantizer/__init__.py' 2025-06-05T23:55:25.8391292Z adding 'executorch/backends/apple/coreml/quantizer/coreml_quantizer.py' 2025-06-05T23:55:25.8391669Z adding 'executorch/backends/apple/coreml/runtime/test/export_stateful_model.py' 2025-06-05T23:55:25.8392018Z adding 'executorch/backends/apple/coreml/test/test_coreml_partitioner.py' 2025-06-05T23:55:25.8392344Z adding 'executorch/backends/apple/coreml/test/test_coreml_quantizer.py' 2025-06-05T23:55:25.8392543Z adding 'executorch/backends/apple/mps/__init__.py' 2025-06-05T23:55:25.8392795Z adding 'executorch/backends/apple/mps/mps_preprocess.py' 2025-06-05T23:55:25.8393058Z adding 'executorch/backends/apple/mps/operators/__init__.py' 2025-06-05T23:55:25.8393361Z adding 'executorch/backends/apple/mps/operators/activation_ops.py' 2025-06-05T23:55:25.8393746Z adding 'executorch/backends/apple/mps/operators/binary_ops.py' 2025-06-05T23:55:25.8394016Z adding 'executorch/backends/apple/mps/operators/clamp_ops.py' 2025-06-05T23:55:25.8394301Z adding 'executorch/backends/apple/mps/operators/constant_ops.py' 2025-06-05T23:55:25.8394671Z adding 'executorch/backends/apple/mps/operators/convolution_ops.py' 2025-06-05T23:55:25.8394952Z adding 'executorch/backends/apple/mps/operators/indexing_ops.py' 2025-06-05T23:55:25.8395449Z adding 'executorch/backends/apple/mps/operators/linear_algebra_ops.py' 2025-06-05T23:55:25.8395741Z adding 'executorch/backends/apple/mps/operators/node_visitor.py' 2025-06-05T23:55:25.8396062Z adding 'executorch/backends/apple/mps/operators/normalization_ops.py' 2025-06-05T23:55:25.8396312Z adding 'executorch/backends/apple/mps/operators/op_clone.py' 2025-06-05T23:55:25.8396587Z adding 'executorch/backends/apple/mps/operators/op_getitem.py' 2025-06-05T23:55:25.8396903Z adding 'executorch/backends/apple/mps/operators/op_quant_dequant.py' 2025-06-05T23:55:25.8819582Z adding 'executorch/backends/apple/mps/operators/op_skip_ops.py' 2025-06-05T23:55:25.8820095Z adding 'executorch/backends/apple/mps/operators/pad_ops.py' 2025-06-05T23:55:25.8820570Z adding 'executorch/backends/apple/mps/operators/pooling_ops.py' 2025-06-05T23:55:25.8820857Z adding 'executorch/backends/apple/mps/operators/range_ops.py' 2025-06-05T23:55:25.8821181Z adding 'executorch/backends/apple/mps/operators/reduce_ops.py' 2025-06-05T23:55:25.8821532Z adding 'executorch/backends/apple/mps/operators/shape_ops.py' 2025-06-05T23:55:25.8821891Z adding 'executorch/backends/apple/mps/operators/unary_ops.py' 2025-06-05T23:55:25.8822146Z adding 'executorch/backends/apple/mps/partition/__init__.py' 2025-06-05T23:55:25.8822469Z adding 'executorch/backends/apple/mps/partition/mps_partitioner.py' 2025-06-05T23:55:25.8822817Z adding 'executorch/backends/apple/mps/serialization/mps_graph_schema.py' 2025-06-05T23:55:25.8823182Z adding 'executorch/backends/apple/mps/serialization/mps_graph_serialize.py' 2025-06-05T23:55:25.8823456Z adding 'executorch/backends/apple/mps/serialization/schema.fbs' 2025-06-05T23:55:25.8823701Z adding 'executorch/backends/apple/mps/test/test_mps.py' 2025-06-05T23:55:25.8823998Z adding 'executorch/backends/apple/mps/test/test_mps_binary_ops.py' 2025-06-05T23:55:25.8824305Z adding 'executorch/backends/apple/mps/test/test_mps_indexing_ops.py' 2025-06-05T23:55:25.8824568Z adding 'executorch/backends/apple/mps/test/test_mps_linear.py' 2025-06-05T23:55:25.8824842Z adding 'executorch/backends/apple/mps/test/test_mps_models.py' 2025-06-05T23:55:25.8825199Z adding 'executorch/backends/apple/mps/test/test_mps_unary_ops.py' 2025-06-05T23:55:25.8825514Z adding 'executorch/backends/apple/mps/test/test_mps_utils.py' 2025-06-05T23:55:25.8825803Z adding 'executorch/backends/apple/mps/utils/mps_utils.py' 2025-06-05T23:55:25.8826060Z adding 'executorch/backends/apple/mps/utils/quant_utils.py' 2025-06-05T23:55:25.8826270Z adding 'executorch/backends/arm/arm_backend.py' 2025-06-05T23:55:25.8826459Z adding 'executorch/backends/arm/arm_vela.py' 2025-06-05T23:55:25.8826672Z adding 'executorch/backends/arm/ethosu_backend.py' 2025-06-05T23:55:25.8826895Z adding 'executorch/backends/arm/ethosu_partitioner.py' 2025-06-05T23:55:25.8827100Z adding 'executorch/backends/arm/process_node.py' 2025-06-05T23:55:25.8827306Z adding 'executorch/backends/arm/tosa_backend.py' 2025-06-05T23:55:25.8827515Z adding 'executorch/backends/arm/tosa_mapping.py' 2025-06-05T23:55:25.8827725Z adding 'executorch/backends/arm/tosa_partitioner.py' 2025-06-05T23:55:25.8827944Z adding 'executorch/backends/arm/tosa_quant_utils.py' 2025-06-05T23:55:25.8828181Z adding 'executorch/backends/arm/tosa_specification.py' 2025-06-05T23:55:25.8828388Z adding 'executorch/backends/arm/tosa_utils.py' 2025-06-05T23:55:25.8828632Z adding 'executorch/backends/arm/vgf_backend.py' 2025-06-05T23:55:25.8829096Z adding 'executorch/backends/arm/vgf_partitioner.py' 2025-06-05T23:55:25.8829320Z adding 'executorch/backends/arm/_passes/__init__.py' 2025-06-05T23:55:25.8829573Z adding 'executorch/backends/arm/_passes/_debug_passes.py' 2025-06-05T23:55:25.8829941Z adding 'executorch/backends/arm/_passes/annotate_channels_last_dim_order_pass.py' 2025-06-05T23:55:25.8830297Z adding 'executorch/backends/arm/_passes/annotate_decomposed_matmul.py' 2025-06-05T23:55:25.8830599Z adding 'executorch/backends/arm/_passes/arm_pass.py' 2025-06-05T23:55:25.8830864Z adding 'executorch/backends/arm/_passes/arm_pass_manager.py' 2025-06-05T23:55:25.8831109Z adding 'executorch/backends/arm/_passes/arm_pass_utils.py' 2025-06-05T23:55:25.8831375Z adding 'executorch/backends/arm/_passes/broadcast_args_pass.py' 2025-06-05T23:55:25.8831626Z adding 'executorch/backends/arm/_passes/cast_int64_pass.py' 2025-06-05T23:55:25.8831958Z adding 'executorch/backends/arm/_passes/cast_to_int32_pass.py' 2025-06-05T23:55:25.8832308Z adding 'executorch/backends/arm/_passes/conv1d_unsqueeze_pass.py' 2025-06-05T23:55:25.8832668Z adding 'executorch/backends/arm/_passes/convert_any_default_dim_dims_pass.py' 2025-06-05T23:55:25.8832991Z adding 'executorch/backends/arm/_passes/convert_expand_copy_to_repeat.py' 2025-06-05T23:55:25.8833326Z adding 'executorch/backends/arm/_passes/convert_full_like_to_full_pass.py' 2025-06-05T23:55:25.8833606Z adding 'executorch/backends/arm/_passes/convert_int_pow_to_mul.py' 2025-06-05T23:55:25.8833889Z adding 'executorch/backends/arm/_passes/convert_minmax_pass.py' 2025-06-05T23:55:25.8834184Z adding 'executorch/backends/arm/_passes/convert_split_to_slice.py' 2025-06-05T23:55:25.8834491Z adding 'executorch/backends/arm/_passes/convert_squeezes_to_view.py' 2025-06-05T23:55:25.8834739Z adding 'executorch/backends/arm/_passes/convert_to_clamp.py' 2025-06-05T23:55:25.8835088Z adding 'executorch/backends/arm/_passes/decompose_cosine_similarity_pass.py' 2025-06-05T23:55:25.8835453Z adding 'executorch/backends/arm/_passes/decompose_div_pass.py' 2025-06-05T23:55:25.8835840Z adding 'executorch/backends/arm/_passes/decompose_gelu_pass.py' 2025-06-05T23:55:25.8836136Z adding 'executorch/backends/arm/_passes/decompose_groupnorm_pass.py' 2025-06-05T23:55:25.8836447Z adding 'executorch/backends/arm/_passes/decompose_layernorm_pass.py' 2025-06-05T23:55:25.8836758Z adding 'executorch/backends/arm/_passes/decompose_leaky_relu_pass.py' 2025-06-05T23:55:25.8837115Z adding 'executorch/backends/arm/_passes/decompose_linalg_vector_norm_pass.py' 2025-06-05T23:55:25.8837405Z adding 'executorch/backends/arm/_passes/decompose_linear_pass.py' 2025-06-05T23:55:25.8837688Z adding 'executorch/backends/arm/_passes/decompose_meandim_pass.py' 2025-06-05T23:55:25.8837956Z adding 'executorch/backends/arm/_passes/decompose_ne_pass.py' 2025-06-05T23:55:25.8838220Z adding 'executorch/backends/arm/_passes/decompose_select.py' 2025-06-05T23:55:25.8838544Z adding 'executorch/backends/arm/_passes/decompose_silu_pass.py' 2025-06-05T23:55:25.8838945Z adding 'executorch/backends/arm/_passes/decompose_softmax_pass.py' 2025-06-05T23:55:25.8839301Z adding 'executorch/backends/arm/_passes/decompose_softmax_unstable_pass.py' 2025-06-05T23:55:25.8839580Z adding 'executorch/backends/arm/_passes/decompose_sqrt_pass.py' 2025-06-05T23:55:25.8839852Z adding 'executorch/backends/arm/_passes/decompose_sum_pass.py' 2025-06-05T23:55:25.8840109Z adding 'executorch/backends/arm/_passes/decompose_var_pass.py' 2025-06-05T23:55:25.8840489Z adding 'executorch/backends/arm/_passes/fold_qdq_with_annotated_qparams_pass.py' 2025-06-05T23:55:25.8840786Z adding 'executorch/backends/arm/_passes/fuse_batchnorm2d_pass.py' 2025-06-05T23:55:25.8841083Z adding 'executorch/backends/arm/_passes/fuse_constant_ops_pass.py' 2025-06-05T23:55:25.8841402Z adding 'executorch/backends/arm/_passes/fuse_equal_placeholders_pass.py' 2025-06-05T23:55:25.8841739Z adding 'executorch/backends/arm/_passes/fuse_quantized_activation_pass.py' 2025-06-05T23:55:25.8842149Z adding 'executorch/backends/arm/_passes/insert_rescales_pass.py' 2025-06-05T23:55:25.8842428Z adding 'executorch/backends/arm/_passes/insert_table_ops.py' 2025-06-05T23:55:25.8842758Z adding 'executorch/backends/arm/_passes/match_arg_ranks_pass.py' 2025-06-05T23:55:25.8843190Z adding 'executorch/backends/arm/_passes/match_where_self_arg_dtype_pass.py' 2025-06-05T23:55:25.8843440Z adding 'executorch/backends/arm/_passes/mm_to_bmm_pass.py' 2025-06-05T23:55:25.8843766Z adding 'executorch/backends/arm/_passes/remove_clone_pass.py' 2025-06-05T23:55:25.8844068Z adding 'executorch/backends/arm/_passes/replace_inf_values_pass.py' 2025-06-05T23:55:25.8844395Z adding 'executorch/backends/arm/_passes/replace_scalar_with_tensor_pass.py' 2025-06-05T23:55:25.8844707Z adding 'executorch/backends/arm/_passes/scalars_to_attribute_pass.py' 2025-06-05T23:55:25.8845008Z adding 'executorch/backends/arm/_passes/size_adjust_conv2d_pass.py' 2025-06-05T23:55:25.8845339Z adding 'executorch/backends/arm/_passes/unsqueeze_before_repeat_pass.py' 2025-06-05T23:55:25.8845690Z adding 'executorch/backends/arm/_passes/unsqueeze_scalar_placeholders_pass.py' 2025-06-05T23:55:25.8845959Z adding 'executorch/backends/arm/operator_support/__init__.py' 2025-06-05T23:55:25.8846295Z adding 'executorch/backends/arm/operator_support/convolution_support.py' 2025-06-05T23:55:25.8846635Z adding 'executorch/backends/arm/operator_support/ethos_u55_support.py' 2025-06-05T23:55:25.8847064Z adding 'executorch/backends/arm/operator_support/minmax_support.py' 2025-06-05T23:55:25.8847397Z adding 'executorch/backends/arm/operator_support/pool_2d_support.py' 2025-06-05T23:55:25.8847726Z adding 'executorch/backends/arm/operator_support/reduce_sum_support.py' 2025-06-05T23:55:25.8848062Z adding 'executorch/backends/arm/operator_support/right_shift_support.py' 2025-06-05T23:55:25.8848370Z adding 'executorch/backends/arm/operator_support/sin_cos_support.py' 2025-06-05T23:55:25.8848682Z adding 'executorch/backends/arm/operator_support/slice_copy_support.py' 2025-06-05T23:55:25.8848991Z adding 'executorch/backends/arm/operator_support/to_copy_support.py' 2025-06-05T23:55:25.8849349Z adding 'executorch/backends/arm/operator_support/tosa_supported_operators.py' 2025-06-05T23:55:25.8849587Z adding 'executorch/backends/arm/operators/__init__.py' 2025-06-05T23:55:25.8849823Z adding 'executorch/backends/arm/operators/node_visitor.py' 2025-06-05T23:55:25.8850044Z adding 'executorch/backends/arm/operators/op_abs.py' 2025-06-05T23:55:25.8850266Z adding 'executorch/backends/arm/operators/op_add.py' 2025-06-05T23:55:25.8850494Z adding 'executorch/backends/arm/operators/op_amax.py' 2025-06-05T23:55:25.8850763Z adding 'executorch/backends/arm/operators/op_amin.py' 2025-06-05T23:55:25.8851102Z adding 'executorch/backends/arm/operators/op_any.py' 2025-06-05T23:55:25.8851360Z adding 'executorch/backends/arm/operators/op_avg_pool2d.py' 2025-06-05T23:55:25.8851583Z adding 'executorch/backends/arm/operators/op_bmm.py' 2025-06-05T23:55:25.8851790Z adding 'executorch/backends/arm/operators/op_cat.py' 2025-06-05T23:55:25.8852019Z adding 'executorch/backends/arm/operators/op_clamp.py' 2025-06-05T23:55:25.8852310Z adding 'executorch/backends/arm/operators/op_constant_pad_nd.py' 2025-06-05T23:55:25.8852550Z adding 'executorch/backends/arm/operators/op_conv2d.py' 2025-06-05T23:55:25.8852769Z adding 'executorch/backends/arm/operators/op_cos.py' 2025-06-05T23:55:25.8852970Z adding 'executorch/backends/arm/operators/op_eq.py' 2025-06-05T23:55:25.8853191Z adding 'executorch/backends/arm/operators/op_erf.py' 2025-06-05T23:55:25.8853405Z adding 'executorch/backends/arm/operators/op_exp.py' 2025-06-05T23:55:25.8853621Z adding 'executorch/backends/arm/operators/op_ge.py' 2025-06-05T23:55:25.8853820Z adding 'executorch/backends/arm/operators/op_gt.py' 2025-06-05T23:55:25.8854033Z adding 'executorch/backends/arm/operators/op_le.py' 2025-06-05T23:55:25.8854253Z adding 'executorch/backends/arm/operators/op_log.py' 2025-06-05T23:55:25.8854683Z adding 'executorch/backends/arm/operators/op_lt.py' 2025-06-05T23:55:25.8855002Z adding 'executorch/backends/arm/operators/op_max_pool2d.py' 2025-06-05T23:55:25.8855251Z adding 'executorch/backends/arm/operators/op_maximum.py' 2025-06-05T23:55:25.8855492Z adding 'executorch/backends/arm/operators/op_minimum.py' 2025-06-05T23:55:25.8855718Z adding 'executorch/backends/arm/operators/op_mul.py' 2025-06-05T23:55:25.8855924Z adding 'executorch/backends/arm/operators/op_neg.py' 2025-06-05T23:55:25.8856231Z adding 'executorch/backends/arm/operators/op_permute.py' 2025-06-05T23:55:25.8856449Z adding 'executorch/backends/arm/operators/op_pow.py' 2025-06-05T23:55:25.9332893Z adding 'executorch/backends/arm/operators/op_reciprocal.py' 2025-06-05T23:55:25.9333358Z adding 'executorch/backends/arm/operators/op_repeat.py' 2025-06-05T23:55:25.9333838Z adding 'executorch/backends/arm/operators/op_rescale.py' 2025-06-05T23:55:25.9334218Z adding 'executorch/backends/arm/operators/op_rshift_tensor.py' 2025-06-05T23:55:25.9334489Z adding 'executorch/backends/arm/operators/op_rsqrt.py' 2025-06-05T23:55:25.9334947Z adding 'executorch/backends/arm/operators/op_sigmoid.py' 2025-06-05T23:55:25.9335176Z adding 'executorch/backends/arm/operators/op_sin.py' 2025-06-05T23:55:25.9335395Z adding 'executorch/backends/arm/operators/op_slice.py' 2025-06-05T23:55:25.9335620Z adding 'executorch/backends/arm/operators/op_sub.py' 2025-06-05T23:55:25.9335845Z adding 'executorch/backends/arm/operators/op_sum.py' 2025-06-05T23:55:25.9336080Z adding 'executorch/backends/arm/operators/op_table.py' 2025-06-05T23:55:25.9336294Z adding 'executorch/backends/arm/operators/op_tanh.py' 2025-06-05T23:55:25.9336538Z adding 'executorch/backends/arm/operators/op_to_copy.py' 2025-06-05T23:55:25.9336838Z adding 'executorch/backends/arm/operators/op_to_dim_order_copy.py' 2025-06-05T23:55:25.9337097Z adding 'executorch/backends/arm/operators/op_transpose.py' 2025-06-05T23:55:25.9337402Z adding 'executorch/backends/arm/operators/op_upsample_bilinear2d.py' 2025-06-05T23:55:25.9337713Z adding 'executorch/backends/arm/operators/op_upsample_nearest2d.py' 2025-06-05T23:55:25.9337942Z adding 'executorch/backends/arm/operators/op_view.py' 2025-06-05T23:55:25.9338172Z adding 'executorch/backends/arm/operators/op_where.py' 2025-06-05T23:55:25.9338590Z adding 'executorch/backends/arm/operators/operator_validation_utils.py' 2025-06-05T23:55:25.9338837Z adding 'executorch/backends/arm/operators/ops_binary.py' 2025-06-05T23:55:25.9339096Z adding 'executorch/backends/arm/operators/ops_identity.py' 2025-06-05T23:55:25.9339336Z adding 'executorch/backends/arm/operators/ops_unary.py' 2025-06-05T23:55:25.9339565Z adding 'executorch/backends/arm/quantizer/__init__.py' 2025-06-05T23:55:25.9339805Z adding 'executorch/backends/arm/quantizer/arm_quantizer.py' 2025-06-05T23:55:25.9340099Z adding 'executorch/backends/arm/quantizer/arm_quantizer_utils.py' 2025-06-05T23:55:25.9340414Z adding 'executorch/backends/arm/quantizer/quantization_annotator.py' 2025-06-05T23:55:25.9340711Z adding 'executorch/backends/arm/quantizer/quantization_config.py' 2025-06-05T23:55:25.9340955Z adding 'executorch/backends/arm/scripts/parse_test_names.py' 2025-06-05T23:55:25.9341154Z adding 'executorch/backends/arm/test/common.py' 2025-06-05T23:55:25.9341361Z adding 'executorch/backends/arm/test/conftest.py' 2025-06-05T23:55:25.9341588Z adding 'executorch/backends/arm/test/runner_utils.py' 2025-06-05T23:55:25.9341797Z adding 'executorch/backends/arm/test/test_model.py' 2025-06-05T23:55:25.9342204Z adding 'executorch/backends/arm/test/misc/test_bn_relu_folding_qat.py' 2025-06-05T23:55:25.9342533Z adding 'executorch/backends/arm/test/misc/test_custom_partition.py' 2025-06-05T23:55:25.9342830Z adding 'executorch/backends/arm/test/misc/test_debug_feats.py' 2025-06-05T23:55:25.9343118Z adding 'executorch/backends/arm/test/misc/test_dim_order_guards.py' 2025-06-05T23:55:25.9343400Z adding 'executorch/backends/arm/test/misc/test_lifted_tensor.py' 2025-06-05T23:55:25.9343859Z adding 'executorch/backends/arm/test/misc/test_model_evaluator.py' 2025-06-05T23:55:25.9344178Z adding 'executorch/backends/arm/test/misc/test_multiple_delegates.py' 2025-06-05T23:55:25.9344483Z adding 'executorch/backends/arm/test/misc/test_multiple_outputs.py' 2025-06-05T23:55:25.9344810Z adding 'executorch/backends/arm/test/misc/test_non_persistent_buffers.py' 2025-06-05T23:55:25.9345366Z adding 'executorch/backends/arm/test/misc/test_partition_decomposed_quantized_ops.py' 2025-06-05T23:55:25.9345661Z adding 'executorch/backends/arm/test/misc/test_tosa_spec.py' 2025-06-05T23:55:25.9345936Z adding 'executorch/backends/arm/test/models/test_conformer.py' 2025-06-05T23:55:25.9346220Z adding 'executorch/backends/arm/test/models/test_deit_tiny_arm.py' 2025-06-05T23:55:25.9346479Z adding 'executorch/backends/arm/test/models/test_dl3_arm.py' 2025-06-05T23:55:25.9346732Z adding 'executorch/backends/arm/test/models/test_llama.py' 2025-06-05T23:55:25.9347004Z adding 'executorch/backends/arm/test/models/test_lstm_arm.py' 2025-06-05T23:55:25.9347302Z adding 'executorch/backends/arm/test/models/test_mobilenet_v2_arm.py' 2025-06-05T23:55:25.9347613Z adding 'executorch/backends/arm/test/models/test_mobilenet_v3_arm.py' 2025-06-05T23:55:25.9347906Z adding 'executorch/backends/arm/test/models/test_nn_functional.py' 2025-06-05T23:55:25.9348180Z adding 'executorch/backends/arm/test/models/test_nn_modules.py' 2025-06-05T23:55:25.9348476Z adding 'executorch/backends/arm/test/models/test_torch_functions.py' 2025-06-05T23:55:25.9348736Z adding 'executorch/backends/arm/test/models/test_w2l_arm.py' 2025-06-05T23:55:25.9348962Z adding 'executorch/backends/arm/test/ops/test_abs.py' 2025-06-05T23:55:25.9349185Z adding 'executorch/backends/arm/test/ops/test_add.py' 2025-06-05T23:55:25.9349549Z adding 'executorch/backends/arm/test/ops/test_alias_copy.py' 2025-06-05T23:55:25.9349770Z adding 'executorch/backends/arm/test/ops/test_amax.py' 2025-06-05T23:55:25.9350003Z adding 'executorch/backends/arm/test/ops/test_amin.py' 2025-06-05T23:55:25.9350226Z adding 'executorch/backends/arm/test/ops/test_any.py' 2025-06-05T23:55:25.9350466Z adding 'executorch/backends/arm/test/ops/test_arange.py' 2025-06-05T23:55:25.9350671Z adding 'executorch/backends/arm/test/ops/test_at.py' 2025-06-05T23:55:25.9350939Z adding 'executorch/backends/arm/test/ops/test_avg_pool2d.py' 2025-06-05T23:55:25.9351194Z adding 'executorch/backends/arm/test/ops/test_batch_norm.py' 2025-06-05T23:55:25.9351446Z adding 'executorch/backends/arm/test/ops/test_bitwise.py' 2025-06-05T23:55:25.9351655Z adding 'executorch/backends/arm/test/ops/test_bmm.py' 2025-06-05T23:55:25.9351875Z adding 'executorch/backends/arm/test/ops/test_cat.py' 2025-06-05T23:55:25.9352116Z adding 'executorch/backends/arm/test/ops/test_clamp.py' 2025-06-05T23:55:25.9352352Z adding 'executorch/backends/arm/test/ops/test_clone.py' 2025-06-05T23:55:25.9352631Z adding 'executorch/backends/arm/test/ops/test_constant_pad_nd.py' 2025-06-05T23:55:25.9352876Z adding 'executorch/backends/arm/test/ops/test_conv1d.py' 2025-06-05T23:55:25.9353119Z adding 'executorch/backends/arm/test/ops/test_conv2d.py' 2025-06-05T23:55:25.9353451Z adding 'executorch/backends/arm/test/ops/test_conv3d.py' 2025-06-05T23:55:25.9353706Z adding 'executorch/backends/arm/test/ops/test_conv_combos.py' 2025-06-05T23:55:25.9354024Z adding 'executorch/backends/arm/test/ops/test_conv_constant_pad_nd.py' 2025-06-05T23:55:25.9354254Z adding 'executorch/backends/arm/test/ops/test_cos.py' 2025-06-05T23:55:25.9354541Z adding 'executorch/backends/arm/test/ops/test_depthwise_conv.py' 2025-06-05T23:55:25.9354762Z adding 'executorch/backends/arm/test/ops/test_div.py' 2025-06-05T23:55:25.9354965Z adding 'executorch/backends/arm/test/ops/test_eq.py' 2025-06-05T23:55:25.9355186Z adding 'executorch/backends/arm/test/ops/test_erf.py' 2025-06-05T23:55:25.9355410Z adding 'executorch/backends/arm/test/ops/test_exp.py' 2025-06-05T23:55:25.9355717Z adding 'executorch/backends/arm/test/ops/test_expand.py' 2025-06-05T23:55:25.9355934Z adding 'executorch/backends/arm/test/ops/test_eye.py' 2025-06-05T23:55:25.9356168Z adding 'executorch/backends/arm/test/ops/test_full.py' 2025-06-05T23:55:25.9356392Z adding 'executorch/backends/arm/test/ops/test_ge.py' 2025-06-05T23:55:25.9356646Z adding 'executorch/backends/arm/test/ops/test_gelu.py' 2025-06-05T23:55:25.9356908Z adding 'executorch/backends/arm/test/ops/test_group_norm.py' 2025-06-05T23:55:25.9357200Z adding 'executorch/backends/arm/test/ops/test_gt.py' 2025-06-05T23:55:25.9357537Z adding 'executorch/backends/arm/test/ops/test_hardsigmoid.py' 2025-06-05T23:55:25.9357797Z adding 'executorch/backends/arm/test/ops/test_hardswish.py' 2025-06-05T23:55:25.9358050Z adding 'executorch/backends/arm/test/ops/test_hardtanh.py' 2025-06-05T23:55:25.9358294Z adding 'executorch/backends/arm/test/ops/test_layer_norm.py' 2025-06-05T23:55:25.9358517Z adding 'executorch/backends/arm/test/ops/test_le.py' 2025-06-05T23:55:25.9358782Z adding 'executorch/backends/arm/test/ops/test_leaky_relu.py' 2025-06-05T23:55:25.9359093Z adding 'executorch/backends/arm/test/ops/test_linalg_vector_norm.py' 2025-06-05T23:55:25.9359317Z adding 'executorch/backends/arm/test/ops/test_linear.py' 2025-06-05T23:55:25.9359544Z adding 'executorch/backends/arm/test/ops/test_log.py' 2025-06-05T23:55:25.9359790Z adding 'executorch/backends/arm/test/ops/test_logical.py' 2025-06-05T23:55:25.9360060Z adding 'executorch/backends/arm/test/ops/test_logsoftmax.py' 2025-06-05T23:55:25.9360280Z adding 'executorch/backends/arm/test/ops/test_lshift.py' 2025-06-05T23:55:25.9360500Z adding 'executorch/backends/arm/test/ops/test_lt.py' 2025-06-05T23:55:25.9360743Z adding 'executorch/backends/arm/test/ops/test_matmul.py' 2025-06-05T23:55:25.9361045Z adding 'executorch/backends/arm/test/ops/test_max_pool.py' 2025-06-05T23:55:25.9361321Z adding 'executorch/backends/arm/test/ops/test_maximum.py' 2025-06-05T23:55:25.9361572Z adding 'executorch/backends/arm/test/ops/test_mean_dim.py' 2025-06-05T23:55:25.9361818Z adding 'executorch/backends/arm/test/ops/test_minimum.py' 2025-06-05T23:55:25.9362039Z adding 'executorch/backends/arm/test/ops/test_mm.py' 2025-06-05T23:55:25.9362246Z adding 'executorch/backends/arm/test/ops/test_mul.py' 2025-06-05T23:55:25.9362465Z adding 'executorch/backends/arm/test/ops/test_ne.py' 2025-06-05T23:55:25.9362686Z adding 'executorch/backends/arm/test/ops/test_neg.py' 2025-06-05T23:55:25.9362920Z adding 'executorch/backends/arm/test/ops/test_ones.py' 2025-06-05T23:55:25.9363171Z adding 'executorch/backends/arm/test/ops/test_permute.py' 2025-06-05T23:55:25.9363380Z adding 'executorch/backends/arm/test/ops/test_pow.py' 2025-06-05T23:55:25.9363640Z adding 'executorch/backends/arm/test/ops/test_reciprocal.py' 2025-06-05T23:55:25.9363868Z adding 'executorch/backends/arm/test/ops/test_relu.py' 2025-06-05T23:55:25.9364101Z adding 'executorch/backends/arm/test/ops/test_repeat.py' 2025-06-05T23:55:25.9364330Z adding 'executorch/backends/arm/test/ops/test_rshift.py' 2025-06-05T23:55:25.9364563Z adding 'executorch/backends/arm/test/ops/test_rsqrt.py' 2025-06-05T23:55:25.9364837Z adding 'executorch/backends/arm/test/ops/test_scalar_tensor.py' 2025-06-05T23:55:25.9365141Z adding 'executorch/backends/arm/test/ops/test_scalars.py' 2025-06-05T23:55:25.9365387Z adding 'executorch/backends/arm/test/ops/test_sdpa.py' 2025-06-05T23:55:25.9365626Z adding 'executorch/backends/arm/test/ops/test_select.py' 2025-06-05T23:55:25.9365869Z adding 'executorch/backends/arm/test/ops/test_sigmoid.py' 2025-06-05T23:55:25.9366142Z adding 'executorch/backends/arm/test/ops/test_sigmoid_16bit.py' 2025-06-05T23:55:25.9366403Z adding 'executorch/backends/arm/test/ops/test_sigmoid_32bit.py' 2025-06-05T23:55:25.9366631Z adding 'executorch/backends/arm/test/ops/test_silu.py' 2025-06-05T23:55:25.9366852Z adding 'executorch/backends/arm/test/ops/test_sin.py' 2025-06-05T23:55:25.9367085Z adding 'executorch/backends/arm/test/ops/test_slice.py' 2025-06-05T23:55:25.9367382Z adding 'executorch/backends/arm/test/ops/test_softmax.py' 2025-06-05T23:55:25.9367615Z adding 'executorch/backends/arm/test/ops/test_split.py' 2025-06-05T23:55:25.9367844Z adding 'executorch/backends/arm/test/ops/test_sqrt.py' 2025-06-05T23:55:25.9368086Z adding 'executorch/backends/arm/test/ops/test_squeeze.py' 2025-06-05T23:55:25.9368311Z adding 'executorch/backends/arm/test/ops/test_sub.py' 2025-06-05T23:55:25.9692536Z adding 'executorch/backends/arm/test/ops/test_sum.py' 2025-06-05T23:55:25.9693028Z adding 'executorch/backends/arm/test/ops/test_tanh.py' 2025-06-05T23:55:25.9693492Z adding 'executorch/backends/arm/test/ops/test_to_copy.py' 2025-06-05T23:55:25.9693762Z adding 'executorch/backends/arm/test/ops/test_unary.py' 2025-06-05T23:55:25.9694096Z adding 'executorch/backends/arm/test/ops/test_unsqueeze.py' 2025-06-05T23:55:25.9694552Z adding 'executorch/backends/arm/test/ops/test_upsample_bilinear2d.py' 2025-06-05T23:55:25.9695017Z adding 'executorch/backends/arm/test/ops/test_upsample_nearest2d.py' 2025-06-05T23:55:25.9695247Z adding 'executorch/backends/arm/test/ops/test_var.py' 2025-06-05T23:55:25.9695478Z adding 'executorch/backends/arm/test/ops/test_view.py' 2025-06-05T23:55:25.9695700Z adding 'executorch/backends/arm/test/ops/test_where.py' 2025-06-05T23:55:25.9695935Z adding 'executorch/backends/arm/test/ops/test_zeros.py' 2025-06-05T23:55:25.9696277Z adding 'executorch/backends/arm/test/passes/test_broadcast_args_pass.py' 2025-06-05T23:55:25.9696587Z adding 'executorch/backends/arm/test/passes/test_cast_int64_pass.py' 2025-06-05T23:55:25.9697080Z adding 'executorch/backends/arm/test/passes/test_convert_expand_copy_to_repeat.py' 2025-06-05T23:55:25.9697583Z adding 'executorch/backends/arm/test/passes/test_convert_int_pow_to_muls.py' 2025-06-05T23:55:25.9697934Z adding 'executorch/backends/arm/test/passes/test_convert_split_to_slice.py' 2025-06-05T23:55:25.9698242Z adding 'executorch/backends/arm/test/passes/test_convert_to_clamp.py' 2025-06-05T23:55:25.9698715Z adding 'executorch/backends/arm/test/passes/test_decompose_cosine_similarity_pass.py' 2025-06-05T23:55:25.9699155Z adding 'executorch/backends/arm/test/passes/test_decompose_div_pass.py' 2025-06-05T23:55:25.9699526Z adding 'executorch/backends/arm/test/passes/test_decompose_layernorm_pass.py' 2025-06-05T23:55:25.9699935Z adding 'executorch/backends/arm/test/passes/test_decompose_linalg_vector_norm_pass.py' 2025-06-05T23:55:25.9700286Z adding 'executorch/backends/arm/test/passes/test_decompose_meandim_pass.py' 2025-06-05T23:55:25.9700659Z adding 'executorch/backends/arm/test/passes/test_decompose_softmax_pass.py' 2025-06-05T23:55:25.9701043Z adding 'executorch/backends/arm/test/passes/test_decompose_var_pass.py' 2025-06-05T23:55:25.9701422Z adding 'executorch/backends/arm/test/passes/test_fold_qdq_pass.py' 2025-06-05T23:55:25.9701756Z adding 'executorch/backends/arm/test/passes/test_fuse_batchnorm_pass.py' 2025-06-05T23:55:25.9702106Z adding 'executorch/backends/arm/test/passes/test_fuse_constant_ops_pass.py' 2025-06-05T23:55:25.9702498Z adding 'executorch/backends/arm/test/passes/test_fuse_equal_placeholders_ops_pass.py' 2025-06-05T23:55:25.9702856Z adding 'executorch/backends/arm/test/passes/test_insert_table_ops_pass.py' 2025-06-05T23:55:25.9703264Z adding 'executorch/backends/arm/test/passes/test_ioquantization_pass.py' 2025-06-05T23:55:25.9703882Z adding 'executorch/backends/arm/test/passes/test_remove_clone_pass.py' 2025-06-05T23:55:25.9704181Z adding 'executorch/backends/arm/test/passes/test_rescale_pass.py' 2025-06-05T23:55:25.9704568Z adding 'executorch/backends/arm/test/passes/test_unsqueeze_before_repeat_pass.py' 2025-06-05T23:55:25.9704912Z adding 'executorch/backends/arm/test/quantizer/test_generic_annotater.py' 2025-06-05T23:55:25.9705159Z adding 'executorch/backends/arm/test/tester/__init__.py' 2025-06-05T23:55:25.9705513Z adding 'executorch/backends/arm/test/tester/analyze_output_utils.py' 2025-06-05T23:55:25.9706042Z adding 'executorch/backends/arm/test/tester/arm_tester.py' 2025-06-05T23:55:25.9706319Z adding 'executorch/backends/arm/test/tester/test_pipeline.py' 2025-06-05T23:55:25.9706567Z adding 'executorch/backends/arm/test/tosautil/__init__.py' 2025-06-05T23:55:25.9706900Z adding 'executorch/backends/arm/third-party/serialization_lib/setup.py' 2025-06-05T23:55:25.9707341Z adding 'executorch/backends/arm/third-party/serialization_lib/python/serializer/__init__.py' 2025-06-05T23:55:25.9707942Z adding 'executorch/backends/arm/third-party/serialization_lib/python/serializer/tosa_serializer.py' 2025-06-05T23:55:25.9708710Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ArithmeticRightShiftAttribute.py' 2025-06-05T23:55:25.9709131Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Attribute.py' 2025-06-05T23:55:25.9709562Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/AxisAttribute.py' 2025-06-05T23:55:25.9710014Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ClampAttribute.py' 2025-06-05T23:55:25.9710535Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/CondIfAttribute.py' 2025-06-05T23:55:25.9711112Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ConvAttribute.py' 2025-06-05T23:55:25.9711571Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/CustomAttribute.py' 2025-06-05T23:55:25.9711959Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/DType.py' 2025-06-05T23:55:25.9712392Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/FFTAttribute.py' 2025-06-05T23:55:25.9713000Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/FullyConnectedAttribute.py' 2025-06-05T23:55:25.9713552Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/MatMulAttribute.py' 2025-06-05T23:55:25.9713973Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/MulAttribute.py' 2025-06-05T23:55:25.9714429Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/NegateAttribute.py' 2025-06-05T23:55:25.9714808Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Op.py' 2025-06-05T23:55:25.9715370Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/PadAttribute.py' 2025-06-05T23:55:25.9715861Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/PoolAttribute.py' 2025-06-05T23:55:25.9716288Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/RFFTAttribute.py' 2025-06-05T23:55:25.9716742Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/RescaleAttribute.py' 2025-06-05T23:55:25.9717201Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ReshapeAttribute.py' 2025-06-05T23:55:25.9717704Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeAttribute.py' 2025-06-05T23:55:25.9718243Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeMode.py' 2025-06-05T23:55:25.9718690Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/SliceAttribute.py' 2025-06-05T23:55:25.9719132Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TableAttribute.py' 2025-06-05T23:55:25.9719574Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TileAttribute.py' 2025-06-05T23:55:25.9720018Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaBasicBlock.py' 2025-06-05T23:55:25.9720505Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaGraph.py' 2025-06-05T23:55:25.9721113Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaOperator.py' 2025-06-05T23:55:25.9721533Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaRegion.py' 2025-06-05T23:55:25.9722031Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaTensor.py' 2025-06-05T23:55:25.9722682Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeAttribute.py' 2025-06-05T23:55:25.9723190Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeConvAttribute.py' 2025-06-05T23:55:25.9723587Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Version.py' 2025-06-05T23:55:25.9724152Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/WhileLoopAttribute.py' 2025-06-05T23:55:25.9724685Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/__init__.py' 2025-06-05T23:55:25.9725048Z adding 'executorch/backends/arm/third-party/serialization_lib/schema/tosa.fbs' 2025-06-05T23:55:25.9725510Z adding 'executorch/backends/arm/third-party/serialization_lib/test/scripts/test_npy_fileio.py' 2025-06-05T23:55:25.9725939Z adding 'executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit/xunit.py' 2025-06-05T23:55:25.9726491Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conanfile.py' 2025-06-05T23:55:25.9727116Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/pnpm-lock.yaml' 2025-06-05T23:55:25.9727748Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs/animal.fbs' 2025-06-05T23:55:25.9728390Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers/bench.fbs' 2025-06-05T23:55:25.9728991Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/build.py' 2025-06-05T23:55:25.9729696Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package/conanfile.py' 2025-06-05T23:55:25.9730253Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/analysis_options.yaml' 2025-06-05T23:55:25.9730774Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/pubspec.yaml' 2025-06-05T23:55:25.9731491Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/bool_structs.fbs' 2025-06-05T23:55:25.9732087Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/list_of_enums.fbs' 2025-06-05T23:55:25.9732661Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/monster_test.fbs' 2025-06-05T23:55:25.9733230Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/hero.fbs' 2025-06-05T23:55:25.9733959Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/net.fbs' 2025-06-05T23:55:25.9734533Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/generate_goldens.py' 2025-06-05T23:55:25.9871945Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/golden_utils.py' 2025-06-05T23:55:25.9872510Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp/generate.py' 2025-06-05T23:55:25.9873070Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp/generate.py' 2025-06-05T23:55:25.9873640Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart/generate.py' 2025-06-05T23:55:25.9874273Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go/generate.py' 2025-06-05T23:55:25.9874930Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java/generate.py' 2025-06-05T23:55:25.9875495Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin/generate.py' 2025-06-05T23:55:25.9876349Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster/generate.py' 2025-06-05T23:55:25.9876905Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua/generate.py' 2025-06-05T23:55:25.9877463Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim/generate.py' 2025-06-05T23:55:25.9878094Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php/generate.py' 2025-06-05T23:55:25.9878728Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Galaxy.py' 2025-06-05T23:55:25.9879277Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Universe.py' 2025-06-05T23:55:25.9879820Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/__init__.py' 2025-06-05T23:55:25.9880449Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/generate.py' 2025-06-05T23:55:25.9881037Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust/generate.py' 2025-06-05T23:55:25.9881576Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema/basic.fbs' 2025-06-05T23:55:25.9882148Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift/generate.py' 2025-06-05T23:55:25.9882693Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts/generate.py' 2025-06-05T23:55:25.9883297Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/greeter.fbs' 2025-06-05T23:55:25.9884026Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/client.py' 2025-06-05T23:55:25.9884671Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/server.py' 2025-06-05T23:55:25.9885565Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloReply.py' 2025-06-05T23:55:25.9886410Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloRequest.py' 2025-06-05T23:55:25.9887132Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/__init__.py' 2025-06-05T23:55:25.9888073Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/greeter_grpc_fb.py' 2025-06-05T23:55:25.9888691Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter/greeter.fbs' 2025-06-05T23:55:25.9889227Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests/grpctest.py' 2025-06-05T23:55:25.9889935Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.py' 2025-06-05T23:55:25.9890831Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/MonsterExtra.py' 2025-06-05T23:55:25.9891475Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/__init__.py' 2025-06-05T23:55:25.9892157Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.py' 2025-06-05T23:55:25.9892919Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.py' 2025-06-05T23:55:25.9893780Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.py' 2025-06-05T23:55:25.9894849Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.py' 2025-06-05T23:55:25.9895694Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayStruct.py' 2025-06-05T23:55:25.9896396Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayTable.py' 2025-06-05T23:55:25.9897141Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.py' 2025-06-05T23:55:25.9897839Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.py' 2025-06-05T23:55:25.9898520Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.py' 2025-06-05T23:55:25.9899249Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedStruct.py' 2025-06-05T23:55:25.9899900Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.py' 2025-06-05T23:55:25.9900707Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.py' 2025-06-05T23:55:25.9901417Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.py' 2025-06-05T23:55:25.9902169Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.py' 2025-06-05T23:55:25.9903037Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.py' 2025-06-05T23:55:25.9903959Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.py' 2025-06-05T23:55:25.9904676Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestEnum.py' 2025-06-05T23:55:25.9905490Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.py' 2025-06-05T23:55:25.9906321Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.py' 2025-06-05T23:55:25.9906982Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.py' 2025-06-05T23:55:25.9907664Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/__init__.py' 2025-06-05T23:55:25.9908576Z 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:55:25.9909323Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Any.py' 2025-06-05T23:55:25.9910183Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Color.py' 2025-06-05T23:55:25.9911018Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/NestedUnionTest.py' 2025-06-05T23:55:25.9911757Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Test.py' 2025-06-05T23:55:25.9912775Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py' 2025-06-05T23:55:25.9913671Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Vec3.py' 2025-06-05T23:55:25.9914445Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/__init__.py' 2025-06-05T23:55:25.9915182Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.py' 2025-06-05T23:55:25.9916018Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/__init__.py' 2025-06-05T23:55:25.9916722Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.py' 2025-06-05T23:55:26.0098511Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInC.py' 2025-06-05T23:55:26.0099308Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.py' 2025-06-05T23:55:26.0099992Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/__init__.py' 2025-06-05T23:55:26.0100789Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.py' 2025-06-05T23:55:26.0101604Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.py' 2025-06-05T23:55:26.0102392Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.py' 2025-06-05T23:55:26.0103191Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.py' 2025-06-05T23:55:26.0104447Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/__init__.py' 2025-06-05T23:55:26.0105232Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.py' 2025-06-05T23:55:26.0105905Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/__init__.py' 2025-06-05T23:55:26.0106643Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/OptionalByte.py' 2025-06-05T23:55:26.0107372Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/ScalarStuff.py' 2025-06-05T23:55:26.0108071Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/__init__.py' 2025-06-05T23:55:26.0108780Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector/union_vector.fbs' 2025-06-05T23:55:26.0109315Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/__init__.py' 2025-06-05T23:55:26.0109810Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/py.typed' 2025-06-05T23:55:26.0110312Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/setup.py' 2025-06-05T23:55:26.0110909Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/__init__.py' 2025-06-05T23:55:26.0111507Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/_version.py' 2025-06-05T23:55:26.0112099Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/builder.py' 2025-06-05T23:55:26.0112671Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/compat.py' 2025-06-05T23:55:26.0113418Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/encode.py' 2025-06-05T23:55:26.0114044Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/flexbuffers.py' 2025-06-05T23:55:26.0114770Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/number_types.py' 2025-06-05T23:55:26.0115357Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/packer.py' 2025-06-05T23:55:26.0115922Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/table.py' 2025-06-05T23:55:26.0116493Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/util.py' 2025-06-05T23:55:26.0117228Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/AdvancedFeatures.py' 2025-06-05T23:55:26.0117903Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/BaseType.py' 2025-06-05T23:55:26.0118531Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Enum.py' 2025-06-05T23:55:26.0119197Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/EnumVal.py' 2025-06-05T23:55:26.0119841Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Field.py' 2025-06-05T23:55:26.0120508Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/KeyValue.py' 2025-06-05T23:55:26.0121161Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Object.py' 2025-06-05T23:55:26.0121813Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/RPCCall.py' 2025-06-05T23:55:26.0122465Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Schema.py' 2025-06-05T23:55:26.0123158Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/SchemaFile.py' 2025-06-05T23:55:26.0123883Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Service.py' 2025-06-05T23:55:26.0124644Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Type.py' 2025-06-05T23:55:26.0125300Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/__init__.py' 2025-06-05T23:55:26.0125859Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection/reflection.fbs' 2025-06-05T23:55:26.0126391Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/monster.fbs' 2025-06-05T23:55:26.0126946Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/sample_binary.py' 2025-06-05T23:55:26.0127595Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check-grpc-generated-code.py' 2025-06-05T23:55:26.0128179Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check_generate_code.py' 2025-06-05T23:55:26.0128728Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_code.py' 2025-06-05T23:55:26.0129362Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_grpc_examples.py' 2025-06-05T23:55:26.0129951Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/util.py' 2025-06-05T23:55:26.0130625Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap/snapcraft.yaml' 2025-06-05T23:55:26.0131238Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MutatingBool.fbs' 2025-06-05T23:55:26.0131862Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/alignment_test.fbs' 2025-06-05T23:55:26.0132498Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/arrays_test.fbs' 2025-06-05T23:55:26.0133134Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/dictionary_lookup.fbs' 2025-06-05T23:55:26.0133737Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/included_test.fbs' 2025-06-05T23:55:26.0134283Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/includer_test.fbs' 2025-06-05T23:55:26.0134930Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/keyword_test.fbs' 2025-06-05T23:55:26.0135517Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_extra.fbs' 2025-06-05T23:55:26.0136165Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test.fbs' 2025-06-05T23:55:26.0136820Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test_generated.py' 2025-06-05T23:55:26.0137378Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/more_defaults.fbs' 2025-06-05T23:55:26.0137919Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nan_inf_test.fbs' 2025-06-05T23:55:26.0138674Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_inline_table_test.fbs' 2025-06-05T23:55:26.0139244Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_type_test.fbs' 2025-06-05T23:55:26.0139865Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_union_test.fbs' 2025-06-05T23:55:26.0140432Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars.fbs' 2025-06-05T23:55:26.0141222Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/private_annotation_test.fbs' 2025-06-05T23:55:26.0358856Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_flexbuffers_test.py' 2025-06-05T23:55:26.0359611Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_test.py' 2025-06-05T23:55:26.0360473Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/required_strings.fbs' 2025-06-05T23:55:26.0361370Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/rust_namer_test.fbs' 2025-06-05T23:55:26.0362128Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/test.fbs' 2025-06-05T23:55:26.0363100Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/type_field_collsion.fbs' 2025-06-05T23:55:26.0363923Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_underlying_type_test.fbs' 2025-06-05T23:55:26.0364571Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_value_collision.fbs' 2025-06-05T23:55:26.0365136Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/vector_has_test.fbs' 2025-06-05T23:55:26.0365706Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/test_64bit.fbs' 2025-06-05T23:55:26.0366472Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v1.fbs' 2025-06-05T23:55:26.0367057Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v2.fbs' 2025-06-05T23:55:26.0367673Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/InParentNamespace.py' 2025-06-05T23:55:26.0368342Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/MonsterExtra.py' 2025-06-05T23:55:26.0368905Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/__init__.py' 2025-06-05T23:55:26.0369516Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Ability.py' 2025-06-05T23:55:26.0370098Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Any.py' 2025-06-05T23:55:26.0370788Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.py' 2025-06-05T23:55:26.0371469Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.py' 2025-06-05T23:55:26.0372113Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayStruct.py' 2025-06-05T23:55:26.0372742Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayTable.py' 2025-06-05T23:55:26.0373337Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Color.py' 2025-06-05T23:55:26.0373938Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/LongEnum.py' 2025-06-05T23:55:26.0374549Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Monster.py' 2025-06-05T23:55:26.0375426Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedStruct.py' 2025-06-05T23:55:26.0376017Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Race.py' 2025-06-05T23:55:26.0376640Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Referrable.py' 2025-06-05T23:55:26.0377227Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Stat.py' 2025-06-05T23:55:26.0377965Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.py' 2025-06-05T23:55:26.0378706Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.py' 2025-06-05T23:55:26.0379296Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Test.py' 2025-06-05T23:55:26.0379899Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestEnum.py' 2025-06-05T23:55:26.0380729Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.py' 2025-06-05T23:55:26.0381372Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.py' 2025-06-05T23:55:26.0381956Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Vec3.py' 2025-06-05T23:55:26.0382570Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/__init__.py' 2025-06-05T23:55:26.0383416Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/monster_test_grpc_fb.py' 2025-06-05T23:55:26.0384163Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Any.py' 2025-06-05T23:55:26.0384834Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Color.py' 2025-06-05T23:55:26.0385643Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/NestedUnionTest.py' 2025-06-05T23:55:26.0386470Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Test.py' 2025-06-05T23:55:26.0387267Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py' 2025-06-05T23:55:26.0387932Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Vec3.py' 2025-06-05T23:55:26.0388629Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/__init__.py' 2025-06-05T23:55:26.0389245Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/Monster.py' 2025-06-05T23:55:26.0389906Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/__init__.py' 2025-06-05T23:55:26.0390637Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary.fbs' 2025-06-05T23:55:26.0391344Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary_old.fbs' 2025-06-05T23:55:26.0392049Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/generate_annotations.py' 2025-06-05T23:55:26.0392688Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v1.fbs' 2025-06-05T23:55:26.0393472Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v2.fbs' 2025-06-05T23:55:26.0394089Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/enum_val_attributes.fbs' 2025-06-05T23:55:26.0394693Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_cpp_tests.py' 2025-06-05T23:55:26.0395306Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_kotlin_tests.py' 2025-06-05T23:55:26.0395923Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_schema_tests.py' 2025-06-05T23:55:26.0396490Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_test.py' 2025-06-05T23:55:26.0397133Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_ts_tests.py' 2025-06-05T23:55:26.0397709Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo.fbs' 2025-06-05T23:55:26.0398286Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo_with_ns.fbs' 2025-06-05T23:55:26.0398824Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/main.py' 2025-06-05T23:55:26.0399363Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar.fbs' 2025-06-05T23:55:26.0400104Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_foo.fbs' 2025-06-05T23:55:26.0400714Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_ns.fbs' 2025-06-05T23:55:26.0401369Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz.fbs' 2025-06-05T23:55:26.0401999Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz_with_ns.fbs' 2025-06-05T23:55:26.0402614Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/include_test1.fbs' 2025-06-05T23:55:26.0638293Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/order.fbs' 2025-06-05T23:55:26.0640016Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/include_test2.fbs' 2025-06-05T23:55:26.0641492Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/no_namespace.fbs' 2025-06-05T23:55:26.0643040Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field/key_field_sample.fbs' 2025-06-05T23:55:26.0644581Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums/enums.fbs' 2025-06-05T23:55:26.0645973Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test1.fbs' 2025-06-05T23:55:26.0647858Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test2.fbs' 2025-06-05T23:55:26.0649514Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test1.fbs' 2025-06-05T23:55:26.0650950Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test2.fbs' 2025-06-05T23:55:26.0652380Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test1.fbs' 2025-06-05T23:55:26.0653851Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test2.fbs' 2025-06-05T23:55:26.0655460Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.py' 2025-06-05T23:55:26.0657026Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInC.py' 2025-06-05T23:55:26.0658690Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.py' 2025-06-05T23:55:26.0660539Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/__init__.py' 2025-06-05T23:55:26.0662271Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.py' 2025-06-05T23:55:26.0664194Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.py' 2025-06-05T23:55:26.0665947Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.py' 2025-06-05T23:55:26.0667667Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.py' 2025-06-05T23:55:26.0669371Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/__init__.py' 2025-06-05T23:55:26.0670936Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.py' 2025-06-05T23:55:26.0672452Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/__init__.py' 2025-06-05T23:55:26.0674048Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test1.fbs' 2025-06-05T23:55:26.0675901Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test2.fbs' 2025-06-05T23:55:26.0677633Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test3.fbs' 2025-06-05T23:55:26.0679121Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim/testnim.py' 2025-06-05T23:55:26.0680469Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/OptionalByte.py' 2025-06-05T23:55:26.0681895Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/ScalarStuff.py' 2025-06-05T23:55:26.0683307Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/__init__.py' 2025-06-05T23:55:26.0684678Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test.golden.fbs' 2025-06-05T23:55:26.0686059Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_id.golden.fbs' 2025-06-05T23:55:26.0687780Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include.golden.fbs' 2025-06-05T23:55:26.0689280Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include_id.golden.fbs' 2025-06-05T23:55:26.0690739Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix.golden.fbs' 2025-06-05T23:55:26.0692203Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix_id.golden.fbs' 2025-06-05T23:55:26.0693775Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union.golden.fbs' 2025-06-05T23:55:26.0695464Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_id.golden.fbs' 2025-06-05T23:55:26.0696982Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include.golden.fbs' 2025-06-05T23:55:26.0698533Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include_id.golden.fbs' 2025-06-05T23:55:26.0700325Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix.golden.fbs' 2025-06-05T23:55:26.0701857Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix_id.golden.fbs' 2025-06-05T23:55:26.0703472Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_import.fbs' 2025-06-05T23:55:26.0705338Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_no_include.fbs' 2025-06-05T23:55:26.0707255Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers/fuzzer.fbs' 2025-06-05T23:55:26.0708775Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/TypeScriptTest.py' 2025-06-05T23:55:26.0710117Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/typescript_keywords.fbs' 2025-06-05T23:55:26.0711598Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex/arrays_test_complex.fbs' 2025-06-05T23:55:26.0713408Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/one.fbs' 2025-06-05T23:55:26.0715114Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/pnpm-lock.yaml' 2025-06-05T23:55:26.0716633Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/two.fbs' 2025-06-05T23:55:26.0718377Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_include.fbs' 2025-06-05T23:55:26.0719992Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_transitive_include.fbs' 2025-06-05T23:55:26.0721499Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector/union_vector.fbs' 2025-06-05T23:55:26.0722636Z adding 'executorch/backends/arm/tosa/schemas/tosa_0.80.fbs' 2025-06-05T23:55:26.0723399Z adding 'executorch/backends/arm/tosa/schemas/tosa_1.0.fbs' 2025-06-05T23:55:26.0724042Z adding 'executorch/backends/arm/util/arm_model_evaluator.py' 2025-06-05T23:55:26.0724666Z adding 'executorch/backends/cadence/aot/__init__.py' 2025-06-05T23:55:26.0725228Z adding 'executorch/backends/cadence/aot/compiler.py' 2025-06-05T23:55:26.0725837Z adding 'executorch/backends/cadence/aot/compiler_utils.py' 2025-06-05T23:55:26.0726561Z adding 'executorch/backends/cadence/aot/decompose_ops.py' 2025-06-05T23:55:26.0727344Z adding 'executorch/backends/cadence/aot/export_example.py' 2025-06-05T23:55:26.0727970Z adding 'executorch/backends/cadence/aot/functions.yaml' 2025-06-05T23:55:26.0728637Z adding 'executorch/backends/cadence/aot/functions_fusion_g3.yaml' 2025-06-05T23:55:26.0729318Z adding 'executorch/backends/cadence/aot/functions_hifi.yaml' 2025-06-05T23:55:26.0729936Z adding 'executorch/backends/cadence/aot/fuse_ops.py' 2025-06-05T23:55:26.0730526Z adding 'executorch/backends/cadence/aot/graph_builder.py' 2025-06-05T23:55:26.0731188Z adding 'executorch/backends/cadence/aot/memory_constraints.py' 2025-06-05T23:55:26.0731856Z adding 'executorch/backends/cadence/aot/memory_planning.py' 2025-06-05T23:55:26.0732527Z adding 'executorch/backends/cadence/aot/ops_registrations.py' 2025-06-05T23:55:26.0733159Z adding 'executorch/backends/cadence/aot/pass_utils.py' 2025-06-05T23:55:26.0733726Z adding 'executorch/backends/cadence/aot/passes.py' 2025-06-05T23:55:26.1151857Z adding 'executorch/backends/cadence/aot/ref_implementations.py' 2025-06-05T23:55:26.1152775Z adding 'executorch/backends/cadence/aot/remove_ops.py' 2025-06-05T23:55:26.1153378Z adding 'executorch/backends/cadence/aot/reorder_ops.py' 2025-06-05T23:55:26.1153993Z adding 'executorch/backends/cadence/aot/replace_ops.py' 2025-06-05T23:55:26.1154601Z adding 'executorch/backends/cadence/aot/simplify_ops.py' 2025-06-05T23:55:26.1155336Z adding 'executorch/backends/cadence/aot/utils.py' 2025-06-05T23:55:26.1155970Z adding 'executorch/backends/cadence/aot/quantizer/fusion_pass.py' 2025-06-05T23:55:26.1156682Z adding 'executorch/backends/cadence/aot/quantizer/patterns.py' 2025-06-05T23:55:26.1157390Z adding 'executorch/backends/cadence/aot/quantizer/quantizer.py' 2025-06-05T23:55:26.1158057Z adding 'executorch/backends/cadence/aot/quantizer/utils.py' 2025-06-05T23:55:26.1158898Z adding 'executorch/backends/cadence/aot/tests/test_decompose_ops_passes.py' 2025-06-05T23:55:26.1159712Z adding 'executorch/backends/cadence/aot/tests/test_fusion_ops_passes.py' 2025-06-05T23:55:26.1160504Z adding 'executorch/backends/cadence/aot/tests/test_graph_builder.py' 2025-06-05T23:55:26.1161247Z adding 'executorch/backends/cadence/aot/tests/test_memory_passes.py' 2025-06-05T23:55:26.1161991Z adding 'executorch/backends/cadence/aot/tests/test_pass_filter.py' 2025-06-05T23:55:26.1162744Z adding 'executorch/backends/cadence/aot/tests/test_remove_ops_passes.py' 2025-06-05T23:55:26.1163558Z adding 'executorch/backends/cadence/aot/tests/test_reorder_ops_passes.py' 2025-06-05T23:55:26.1164621Z adding 'executorch/backends/cadence/aot/tests/test_replace_ops_passes.py' 2025-06-05T23:55:26.1165662Z adding 'executorch/backends/cadence/aot/tests/test_simplify_ops_passes.py' 2025-06-05T23:55:26.1166392Z adding 'executorch/backends/cadence/runtime/__init__.py' 2025-06-05T23:55:26.1167050Z adding 'executorch/backends/cadence/runtime/executor.py' 2025-06-05T23:55:26.1167663Z adding 'executorch/backends/cadence/runtime/runtime.py' 2025-06-05T23:55:26.1168460Z adding 'executorch/backends/cadence/runtime/utils.py' 2025-06-05T23:55:26.1169059Z adding 'executorch/backends/cadence/utils/facto_util.py' 2025-06-05T23:55:26.1169686Z adding 'executorch/backends/cadence/utils/gen_header.py' 2025-06-05T23:55:26.1170333Z adding 'executorch/backends/cadence/utils/post_compilation.py' 2025-06-05T23:55:26.1171137Z adding 'executorch/backends/cadence/utils/FACTO/setup.py' 2025-06-05T23:55:26.1171964Z adding 'executorch/backends/cadence/utils/FACTO/calibrator/__init__.py' 2025-06-05T23:55:26.1172762Z adding 'executorch/backends/cadence/utils/FACTO/calibrator/runner.py' 2025-06-05T23:55:26.1173534Z adding 'executorch/backends/cadence/utils/FACTO/examples/example.py' 2025-06-05T23:55:26.1174351Z adding 'executorch/backends/cadence/utils/FACTO/examples/minimal_example.py' 2025-06-05T23:55:26.1175273Z adding 'executorch/backends/cadence/utils/FACTO/examples/random_seed.py' 2025-06-05T23:55:26.1176058Z adding 'executorch/backends/cadence/utils/FACTO/facto/__init__.py' 2025-06-05T23:55:26.1176948Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/__init__.py' 2025-06-05T23:55:26.1177856Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/__init__.py' 2025-06-05T23:55:26.1178795Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/engine.py' 2025-06-05T23:55:26.1179732Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/gen.py' 2025-06-05T23:55:26.1180887Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/__init__.py' 2025-06-05T23:55:26.1181841Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/engine.py' 2025-06-05T23:55:26.1182781Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/gen.py' 2025-06-05T23:55:26.1183748Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/type.py' 2025-06-05T23:55:26.1184675Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/__init__.py' 2025-06-05T23:55:26.1185642Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/engine.py' 2025-06-05T23:55:26.1186575Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/model.py' 2025-06-05T23:55:26.1187742Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/solve.py' 2025-06-05T23:55:26.1188667Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/__init__.py' 2025-06-05T23:55:26.1189577Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/model.py' 2025-06-05T23:55:26.1190471Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/__init__.py' 2025-06-05T23:55:26.1191439Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/random_manager.py' 2025-06-05T23:55:26.1192401Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/__init__.py' 2025-06-05T23:55:26.1193363Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/constants.py' 2025-06-05T23:55:26.1194396Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/gen.py' 2025-06-05T23:55:26.1195314Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/solve.py' 2025-06-05T23:55:26.1196235Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/space.py' 2025-06-05T23:55:26.1197161Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/type.py' 2025-06-05T23:55:26.1198308Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/utils.py' 2025-06-05T23:55:26.1199279Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/db.py' 2025-06-05T23:55:26.1200058Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/default.py' 2025-06-05T23:55:26.1200981Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/dtypes.py' 2025-06-05T23:55:26.1201792Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/function.py' 2025-06-05T23:55:26.1202758Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_engine.py' 2025-06-05T23:55:26.1203966Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_generator.py' 2025-06-05T23:55:26.1205240Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_attributes.py' 2025-06-05T23:55:26.1206287Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_generator.py' 2025-06-05T23:55:26.1207294Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_types.py' 2025-06-05T23:55:26.1208271Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_engine.py' 2025-06-05T23:55:26.1209263Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_solver.py' 2025-06-05T23:55:26.1210215Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_constraints.py' 2025-06-05T23:55:26.1211173Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_meta_arg_engine.py' 2025-06-05T23:55:26.1212089Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_specs.py' 2025-06-05T23:55:26.1213025Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_structural_engine.py' 2025-06-05T23:55:26.1214031Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_generation.py' 2025-06-05T23:55:26.1215133Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_solving.py' 2025-06-05T23:55:26.1216118Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_space.py' 2025-06-05T23:55:26.1217078Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_types.py' 2025-06-05T23:55:26.1217876Z adding 'executorch/backends/cortex_m/ops/operators.py' 2025-06-05T23:55:26.1218482Z adding 'executorch/backends/cortex_m/ops/operators.yaml' 2025-06-05T23:55:26.1219184Z adding 'executorch/backends/cortex_m/passes/replace_quant_nodes_pass.py' 2025-06-05T23:55:26.1219982Z adding 'executorch/backends/cortex_m/test/test_replace_quant_nodes.py' 2025-06-05T23:55:26.1220672Z adding 'executorch/backends/example/example_backend.py' 2025-06-05T23:55:26.1221309Z adding 'executorch/backends/example/example_partitioner.py' 2025-06-05T23:55:26.1221945Z adding 'executorch/backends/example/example_quantizer.py' 2025-06-05T23:55:26.1222606Z adding 'executorch/backends/example/test_example_delegate.py' 2025-06-05T23:55:26.1223426Z adding 'executorch/backends/example/example_backend_delegate_passes/merge_to_dim_pass.py' 2025-06-05T23:55:26.1224493Z adding 'executorch/backends/example/example_backend_delegate_passes/permute_memory_formats_pass.py' 2025-06-05T23:55:26.1225473Z adding 'executorch/backends/example/example_operators/adaptive_avg_pool2d.py' 2025-06-05T23:55:26.1226256Z adding 'executorch/backends/example/example_operators/add.py' 2025-06-05T23:55:26.1227132Z adding 'executorch/backends/example/example_operators/conv2d.py' 2025-06-05T23:55:26.1227870Z adding 'executorch/backends/example/example_operators/conv_relu.py' 2025-06-05T23:55:26.1228610Z adding 'executorch/backends/example/example_operators/dropout.py' 2025-06-05T23:55:26.1229339Z adding 'executorch/backends/example/example_operators/flatten.py' 2025-06-05T23:55:26.1230048Z adding 'executorch/backends/example/example_operators/linear.py' 2025-06-05T23:55:26.1230772Z adding 'executorch/backends/example/example_operators/op_base.py' 2025-06-05T23:55:26.1231469Z adding 'executorch/backends/example/example_operators/ops.py' 2025-06-05T23:55:26.1232170Z adding 'executorch/backends/example/example_operators/utils.py' 2025-06-05T23:55:26.1232930Z adding 'executorch/backends/mediatek/__init__.py' 2025-06-05T23:55:26.1233510Z adding 'executorch/backends/mediatek/partitioner.py' 2025-06-05T23:55:26.1234241Z adding 'executorch/backends/mediatek/preprocess.py' 2025-06-05T23:55:26.1234852Z adding 'executorch/backends/mediatek/_passes/__init__.py' 2025-06-05T23:55:26.1235632Z adding 'executorch/backends/mediatek/_passes/decompose_scaled_dot_product_attention.py' 2025-06-05T23:55:26.1236546Z adding 'executorch/backends/mediatek/quantizer/__init__.py' 2025-06-05T23:55:26.1237244Z adding 'executorch/backends/mediatek/quantizer/annotator.py' 2025-06-05T23:55:26.1238018Z adding 'executorch/backends/mediatek/quantizer/qconfig.py' 2025-06-05T23:55:26.1238664Z adding 'executorch/backends/mediatek/quantizer/quantizer.py' 2025-06-05T23:55:26.1239330Z adding 'executorch/backends/nxp/neutron_node_extraction.py' 2025-06-05T23:55:26.1239950Z adding 'executorch/backends/nxp/neutron_partitioner.py' 2025-06-05T23:55:26.1240625Z adding 'executorch/backends/nxp/neutron_pass_manager.py' 2025-06-05T23:55:26.1241271Z adding 'executorch/backends/nxp/nxp_backend.py' 2025-06-05T23:55:26.1241969Z adding 'executorch/backends/nxp/aten_passes/fuse_batch_norm_with_conv_pass.py' 2025-06-05T23:55:26.1242829Z adding 'executorch/backends/nxp/aten_passes/fuse_batch_norm_with_linear_pass.py' 2025-06-05T23:55:26.1243685Z adding 'executorch/backends/nxp/aten_passes/neutron_aten_pass_manager.py' 2025-06-05T23:55:26.1520109Z adding 'executorch/backends/nxp/backend/edge_helper.py' 2025-06-05T23:55:26.1521226Z adding 'executorch/backends/nxp/backend/edge_program_converter.py' 2025-06-05T23:55:26.1522187Z adding 'executorch/backends/nxp/backend/neutron_converter_manager.py' 2025-06-05T23:55:26.1523161Z adding 'executorch/backends/nxp/backend/node_format_inference.py' 2025-06-05T23:55:26.1523879Z adding 'executorch/backends/nxp/backend/ir/conversion_config.py' 2025-06-05T23:55:26.1524862Z adding 'executorch/backends/nxp/backend/ir/conversion_context.py' 2025-06-05T23:55:26.1525601Z adding 'executorch/backends/nxp/backend/ir/logger.py' 2025-06-05T23:55:26.1526257Z adding 'executorch/backends/nxp/backend/ir/tensor_formatting.py' 2025-06-05T23:55:26.1527245Z adding 'executorch/backends/nxp/backend/ir/converter/__init__.py' 2025-06-05T23:55:26.1528047Z adding 'executorch/backends/nxp/backend/ir/converter/node_converter.py' 2025-06-05T23:55:26.1529097Z adding 'executorch/backends/nxp/backend/ir/converter/quantization_utils.py' 2025-06-05T23:55:26.1530075Z adding 'executorch/backends/nxp/backend/ir/converter/tensor_utils.py' 2025-06-05T23:55:26.1530955Z adding 'executorch/backends/nxp/backend/ir/converter/builder/__init__.py' 2025-06-05T23:55:26.1531944Z adding 'executorch/backends/nxp/backend/ir/converter/builder/aten_model_builder_director.py' 2025-06-05T23:55:26.1533129Z adding 'executorch/backends/nxp/backend/ir/converter/builder/model_builder.py' 2025-06-05T23:55:26.1534135Z adding 'executorch/backends/nxp/backend/ir/converter/builder/quantization_verification.py' 2025-06-05T23:55:26.1535347Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/__init__.py' 2025-06-05T23:55:26.1536293Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/aten_translator.py' 2025-06-05T23:55:26.1537361Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/common.py' 2025-06-05T23:55:26.1538272Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/translator.py' 2025-06-05T23:55:26.1539329Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/__init__.py' 2025-06-05T23:55:26.1540377Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/__init__.py' 2025-06-05T23:55:26.1541746Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/addmm_converter.py' 2025-06-05T23:55:26.1543226Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/avg_pool_2d_converter.py' 2025-06-05T23:55:26.1544885Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/constant_pad_nd_converter.py' 2025-06-05T23:55:26.1546209Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/convolution_converter.py' 2025-06-05T23:55:26.1547633Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/max_pool_2d_converter.py' 2025-06-05T23:55:26.1549215Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/mm_converter.py' 2025-06-05T23:55:26.1550669Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/permute_copy_converter.py' 2025-06-05T23:55:26.1552063Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_dequantize_converter.py' 2025-06-05T23:55:26.1553599Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_quantize_converter.py' 2025-06-05T23:55:26.1555063Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/relu_converter.py' 2025-06-05T23:55:26.1556378Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/softmax_converter.py' 2025-06-05T23:55:26.1557841Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/view_copy_converter.py' 2025-06-05T23:55:26.1559104Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/__init__.py' 2025-06-05T23:55:26.1560277Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/recurrent_utils.py' 2025-06-05T23:55:26.1561651Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/reduce_utils.py' 2025-06-05T23:55:26.1562759Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/reshape_transposition.py' 2025-06-05T23:55:26.1563681Z adding 'executorch/backends/nxp/backend/ir/lib/__init__.py' 2025-06-05T23:55:26.1564621Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ATan2Options.py' 2025-06-05T23:55:26.1565421Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AbsOptions.py' 2025-06-05T23:55:26.1566257Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ActivationFunctionType.py' 2025-06-05T23:55:26.1567441Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AddNOptions.py' 2025-06-05T23:55:26.1568206Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AddOptions.py' 2025-06-05T23:55:26.1569089Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ArgMaxOptions.py' 2025-06-05T23:55:26.1570048Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ArgMinOptions.py' 2025-06-05T23:55:26.1570936Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AssignVariableOptions.py' 2025-06-05T23:55:26.1572160Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BatchMatMulOptions.py' 2025-06-05T23:55:26.1573102Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BatchToSpaceNDOptions.py' 2025-06-05T23:55:26.1574316Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceLSTMOptions.py' 2025-06-05T23:55:26.1575665Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceRNNOptions.py' 2025-06-05T23:55:26.1576824Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BitcastOptions.py' 2025-06-05T23:55:26.1577721Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BitwiseXorOptions.py' 2025-06-05T23:55:26.1578807Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BroadcastToOptions.py' 2025-06-05T23:55:26.1579673Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BucketizeOptions.py' 2025-06-05T23:55:26.1580446Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Buffer.py' 2025-06-05T23:55:26.1581462Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOperator.py' 2025-06-05T23:55:26.1582360Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions.py' 2025-06-05T23:55:26.1583270Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions2.py' 2025-06-05T23:55:26.1584482Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CallOnceOptions.py' 2025-06-05T23:55:26.1585298Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CallOptions.py' 2025-06-05T23:55:26.1586096Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CastOptions.py' 2025-06-05T23:55:26.1587145Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CombinerType.py' 2025-06-05T23:55:26.1588095Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ConcatEmbeddingsOptions.py' 2025-06-05T23:55:26.1589316Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ConcatenationOptions.py' 2025-06-05T23:55:26.1590167Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Conv2DOptions.py' 2025-06-05T23:55:26.1591285Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Conv3DOptions.py' 2025-06-05T23:55:26.1592052Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CosOptions.py' 2025-06-05T23:55:26.1593154Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CumsumOptions.py' 2025-06-05T23:55:26.1593989Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CustomOptionsFormat.py' 2025-06-05T23:55:26.1594953Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CustomQuantization.py' 2025-06-05T23:55:26.1595939Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DensifyOptions.py' 2025-06-05T23:55:26.1596819Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DepthToSpaceOptions.py' 2025-06-05T23:55:26.1598005Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DepthwiseConv2DOptions.py' 2025-06-05T23:55:26.1599096Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DequantizeOptions.py' 2025-06-05T23:55:26.1600040Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DilateOptions.py' 2025-06-05T23:55:26.1600875Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DimensionMetadata.py' 2025-06-05T23:55:26.1601775Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DimensionType.py' 2025-06-05T23:55:26.1602788Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DivOptions.py' 2025-06-05T23:55:26.1603824Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DynamicUpdateSliceOptions.py' 2025-06-05T23:55:26.1605131Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/EmbeddingLookupSparseOptions.py' 2025-06-05T23:55:26.1606038Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/EqualOptions.py' 2025-06-05T23:55:26.1606869Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ExpOptions.py' 2025-06-05T23:55:26.1607946Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ExpandDimsOptions.py' 2025-06-05T23:55:26.1608797Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FakeQuantOptions.py' 2025-06-05T23:55:26.1609801Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FillOptions.py' 2025-06-05T23:55:26.1610620Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FloorDivOptions.py' 2025-06-05T23:55:26.1611560Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FloorModOptions.py' 2025-06-05T23:55:26.1612635Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptions.py' 2025-06-05T23:55:26.1613733Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptionsWeightsFormat.py' 2025-06-05T23:55:26.1614970Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GatherNdOptions.py' 2025-06-05T23:55:26.1615829Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GatherOptions.py' 2025-06-05T23:55:26.1616833Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GeluOptions.py' 2025-06-05T23:55:26.1617686Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GreaterEqualOptions.py' 2025-06-05T23:55:26.1618701Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GreaterOptions.py' 2025-06-05T23:55:26.1619518Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HardSwishOptions.py' 2025-06-05T23:55:26.1620665Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableFindOptions.py' 2025-06-05T23:55:26.1621750Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableImportOptions.py' 2025-06-05T23:55:26.1622876Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableOptions.py' 2025-06-05T23:55:26.1623741Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableSizeOptions.py' 2025-06-05T23:55:26.1767666Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/IfOptions.py' 2025-06-05T23:55:26.1768824Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Int32Vector.py' 2025-06-05T23:55:26.1769979Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/L2NormOptions.py' 2025-06-05T23:55:26.1770885Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionOptions.py' 2025-06-05T23:55:26.1772085Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionType.py' 2025-06-05T23:55:26.1772982Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSTMKernelType.py' 2025-06-05T23:55:26.1773817Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSTMOptions.py' 2025-06-05T23:55:26.1774907Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LeakyReluOptions.py' 2025-06-05T23:55:26.1775784Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LessEqualOptions.py' 2025-06-05T23:55:26.1776771Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LessOptions.py' 2025-06-05T23:55:26.1777801Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LocalResponseNormalizationOptions.py' 2025-06-05T23:55:26.1778819Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogSoftmaxOptions.py' 2025-06-05T23:55:26.1779822Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalAndOptions.py' 2025-06-05T23:55:26.1780686Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalNotOptions.py' 2025-06-05T23:55:26.1781557Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalOrOptions.py' 2025-06-05T23:55:26.1782520Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MatrixDiagOptions.py' 2025-06-05T23:55:26.1783457Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MatrixSetDiagOptions.py' 2025-06-05T23:55:26.1784621Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MaximumMinimumOptions.py' 2025-06-05T23:55:26.1785439Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Metadata.py' 2025-06-05T23:55:26.1786218Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadMode.py' 2025-06-05T23:55:26.1787115Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadOptions.py' 2025-06-05T23:55:26.1787882Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Model.py' 2025-06-05T23:55:26.1788734Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MulOptions.py' 2025-06-05T23:55:26.1789605Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NegOptions.py' 2025-06-05T23:55:26.1790473Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV4Options.py' 2025-06-05T23:55:26.1792107Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV5Options.py' 2025-06-05T23:55:26.1793762Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NotEqualOptions.py' 2025-06-05T23:55:26.1795264Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/OneHotOptions.py' 2025-06-05T23:55:26.1796666Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Operator.py' 2025-06-05T23:55:26.1798063Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/OperatorCode.py' 2025-06-05T23:55:26.1799486Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PackOptions.py' 2025-06-05T23:55:26.1800948Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PadOptions.py' 2025-06-05T23:55:26.1802384Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PadV2Options.py' 2025-06-05T23:55:26.1803933Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Padding.py' 2025-06-05T23:55:26.1805339Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Pool2DOptions.py' 2025-06-05T23:55:26.1806904Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PowOptions.py' 2025-06-05T23:55:26.1808795Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizationDetails.py' 2025-06-05T23:55:26.1810572Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizationParameters.py' 2025-06-05T23:55:26.1811664Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizeOptions.py' 2025-06-05T23:55:26.1827709Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RNNOptions.py' 2025-06-05T23:55:26.1829390Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RandomOptions.py' 2025-06-05T23:55:26.1830862Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RangeOptions.py' 2025-06-05T23:55:26.1832315Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RankOptions.py' 2025-06-05T23:55:26.1833854Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReadVariableOptions.py' 2025-06-05T23:55:26.1835520Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowFunction.py' 2025-06-05T23:55:26.1837190Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowOptions.py' 2025-06-05T23:55:26.1838836Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReducerOptions.py' 2025-06-05T23:55:26.1840347Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReshapeOptions.py' 2025-06-05T23:55:26.1841970Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ResizeBilinearOptions.py' 2025-06-05T23:55:26.1843800Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ResizeNearestNeighborOptions.py' 2025-06-05T23:55:26.1845675Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReverseSequenceOptions.py' 2025-06-05T23:55:26.1847326Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReverseV2Options.py' 2025-06-05T23:55:26.1848868Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Rfft2dOptions.py' 2025-06-05T23:55:26.1850418Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RightShiftOptions.py' 2025-06-05T23:55:26.1851971Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RngAlgorithm.py' 2025-06-05T23:55:26.1853410Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SVDFOptions.py' 2025-06-05T23:55:26.1854989Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ScatterNdOptions.py' 2025-06-05T23:55:26.1856584Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SegmentSumOptions.py' 2025-06-05T23:55:26.1858141Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SelectOptions.py' 2025-06-05T23:55:26.1859644Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SelectV2Options.py' 2025-06-05T23:55:26.1861257Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SequenceRNNOptions.py' 2025-06-05T23:55:26.1862817Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ShapeOptions.py' 2025-06-05T23:55:26.1864254Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SignOptions.py' 2025-06-05T23:55:26.1865685Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SignatureDef.py' 2025-06-05T23:55:26.1867208Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SkipGramOptions.py' 2025-06-05T23:55:26.1868697Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SliceOptions.py' 2025-06-05T23:55:26.1870198Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SoftmaxOptions.py' 2025-06-05T23:55:26.1871820Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SpaceToBatchNDOptions.py' 2025-06-05T23:55:26.1873509Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SpaceToDepthOptions.py' 2025-06-05T23:55:26.1875141Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparseIndexVector.py' 2025-06-05T23:55:26.1876800Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparseToDenseOptions.py' 2025-06-05T23:55:26.1878476Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparsityParameters.py' 2025-06-05T23:55:26.1880031Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SplitOptions.py' 2025-06-05T23:55:26.1881499Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SplitVOptions.py' 2025-06-05T23:55:26.1882999Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SquareOptions.py' 2025-06-05T23:55:26.1884797Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SquaredDifferenceOptions.py' 2025-06-05T23:55:26.1886471Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SqueezeOptions.py' 2025-06-05T23:55:26.1888212Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloBroadcastInDimOptions.py' 2025-06-05T23:55:26.1890097Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloCompareOptions.py' 2025-06-05T23:55:26.1892075Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonDirection.py' 2025-06-05T23:55:26.1893958Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonType.py' 2025-06-05T23:55:26.1895905Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloConcatenateOptions.py' 2025-06-05T23:55:26.1897808Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloConvolutionOptions.py' 2025-06-05T23:55:26.1899693Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloCustomCallOptions.py' 2025-06-05T23:55:26.1901580Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloDotGeneralOptions.py' 2025-06-05T23:55:26.1903497Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloDynamicSliceOptions.py' 2025-06-05T23:55:26.1905492Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloGatherOptions.py' 2025-06-05T23:55:26.1907220Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloIotaOptions.py' 2025-06-05T23:55:26.1908924Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloPadOptions.py' 2025-06-05T23:55:26.1910668Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloPrecisionConfig.py' 2025-06-05T23:55:26.1912456Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceOptions.py' 2025-06-05T23:55:26.1914317Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceWindowOptions.py' 2025-06-05T23:55:26.1916280Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloRngBitGeneratorOptions.py' 2025-06-05T23:55:26.1918199Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloScatterOptions.py' 2025-06-05T23:55:26.1919954Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloSliceOptions.py' 2025-06-05T23:55:26.1921683Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloSortOptions.py' 2025-06-05T23:55:26.1923430Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloTransposeOptions.py' 2025-06-05T23:55:26.1925229Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloWhileOptions.py' 2025-06-05T23:55:26.1926918Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StridedSliceOptions.py' 2025-06-05T23:55:26.1928448Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SubGraph.py' 2025-06-05T23:55:26.1929844Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SubOptions.py' 2025-06-05T23:55:26.1931202Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Tensor.py' 2025-06-05T23:55:26.1932563Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TensorMap.py' 2025-06-05T23:55:26.1933956Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TensorType.py' 2025-06-05T23:55:26.1935430Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TileOptions.py' 2025-06-05T23:55:26.1958316Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TopKV2Options.py' 2025-06-05T23:55:26.1959950Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TransposeConvOptions.py' 2025-06-05T23:55:26.1961612Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TransposeOptions.py' 2025-06-05T23:55:26.1963091Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Uint16Vector.py' 2025-06-05T23:55:26.1964533Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Uint8Vector.py' 2025-06-05T23:55:26.1966293Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnidirectionalSequenceLSTMOptions.py' 2025-06-05T23:55:26.1968107Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UniqueOptions.py' 2025-06-05T23:55:26.1969791Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnpackOptions.py' 2025-06-05T23:55:26.1971453Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMaxOptions.py' 2025-06-05T23:55:26.1973293Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMinOptions.py' 2025-06-05T23:55:26.1975248Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentProdOptions.py' 2025-06-05T23:55:26.1977267Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentSumOptions.py' 2025-06-05T23:55:26.1978970Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/VarHandleOptions.py' 2025-06-05T23:55:26.1980495Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/VariantSubType.py' 2025-06-05T23:55:26.1982008Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/WhereOptions.py' 2025-06-05T23:55:26.1983433Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/WhileOptions.py' 2025-06-05T23:55:26.1984925Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ZerosLikeOptions.py' 2025-06-05T23:55:26.1986409Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/__init__.py' 2025-06-05T23:55:26.1987812Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/__init__.py' 2025-06-05T23:55:26.1989160Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/tflite_model.py' 2025-06-05T23:55:26.1990832Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/__init__.py' 2025-06-05T23:55:26.1992729Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/abs_options.py' 2025-06-05T23:55:26.1994319Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_n_options.py' 2025-06-05T23:55:26.1995355Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_options.py' 2025-06-05T23:55:26.1997258Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_max_options.py' 2025-06-05T23:55:26.1998573Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_min_options.py' 2025-06-05T23:55:26.2000393Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/average_pool_2d_options.py' 2025-06-05T23:55:26.2002557Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/batch_mat_mul_options.py' 2025-06-05T23:55:26.2004546Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_lstm_options.py' 2025-06-05T23:55:26.2006972Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_rnn_options.py' 2025-06-05T23:55:26.2009183Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bitwise_xor_options.py' 2025-06-05T23:55:26.2010494Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/broadcast_to_options.py' 2025-06-05T23:55:26.2012039Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cast_options.py' 2025-06-05T23:55:26.2013751Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/concatenation_options.py' 2025-06-05T23:55:26.2014967Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_2d_options.py' 2025-06-05T23:55:26.2016032Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_3d_options.py' 2025-06-05T23:55:26.2017092Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cum_sum_options.py' 2025-06-05T23:55:26.2018194Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depth_to_space_options.py' 2025-06-05T23:55:26.2019350Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depthwise_conv_2d_options.py' 2025-06-05T23:55:26.2020518Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/dequantize_options.py' 2025-06-05T23:55:26.2022464Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/div_options.py' 2025-06-05T23:55:26.2023907Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/equal_options.py' 2025-06-05T23:55:26.2024933Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/exp_options.py' 2025-06-05T23:55:26.2025994Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/floor_mod_options.py' 2025-06-05T23:55:26.2028207Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/fully_connected_options.py' 2025-06-05T23:55:26.2030224Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_nd_options.py' 2025-06-05T23:55:26.2032219Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_options.py' 2025-06-05T23:55:26.2033819Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gelu_options.py' 2025-06-05T23:55:26.2035378Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_equal_options.py' 2025-06-05T23:55:26.2037247Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_options.py' 2025-06-05T23:55:26.2039279Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/hard_swish_options.py' 2025-06-05T23:55:26.2040565Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/leaky_relu_options.py' 2025-06-05T23:55:26.2042642Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_equal_options.py' 2025-06-05T23:55:26.2044354Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_options.py' 2025-06-05T23:55:26.2046071Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/log_softmax_options.py' 2025-06-05T23:55:26.2048183Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_and_options.py' 2025-06-05T23:55:26.2050306Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_not_options.py' 2025-06-05T23:55:26.2052130Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_or_options.py' 2025-06-05T23:55:26.2053640Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lrn_options.py' 2025-06-05T23:55:26.2055525Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lstm_options.py' 2025-06-05T23:55:26.2057179Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/max_pool_2d_options.py' 2025-06-05T23:55:26.2059177Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/maximum_options.py' 2025-06-05T23:55:26.2060231Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mean_options.py' 2025-06-05T23:55:26.2061642Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/minimum_options.py' 2025-06-05T23:55:26.2063465Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mirror_pad_options.py' 2025-06-05T23:55:26.2065136Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mul_options.py' 2025-06-05T23:55:26.2066726Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/multinomial_options.py' 2025-06-05T23:55:26.2068575Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/neg_options.py' 2025-06-05T23:55:26.2070590Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/not_equal_options.py' 2025-06-05T23:55:26.2072111Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/one_hot_options.py' 2025-06-05T23:55:26.2073477Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_options.py' 2025-06-05T23:55:26.2075320Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_v2_options.py' 2025-06-05T23:55:26.2076378Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pow_options.py' 2025-06-05T23:55:26.2078488Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/quantize_options.py' 2025-06-05T23:55:26.2079682Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/range_options.py' 2025-06-05T23:55:26.2081546Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_max_options.py' 2025-06-05T23:55:26.2083073Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_min_options.py' 2025-06-05T23:55:26.2085142Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_prod_options.py' 2025-06-05T23:55:26.2086818Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reshape_options.py' 2025-06-05T23:55:26.2088505Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_bilinear_options.py' 2025-06-05T23:55:26.2089725Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_nearest_neighbor_options.py' 2025-06-05T23:55:26.2091994Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reverse_sequence_options.py' 2025-06-05T23:55:26.2093746Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/scatter_nd_options.py' 2025-06-05T23:55:26.2095651Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/select_v2_options.py' 2025-06-05T23:55:26.2097636Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/shape_options.py' 2025-06-05T23:55:26.2099046Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sign_options.py' 2025-06-05T23:55:26.2232807Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/slice_options.py' 2025-06-05T23:55:26.2234476Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/softmax_options.py' 2025-06-05T23:55:26.2236349Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/space_to_depth_options.py' 2025-06-05T23:55:26.2237993Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_options.py' 2025-06-05T23:55:26.2239968Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_v_options.py' 2025-06-05T23:55:26.2241610Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/square_options.py' 2025-06-05T23:55:26.2243416Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squared_difference_options.py' 2025-06-05T23:55:26.2245210Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squeeze_options.py' 2025-06-05T23:55:26.2246838Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/strided_slice_options.py' 2025-06-05T23:55:26.2248854Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sub_options.py' 2025-06-05T23:55:26.2250098Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sum_options.py' 2025-06-05T23:55:26.2251382Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/tile_options.py' 2025-06-05T23:55:26.2253394Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_conv_options.py' 2025-06-05T23:55:26.2254860Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_options.py' 2025-06-05T23:55:26.2257026Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_lstm_options.py' 2025-06-05T23:55:26.2259127Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_rnn_options.py' 2025-06-05T23:55:26.2260771Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/custom_options/flex_transpose_options.py' 2025-06-05T23:55:26.2261765Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/__init__.py' 2025-06-05T23:55:26.2262909Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/meta.py' 2025-06-05T23:55:26.2264600Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/types.py' 2025-06-05T23:55:26.2265491Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/__init__.py' 2025-06-05T23:55:26.2266318Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/graph_utils.py' 2025-06-05T23:55:26.2267860Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/operator_rules.py' 2025-06-05T23:55:26.2269297Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizer.py' 2025-06-05T23:55:26.2270185Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/pattern_matcher.py' 2025-06-05T23:55:26.2271766Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/tensor_rules.py' 2025-06-05T23:55:26.2273277Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/__init__.py' 2025-06-05T23:55:26.2275177Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/base_optimization.py' 2025-06-05T23:55:26.2277001Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/combine_hard_sigmoid_and_mul_to_hard_swish.py' 2025-06-05T23:55:26.2277941Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/eliminate_dead_branches.py' 2025-06-05T23:55:26.2278690Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_activation_functions.py' 2025-06-05T23:55:26.2279305Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_fully_connected_and_add_operators.py' 2025-06-05T23:55:26.2279859Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_quanitze_into_preceding_ops.py' 2025-06-05T23:55:26.2280339Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/keep_one_empty_buffer.py' 2025-06-05T23:55:26.2280821Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/move_relu_before_concat.py' 2025-06-05T23:55:26.2281468Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/permute_fully_connected_weights_after_reshape.py' 2025-06-05T23:55:26.2281985Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_cast_operators.py' 2025-06-05T23:55:26.2282482Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_quantize_operators.py' 2025-06-05T23:55:26.2282982Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_reshape_operators.py' 2025-06-05T23:55:26.2283480Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_transpose_operators.py' 2025-06-05T23:55:26.2284039Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/remove_unused_tensors_and_buffers.py' 2025-06-05T23:55:26.2284769Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/replace_average_pool_before_fully_connected_with_sum.py' 2025-06-05T23:55:26.2285046Z adding 'executorch/backends/nxp/quantizer/neutron_quantizer.py' 2025-06-05T23:55:26.2285273Z adding 'executorch/backends/nxp/quantizer/patterns.py' 2025-06-05T23:55:26.2285480Z adding 'executorch/backends/nxp/quantizer/utils.py' 2025-06-05T23:55:26.2285752Z adding 'executorch/backends/nxp/tests/executorch_pipeline.py' 2025-06-05T23:55:26.2285954Z adding 'executorch/backends/nxp/tests/executors.py' 2025-06-05T23:55:26.2286251Z adding 'executorch/backends/nxp/tests/exported_program_vizualize.py' 2025-06-05T23:55:26.2286447Z adding 'executorch/backends/nxp/tests/models.py' 2025-06-05T23:55:26.2286723Z adding 'executorch/backends/nxp/tests/test_batch_norm_fusion.py' 2025-06-05T23:55:26.2286986Z adding 'executorch/backends/nxp/tests/test_neutron_backend.py' 2025-06-05T23:55:26.2287311Z adding 'executorch/backends/nxp/tests/test_neutron_converter_manager.py' 2025-06-05T23:55:26.2287596Z adding 'executorch/backends/nxp/tests/test_node_format_inference.py' 2025-06-05T23:55:26.2287917Z adding 'executorch/backends/nxp/tests/test_operator_selector.py' 2025-06-05T23:55:26.2288320Z adding 'executorch/backends/nxp/tests/test_qdq_clustering_conv.py' 2025-06-05T23:55:26.2288556Z adding 'executorch/backends/nxp/tests/test_quantizer.py' 2025-06-05T23:55:26.2289017Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_avg_pool2d_converter.py' 2025-06-05T23:55:26.2289511Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_constant_pad_nd_converter.py' 2025-06-05T23:55:26.2290007Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_conv_converter.py' 2025-06-05T23:55:26.2290451Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_linear_converter.py' 2025-06-05T23:55:26.2290910Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_max_pool_2d_converter.py' 2025-06-05T23:55:26.2291441Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_permute_copy_converter.py' 2025-06-05T23:55:26.2291871Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_relu_converter.py' 2025-06-05T23:55:26.2292324Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_softmax_converter.py' 2025-06-05T23:55:26.2292781Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_view_copy_converter.py' 2025-06-05T23:55:26.2292970Z adding 'executorch/backends/openvino/__init__.py' 2025-06-05T23:55:26.2293203Z adding 'executorch/backends/openvino/partitioner.py' 2025-06-05T23:55:26.2293419Z adding 'executorch/backends/openvino/preprocess.py' 2025-06-05T23:55:26.2293670Z adding 'executorch/backends/openvino/quantizer/__init__.py' 2025-06-05T23:55:26.2293914Z adding 'executorch/backends/openvino/quantizer/quantizer.py' 2025-06-05T23:55:26.2294157Z adding 'executorch/backends/openvino/tests/test_runner.py' 2025-06-05T23:55:26.2294543Z adding 'executorch/backends/openvino/tests/models/test_classification.py' 2025-06-05T23:55:26.2294991Z adding 'executorch/backends/openvino/tests/ops/base_openvino_op_test.py' 2025-06-05T23:55:26.2295234Z adding 'executorch/backends/openvino/tests/ops/test_add.py' 2025-06-05T23:55:26.2295492Z adding 'executorch/backends/openvino/tests/ops/test_addmm.py' 2025-06-05T23:55:26.2295758Z adding 'executorch/backends/openvino/tests/ops/test_arange.py' 2025-06-05T23:55:26.2296044Z adding 'executorch/backends/openvino/tests/ops/test_batch_norm.py' 2025-06-05T23:55:26.2296336Z adding 'executorch/backends/openvino/tests/ops/test_convolution.py' 2025-06-05T23:55:26.2296583Z adding 'executorch/backends/openvino/tests/ops/test_mean.py' 2025-06-05T23:55:26.2296864Z adding 'executorch/backends/openvino/tests/ops/test_permute.py' 2025-06-05T23:55:26.2297139Z adding 'executorch/backends/openvino/tests/ops/test_pooling.py' 2025-06-05T23:55:26.2297422Z adding 'executorch/backends/openvino/tests/ops/test_unary_ops.py' 2025-06-05T23:55:26.2297706Z adding 'executorch/backends/openvino/tests/ops/test_view.py' 2025-06-05T23:55:26.2297941Z adding 'executorch/backends/qualcomm/qnn_preprocess.py' 2025-06-05T23:55:26.2298183Z adding 'executorch/backends/qualcomm/_passes/__init__.py' 2025-06-05T23:55:26.2298534Z adding 'executorch/backends/qualcomm/_passes/annotate_adaptive_avg_pool1d.py' 2025-06-05T23:55:26.2298824Z adding 'executorch/backends/qualcomm/_passes/annotate_quant_attrs.py' 2025-06-05T23:55:26.2299093Z adding 'executorch/backends/qualcomm/_passes/annotate_stack.py' 2025-06-05T23:55:26.2299372Z adding 'executorch/backends/qualcomm/_passes/annotate_unbind.py' 2025-06-05T23:55:26.2299636Z adding 'executorch/backends/qualcomm/_passes/build_quant_io.py' 2025-06-05T23:55:26.2299935Z adding 'executorch/backends/qualcomm/_passes/convert_bmm_to_matmul.py' 2025-06-05T23:55:26.2300266Z adding 'executorch/backends/qualcomm/_passes/convert_conv1d_to_conv2d.py' 2025-06-05T23:55:26.2300578Z adding 'executorch/backends/qualcomm/_passes/convert_square_to_pow.py' 2025-06-05T23:55:26.2300879Z adding 'executorch/backends/qualcomm/_passes/decompose_any.py' 2025-06-05T23:55:26.2301244Z adding 'executorch/backends/qualcomm/_passes/decompose_cdist.py' 2025-06-05T23:55:26.2301517Z adding 'executorch/backends/qualcomm/_passes/decompose_einsum.py' 2025-06-05T23:55:26.2301798Z adding 'executorch/backends/qualcomm/_passes/decompose_expm1.py' 2025-06-05T23:55:26.2302137Z adding 'executorch/backends/qualcomm/_passes/decompose_linalg_vector_norm.py' 2025-06-05T23:55:26.2691287Z adding 'executorch/backends/qualcomm/_passes/decompose_roll.py' 2025-06-05T23:55:26.2691918Z adding 'executorch/backends/qualcomm/_passes/decompose_silu.py' 2025-06-05T23:55:26.2692621Z adding 'executorch/backends/qualcomm/_passes/expand_broadcast_tensor_shape.py' 2025-06-05T23:55:26.2693055Z adding 'executorch/backends/qualcomm/_passes/fixed_linear_keep_dim.py' 2025-06-05T23:55:26.2693291Z adding 'executorch/backends/qualcomm/_passes/fold_qdq.py' 2025-06-05T23:55:26.2693597Z adding 'executorch/backends/qualcomm/_passes/fuse_consecutive_cast.py' 2025-06-05T23:55:26.2693927Z adding 'executorch/backends/qualcomm/_passes/fuse_consecutive_transpose.py' 2025-06-05T23:55:26.2694173Z adding 'executorch/backends/qualcomm/_passes/i64_to_i32.py' 2025-06-05T23:55:26.2694433Z adding 'executorch/backends/qualcomm/_passes/insert_io_qdq.py' 2025-06-05T23:55:26.2694807Z adding 'executorch/backends/qualcomm/_passes/insert_requantize.py' 2025-06-05T23:55:26.2695083Z adding 'executorch/backends/qualcomm/_passes/layout_transform.py' 2025-06-05T23:55:26.2695443Z adding 'executorch/backends/qualcomm/_passes/lift_constant_scalar_operands.py' 2025-06-05T23:55:26.2695720Z adding 'executorch/backends/qualcomm/_passes/qnn_pass_manager.py' 2025-06-05T23:55:26.2696057Z adding 'executorch/backends/qualcomm/_passes/recompose_pixel_unshuffle.py' 2025-06-05T23:55:26.2696338Z adding 'executorch/backends/qualcomm/_passes/recompose_rms_norm.py' 2025-06-05T23:55:26.2696637Z adding 'executorch/backends/qualcomm/_passes/reduce_dynamic_range.py' 2025-06-05T23:55:26.2696914Z adding 'executorch/backends/qualcomm/_passes/remove_0d_tensor.py' 2025-06-05T23:55:26.2697202Z adding 'executorch/backends/qualcomm/_passes/remove_redundancy.py' 2025-06-05T23:55:26.2697491Z adding 'executorch/backends/qualcomm/_passes/replace_arange_args.py' 2025-06-05T23:55:26.2697807Z adding 'executorch/backends/qualcomm/_passes/replace_index_put_input.py' 2025-06-05T23:55:26.2698097Z adding 'executorch/backends/qualcomm/_passes/replace_inf_values.py' 2025-06-05T23:55:26.2698389Z adding 'executorch/backends/qualcomm/_passes/tag_quant_io.py' 2025-06-05T23:55:26.2698611Z adding 'executorch/backends/qualcomm/_passes/utils.py' 2025-06-05T23:55:26.2698825Z adding 'executorch/backends/qualcomm/aot/ir/qcir.fbs' 2025-06-05T23:55:26.2699056Z adding 'executorch/backends/qualcomm/builders/__init__.py' 2025-06-05T23:55:26.2699317Z adding 'executorch/backends/qualcomm/builders/node_visitor.py' 2025-06-05T23:55:26.2699546Z adding 'executorch/backends/qualcomm/builders/op_abs.py' 2025-06-05T23:55:26.2699868Z adding 'executorch/backends/qualcomm/builders/op_adaptive_avg_pool2d.py' 2025-06-05T23:55:26.2700095Z adding 'executorch/backends/qualcomm/builders/op_add.py' 2025-06-05T23:55:26.2700338Z adding 'executorch/backends/qualcomm/builders/op_amax.py' 2025-06-05T23:55:26.2700567Z adding 'executorch/backends/qualcomm/builders/op_and.py' 2025-06-05T23:55:26.2700888Z adding 'executorch/backends/qualcomm/builders/op_arange.py' 2025-06-05T23:55:26.2701119Z adding 'executorch/backends/qualcomm/builders/op_argmin.py' 2025-06-05T23:55:26.2701447Z adding 'executorch/backends/qualcomm/builders/op_avg_pool2d.py' 2025-06-05T23:55:26.2701723Z adding 'executorch/backends/qualcomm/builders/op_batch_norm.py' 2025-06-05T23:55:26.2701955Z adding 'executorch/backends/qualcomm/builders/op_bmm.py' 2025-06-05T23:55:26.2702237Z adding 'executorch/backends/qualcomm/builders/op_cat.py' 2025-06-05T23:55:26.2702477Z adding 'executorch/backends/qualcomm/builders/op_ceil.py' 2025-06-05T23:55:26.2702722Z adding 'executorch/backends/qualcomm/builders/op_clamp.py' 2025-06-05T23:55:26.2703080Z adding 'executorch/backends/qualcomm/builders/op_conv2d.py' 2025-06-05T23:55:26.2703315Z adding 'executorch/backends/qualcomm/builders/op_cos.py' 2025-06-05T23:55:26.2703709Z adding 'executorch/backends/qualcomm/builders/op_cum_sum.py' 2025-06-05T23:55:26.2704016Z adding 'executorch/backends/qualcomm/builders/op_depth_to_space.py' 2025-06-05T23:55:26.2704292Z adding 'executorch/backends/qualcomm/builders/op_dequantize.py' 2025-06-05T23:55:26.2704612Z adding 'executorch/backends/qualcomm/builders/op_div.py' 2025-06-05T23:55:26.2704832Z adding 'executorch/backends/qualcomm/builders/op_elu.py' 2025-06-05T23:55:26.2705089Z adding 'executorch/backends/qualcomm/builders/op_embedding.py' 2025-06-05T23:55:26.2705317Z adding 'executorch/backends/qualcomm/builders/op_eq.py' 2025-06-05T23:55:26.2705542Z adding 'executorch/backends/qualcomm/builders/op_exp.py' 2025-06-05T23:55:26.2705779Z adding 'executorch/backends/qualcomm/builders/op_expand.py' 2025-06-05T23:55:26.2706019Z adding 'executorch/backends/qualcomm/builders/op_full.py' 2025-06-05T23:55:26.2706283Z adding 'executorch/backends/qualcomm/builders/op_full_like.py' 2025-06-05T23:55:26.2706526Z adding 'executorch/backends/qualcomm/builders/op_gather.py' 2025-06-05T23:55:26.2706746Z adding 'executorch/backends/qualcomm/builders/op_ge.py' 2025-06-05T23:55:26.2706984Z adding 'executorch/backends/qualcomm/builders/op_gelu.py' 2025-06-05T23:55:26.2707257Z adding 'executorch/backends/qualcomm/builders/op_group_norm.py' 2025-06-05T23:55:26.2707483Z adding 'executorch/backends/qualcomm/builders/op_gt.py' 2025-06-05T23:55:26.2707763Z adding 'executorch/backends/qualcomm/builders/op_hardsigmoid.py' 2025-06-05T23:55:26.2708014Z adding 'executorch/backends/qualcomm/builders/op_hardswish.py' 2025-06-05T23:55:26.2708269Z adding 'executorch/backends/qualcomm/builders/op_hardtanh.py' 2025-06-05T23:55:26.2708504Z adding 'executorch/backends/qualcomm/builders/op_index.py' 2025-06-05T23:55:26.2708770Z adding 'executorch/backends/qualcomm/builders/op_index_put.py' 2025-06-05T23:55:26.2709048Z adding 'executorch/backends/qualcomm/builders/op_instance_norm.py' 2025-06-05T23:55:26.2709315Z adding 'executorch/backends/qualcomm/builders/op_layer_norm.py' 2025-06-05T23:55:26.2709541Z adding 'executorch/backends/qualcomm/builders/op_le.py' 2025-06-05T23:55:26.2709786Z adding 'executorch/backends/qualcomm/builders/op_linear.py' 2025-06-05T23:55:26.2710009Z adding 'executorch/backends/qualcomm/builders/op_log.py' 2025-06-05T23:55:26.2710286Z adding 'executorch/backends/qualcomm/builders/op_log_softmax.py' 2025-06-05T23:55:26.2710556Z adding 'executorch/backends/qualcomm/builders/op_logical_not.py' 2025-06-05T23:55:26.2710783Z adding 'executorch/backends/qualcomm/builders/op_lt.py' 2025-06-05T23:55:26.2711018Z adding 'executorch/backends/qualcomm/builders/op_matmul.py' 2025-06-05T23:55:26.2711252Z adding 'executorch/backends/qualcomm/builders/op_max.py' 2025-06-05T23:55:26.2711520Z adding 'executorch/backends/qualcomm/builders/op_max_pool2d.py' 2025-06-05T23:55:26.2711778Z adding 'executorch/backends/qualcomm/builders/op_mean_dim.py' 2025-06-05T23:55:26.2712001Z adding 'executorch/backends/qualcomm/builders/op_min.py' 2025-06-05T23:55:26.2712228Z adding 'executorch/backends/qualcomm/builders/op_mul.py' 2025-06-05T23:55:26.2712454Z adding 'executorch/backends/qualcomm/builders/op_ne.py' 2025-06-05T23:55:26.2712678Z adding 'executorch/backends/qualcomm/builders/op_neg.py' 2025-06-05T23:55:26.2712910Z adding 'executorch/backends/qualcomm/builders/op_or.py' 2025-06-05T23:55:26.2713129Z adding 'executorch/backends/qualcomm/builders/op_pad.py' 2025-06-05T23:55:26.2713353Z adding 'executorch/backends/qualcomm/builders/op_pow.py' 2025-06-05T23:55:26.2713598Z adding 'executorch/backends/qualcomm/builders/op_prelu.py' 2025-06-05T23:55:26.2713859Z adding 'executorch/backends/qualcomm/builders/op_quantize.py' 2025-06-05T23:55:26.2714084Z adding 'executorch/backends/qualcomm/builders/op_relu.py' 2025-06-05T23:55:26.2714401Z adding 'executorch/backends/qualcomm/builders/op_repeat.py' 2025-06-05T23:55:26.2714654Z adding 'executorch/backends/qualcomm/builders/op_reshape.py' 2025-06-05T23:55:26.2714896Z adding 'executorch/backends/qualcomm/builders/op_resize.py' 2025-06-05T23:55:26.2715138Z adding 'executorch/backends/qualcomm/builders/op_rms_norm.py' 2025-06-05T23:55:26.2715380Z adding 'executorch/backends/qualcomm/builders/op_rsqrt.py' 2025-06-05T23:55:26.2715723Z adding 'executorch/backends/qualcomm/builders/op_scalar_tensor.py' 2025-06-05T23:55:26.2716004Z adding 'executorch/backends/qualcomm/builders/op_select_copy.py' 2025-06-05T23:55:26.2716244Z adding 'executorch/backends/qualcomm/builders/op_sigmoid.py' 2025-06-05T23:55:26.2716470Z adding 'executorch/backends/qualcomm/builders/op_sin.py' 2025-06-05T23:55:26.2716728Z adding 'executorch/backends/qualcomm/builders/op_skip_ops.py' 2025-06-05T23:55:26.2716999Z adding 'executorch/backends/qualcomm/builders/op_slice_copy.py' 2025-06-05T23:55:26.2717242Z adding 'executorch/backends/qualcomm/builders/op_softmax.py' 2025-06-05T23:55:26.2717530Z adding 'executorch/backends/qualcomm/builders/op_space_to_depth.py' 2025-06-05T23:55:26.2717831Z adding 'executorch/backends/qualcomm/builders/op_split_with_sizes.py' 2025-06-05T23:55:26.2718063Z adding 'executorch/backends/qualcomm/builders/op_sqrt.py' 2025-06-05T23:55:26.2718317Z adding 'executorch/backends/qualcomm/builders/op_squeeze.py' 2025-06-05T23:55:26.2718551Z adding 'executorch/backends/qualcomm/builders/op_stack.py' 2025-06-05T23:55:26.2718784Z adding 'executorch/backends/qualcomm/builders/op_sub.py' 2025-06-05T23:55:26.2719064Z adding 'executorch/backends/qualcomm/builders/op_sum_int_list.py' 2025-06-05T23:55:26.2719306Z adding 'executorch/backends/qualcomm/builders/op_tanh.py' 2025-06-05T23:55:26.2719525Z adding 'executorch/backends/qualcomm/builders/op_to.py' 2025-06-05T23:55:26.2719766Z adding 'executorch/backends/qualcomm/builders/op_topk.py' 2025-06-05T23:55:26.2720041Z adding 'executorch/backends/qualcomm/builders/op_transpose.py' 2025-06-05T23:55:26.2720289Z adding 'executorch/backends/qualcomm/builders/op_unbind.py' 2025-06-05T23:55:26.2720543Z adding 'executorch/backends/qualcomm/builders/op_unsqueeze.py' 2025-06-05T23:55:26.2720879Z adding 'executorch/backends/qualcomm/builders/op_upsample_bilinear2d.py' 2025-06-05T23:55:26.2721204Z adding 'executorch/backends/qualcomm/builders/op_upsample_nearest2d.py' 2025-06-05T23:55:26.2721451Z adding 'executorch/backends/qualcomm/builders/op_where.py' 2025-06-05T23:55:26.2721803Z adding 'executorch/backends/qualcomm/builders/qnn_constants.py' 2025-06-05T23:55:26.2722042Z adding 'executorch/backends/qualcomm/builders/utils.py' 2025-06-05T23:55:26.2722278Z adding 'executorch/backends/qualcomm/debugger/utils.py' 2025-06-05T23:55:26.2722605Z adding 'executorch/backends/qualcomm/partition/common_defs.py' 2025-06-05T23:55:26.2722909Z adding 'executorch/backends/qualcomm/partition/qnn_partitioner.py' 2025-06-05T23:55:26.2723146Z adding 'executorch/backends/qualcomm/partition/utils.py' 2025-06-05T23:55:26.2723415Z adding 'executorch/backends/qualcomm/quantizer/annotators.py' 2025-06-05T23:55:26.2723722Z adding 'executorch/backends/qualcomm/quantizer/custom_annotation.py' 2025-06-05T23:55:26.2723966Z adding 'executorch/backends/qualcomm/quantizer/qconfig.py' 2025-06-05T23:55:26.2724213Z adding 'executorch/backends/qualcomm/quantizer/quantizer.py' 2025-06-05T23:55:26.2724631Z adding 'executorch/backends/qualcomm/quantizer/observers/per_block_param_observer.py' 2025-06-05T23:55:26.2725057Z adding 'executorch/backends/qualcomm/quantizer/observers/per_channel_param_observer.py' 2025-06-05T23:55:26.2725391Z adding 'executorch/backends/qualcomm/serialization/qc_compiler_spec.fbs' 2025-06-05T23:55:26.2725664Z adding 'executorch/backends/qualcomm/serialization/qc_schema.py' 2025-06-05T23:55:26.3143408Z adding 'executorch/backends/qualcomm/serialization/qc_schema_serialize.py' 2025-06-05T23:55:26.3143812Z adding 'executorch/backends/qualcomm/tests/models.py' 2025-06-05T23:55:26.3144102Z adding 'executorch/backends/qualcomm/tests/test_qnn_delegate.py' 2025-06-05T23:55:26.3144318Z adding 'executorch/backends/qualcomm/tests/utils.py' 2025-06-05T23:55:26.3144542Z adding 'executorch/backends/qualcomm/utils/constants.py' 2025-06-05T23:55:26.3144758Z adding 'executorch/backends/qualcomm/utils/utils.py' 2025-06-05T23:55:26.3144971Z adding 'executorch/backends/transforms/__init__.py' 2025-06-05T23:55:26.3145333Z adding 'executorch/backends/transforms/addmm_mm_to_linear.py' 2025-06-05T23:55:26.3145589Z adding 'executorch/backends/transforms/convert_dtype_pass.py' 2025-06-05T23:55:26.3145837Z adding 'executorch/backends/transforms/decompose_sdpa.py' 2025-06-05T23:55:26.3146172Z adding 'executorch/backends/transforms/duplicate_dynamic_quant_chain.py' 2025-06-05T23:55:26.3146475Z adding 'executorch/backends/transforms/fuse_batch_norm_with_conv.py' 2025-06-05T23:55:26.3146741Z adding 'executorch/backends/transforms/fuse_conv_with_clamp.py' 2025-06-05T23:55:26.3146982Z adding 'executorch/backends/transforms/fuse_view_copy.py' 2025-06-05T23:55:26.3147232Z adding 'executorch/backends/transforms/mean_to_sum_div.py' 2025-06-05T23:55:26.3147481Z adding 'executorch/backends/transforms/rank_0_to_rank_1.py' 2025-06-05T23:55:26.3147717Z adding 'executorch/backends/transforms/remove_clone_ops.py' 2025-06-05T23:55:26.3147973Z adding 'executorch/backends/transforms/remove_getitem_op.py' 2025-06-05T23:55:26.3148285Z adding 'executorch/backends/transforms/replace_scalar_with_tensor.py' 2025-06-05T23:55:26.3148511Z adding 'executorch/backends/transforms/utils.py' 2025-06-05T23:55:26.3148849Z adding 'executorch/backends/transforms/view_copy_to_squeeze_unsqueeze.py' 2025-06-05T23:55:26.3149274Z adding 'executorch/backends/transforms/test/test_create_delete_constant_placeholder.py' 2025-06-05T23:55:26.3149645Z adding 'executorch/backends/transforms/test/test_duplicate_dynamic_quant_chain.py' 2025-06-05T23:55:26.3149949Z adding 'executorch/backends/transforms/test/test_rank_0_to_rank_1.py' 2025-06-05T23:55:26.3150149Z adding 'executorch/backends/vulkan/__init__.py' 2025-06-05T23:55:26.3150375Z adding 'executorch/backends/vulkan/custom_ops_lib.py' 2025-06-05T23:55:26.3150573Z adding 'executorch/backends/vulkan/op_registry.py' 2025-06-05T23:55:26.3150759Z adding 'executorch/backends/vulkan/utils.py' 2025-06-05T23:55:26.3151002Z adding 'executorch/backends/vulkan/vulkan_preprocess.py' 2025-06-05T23:55:26.3151237Z adding 'executorch/backends/vulkan/_passes/__init__.py' 2025-06-05T23:55:26.3151517Z adding 'executorch/backends/vulkan/_passes/fuse_quantized_ops.py' 2025-06-05T23:55:26.3151814Z adding 'executorch/backends/vulkan/_passes/insert_prepack_nodes.py' 2025-06-05T23:55:26.3152143Z adding 'executorch/backends/vulkan/_passes/int4_weight_only_quantizer.py' 2025-06-05T23:55:26.3152398Z adding 'executorch/backends/vulkan/_passes/remove_asserts.py' 2025-06-05T23:55:26.3152731Z adding 'executorch/backends/vulkan/_passes/remove_local_scalar_dense_ops.py' 2025-06-05T23:55:26.3153010Z adding 'executorch/backends/vulkan/_passes/remove_redundant_ops.py' 2025-06-05T23:55:26.3153324Z adding 'executorch/backends/vulkan/_passes/squeeze_unsqueeze_inputs.py' 2025-06-05T23:55:26.3153607Z adding 'executorch/backends/vulkan/_passes/tag_memory_meta_pass.py' 2025-06-05T23:55:26.3153921Z adding 'executorch/backends/vulkan/partitioner/vulkan_partitioner.py' 2025-06-05T23:55:26.3154209Z adding 'executorch/backends/vulkan/quantizer/vulkan_quantizer.py' 2025-06-05T23:55:26.3154539Z adding 'executorch/backends/vulkan/runtime/gen_vulkan_spv.py' 2025-06-05T23:55:26.3155080Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_buffer.yaml' 2025-06-05T23:55:26.3155484Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_texture3d.yaml' 2025-06-05T23:55:26.3155845Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_optimized.yaml' 2025-06-05T23:55:26.3156227Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/arange.yaml' 2025-06-05T23:55:26.3156568Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/avg_pool2d.yaml' 2025-06-05T23:55:26.3156912Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/batchnorm.yaml' 2025-06-05T23:55:26.3157245Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/binary_op.yaml' 2025-06-05T23:55:26.3157780Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/bitw8_image_to_nchw_nobitw8buffer.yaml' 2025-06-05T23:55:26.3158154Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_buffer.yaml' 2025-06-05T23:55:26.3158513Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_nchw.yaml' 2025-06-05T23:55:26.3158818Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/clone.yaml' 2025-06-05T23:55:26.3159115Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv1d.yaml' 2025-06-05T23:55:26.3159423Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d.yaml' 2025-06-05T23:55:26.3159762Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw.yaml' 2025-06-05T23:55:26.3160231Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_output_tile.yaml' 2025-06-05T23:55:26.3160766Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_prepack_weights.yaml' 2025-06-05T23:55:26.3161197Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_sned_output_tile.yaml' 2025-06-05T23:55:26.3161606Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_prepack_weights.yaml' 2025-06-05T23:55:26.3161945Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw.yaml' 2025-06-05T23:55:26.3162308Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw_s1p0.yaml' 2025-06-05T23:55:26.3162675Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d.yaml' 2025-06-05T23:55:26.3163157Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d_prepack_weights.yaml' 2025-06-05T23:55:26.3163569Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_channel_offset.yaml' 2025-06-05T23:55:26.3164043Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_offset.yaml' 2025-06-05T23:55:26.3164459Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_packed_dim_offset.yaml' 2025-06-05T23:55:26.3164790Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/embedding.yaml' 2025-06-05T23:55:26.3165093Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/flip.yaml' 2025-06-05T23:55:26.3165389Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/full.yaml' 2025-06-05T23:55:26.3165725Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/grid_priors.yaml' 2025-06-05T23:55:26.3166065Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/image_to_nchw.yaml' 2025-06-05T23:55:26.3166418Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/index_select.yaml' 2025-06-05T23:55:26.3166840Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/index_select_channel.yaml' 2025-06-05T23:55:26.3167270Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/kv_cache_update.yaml' 2025-06-05T23:55:26.3167689Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw.yaml' 2025-06-05T23:55:26.3168075Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_coop.yaml' 2025-06-05T23:55:26.3168464Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_tiled.yaml' 2025-06-05T23:55:26.3168844Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_coop.yaml' 2025-06-05T23:55:26.3169215Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_tiled.yaml' 2025-06-05T23:55:26.3169608Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/max_pool2d.yaml' 2025-06-05T23:55:26.3170118Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/native_layer_norm.yaml' 2025-06-05T23:55:26.3170689Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_bitw8_image_nobitw8buffer.yaml' 2025-06-05T23:55:26.3171047Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_buffer.yaml' 2025-06-05T23:55:26.3171383Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_image.yaml' 2025-06-05T23:55:26.3171683Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/no_op.yaml' 2025-06-05T23:55:26.3172379Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pack_int4_linear_weight_transposed_interleaved.yaml' 2025-06-05T23:55:26.3172835Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pad_channel.yaml' 2025-06-05T23:55:26.3173205Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pad_height_width.yaml' 2025-06-05T23:55:26.3173535Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/permute.yaml' 2025-06-05T23:55:26.3173841Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/reduce.yaml' 2025-06-05T23:55:26.3174154Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat.yaml' 2025-06-05T23:55:26.3174503Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_channel.yaml' 2025-06-05T23:55:26.3174993Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_interleave.yaml' 2025-06-05T23:55:26.3175379Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/rotary_embedding.yaml' 2025-06-05T23:55:26.3175852Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_attn_weight_scale_and_mask.yaml' 2025-06-05T23:55:26.3176178Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/softmax.yaml' 2025-06-05T23:55:26.3176464Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/tan.yaml' 2025-06-05T23:55:26.3176837Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_buffer.yaml' 2025-06-05T23:55:26.3177214Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_texture.yaml' 2025-06-05T23:55:26.3177538Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/unary_op.yaml' 2025-06-05T23:55:26.3177872Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/upsample_2d.yaml' 2025-06-05T23:55:26.3178210Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/var_buffer.yaml' 2025-06-05T23:55:26.3178571Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/var_texture3d.yaml' 2025-06-05T23:55:26.3178874Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/view.yaml' 2025-06-05T23:55:26.3179182Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/where.yaml' 2025-06-05T23:55:26.3179431Z adding 'executorch/backends/vulkan/serialization/schema.fbs' 2025-06-05T23:55:26.3179770Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_builder.py' 2025-06-05T23:55:26.3180097Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_schema.py' 2025-06-05T23:55:26.3180444Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_serialize.py' 2025-06-05T23:55:26.3620598Z adding 'executorch/backends/vulkan/test/test_serialization.py' 2025-06-05T23:55:26.3621101Z adding 'executorch/backends/vulkan/test/test_vulkan_delegate.py' 2025-06-05T23:55:26.3621794Z adding 'executorch/backends/vulkan/test/test_vulkan_delegate_header.py' 2025-06-05T23:55:26.3622147Z adding 'executorch/backends/vulkan/test/test_vulkan_passes.py' 2025-06-05T23:55:26.3622486Z adding 'executorch/backends/vulkan/test/glsl/all_shaders.yaml' 2025-06-05T23:55:26.3622937Z adding 'executorch/backends/vulkan/test/glsl/dynamic_dispatch_test.yaml' 2025-06-05T23:55:26.3623347Z adding 'executorch/backends/vulkan/test/glsl/reference_matmul_common.yaml' 2025-06-05T23:55:26.3623597Z adding 'executorch/backends/vulkan/test/op_tests/cases.py' 2025-06-05T23:55:26.3623982Z adding 'executorch/backends/vulkan/test/op_tests/generate_op_benchmarks.py' 2025-06-05T23:55:26.3624556Z adding 'executorch/backends/vulkan/test/op_tests/generate_op_correctness_tests.py' 2025-06-05T23:55:26.3624907Z adding 'executorch/backends/vulkan/test/op_tests/utils/aten_types.py' 2025-06-05T23:55:26.3625488Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_benchmark_vk.py' 2025-06-05T23:55:26.3625831Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_computegraph.py' 2025-06-05T23:55:26.3626197Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_correctness_base.py' 2025-06-05T23:55:26.3626541Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_correctness_vk.py' 2025-06-05T23:55:26.3627073Z adding 'executorch/backends/vulkan/test/op_tests/utils/test_suite.py' 2025-06-05T23:55:26.3627634Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/apiconventions.py' 2025-06-05T23:55:26.3628106Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/cgenerator.py' 2025-06-05T23:55:26.3628521Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/conventions.py' 2025-06-05T23:55:26.3628910Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/generator.py' 2025-06-05T23:55:26.3629332Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/genvk.py' 2025-06-05T23:55:26.3629861Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/reg.py' 2025-06-05T23:55:26.3630290Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/vkconventions.py' 2025-06-05T23:55:26.3630776Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools/util.py' 2025-06-05T23:55:26.3631353Z adding 'executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis/GpuMemDumpVis.py' 2025-06-05T23:55:26.3631647Z adding 'executorch/backends/vulkan/third-party/volk/generate.py' 2025-06-05T23:55:26.3632136Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/buf_bandwidth.yaml' 2025-06-05T23:55:26.3632533Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/buf_cacheline_size.yaml' 2025-06-05T23:55:26.3632839Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/reg_count.yaml' 2025-06-05T23:55:26.3633239Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/tex_bandwidth.yaml' 2025-06-05T23:55:26.3633623Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/tex_cacheline_concurr.yaml' 2025-06-05T23:55:26.3633930Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/warp_size.yaml' 2025-06-05T23:55:26.3634121Z adding 'executorch/backends/xnnpack/__init__.py' 2025-06-05T23:55:26.3634403Z adding 'executorch/backends/xnnpack/xnnpack_preprocess.py' 2025-06-05T23:55:26.3634753Z adding 'executorch/backends/xnnpack/_passes/__init__.py' 2025-06-05T23:55:26.3635186Z adding 'executorch/backends/xnnpack/_passes/channels_last_tagged_reshape_pass.py' 2025-06-05T23:55:26.3635485Z adding 'executorch/backends/xnnpack/_passes/conv1d_unsqueeze_pass.py' 2025-06-05T23:55:26.3635830Z adding 'executorch/backends/xnnpack/_passes/convert_to_linear.py' 2025-06-05T23:55:26.3636105Z adding 'executorch/backends/xnnpack/_passes/convert_to_sdpa.py' 2025-06-05T23:55:26.3636468Z adding 'executorch/backends/xnnpack/_passes/convert_to_upsample_bilinear2d.py' 2025-06-05T23:55:26.3636768Z adding 'executorch/backends/xnnpack/_passes/decompose_cat.py' 2025-06-05T23:55:26.3637219Z adding 'executorch/backends/xnnpack/_passes/fuse_activation_pass.py' 2025-06-05T23:55:26.3637554Z adding 'executorch/backends/xnnpack/_passes/fuse_batch_norm_with_conv.py' 2025-06-05T23:55:26.3637880Z adding 'executorch/backends/xnnpack/_passes/prelu_reshape_pass.py' 2025-06-05T23:55:26.3638212Z adding 'executorch/backends/xnnpack/_passes/tag_implicit_q_dq_pass.py' 2025-06-05T23:55:26.3638459Z adding 'executorch/backends/xnnpack/_passes/xnnpack_pass.py' 2025-06-05T23:55:26.3638704Z adding 'executorch/backends/xnnpack/operators/__init__.py' 2025-06-05T23:55:26.3639024Z adding 'executorch/backends/xnnpack/operators/node_visitor.py' 2025-06-05T23:55:26.3639406Z adding 'executorch/backends/xnnpack/operators/op_abs.py' 2025-06-05T23:55:26.3639654Z adding 'executorch/backends/xnnpack/operators/op_add.py' 2025-06-05T23:55:26.3640015Z adding 'executorch/backends/xnnpack/operators/op_addmm.py' 2025-06-05T23:55:26.3640373Z adding 'executorch/backends/xnnpack/operators/op_avg_pooling2d.py' 2025-06-05T23:55:26.3640608Z adding 'executorch/backends/xnnpack/operators/op_bmm.py' 2025-06-05T23:55:26.3640831Z adding 'executorch/backends/xnnpack/operators/op_cat.py' 2025-06-05T23:55:26.3641087Z adding 'executorch/backends/xnnpack/operators/op_ceiling.py' 2025-06-05T23:55:26.3641394Z adding 'executorch/backends/xnnpack/operators/op_clamp.py' 2025-06-05T23:55:26.3641646Z adding 'executorch/backends/xnnpack/operators/op_conv2d.py' 2025-06-05T23:55:26.3641909Z adding 'executorch/backends/xnnpack/operators/op_div.py' 2025-06-05T23:55:26.3642429Z adding 'executorch/backends/xnnpack/operators/op_dynamic_dequantize_ops.py' 2025-06-05T23:55:26.3642766Z adding 'executorch/backends/xnnpack/operators/op_dynamic_quantize_ops.py' 2025-06-05T23:55:26.3643015Z adding 'executorch/backends/xnnpack/operators/op_elu.py' 2025-06-05T23:55:26.3643292Z adding 'executorch/backends/xnnpack/operators/op_exp.py' 2025-06-05T23:55:26.3643541Z adding 'executorch/backends/xnnpack/operators/op_floor.py' 2025-06-05T23:55:26.3643786Z adding 'executorch/backends/xnnpack/operators/op_gelu.py' 2025-06-05T23:55:26.3644060Z adding 'executorch/backends/xnnpack/operators/op_hardswish.py' 2025-06-05T23:55:26.3644323Z adding 'executorch/backends/xnnpack/operators/op_hardtanh.py' 2025-06-05T23:55:26.3644594Z adding 'executorch/backends/xnnpack/operators/op_leaky_relu.py' 2025-06-05T23:55:26.3644893Z adding 'executorch/backends/xnnpack/operators/op_linear.py' 2025-06-05T23:55:26.3645265Z adding 'executorch/backends/xnnpack/operators/op_log.py' 2025-06-05T23:55:26.3645677Z adding 'executorch/backends/xnnpack/operators/op_matrix_multiplication.py' 2025-06-05T23:55:26.3645938Z adding 'executorch/backends/xnnpack/operators/op_max_dim.py' 2025-06-05T23:55:26.3646267Z adding 'executorch/backends/xnnpack/operators/op_max_pool2d.py' 2025-06-05T23:55:26.3646533Z adding 'executorch/backends/xnnpack/operators/op_maximum.py' 2025-06-05T23:55:26.3646795Z adding 'executorch/backends/xnnpack/operators/op_mean_dim.py' 2025-06-05T23:55:26.3647039Z adding 'executorch/backends/xnnpack/operators/op_minimum.py' 2025-06-05T23:55:26.3647321Z adding 'executorch/backends/xnnpack/operators/op_multiply.py' 2025-06-05T23:55:26.3647700Z adding 'executorch/backends/xnnpack/operators/op_negate.py' 2025-06-05T23:55:26.3648016Z adding 'executorch/backends/xnnpack/operators/op_permute.py' 2025-06-05T23:55:26.3648248Z adding 'executorch/backends/xnnpack/operators/op_prelu.py' 2025-06-05T23:55:26.3648590Z adding 'executorch/backends/xnnpack/operators/op_quant_dequant.py' 2025-06-05T23:55:26.3648842Z adding 'executorch/backends/xnnpack/operators/op_relu.py' 2025-06-05T23:55:26.3649082Z adding 'executorch/backends/xnnpack/operators/op_rsqrt.py' 2025-06-05T23:55:26.3649323Z adding 'executorch/backends/xnnpack/operators/op_sdpa.py' 2025-06-05T23:55:26.3649574Z adding 'executorch/backends/xnnpack/operators/op_sigmoid.py' 2025-06-05T23:55:26.3649836Z adding 'executorch/backends/xnnpack/operators/op_skip_ops.py' 2025-06-05T23:55:26.3650115Z adding 'executorch/backends/xnnpack/operators/op_slice_copy.py' 2025-06-05T23:55:26.3650481Z adding 'executorch/backends/xnnpack/operators/op_softmax.py' 2025-06-05T23:55:26.3650807Z adding 'executorch/backends/xnnpack/operators/op_square.py' 2025-06-05T23:55:26.3651157Z adding 'executorch/backends/xnnpack/operators/op_square_root.py' 2025-06-05T23:55:26.3651453Z adding 'executorch/backends/xnnpack/operators/op_squeeze.py' 2025-06-05T23:55:26.3651805Z adding 'executorch/backends/xnnpack/operators/op_static_constant_pad.py' 2025-06-05T23:55:26.3652156Z adding 'executorch/backends/xnnpack/operators/op_static_resize_bilinear_2d.py' 2025-06-05T23:55:26.3652393Z adding 'executorch/backends/xnnpack/operators/op_sub.py' 2025-06-05T23:55:26.3652696Z adding 'executorch/backends/xnnpack/operators/op_to_copy.py' 2025-06-05T23:55:26.3653185Z adding 'executorch/backends/xnnpack/operators/quant_params.py' 2025-06-05T23:55:26.3653423Z adding 'executorch/backends/xnnpack/partition/configs.py' 2025-06-05T23:55:26.3653761Z adding 'executorch/backends/xnnpack/partition/xnnpack_partitioner.py' 2025-06-05T23:55:26.3654092Z adding 'executorch/backends/xnnpack/partition/config/__init__.py' 2025-06-05T23:55:26.3654407Z adding 'executorch/backends/xnnpack/partition/config/gemm_configs.py' 2025-06-05T23:55:26.3654927Z adding 'executorch/backends/xnnpack/partition/config/generic_node_configs.py' 2025-06-05T23:55:26.3655226Z adding 'executorch/backends/xnnpack/partition/config/node_configs.py' 2025-06-05T23:55:26.3655587Z adding 'executorch/backends/xnnpack/partition/config/quant_affine_configs.py' 2025-06-05T23:55:26.3655952Z adding 'executorch/backends/xnnpack/partition/config/xnnpack_config.py' 2025-06-05T23:55:26.3656422Z adding 'executorch/backends/xnnpack/partition/graphs/bilinear_2d.py' 2025-06-05T23:55:26.3656737Z adding 'executorch/backends/xnnpack/partition/graphs/sdpa.py' 2025-06-05T23:55:26.3657052Z adding 'executorch/backends/xnnpack/quantizer/xnnpack_quantizer.py' 2025-06-05T23:55:26.3657431Z adding 'executorch/backends/xnnpack/quantizer/xnnpack_quantizer_utils.py' 2025-06-05T23:55:26.3657741Z adding 'executorch/backends/xnnpack/serialization/runtime_schema.fbs' 2025-06-05T23:55:26.3657999Z adding 'executorch/backends/xnnpack/serialization/schema.fbs' 2025-06-05T23:55:26.3658378Z adding 'executorch/backends/xnnpack/serialization/xnnpack_graph_schema.py' 2025-06-05T23:55:26.3658905Z adding 'executorch/backends/xnnpack/serialization/xnnpack_graph_serialize.py' 2025-06-05T23:55:26.3659213Z adding 'executorch/backends/xnnpack/test/test_xnnpack_utils.py' 2025-06-05T23:55:26.3659636Z adding 'executorch/backends/xnnpack/test/test_xnnpack_utils_classes.py' 2025-06-05T23:55:26.3659903Z adding 'executorch/backends/xnnpack/test/models/deeplab_v3.py' 2025-06-05T23:55:26.3660132Z adding 'executorch/backends/xnnpack/test/models/edsr.py' 2025-06-05T23:55:26.3660415Z adding 'executorch/backends/xnnpack/test/models/emformer_rnnt.py' 2025-06-05T23:55:26.3660697Z adding 'executorch/backends/xnnpack/test/models/inception_v3.py' 2025-06-05T23:55:26.3943768Z adding 'executorch/backends/xnnpack/test/models/inception_v4.py' 2025-06-05T23:55:26.3944324Z adding 'executorch/backends/xnnpack/test/models/llama2_et_example.py' 2025-06-05T23:55:26.3944892Z adding 'executorch/backends/xnnpack/test/models/mobilebert.py' 2025-06-05T23:55:26.3945285Z adding 'executorch/backends/xnnpack/test/models/mobilenet_v2.py' 2025-06-05T23:55:26.3945555Z adding 'executorch/backends/xnnpack/test/models/mobilenet_v3.py' 2025-06-05T23:55:26.3945805Z adding 'executorch/backends/xnnpack/test/models/resnet.py' 2025-06-05T23:55:26.3946103Z adding 'executorch/backends/xnnpack/test/models/torchvision_vit.py' 2025-06-05T23:55:26.3946473Z adding 'executorch/backends/xnnpack/test/models/very_big_model.py' 2025-06-05T23:55:26.3946743Z adding 'executorch/backends/xnnpack/test/models/w2l.py' 2025-06-05T23:55:26.3947128Z adding 'executorch/backends/xnnpack/test/ops/test_abs.py' 2025-06-05T23:55:26.3947391Z adding 'executorch/backends/xnnpack/test/ops/test_add.py' 2025-06-05T23:55:26.3947672Z adding 'executorch/backends/xnnpack/test/ops/test_avgpool2d.py' 2025-06-05T23:55:26.3948027Z adding 'executorch/backends/xnnpack/test/ops/test_bilinear2d.py' 2025-06-05T23:55:26.3948261Z adding 'executorch/backends/xnnpack/test/ops/test_bmm.py' 2025-06-05T23:55:26.3948532Z adding 'executorch/backends/xnnpack/test/ops/test_cat.py' 2025-06-05T23:55:26.3948782Z adding 'executorch/backends/xnnpack/test/ops/test_ceil.py' 2025-06-05T23:55:26.3949113Z adding 'executorch/backends/xnnpack/test/ops/test_check_quant_params.py' 2025-06-05T23:55:26.3949363Z adding 'executorch/backends/xnnpack/test/ops/test_clamp.py' 2025-06-05T23:55:26.3949612Z adding 'executorch/backends/xnnpack/test/ops/test_conv1d.py' 2025-06-05T23:55:26.3950089Z adding 'executorch/backends/xnnpack/test/ops/test_conv2d.py' 2025-06-05T23:55:26.3950384Z adding 'executorch/backends/xnnpack/test/ops/test_div.py' 2025-06-05T23:55:26.3950687Z adding 'executorch/backends/xnnpack/test/ops/test_elu.py' 2025-06-05T23:55:26.3950908Z adding 'executorch/backends/xnnpack/test/ops/test_exp.py' 2025-06-05T23:55:26.3951167Z adding 'executorch/backends/xnnpack/test/ops/test_floor.py' 2025-06-05T23:55:26.3951465Z adding 'executorch/backends/xnnpack/test/ops/test_gelu.py' 2025-06-05T23:55:26.3951866Z adding 'executorch/backends/xnnpack/test/ops/test_hardswish.py' 2025-06-05T23:55:26.3952142Z adding 'executorch/backends/xnnpack/test/ops/test_hardtanh.py' 2025-06-05T23:55:26.3952412Z adding 'executorch/backends/xnnpack/test/ops/test_leaky_relu.py' 2025-06-05T23:55:26.3952672Z adding 'executorch/backends/xnnpack/test/ops/test_linear.py' 2025-06-05T23:55:26.3952914Z adding 'executorch/backends/xnnpack/test/ops/test_log.py' 2025-06-05T23:55:26.3953206Z adding 'executorch/backends/xnnpack/test/ops/test_lstm.py' 2025-06-05T23:55:26.3953527Z adding 'executorch/backends/xnnpack/test/ops/test_max_dim.py' 2025-06-05T23:55:26.3953820Z adding 'executorch/backends/xnnpack/test/ops/test_maximum.py' 2025-06-05T23:55:26.3954135Z adding 'executorch/backends/xnnpack/test/ops/test_maxpool2d.py' 2025-06-05T23:55:26.3954403Z adding 'executorch/backends/xnnpack/test/ops/test_mean_dim.py' 2025-06-05T23:55:26.3954715Z adding 'executorch/backends/xnnpack/test/ops/test_minimum.py' 2025-06-05T23:55:26.3955040Z adding 'executorch/backends/xnnpack/test/ops/test_multiply.py' 2025-06-05T23:55:26.3955368Z adding 'executorch/backends/xnnpack/test/ops/test_negate.py' 2025-06-05T23:55:26.3955655Z adding 'executorch/backends/xnnpack/test/ops/test_permute.py' 2025-06-05T23:55:26.3955990Z adding 'executorch/backends/xnnpack/test/ops/test_pow.py' 2025-06-05T23:55:26.3956296Z adding 'executorch/backends/xnnpack/test/ops/test_prelu.py' 2025-06-05T23:55:26.3956710Z adding 'executorch/backends/xnnpack/test/ops/test_quantize_per_tensor.py' 2025-06-05T23:55:26.3957022Z adding 'executorch/backends/xnnpack/test/ops/test_relu.py' 2025-06-05T23:55:26.3957346Z adding 'executorch/backends/xnnpack/test/ops/test_rsqrt.py' 2025-06-05T23:55:26.3957726Z adding 'executorch/backends/xnnpack/test/ops/test_sdpa.py' 2025-06-05T23:55:26.3958000Z adding 'executorch/backends/xnnpack/test/ops/test_sigmoid.py' 2025-06-05T23:55:26.3958291Z adding 'executorch/backends/xnnpack/test/ops/test_slice_copy.py' 2025-06-05T23:55:26.3958564Z adding 'executorch/backends/xnnpack/test/ops/test_softmax.py' 2025-06-05T23:55:26.3958797Z adding 'executorch/backends/xnnpack/test/ops/test_sqrt.py' 2025-06-05T23:55:26.3959056Z adding 'executorch/backends/xnnpack/test/ops/test_square.py' 2025-06-05T23:55:26.3959400Z adding 'executorch/backends/xnnpack/test/ops/test_static_constant_pad.py' 2025-06-05T23:55:26.3959645Z adding 'executorch/backends/xnnpack/test/ops/test_sub.py' 2025-06-05T23:55:26.3959980Z adding 'executorch/backends/xnnpack/test/passes/test_activation_fusion.py' 2025-06-05T23:55:26.3960332Z adding 'executorch/backends/xnnpack/test/passes/test_batch_norm_fusion.py' 2025-06-05T23:55:26.3960820Z adding 'executorch/backends/xnnpack/test/passes/test_channels_last_tagged_reshape.py' 2025-06-05T23:55:26.3961257Z adding 'executorch/backends/xnnpack/test/passes/test_convert_to_linear.py' 2025-06-05T23:55:26.3961714Z adding 'executorch/backends/xnnpack/test/passes/test_decompose_cat_pass.py' 2025-06-05T23:55:26.3962142Z adding 'executorch/backends/xnnpack/test/passes/test_remove_get_item_pass.py' 2025-06-05T23:55:26.3962514Z adding 'executorch/backends/xnnpack/test/passes/test_tag_implicit_q_dq_pass.py' 2025-06-05T23:55:26.3962878Z adding 'executorch/backends/xnnpack/test/quantizer/test_pt2e_quantization.py' 2025-06-05T23:55:26.3963230Z adding 'executorch/backends/xnnpack/test/quantizer/test_representation.py' 2025-06-05T23:55:26.3963648Z adding 'executorch/backends/xnnpack/test/quantizer/test_xnnpack_quantizer.py' 2025-06-05T23:55:26.3964220Z adding 'executorch/backends/xnnpack/test/serialization/test_serialization.py' 2025-06-05T23:55:26.3964629Z adding 'executorch/backends/xnnpack/test/serialization/test_xnnheader.py' 2025-06-05T23:55:26.3964899Z adding 'executorch/backends/xnnpack/test/tester/__init__.py' 2025-06-05T23:55:26.3965135Z adding 'executorch/backends/xnnpack/test/tester/tester.py' 2025-06-05T23:55:26.3965580Z adding 'executorch/backends/xnnpack/third-party/generate-cpuinfo-wrappers.py' 2025-06-05T23:55:26.3965881Z adding 'executorch/backends/xnnpack/third-party/FP16/configure.py' 2025-06-05T23:55:26.3966236Z adding 'executorch/backends/xnnpack/third-party/FP16/confu.yaml' 2025-06-05T23:55:26.3966666Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/__init__.py' 2025-06-05T23:55:26.3967018Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/avx.py' 2025-06-05T23:55:26.3967432Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/avx2.py' 2025-06-05T23:55:26.3967786Z adding 'executorch/backends/xnnpack/third-party/FP16/test/peachpy/stubs.py' 2025-06-05T23:55:26.3968076Z adding 'executorch/backends/xnnpack/third-party/FXdiv/configure.py' 2025-06-05T23:55:26.3968364Z adding 'executorch/backends/xnnpack/third-party/FXdiv/confu.yaml' 2025-06-05T23:55:26.3968743Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_config.py' 2025-06-05T23:55:26.3969186Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_files_changed.py' 2025-06-05T23:55:26.3969757Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/generate-build-identifier.py' 2025-06-05T23:55:26.3970163Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/sort-filenames.py' 2025-06-05T23:55:26.3970633Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/bf16-gemm-minmax.yaml' 2025-06-05T23:55:26.3971025Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-conv-hwc2chw.yaml' 2025-06-05T23:55:26.3971417Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-dwconv2d-chw.yaml' 2025-06-05T23:55:26.3971833Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-gemm-minmax.yaml' 2025-06-05T23:55:26.3972268Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-igemm-minmax.yaml' 2025-06-05T23:55:26.3972812Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rdsum.yaml' 2025-06-05T23:55:26.3973310Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rsum.yaml' 2025-06-05T23:55:26.3973712Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-gemm-minmax.yaml' 2025-06-05T23:55:26.3974145Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear-chw.yaml' 2025-06-05T23:55:26.3974531Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear.yaml' 2025-06-05T23:55:26.3975013Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-igemm-minmax.yaml' 2025-06-05T23:55:26.3975469Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-raddstoreexpminusmax.yaml' 2025-06-05T23:55:26.3975871Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmax.yaml' 2025-06-05T23:55:26.3976340Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmin.yaml' 2025-06-05T23:55:26.3976707Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rminmax.yaml' 2025-06-05T23:55:26.3977122Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rsum.yaml' 2025-06-05T23:55:26.3977517Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-spmm-minmax.yaml' 2025-06-05T23:55:26.3977922Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-vmulcaddc-minmax.yaml' 2025-06-05T23:55:26.3978310Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-argmaxpool.yaml' 2025-06-05T23:55:26.3978695Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc.yaml' 2025-06-05T23:55:26.3979216Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc2chw.yaml' 2025-06-05T23:55:26.3979650Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-dwconv2d-chw.yaml' 2025-06-05T23:55:26.3980101Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-goi-minmax.yaml' 2025-06-05T23:55:26.3980499Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-minmax.yaml' 2025-06-05T23:55:26.3980946Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-relu.yaml' 2025-06-05T23:55:26.3981278Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm.yaml' 2025-06-05T23:55:26.3981680Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemminc-minmax.yaml' 2025-06-05T23:55:26.3982177Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear-chw.yaml' 2025-06-05T23:55:26.3982555Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear.yaml' 2025-06-05T23:55:26.3983011Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-minmax.yaml' 2025-06-05T23:55:26.3983383Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-relu.yaml' 2025-06-05T23:55:26.3983792Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm.yaml' 2025-06-05T23:55:26.4398709Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ppmm-minmax.yaml' 2025-06-05T23:55:26.4399427Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:55:26.4400254Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-minmax.yaml' 2025-06-05T23:55:26.4400646Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-relu.yaml' 2025-06-05T23:55:26.4401132Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm.yaml' 2025-06-05T23:55:26.4401720Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddexpminusmax.yaml' 2025-06-05T23:55:26.4402122Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddextexp.yaml' 2025-06-05T23:55:26.4402628Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddstoreexpminusmax.yaml' 2025-06-05T23:55:26.4402984Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rdsum.yaml' 2025-06-05T23:55:26.4403331Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmax.yaml' 2025-06-05T23:55:26.4403901Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmin.yaml' 2025-06-05T23:55:26.4404301Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rminmax.yaml' 2025-06-05T23:55:26.4404729Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rsum.yaml' 2025-06-05T23:55:26.4405120Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-spmm-minmax.yaml' 2025-06-05T23:55:26.4405607Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vmulcaddc-minmax.yaml' 2025-06-05T23:55:26.4406067Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleexpminusmax.yaml' 2025-06-05T23:55:26.4406462Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleextexp.yaml' 2025-06-05T23:55:26.4406892Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qb4w-gemm-minmax.yaml' 2025-06-05T23:55:26.4407333Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc4w-gemm-minmax.yaml' 2025-06-05T23:55:26.4407801Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-gemm-minmax.yaml' 2025-06-05T23:55:26.4408348Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-igemm-minmax.yaml' 2025-06-05T23:55:26.4408840Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qb4w-gemm-minmax.yaml' 2025-06-05T23:55:26.4409392Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:55:26.4409885Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-gemm-minmax.yaml' 2025-06-05T23:55:26.4410519Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-igemm-minmax.yaml' 2025-06-05T23:55:26.4410960Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qb4w-gemm-minmax.yaml' 2025-06-05T23:55:26.4411384Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:55:26.4412319Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-gemm-minmax-fp32.yaml' 2025-06-05T23:55:26.4412885Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-igemm-minmax-fp32.yaml' 2025-06-05T23:55:26.4413359Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rdsum-minmax-fp32.yaml' 2025-06-05T23:55:26.4413792Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rsum.yaml' 2025-06-05T23:55:26.4414201Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-fp32.yaml' 2025-06-05T23:55:26.4414728Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-rndnu.yaml' 2025-06-05T23:55:26.4415156Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-fp32.yaml' 2025-06-05T23:55:26.4415594Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-rndnu.yaml' 2025-06-05T23:55:26.4416002Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rdsum.yaml' 2025-06-05T23:55:26.4416559Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rsum.yaml' 2025-06-05T23:55:26.4416949Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/s8-ibilinear.yaml' 2025-06-05T23:55:26.4417323Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-ibilinear.yaml' 2025-06-05T23:55:26.4417689Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-lut32norm.yaml' 2025-06-05T23:55:26.4418017Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-rmax.yaml' 2025-06-05T23:55:26.4418360Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/x8-lut.yaml' 2025-06-05T23:55:26.4418803Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-argmaxpool-test.py' 2025-06-05T23:55:26.4419234Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc-test.py' 2025-06-05T23:55:26.4419735Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc2chw-test.py' 2025-06-05T23:55:26.4420412Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-multipass-test.py' 2025-06-05T23:55:26.4420937Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-unipass-test.py' 2025-06-05T23:55:26.4421398Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv2d-chw-test.py' 2025-06-05T23:55:26.4421810Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-gemm-test.py' 2025-06-05T23:55:26.4422260Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-chw-test.py' 2025-06-05T23:55:26.4422702Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-test.py' 2025-06-05T23:55:26.4423131Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-norm-test.py' 2025-06-05T23:55:26.4423531Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-test.py' 2025-06-05T23:55:26.4424250Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddexpminusmax-test.py' 2025-06-05T23:55:26.4424704Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddextexp-test.py' 2025-06-05T23:55:26.4425295Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddstoreexpminusmax-test.py' 2025-06-05T23:55:26.4425736Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-benchmark.py' 2025-06-05T23:55:26.4426130Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-test.py' 2025-06-05T23:55:26.4426686Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-test.py' 2025-06-05T23:55:26.4427090Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-spmm-test.py' 2025-06-05T23:55:26.4427510Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vbinary-test.py' 2025-06-05T23:55:26.4427955Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vmulcaddc-test.py' 2025-06-05T23:55:26.4428503Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleexpminusmax-test.py' 2025-06-05T23:55:26.4428967Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleextexp-test.py' 2025-06-05T23:55:26.4429384Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vunary-test.py' 2025-06-05T23:55:26.4429725Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/primes.py' 2025-06-05T23:55:26.4430121Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/update-microkernels.py' 2025-06-05T23:55:26.4430452Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/xngen.py' 2025-06-05T23:55:26.4430801Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/xnncommon.py' 2025-06-05T23:55:26.4431119Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/configure.py' 2025-06-05T23:55:26.4431424Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/confu.yaml' 2025-06-05T23:55:26.4431790Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/configure.py' 2025-06-05T23:55:26.4432152Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/confu.yaml' 2025-06-05T23:55:26.4432581Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/android-device-dump.py' 2025-06-05T23:55:26.4433046Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/arm-linux-filesystem-dump.py' 2025-06-05T23:55:26.4433462Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/parse-x86-cpuid-dump.py' 2025-06-05T23:55:26.4433813Z adding 'executorch/backends/xnnpack/third-party/pthreadpool/configure.py' 2025-06-05T23:55:26.4434148Z adding 'executorch/backends/xnnpack/third-party/pthreadpool/confu.yaml' 2025-06-05T23:55:26.4434381Z adding 'executorch/backends/xnnpack/utils/configs.py' 2025-06-05T23:55:26.4434616Z adding 'executorch/backends/xnnpack/utils/quant_utils.py' 2025-06-05T23:55:26.4434833Z adding 'executorch/backends/xnnpack/utils/utils.py' 2025-06-05T23:55:26.4435123Z adding 'executorch/backends/xnnpack/utils/xnnpack_constants.py' 2025-06-05T23:55:26.4435303Z adding 'executorch/codegen/__init__.py' 2025-06-05T23:55:26.4435472Z adding 'executorch/codegen/gen.py' 2025-06-05T23:55:26.4435623Z adding 'executorch/codegen/model.py' 2025-06-05T23:55:26.4435788Z adding 'executorch/codegen/parse.py' 2025-06-05T23:55:26.4435973Z adding 'executorch/codegen/api/__init__.py' 2025-06-05T23:55:26.4436167Z adding 'executorch/codegen/api/custom_ops.py' 2025-06-05T23:55:26.4436333Z adding 'executorch/codegen/api/et_cpp.py' 2025-06-05T23:55:26.4436520Z adding 'executorch/codegen/api/unboxing.py' 2025-06-05T23:55:26.4436723Z adding 'executorch/codegen/api/types/__init__.py' 2025-06-05T23:55:26.4436938Z adding 'executorch/codegen/api/types/signatures.py' 2025-06-05T23:55:26.4437121Z adding 'executorch/codegen/api/types/types.py' 2025-06-05T23:55:26.4437390Z adding 'executorch/codegen/test/test_executorch_custom_ops.py' 2025-06-05T23:55:26.4437627Z adding 'executorch/codegen/test/test_executorch_gen.py' 2025-06-05T23:55:26.4437896Z adding 'executorch/codegen/test/test_executorch_signatures.py' 2025-06-05T23:55:26.4438129Z adding 'executorch/codegen/test/test_executorch_types.py' 2025-06-05T23:55:26.4438387Z adding 'executorch/codegen/test/test_executorch_unboxing.py' 2025-06-05T23:55:26.4438623Z adding 'executorch/codegen/test/test_selective_build.py' 2025-06-05T23:55:26.4438811Z adding 'executorch/codegen/tools/__init__.py' 2025-06-05T23:55:26.4439069Z adding 'executorch/codegen/tools/gen_all_oplist.py' 2025-06-05T23:55:26.4439269Z adding 'executorch/codegen/tools/gen_oplist.py' 2025-06-05T23:55:26.4439469Z adding 'executorch/codegen/tools/gen_ops_def.py' 2025-06-05T23:55:26.8205636Z adding 'executorch/codegen/tools/gen_selected_op_variants.py' 2025-06-05T23:55:26.8206787Z adding 'executorch/codegen/tools/merge_yaml.py' 2025-06-05T23:55:26.8207708Z adding 'executorch/codegen/tools/yaml_util.py' 2025-06-05T23:55:26.8209000Z adding 'executorch/codegen/tools/test/test_gen_all_oplist.py' 2025-06-05T23:55:26.8210179Z adding 'executorch/codegen/tools/test/test_gen_oplist.py' 2025-06-05T23:55:26.8211381Z adding 'executorch/codegen/tools/test/test_gen_oplist_real_model.py' 2025-06-05T23:55:26.8212769Z adding 'executorch/codegen/tools/test/test_gen_selected_op_variants.py' 2025-06-05T23:55:26.8213920Z adding 'executorch/data/bin/__init__.py' 2025-06-05T23:55:26.8214785Z adding 'executorch/data/bin/flatc' 2025-06-05T23:55:26.8215586Z adding 'executorch/devtools/__init__.py' 2025-06-05T23:55:26.8216499Z adding 'executorch/devtools/backend_debug/__init__.py' 2025-06-05T23:55:26.8217632Z adding 'executorch/devtools/backend_debug/delegation_info.py' 2025-06-05T23:55:26.8218982Z adding 'executorch/devtools/backend_debug/tests/test_delegation_info.py' 2025-06-05T23:55:26.8220253Z adding 'executorch/devtools/bundled_program/config.py' 2025-06-05T23:55:26.8221290Z adding 'executorch/devtools/bundled_program/core.py' 2025-06-05T23:55:26.8222324Z adding 'executorch/devtools/bundled_program/version.py' 2025-06-05T23:55:26.8223466Z adding 'executorch/devtools/bundled_program/schema/__init__.py' 2025-06-05T23:55:26.8224825Z adding 'executorch/devtools/bundled_program/schema/bundled_program_schema.fbs' 2025-06-05T23:55:26.8226416Z adding 'executorch/devtools/bundled_program/schema/bundled_program_schema.py' 2025-06-05T23:55:26.8227820Z adding 'executorch/devtools/bundled_program/schema/scalar_type.fbs' 2025-06-05T23:55:26.8229201Z adding 'executorch/devtools/bundled_program/schema/test/test_schema.py' 2025-06-05T23:55:26.8230529Z adding 'executorch/devtools/bundled_program/serialize/__init__.py' 2025-06-05T23:55:26.8231986Z adding 'executorch/devtools/bundled_program/serialize/bundled_program_schema.fbs' 2025-06-05T23:55:26.8233503Z adding 'executorch/devtools/bundled_program/serialize/scalar_type.fbs' 2025-06-05T23:55:26.8234999Z adding 'executorch/devtools/bundled_program/serialize/test/test_serialize.py' 2025-06-05T23:55:26.8236474Z adding 'executorch/devtools/bundled_program/test/test_bundle_data.py' 2025-06-05T23:55:26.8237834Z adding 'executorch/devtools/bundled_program/test/test_config.py' 2025-06-05T23:55:26.8239106Z adding 'executorch/devtools/bundled_program/test/test_end2end.py' 2025-06-05T23:55:26.8240371Z adding 'executorch/devtools/bundled_program/util/test_util.py' 2025-06-05T23:55:26.8241493Z adding 'executorch/devtools/debug_format/base_schema.py' 2025-06-05T23:55:26.8242571Z adding 'executorch/devtools/debug_format/et_schema.py' 2025-06-05T23:55:26.8243696Z adding 'executorch/devtools/etdump/etdump_schema_flatcc.fbs' 2025-06-05T23:55:26.8244779Z adding 'executorch/devtools/etdump/scalar_type.fbs' 2025-06-05T23:55:26.8245767Z adding 'executorch/devtools/etdump/schema_flatcc.py' 2025-06-05T23:55:26.8246739Z adding 'executorch/devtools/etdump/serialize.py' 2025-06-05T23:55:26.8247807Z adding 'executorch/devtools/etdump/tests/serialize_test.py' 2025-06-05T23:55:26.8248856Z adding 'executorch/devtools/etrecord/__init__.py' 2025-06-05T23:55:26.8249825Z adding 'executorch/devtools/etrecord/_etrecord.py' 2025-06-05T23:55:26.8250863Z adding 'executorch/devtools/etrecord/tests/etrecord_test.py' 2025-06-05T23:55:26.8251947Z adding 'executorch/devtools/inspector/__init__.py' 2025-06-05T23:55:26.8252912Z adding 'executorch/devtools/inspector/_inspector.py' 2025-06-05T23:55:26.8253997Z adding 'executorch/devtools/inspector/_inspector_utils.py' 2025-06-05T23:55:26.8255347Z adding 'executorch/devtools/inspector/_intermediate_output_capturer.py' 2025-06-05T23:55:26.8256856Z adding 'executorch/devtools/inspector/inspector_cli.py' 2025-06-05T23:55:26.8258052Z adding 'executorch/devtools/inspector/tests/event_blocks_test.py' 2025-06-05T23:55:26.8259301Z adding 'executorch/devtools/inspector/tests/inspector_test.py' 2025-06-05T23:55:26.8260587Z adding 'executorch/devtools/inspector/tests/inspector_test_utils.py' 2025-06-05T23:55:26.8262096Z adding 'executorch/devtools/inspector/tests/inspector_utils_test.py' 2025-06-05T23:55:26.8263602Z adding 'executorch/devtools/inspector/tests/intermediate_output_capturer_test.py' 2025-06-05T23:55:26.8265144Z adding 'executorch/devtools/size_analysis_tool/size_analysis_tool.py' 2025-06-05T23:55:26.8266512Z adding 'executorch/devtools/size_analysis_tool/size_analysis_tool_test.py' 2025-06-05T23:55:26.8267807Z adding 'executorch/devtools/visualization/__init__.py' 2025-06-05T23:55:26.8268996Z adding 'executorch/devtools/visualization/visualization_utils.py' 2025-06-05T23:55:26.8270371Z adding 'executorch/devtools/visualization/visualization_utils_test.py' 2025-06-05T23:55:26.8271634Z adding 'executorch/examples/apple/coreml/llama/export.py' 2025-06-05T23:55:26.8272897Z adding 'executorch/examples/apple/coreml/llama/llama_transformer.py' 2025-06-05T23:55:26.8274097Z adding 'executorch/examples/apple/coreml/llama/run.py' 2025-06-05T23:55:26.8275159Z adding 'executorch/examples/apple/coreml/llama/test.py' 2025-06-05T23:55:26.8276254Z adding 'executorch/examples/apple/coreml/llama/utils.py' 2025-06-05T23:55:26.8277443Z adding 'executorch/examples/apple/coreml/scripts/debugger_cli.py' 2025-06-05T23:55:26.8278675Z adding 'executorch/examples/apple/coreml/scripts/export.py' 2025-06-05T23:55:26.8280009Z adding 'executorch/examples/apple/coreml/scripts/extract_coreml_models.py' 2025-06-05T23:55:26.8281441Z adding 'executorch/examples/apple/coreml/scripts/inspector_cli.py' 2025-06-05T23:55:26.8282820Z adding 'executorch/examples/apple/coreml/scripts/inspector_utils.py' 2025-06-05T23:55:26.8284088Z adding 'executorch/examples/apple/mps/scripts/bench_utils.py' 2025-06-05T23:55:26.8285296Z adding 'executorch/examples/apple/mps/scripts/mps_example.py' 2025-06-05T23:55:26.8286462Z adding 'executorch/examples/llm_pte_finetuning/__init__.py' 2025-06-05T23:55:26.8287678Z adding 'executorch/examples/llm_pte_finetuning/llama3_config.yaml' 2025-06-05T23:55:26.8288959Z adding 'executorch/examples/llm_pte_finetuning/model_exporter.py' 2025-06-05T23:55:26.8290284Z adding 'executorch/examples/llm_pte_finetuning/model_loading_lib.py' 2025-06-05T23:55:26.8291684Z adding 'executorch/examples/llm_pte_finetuning/phi3_alpaca_code_config.yaml' 2025-06-05T23:55:26.8293111Z adding 'executorch/examples/llm_pte_finetuning/phi3_config.yaml' 2025-06-05T23:55:26.8294404Z adding 'executorch/examples/llm_pte_finetuning/qwen_05b_config.yaml' 2025-06-05T23:55:26.8295748Z adding 'executorch/examples/llm_pte_finetuning/runner.py' 2025-06-05T23:55:26.8296947Z adding 'executorch/examples/llm_pte_finetuning/training_lib.py' 2025-06-05T23:55:26.8297995Z adding 'executorch/examples/models/__init__.py' 2025-06-05T23:55:26.8298929Z adding 'executorch/examples/models/checkpoint.py' 2025-06-05T23:55:26.8299879Z adding 'executorch/examples/models/model_base.py' 2025-06-05T23:55:26.8300869Z adding 'executorch/examples/models/model_factory.py' 2025-06-05T23:55:26.8301942Z adding 'executorch/examples/models/deeplab_v3/__init__.py' 2025-06-05T23:55:26.8303072Z adding 'executorch/examples/models/deeplab_v3/model.py' 2025-06-05T23:55:26.8304272Z adding 'executorch/examples/models/edsr/__init__.py' 2025-06-05T23:55:26.8305254Z adding 'executorch/examples/models/edsr/model.py' 2025-06-05T23:55:26.8306294Z adding 'executorch/examples/models/efficient_sam/__init__.py' 2025-06-05T23:55:26.8307437Z adding 'executorch/examples/models/efficient_sam/model.py' 2025-06-05T23:55:26.8308924Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/build_efficient_sam.py' 2025-06-05T23:55:26.8310967Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam.py' 2025-06-05T23:55:26.8312805Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_decoder.py' 2025-06-05T23:55:26.8314748Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_encoder.py' 2025-06-05T23:55:26.8316453Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/mlp.py' 2025-06-05T23:55:26.8318354Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/two_way_transformer.py' 2025-06-05T23:55:26.8319920Z adding 'executorch/examples/models/emformer_rnnt/__init__.py' 2025-06-05T23:55:26.8321117Z adding 'executorch/examples/models/emformer_rnnt/model.py' 2025-06-05T23:55:26.8322244Z adding 'executorch/examples/models/inception_v3/__init__.py' 2025-06-05T23:55:26.8323386Z adding 'executorch/examples/models/inception_v3/model.py' 2025-06-05T23:55:26.8324505Z adding 'executorch/examples/models/inception_v4/__init__.py' 2025-06-05T23:55:26.8325673Z adding 'executorch/examples/models/inception_v4/model.py' 2025-06-05T23:55:26.8326715Z adding 'executorch/examples/models/llama/__init__.py' 2025-06-05T23:55:26.8327757Z adding 'executorch/examples/models/llama/attention.py' 2025-06-05T23:55:26.8328832Z adding 'executorch/examples/models/llama/eval_llama.py' 2025-06-05T23:55:26.8329935Z adding 'executorch/examples/models/llama/eval_llama_lib.py' 2025-06-05T23:55:26.8331053Z adding 'executorch/examples/models/llama/export_llama.py' 2025-06-05T23:55:26.8332237Z adding 'executorch/examples/models/llama/export_llama_lib.py' 2025-06-05T23:55:26.8333324Z adding 'executorch/examples/models/llama/fairseq2.py' 2025-06-05T23:55:26.8334406Z adding 'executorch/examples/models/llama/hf_download.py' 2025-06-05T23:55:26.8335775Z adding 'executorch/examples/models/llama/install_requirement_helper.py' 2025-06-05T23:55:26.8337122Z adding 'executorch/examples/models/llama/llama_transformer.py' 2025-06-05T23:55:26.8338244Z adding 'executorch/examples/models/llama/model.py' 2025-06-05T23:55:26.8339269Z adding 'executorch/examples/models/llama/model_args.py' 2025-06-05T23:55:26.8340298Z adding 'executorch/examples/models/llama/norm.py' 2025-06-05T23:55:26.8341272Z adding 'executorch/examples/models/llama/rope.py' 2025-06-05T23:55:26.8342314Z adding 'executorch/examples/models/llama/static_attention.py' 2025-06-05T23:55:26.8343538Z adding 'executorch/examples/models/llama/evaluate/__init__.py' 2025-06-05T23:55:26.8344770Z adding 'executorch/examples/models/llama/evaluate/eager_eval.py' 2025-06-05T23:55:26.8346086Z adding 'executorch/examples/models/llama/experimental/generate.py' 2025-06-05T23:55:26.8347472Z adding 'executorch/examples/models/llama/experimental/load_gguf_q4_0.py' 2025-06-05T23:55:26.8348880Z adding 'executorch/examples/models/llama/experimental/subclass.py' 2025-06-05T23:55:26.8350279Z adding 'executorch/examples/models/llama/experimental/test_subclass.py' 2025-06-05T23:55:26.8351641Z adding 'executorch/examples/models/llama/runner/eager.py' 2025-06-05T23:55:26.8353118Z adding 'executorch/examples/models/llama/runner/generation.py' 2025-06-05T23:55:26.8369090Z adding 'executorch/examples/models/llama/runner/native.py' 2025-06-05T23:55:26.8370347Z adding 'executorch/examples/models/llama/source_transformation/__init__.py' 2025-06-05T23:55:26.8371988Z adding 'executorch/examples/models/llama/source_transformation/apply_spin_quant_r1_r2.py' 2025-06-05T23:55:26.8373708Z adding 'executorch/examples/models/llama/source_transformation/attention.py' 2025-06-05T23:55:26.8375395Z adding 'executorch/examples/models/llama/source_transformation/attention_sink.py' 2025-06-05T23:55:26.8705921Z adding 'executorch/examples/models/llama/source_transformation/custom_kv_cache.py' 2025-06-05T23:55:26.8707527Z adding 'executorch/examples/models/llama/source_transformation/lora.py' 2025-06-05T23:55:26.8709091Z adding 'executorch/examples/models/llama/source_transformation/pre_quantization.py' 2025-06-05T23:55:26.8711431Z adding 'executorch/examples/models/llama/source_transformation/prune_vocab.py' 2025-06-05T23:55:26.8712965Z adding 'executorch/examples/models/llama/source_transformation/quantize.py' 2025-06-05T23:55:26.8714479Z adding 'executorch/examples/models/llama/source_transformation/rms_norm.py' 2025-06-05T23:55:26.8715958Z adding 'executorch/examples/models/llama/source_transformation/rope.py' 2025-06-05T23:55:26.8717575Z adding 'executorch/examples/models/llama/source_transformation/sdpa.py' 2025-06-05T23:55:26.8719100Z adding 'executorch/examples/models/llama/source_transformation/spin_quant.py' 2025-06-05T23:55:26.8720755Z adding 'executorch/examples/models/llama/source_transformation/test_attention_sink.py' 2025-06-05T23:55:26.8722618Z adding 'executorch/examples/models/llama/source_transformation/test_quantized_kv_cache.py' 2025-06-05T23:55:26.8724432Z adding 'executorch/examples/models/llama/source_transformation/test_quantized_sdpa.py' 2025-06-05T23:55:26.8726364Z adding 'executorch/examples/models/llama/source_transformation/test_sdpa_with_quantized_kv_cache.py' 2025-06-05T23:55:26.8728169Z adding 'executorch/examples/models/llama/source_transformation/vulkan_rope.py' 2025-06-05T23:55:26.8729672Z adding 'executorch/examples/models/llama/tests/test_export_llama_lib.py' 2025-06-05T23:55:26.8731212Z adding 'executorch/examples/models/llama/tests/test_pre_quantization_transforms.py' 2025-06-05T23:55:26.8732862Z adding 'executorch/examples/models/llama/tests/test_replace_kv_cache.py' 2025-06-05T23:55:26.8734247Z adding 'executorch/examples/models/llama/tests/test_ring_attention.py' 2025-06-05T23:55:26.8735740Z adding 'executorch/examples/models/llama/tests/test_ring_kv_cache.py' 2025-06-05T23:55:26.8737060Z adding 'executorch/examples/models/llama/tests/test_simple_sdpa.py' 2025-06-05T23:55:26.8738412Z adding 'executorch/examples/models/llama/tests/test_static_attention.py' 2025-06-05T23:55:26.8739804Z adding 'executorch/examples/models/llama/tokenizer/tiktoken.py' 2025-06-05T23:55:26.8741080Z adding 'executorch/examples/models/llama3_2_vision/__init__.py' 2025-06-05T23:55:26.8742414Z adding 'executorch/examples/models/llama3_2_vision/preprocess/__init__.py' 2025-06-05T23:55:26.8744003Z adding 'executorch/examples/models/llama3_2_vision/preprocess/export_preprocess.py' 2025-06-05T23:55:26.8745538Z adding 'executorch/examples/models/llama3_2_vision/preprocess/model.py' 2025-06-05T23:55:26.8747069Z adding 'executorch/examples/models/llama3_2_vision/preprocess/test_preprocess.py' 2025-06-05T23:55:26.8748578Z adding 'executorch/examples/models/llama3_2_vision/runner/eager.py' 2025-06-05T23:55:26.8749898Z adding 'executorch/examples/models/llama3_2_vision/runner/exported.py' 2025-06-05T23:55:26.8751318Z adding 'executorch/examples/models/llama3_2_vision/runner/generation.py' 2025-06-05T23:55:26.8752695Z adding 'executorch/examples/models/llama3_2_vision/runner/native.py' 2025-06-05T23:55:26.8754084Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/model.py' 2025-06-05T23:55:26.8755655Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/test/__init__.py' 2025-06-05T23:55:26.8757338Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/test/test_text_decoder.py' 2025-06-05T23:55:26.8759021Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/__init__.py' 2025-06-05T23:55:26.8760578Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/model.py' 2025-06-05T23:55:26.8762163Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/test/__init__.py' 2025-06-05T23:55:26.8763963Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/test/test_vision_encoder.py' 2025-06-05T23:55:26.8765445Z adding 'executorch/examples/models/llava/__init__.py' 2025-06-05T23:55:26.8766491Z adding 'executorch/examples/models/llava/export_llava.py' 2025-06-05T23:55:26.8767559Z adding 'executorch/examples/models/llava/model.py' 2025-06-05T23:55:26.8768796Z adding 'executorch/examples/models/llava/test/test_llava.py' 2025-06-05T23:55:26.8769935Z adding 'executorch/examples/models/llava/test/test_pte.py' 2025-06-05T23:55:26.8770989Z adding 'executorch/examples/models/lstm/__init__.py' 2025-06-05T23:55:26.8771970Z adding 'executorch/examples/models/lstm/model.py' 2025-06-05T23:55:26.8773006Z adding 'executorch/examples/models/mobilebert/__init__.py' 2025-06-05T23:55:26.8774240Z adding 'executorch/examples/models/mobilebert/model.py' 2025-06-05T23:55:26.8775441Z adding 'executorch/examples/models/mobilenet_v2/__init__.py' 2025-06-05T23:55:26.8776572Z adding 'executorch/examples/models/mobilenet_v2/model.py' 2025-06-05T23:55:26.8777716Z adding 'executorch/examples/models/mobilenet_v3/__init__.py' 2025-06-05T23:55:26.8778861Z adding 'executorch/examples/models/mobilenet_v3/model.py' 2025-06-05T23:55:26.8779974Z adding 'executorch/examples/models/moshi/mimi/test_mimi.py' 2025-06-05T23:55:26.8781085Z adding 'executorch/examples/models/phi-3-mini/__init__.py' 2025-06-05T23:55:26.8782217Z adding 'executorch/examples/models/phi-3-mini/eager.py' 2025-06-05T23:55:26.8783433Z adding 'executorch/examples/models/phi-3-mini/export_phi-3-mini.py' 2025-06-05T23:55:26.8784659Z adding 'executorch/examples/models/phi-3-mini/phi_3_mini.py' 2025-06-05T23:55:26.8785832Z adding 'executorch/examples/models/phi-3-mini/static_cache.py' 2025-06-05T23:55:26.8787099Z adding 'executorch/examples/models/phi-3-mini-lora/export_model.py' 2025-06-05T23:55:26.8788327Z adding 'executorch/examples/models/phi_4_mini/__init__.py' 2025-06-05T23:55:26.8789518Z adding 'executorch/examples/models/phi_4_mini/convert_weights.py' 2025-06-05T23:55:26.8790689Z adding 'executorch/examples/models/qwen2_5/__init__.py' 2025-06-05T23:55:26.8791812Z adding 'executorch/examples/models/qwen2_5/convert_weights.py' 2025-06-05T23:55:26.8792919Z adding 'executorch/examples/models/qwen3/__init__.py' 2025-06-05T23:55:26.8794006Z adding 'executorch/examples/models/qwen3/convert_weights.py' 2025-06-05T23:55:26.8795159Z adding 'executorch/examples/models/resnet/__init__.py' 2025-06-05T23:55:26.8796168Z adding 'executorch/examples/models/resnet/model.py' 2025-06-05T23:55:26.8797176Z adding 'executorch/examples/models/smollm2/__init__.py' 2025-06-05T23:55:26.8798289Z adding 'executorch/examples/models/smollm2/convert_weights.py' 2025-06-05T23:55:26.8799398Z adding 'executorch/examples/models/test/__init__.py' 2025-06-05T23:55:26.8800437Z adding 'executorch/examples/models/test/test_export.py' 2025-06-05T23:55:26.8801575Z adding 'executorch/examples/models/torchvision_vit/__init__.py' 2025-06-05T23:55:26.8802764Z adding 'executorch/examples/models/torchvision_vit/model.py' 2025-06-05T23:55:26.8804159Z adding 'executorch/examples/models/toy_model/__init__.py' 2025-06-05T23:55:26.8805243Z adding 'executorch/examples/models/toy_model/model.py' 2025-06-05T23:55:26.8806284Z adding 'executorch/examples/models/wav2letter/__init__.py' 2025-06-05T23:55:26.8807365Z adding 'executorch/examples/models/wav2letter/model.py' 2025-06-05T23:55:26.8808308Z adding 'executorch/exir/__init__.py' 2025-06-05T23:55:26.8809073Z adding 'executorch/exir/_warnings.py' 2025-06-05T23:55:26.8809845Z adding 'executorch/exir/common.py' 2025-06-05T23:55:26.8810602Z adding 'executorch/exir/control_flow.py' 2025-06-05T23:55:26.8811408Z adding 'executorch/exir/delegate.py' 2025-06-05T23:55:26.8812189Z adding 'executorch/exir/delegate.pyi' 2025-06-05T23:55:26.8813028Z adding 'executorch/exir/dim_order_utils.py' 2025-06-05T23:55:26.8813885Z adding 'executorch/exir/dynamic_shape.py' 2025-06-05T23:55:26.8814727Z adding 'executorch/exir/error.py' 2025-06-05T23:55:26.8815482Z adding 'executorch/exir/graph.py' 2025-06-05T23:55:26.8816263Z adding 'executorch/exir/graph_module.py' 2025-06-05T23:55:26.8817161Z adding 'executorch/exir/lowered_backend_module.py' 2025-06-05T23:55:26.8818049Z adding 'executorch/exir/memory.py' 2025-06-05T23:55:26.8818863Z adding 'executorch/exir/memory_planning.py' 2025-06-05T23:55:26.8819871Z adding 'executorch/exir/pass_base.py' 2025-06-05T23:55:26.8820675Z adding 'executorch/exir/pass_manager.py' 2025-06-05T23:55:26.8821492Z adding 'executorch/exir/print_program.py' 2025-06-05T23:55:26.8822324Z adding 'executorch/exir/scalar_type.py' 2025-06-05T23:55:26.8823096Z adding 'executorch/exir/schema.py' 2025-06-05T23:55:26.8823855Z adding 'executorch/exir/sym_util.py' 2025-06-05T23:55:26.8824611Z adding 'executorch/exir/tensor.py' 2025-06-05T23:55:26.8825535Z adding 'executorch/exir/tracer.py' 2025-06-05T23:55:26.8826307Z adding 'executorch/exir/types.py' 2025-06-05T23:55:26.8827061Z adding 'executorch/exir/version.py' 2025-06-05T23:55:26.8827796Z adding 'executorch/exir/wrap.py' 2025-06-05T23:55:26.8828566Z adding 'executorch/exir/_serialize/__init__.py' 2025-06-05T23:55:26.8829467Z adding 'executorch/exir/_serialize/_cord.py' 2025-06-05T23:55:26.8830351Z adding 'executorch/exir/_serialize/_dataclass.py' 2025-06-05T23:55:26.8831330Z adding 'executorch/exir/_serialize/_flatbuffer.py' 2025-06-05T23:55:26.8832335Z adding 'executorch/exir/_serialize/_named_data_store.py' 2025-06-05T23:55:26.8833338Z adding 'executorch/exir/_serialize/_program.py' 2025-06-05T23:55:26.8834280Z adding 'executorch/exir/_serialize/_serialize.py' 2025-06-05T23:55:26.8835307Z adding 'executorch/exir/_serialize/data_serializer.py' 2025-06-05T23:55:26.8836277Z adding 'executorch/exir/_serialize/padding.py' 2025-06-05T23:55:26.8837238Z adding 'executorch/exir/_serialize/program.fbs' 2025-06-05T23:55:26.8838154Z adding 'executorch/exir/_serialize/scalar_type.fbs' 2025-06-05T23:55:26.8839148Z adding 'executorch/exir/_serialize/test/__init__.py' 2025-06-05T23:55:26.8840125Z adding 'executorch/exir/_serialize/test/test_cord.py' 2025-06-05T23:55:26.8841219Z adding 'executorch/exir/_serialize/test/test_flatbuffer.py' 2025-06-05T23:55:26.8842414Z adding 'executorch/exir/_serialize/test/test_named_data_store.py' 2025-06-05T23:55:26.8843596Z adding 'executorch/exir/_serialize/test/test_program.py' 2025-06-05T23:55:26.8844595Z adding 'executorch/exir/backend/backend_api.py' 2025-06-05T23:55:26.8845564Z adding 'executorch/exir/backend/backend_details.py' 2025-06-05T23:55:26.8846579Z adding 'executorch/exir/backend/compile_spec_schema.py' 2025-06-05T23:55:26.8847587Z adding 'executorch/exir/backend/operator_support.py' 2025-06-05T23:55:26.8848580Z adding 'executorch/exir/backend/partitioner.py' 2025-06-05T23:55:26.8849473Z adding 'executorch/exir/backend/utils.py' 2025-06-05T23:55:26.8850696Z adding 'executorch/exir/backend/canonical_partitioners/all_node_partitioner.py' 2025-06-05T23:55:26.8852315Z adding 'executorch/exir/backend/canonical_partitioners/config_partitioner.py' 2025-06-05T23:55:26.8854027Z adding 'executorch/exir/backend/canonical_partitioners/duplicate_constant_node_pass.py' 2025-06-05T23:55:26.8855902Z adding 'executorch/exir/backend/canonical_partitioners/duplicate_dequant_node_pass.py' 2025-06-05T23:55:26.8857647Z adding 'executorch/exir/backend/canonical_partitioners/pattern_op_partitioner.py' 2025-06-05T23:55:26.8859145Z adding 'executorch/exir/backend/test/backend_with_compiler_demo.py' 2025-06-05T23:55:26.8860564Z adding 'executorch/exir/backend/test/backend_with_delegate_mapping_demo.py' 2025-06-05T23:55:26.8862002Z adding 'executorch/exir/backend/test/backend_with_named_data_map.py' 2025-06-05T23:55:26.9406245Z adding 'executorch/exir/backend/test/backend_with_preprocess_all_demo.py' 2025-06-05T23:55:26.9407693Z adding 'executorch/exir/backend/test/hta_partitioner_demo.py' 2025-06-05T23:55:26.9408905Z adding 'executorch/exir/backend/test/op_partitioner_demo.py' 2025-06-05T23:55:26.9409998Z adding 'executorch/exir/backend/test/qnn_backend_demo.py' 2025-06-05T23:55:26.9411248Z adding 'executorch/exir/backend/test/test_backend_with_named_data_map.py' 2025-06-05T23:55:26.9412490Z adding 'executorch/exir/backend/test/test_backends.py' 2025-06-05T23:55:26.9413621Z adding 'executorch/exir/backend/test/test_backends_lifted.py' 2025-06-05T23:55:26.9415137Z adding 'executorch/exir/backend/test/test_backends_nested.py' 2025-06-05T23:55:26.9416266Z adding 'executorch/exir/backend/test/test_compatibility.py' 2025-06-05T23:55:26.9417458Z adding 'executorch/exir/backend/test/test_debug_handle_map.py' 2025-06-05T23:55:26.9418688Z adding 'executorch/exir/backend/test/test_delegate_map_builder.py' 2025-06-05T23:55:26.9419931Z adding 'executorch/exir/backend/test/test_graph_partition.py' 2025-06-05T23:55:26.9421376Z adding 'executorch/exir/backend/test/test_lowered_backend_module.py' 2025-06-05T23:55:26.9422632Z adding 'executorch/exir/backend/test/test_partitioner.py' 2025-06-05T23:55:26.9423693Z adding 'executorch/exir/backend/test/test_passes.py' 2025-06-05T23:55:26.9424882Z adding 'executorch/exir/backend/test/test_to_backend_multi_method.py' 2025-06-05T23:55:26.9426047Z adding 'executorch/exir/backend/test/test_utils.py' 2025-06-05T23:55:26.9427233Z adding 'executorch/exir/backend/test/demos/test_delegate_aten_mode.py' 2025-06-05T23:55:26.9428615Z adding 'executorch/exir/backend/test/demos/test_xnnpack_qnnpack.py' 2025-06-05T23:55:26.9430093Z adding 'executorch/exir/backend/test/demos/rpc/executor_backend_partitioner.py' 2025-06-05T23:55:26.9431703Z adding 'executorch/exir/backend/test/demos/rpc/executor_backend_preprocess.py' 2025-06-05T23:55:26.9433083Z adding 'executorch/exir/backend/test/demos/rpc/test_rpc.py' 2025-06-05T23:55:26.9434105Z adding 'executorch/exir/capture/__init__.py' 2025-06-05T23:55:26.9434995Z adding 'executorch/exir/capture/_capture.py' 2025-06-05T23:55:26.9435889Z adding 'executorch/exir/capture/_config.py' 2025-06-05T23:55:26.9436769Z adding 'executorch/exir/capture/_unlift.py' 2025-06-05T23:55:26.9437639Z adding 'executorch/exir/dialects/__init__.py' 2025-06-05T23:55:26.9438501Z adding 'executorch/exir/dialects/_ops.py' 2025-06-05T23:55:26.9439361Z adding 'executorch/exir/dialects/backend/_ops.py' 2025-06-05T23:55:26.9440479Z adding 'executorch/exir/dialects/backend/test/test_backend_ops.py' 2025-06-05T23:55:26.9441555Z adding 'executorch/exir/dialects/edge/_ops.py' 2025-06-05T23:55:26.9442454Z adding 'executorch/exir/dialects/edge/edge.yaml' 2025-06-05T23:55:26.9443305Z adding 'executorch/exir/dialects/edge/arg/model.py' 2025-06-05T23:55:26.9444181Z adding 'executorch/exir/dialects/edge/arg/type.py' 2025-06-05T23:55:26.9445052Z adding 'executorch/exir/dialects/edge/dtype/runner.py' 2025-06-05T23:55:26.9446031Z adding 'executorch/exir/dialects/edge/dtype/supported.py' 2025-06-05T23:55:26.9446974Z adding 'executorch/exir/dialects/edge/dtype/utils.py' 2025-06-05T23:55:26.9447848Z adding 'executorch/exir/dialects/edge/op/api.py' 2025-06-05T23:55:26.9448745Z adding 'executorch/exir/dialects/edge/op/sample_input.py' 2025-06-05T23:55:26.9449746Z adding 'executorch/exir/dialects/edge/op/test/test_api.py' 2025-06-05T23:55:26.9450653Z adding 'executorch/exir/dialects/edge/spec/gen.py' 2025-06-05T23:55:26.9451549Z adding 'executorch/exir/dialects/edge/spec/utils.py' 2025-06-05T23:55:26.9452569Z adding 'executorch/exir/dialects/edge/test/test_edge_ops.py' 2025-06-05T23:55:26.9453658Z adding 'executorch/exir/dialects/edge/test/test_edge_yaml.py' 2025-06-05T23:55:26.9454911Z adding 'executorch/exir/dialects/test/test_exir_dialect_ops.py' 2025-06-05T23:55:26.9455882Z adding 'executorch/exir/emit/__init__.py' 2025-06-05T23:55:26.9456709Z adding 'executorch/exir/emit/_emit_program.py' 2025-06-05T23:55:26.9457537Z adding 'executorch/exir/emit/_emitter.py' 2025-06-05T23:55:26.9458348Z adding 'executorch/exir/emit/test/test_emit.py' 2025-06-05T23:55:26.9459175Z adding 'executorch/exir/operator/convert.py' 2025-06-05T23:55:26.9459982Z adding 'executorch/exir/operator/manip.py' 2025-06-05T23:55:26.9460756Z adding 'executorch/exir/operator/util.py' 2025-06-05T23:55:26.9461643Z adding 'executorch/exir/operator/test/test_operator.py' 2025-06-05T23:55:26.9462551Z adding 'executorch/exir/passes/__init__.py' 2025-06-05T23:55:26.9463732Z adding 'executorch/exir/passes/_quant_patterns_and_replacements.py' 2025-06-05T23:55:26.9464811Z adding 'executorch/exir/passes/const_prop_pass.py' 2025-06-05T23:55:26.9465747Z adding 'executorch/exir/passes/constant_prop_pass.py' 2025-06-05T23:55:26.9466799Z adding 'executorch/exir/passes/debug_handle_generator_pass.py' 2025-06-05T23:55:26.9468003Z adding 'executorch/exir/passes/dim_order_ops_registry.py' 2025-06-05T23:55:26.9469241Z adding 'executorch/exir/passes/dynamic_shape_prop_pass.py' 2025-06-05T23:55:26.9470478Z adding 'executorch/exir/passes/executorch_prim_ops_registry.py' 2025-06-05T23:55:26.9471706Z adding 'executorch/exir/passes/external_constants_pass.py' 2025-06-05T23:55:26.9472815Z adding 'executorch/exir/passes/init_mutable_pass.py' 2025-06-05T23:55:26.9474025Z adding 'executorch/exir/passes/insert_write_back_for_buffers_pass.py' 2025-06-05T23:55:26.9475313Z adding 'executorch/exir/passes/memory_format_ops_pass.py' 2025-06-05T23:55:26.9476422Z adding 'executorch/exir/passes/memory_planning_pass.py' 2025-06-05T23:55:26.9477575Z adding 'executorch/exir/passes/normalize_transpose_pass.py' 2025-06-05T23:55:26.9478782Z adding 'executorch/exir/passes/normalize_view_copy_base_pass.py' 2025-06-05T23:55:26.9479907Z adding 'executorch/exir/passes/pass_registry.py' 2025-06-05T23:55:26.9480953Z adding 'executorch/exir/passes/prune_empty_tensors_pass.py' 2025-06-05T23:55:26.9482040Z adding 'executorch/exir/passes/quant_fusion_pass.py' 2025-06-05T23:55:26.9483032Z adding 'executorch/exir/passes/quantize_io_pass.py' 2025-06-05T23:55:26.9484117Z adding 'executorch/exir/passes/remove_graph_asserts_pass.py' 2025-06-05T23:55:26.9485302Z adding 'executorch/exir/passes/remove_mixed_type_operators.py' 2025-06-05T23:55:26.9486397Z adding 'executorch/exir/passes/remove_noop_pass.py' 2025-06-05T23:55:26.9487485Z adding 'executorch/exir/passes/remove_unused_parameters_pass.py' 2025-06-05T23:55:26.9488701Z adding 'executorch/exir/passes/replace_aten_with_edge_pass.py' 2025-06-05T23:55:26.9490077Z adding 'executorch/exir/passes/replace_broken_ops_with_function_ops_pass.py' 2025-06-05T23:55:26.9491498Z adding 'executorch/exir/passes/replace_edge_with_backend_pass.py' 2025-06-05T23:55:26.9492696Z adding 'executorch/exir/passes/replace_sym_size_op_pass.py' 2025-06-05T23:55:26.9493903Z adding 'executorch/exir/passes/replace_view_copy_with_view_pass.py' 2025-06-05T23:55:26.9495247Z adding 'executorch/exir/passes/scalar_to_tensor_pass.py' 2025-06-05T23:55:26.9496297Z adding 'executorch/exir/passes/spec_prop_pass.py' 2025-06-05T23:55:26.9497350Z adding 'executorch/exir/passes/sym_shape_eval_pass.py' 2025-06-05T23:55:26.9498412Z adding 'executorch/exir/passes/sym_to_tensor_pass.py' 2025-06-05T23:55:26.9499518Z adding 'executorch/exir/passes/weights_to_outputs_pass.py' 2025-06-05T23:55:26.9500545Z adding 'executorch/exir/program/__init__.py' 2025-06-05T23:55:26.9501471Z adding 'executorch/exir/program/_fake_program.py' 2025-06-05T23:55:26.9502418Z adding 'executorch/exir/program/_program.py' 2025-06-05T23:55:26.9503365Z adding 'executorch/exir/program/test/__init__.py' 2025-06-05T23:55:26.9504656Z adding 'executorch/exir/program/test/test_fake_program.py' 2025-06-05T23:55:26.9505781Z adding 'executorch/exir/program/test/test_program.py' 2025-06-05T23:55:26.9506738Z adding 'executorch/exir/serde/__init__.py' 2025-06-05T23:55:26.9507668Z adding 'executorch/exir/serde/export_serialize.py' 2025-06-05T23:55:26.9508579Z adding 'executorch/exir/serde/schema.py' 2025-06-05T23:55:26.9509443Z adding 'executorch/exir/serde/schema_check.py' 2025-06-05T23:55:26.9510351Z adding 'executorch/exir/serde/serialize.py' 2025-06-05T23:55:26.9511220Z adding 'executorch/exir/serde/union.py' 2025-06-05T23:55:26.9512081Z adding 'executorch/exir/tests/asr_joiner.py' 2025-06-05T23:55:26.9512948Z adding 'executorch/exir/tests/common.py' 2025-06-05T23:55:26.9513867Z adding 'executorch/exir/tests/control_flow_models.py' 2025-06-05T23:55:26.9514922Z adding 'executorch/exir/tests/dynamic_shape_models.py' 2025-06-05T23:55:26.9516065Z adding 'executorch/exir/tests/models.py' 2025-06-05T23:55:26.9516990Z adding 'executorch/exir/tests/test_arg_validator.py' 2025-06-05T23:55:26.9517955Z adding 'executorch/exir/tests/test_capture.py' 2025-06-05T23:55:26.9518843Z adding 'executorch/exir/tests/test_common.py' 2025-06-05T23:55:26.9519765Z adding 'executorch/exir/tests/test_delegate.py' 2025-06-05T23:55:26.9520873Z adding 'executorch/exir/tests/test_dim_order_utils.py' 2025-06-05T23:55:26.9522016Z adding 'executorch/exir/tests/test_dynamic_shape_propagation.py' 2025-06-05T23:55:26.9523086Z adding 'executorch/exir/tests/test_error.py' 2025-06-05T23:55:26.9523983Z adding 'executorch/exir/tests/test_joint_graph.py' 2025-06-05T23:55:26.9525044Z adding 'executorch/exir/tests/test_memory_format_ops_pass.py' 2025-06-05T23:55:26.9526276Z adding 'executorch/exir/tests/test_memory_format_ops_pass_aten.py' 2025-06-05T23:55:26.9527554Z adding 'executorch/exir/tests/test_memory_format_ops_pass_utils.py' 2025-06-05T23:55:26.9528710Z adding 'executorch/exir/tests/test_memory_planning.py' 2025-06-05T23:55:26.9529712Z adding 'executorch/exir/tests/test_op_convert.py' 2025-06-05T23:55:26.9530633Z adding 'executorch/exir/tests/test_pass_infra.py' 2025-06-05T23:55:26.9531504Z adding 'executorch/exir/tests/test_passes.py' 2025-06-05T23:55:26.9532417Z adding 'executorch/exir/tests/test_print_program.py' 2025-06-05T23:55:26.9533495Z adding 'executorch/exir/tests/test_prune_empty_tensors_pass.py' 2025-06-05T23:55:26.9534708Z adding 'executorch/exir/tests/test_quant_fusion_pass.py' 2025-06-05T23:55:26.9535735Z adding 'executorch/exir/tests/test_quantization.py' 2025-06-05T23:55:26.9536751Z adding 'executorch/exir/tests/test_quantize_io_pass.py' 2025-06-05T23:55:26.9537906Z adding 'executorch/exir/tests/test_remove_unused_parameters_pass.py' 2025-06-05T23:55:26.9539105Z adding 'executorch/exir/tests/test_remove_view_copy.py' 2025-06-05T23:55:26.9540045Z adding 'executorch/exir/tests/test_serde.py' 2025-06-05T23:55:26.9540919Z adding 'executorch/exir/tests/test_tensor.py' 2025-06-05T23:55:26.9541764Z adding 'executorch/exir/tests/test_tracer.py' 2025-06-05T23:55:26.9542673Z adding 'executorch/exir/tests/test_verification.py' 2025-06-05T23:55:26.9543612Z adding 'executorch/exir/tests/test_warnings.py' 2025-06-05T23:55:26.9544511Z adding 'executorch/exir/tests/transformer.py' 2025-06-05T23:55:26.9545494Z adding 'executorch/exir/verification/arg_validator.py' 2025-06-05T23:55:26.9546493Z adding 'executorch/exir/verification/dev_html.py' 2025-06-05T23:55:26.9547486Z adding 'executorch/exir/verification/interpreter.py' 2025-06-05T23:55:26.9548493Z adding 'executorch/exir/verification/verifier.py' 2025-06-05T23:55:26.9549567Z adding 'executorch/exir/verification/test/test_verifier.py' 2025-06-05T23:55:26.9550642Z adding 'executorch/extension/export_util/__init__.py' 2025-06-05T23:55:26.9551644Z adding 'executorch/extension/export_util/utils.py' 2025-06-05T23:55:26.9552637Z adding 'executorch/extension/flat_tensor/__init__.py' 2025-06-05T23:55:26.9553774Z adding 'executorch/extension/flat_tensor/serialize/__init__.py' 2025-06-05T23:55:26.9555070Z adding 'executorch/extension/flat_tensor/serialize/flat_tensor.fbs' 2025-06-05T23:55:26.9556497Z adding 'executorch/extension/flat_tensor/serialize/flat_tensor_schema.py' 2025-06-05T23:55:27.6806674Z adding 'executorch/extension/flat_tensor/serialize/scalar_type.fbs' 2025-06-05T23:55:27.6807971Z adding 'executorch/extension/flat_tensor/serialize/serialize.py' 2025-06-05T23:55:27.6808789Z adding 'executorch/extension/flat_tensor/test/test_serialize.py' 2025-06-05T23:55:27.6809618Z adding 'executorch/extension/gguf_util/convert_main.py' 2025-06-05T23:55:27.6810214Z adding 'executorch/extension/gguf_util/converter.py' 2025-06-05T23:55:27.6810854Z adding 'executorch/extension/gguf_util/load_gguf.py' 2025-06-05T23:55:27.6811510Z adding 'executorch/extension/gguf_util/converters/llama_converter.py' 2025-06-05T23:55:27.6812676Z adding 'executorch/extension/llm/custom_ops/__init__.py' 2025-06-05T23:55:27.6813324Z adding 'executorch/extension/llm/custom_ops/custom_ops.py' 2025-06-05T23:55:27.6814134Z adding 'executorch/extension/llm/custom_ops/libcustom_ops_aot_lib.so' 2025-06-05T23:55:27.6815042Z adding 'executorch/extension/llm/custom_ops/model_sharding.py' 2025-06-05T23:55:27.6815749Z adding 'executorch/extension/llm/custom_ops/op_tile_crop_aot.py' 2025-06-05T23:55:27.6816609Z adding 'executorch/extension/llm/custom_ops/preprocess_custom_ops.py' 2025-06-05T23:55:27.6817414Z adding 'executorch/extension/llm/custom_ops/test_preprocess_custom_ops.py' 2025-06-05T23:55:27.6818190Z adding 'executorch/extension/llm/custom_ops/test_quantized_sdpa.py' 2025-06-05T23:55:27.6819148Z adding 'executorch/extension/llm/custom_ops/test_sdpa_with_kv_cache.py' 2025-06-05T23:55:27.6819902Z adding 'executorch/extension/llm/custom_ops/test_update_cache.py' 2025-06-05T23:55:27.6820721Z adding 'executorch/extension/llm/custom_ops/spinquant/special_hadamard_code_gen.py' 2025-06-05T23:55:27.6821639Z adding 'executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/example.py' 2025-06-05T23:55:27.6822545Z adding 'executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/gen.py' 2025-06-05T23:55:27.6823364Z adding 'executorch/extension/llm/export/__init__.py' 2025-06-05T23:55:27.6823996Z adding 'executorch/extension/llm/export/builder.py' 2025-06-05T23:55:27.6824596Z adding 'executorch/extension/llm/export/export_passes.py' 2025-06-05T23:55:27.6825245Z adding 'executorch/extension/llm/export/partitioner_lib.py' 2025-06-05T23:55:27.6825877Z adding 'executorch/extension/llm/export/quantizer_lib.py' 2025-06-05T23:55:27.6826535Z adding 'executorch/extension/llm/export/test_export_passes.py' 2025-06-05T23:55:27.6827266Z adding 'executorch/extension/llm/export/test/__init__.py' 2025-06-05T23:55:27.6828226Z adding 'executorch/extension/llm/export/test/test_builder.py' 2025-06-05T23:55:27.6829056Z adding 'executorch/extension/llm/modules/__init__.py' 2025-06-05T23:55:27.6829748Z adding 'executorch/extension/llm/modules/_position_embeddings.py' 2025-06-05T23:55:27.6830410Z adding 'executorch/extension/llm/modules/attention.py' 2025-06-05T23:55:27.6831012Z adding 'executorch/extension/llm/modules/kv_cache.py' 2025-06-05T23:55:27.6831614Z adding 'executorch/extension/llm/modules/test/__init__.py' 2025-06-05T23:55:27.6832305Z adding 'executorch/extension/llm/modules/test/test_attention.py' 2025-06-05T23:55:27.6832999Z adding 'executorch/extension/llm/modules/test/test_kv_cache.py' 2025-06-05T23:55:27.6833764Z adding 'executorch/extension/llm/modules/test/test_position_embeddings.py' 2025-06-05T23:55:27.6834473Z adding 'executorch/extension/llm/tokenizers/setup.py' 2025-06-05T23:55:27.6835244Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/__init__.py' 2025-06-05T23:55:27.6836216Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/constants.py' 2025-06-05T23:55:27.6837233Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/hf_tokenizer.py' 2025-06-05T23:55:27.6838218Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/llama2c.py' 2025-06-05T23:55:27.6839184Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tiktoken.py' 2025-06-05T23:55:27.6840181Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/__init__.py' 2025-06-05T23:55:27.6841283Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/__init__.py' 2025-06-05T23:55:27.6842414Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/convert.py' 2025-06-05T23:55:27.6843409Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/__init__.py' 2025-06-05T23:55:27.6844244Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/constants.py' 2025-06-05T23:55:27.6845130Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/hf_tokenizer.py' 2025-06-05T23:55:27.6846099Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/llama2c.py' 2025-06-05T23:55:27.6846942Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tiktoken.py' 2025-06-05T23:55:27.6847815Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/__init__.py' 2025-06-05T23:55:27.6848789Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/__init__.py' 2025-06-05T23:55:27.6849853Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/convert.py' 2025-06-05T23:55:27.6850736Z adding 'executorch/extension/llm/tokenizers/test/test_tiktoken.py' 2025-06-05T23:55:27.6851550Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/conanfile.py' 2025-06-05T23:55:27.6852482Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/create_lts.py' 2025-06-05T23:55:27.6853560Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/abseil.podspec.gen.py' 2025-06-05T23:55:27.6854715Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/copts.py' 2025-06-05T23:55:27.6855765Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/generate_copts.py' 2025-06-05T23:55:27.6856901Z adding 'executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts/check_structure.py' 2025-06-05T23:55:27.6858031Z adding 'executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl/filterbr.py' 2025-06-05T23:55:27.6859125Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate/amalgamate.py' 2025-06-05T23:55:27.6860243Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer/nlohmann-json.py' 2025-06-05T23:55:27.6861433Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis/generate_natvis.py' 2025-06-05T23:55:27.6862564Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/serve_header/serve_header.py' 2025-06-05T23:55:27.6863617Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateCommon.py' 2025-06-05T23:55:27.6864578Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateTest.py' 2025-06-05T23:55:27.6865533Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcd.py' 2025-06-05T23:55:27.6866530Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpHeader.py' 2025-06-05T23:55:27.6867549Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpTables.py' 2025-06-05T23:55:27.6868545Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateCommon.py' 2025-06-05T23:55:27.6869484Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateDates.py' 2025-06-05T23:55:27.6870444Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateRelease.py' 2025-06-05T23:55:27.6871389Z adding 'executorch/extension/llm/tokenizers/third-party/re2/benchlog/benchplot.py' 2025-06-05T23:55:27.6872279Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/re2.py' 2025-06-05T23:55:27.6873126Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/re2_test.py' 2025-06-05T23:55:27.6874001Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/setup.py' 2025-06-05T23:55:27.6874931Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/toolchains/generate.py' 2025-06-05T23:55:27.6875959Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_casefold.py' 2025-06-05T23:55:27.6876940Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_groups.py' 2025-06-05T23:55:27.6877860Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/unicode.py' 2025-06-05T23:55:27.6878758Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/setup.py' 2025-06-05T23:55:27.6880024Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/__init__.py' 2025-06-05T23:55:27.6881276Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/_version.py' 2025-06-05T23:55:27.6882652Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_model_pb2.py' 2025-06-05T23:55:27.6884133Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_pb2.py' 2025-06-05T23:55:27.6885373Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/__init__.py' 2025-06-05T23:55:27.6886515Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/sentencepiece_test.py' 2025-06-05T23:55:27.6887543Z adding 'executorch/extension/module/test/resources/gen_bundled_program.py' 2025-06-05T23:55:27.6888428Z adding 'executorch/extension/pybindings/_portable_lib.cpython-310-x86_64-linux-gnu.so' 2025-06-05T23:55:27.6889240Z adding 'executorch/extension/pybindings/portable_lib.py' 2025-06-05T23:55:27.6889860Z adding 'executorch/extension/pybindings/pybindings.pyi' 2025-06-05T23:55:27.6890502Z adding 'executorch/extension/pybindings/test/make_test.py' 2025-06-05T23:55:27.6891214Z adding 'executorch/extension/pybindings/test/test_backend_pybinding.py' 2025-06-05T23:55:27.6891986Z adding 'executorch/extension/pybindings/test/test_pybindings.py' 2025-06-05T23:55:27.6892614Z adding 'executorch/extension/pytree/__init__.py' 2025-06-05T23:55:27.6893262Z adding 'executorch/extension/pytree/test/test.py' 2025-06-05T23:55:27.6893808Z adding 'executorch/extension/training/__init__.py' 2025-06-05T23:55:27.6894679Z adding 'executorch/extension/training/examples/XOR/export_model.py' 2025-06-05T23:55:27.6895386Z adding 'executorch/extension/training/examples/XOR/model.py' 2025-06-05T23:55:27.6896122Z adding 'executorch/extension/training/examples/XOR/test/test_export.py' 2025-06-05T23:55:27.6896900Z adding 'executorch/extension/training/pybindings/_training_lib.pyi' 2025-06-05T23:55:27.6897720Z adding 'executorch/extension/training/pybindings/_training_module.py' 2025-06-05T23:55:27.6898504Z adding 'executorch/extension/training/pybindings/test/test.py' 2025-06-05T23:55:28.4026781Z adding 'executorch/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h' 2025-06-05T23:55:28.4028530Z adding 'executorch/include/executorch/extension/kernel_util/meta_programming.h' 2025-06-05T23:55:28.4029388Z adding 'executorch/include/executorch/extension/kernel_util/type_list.h' 2025-06-05T23:55:28.4030162Z adding 'executorch/include/executorch/extension/tensor/tensor.h' 2025-06-05T23:55:28.4030920Z adding 'executorch/include/executorch/extension/tensor/tensor_accessor.h' 2025-06-05T23:55:28.4031719Z adding 'executorch/include/executorch/extension/tensor/tensor_ptr.h' 2025-06-05T23:55:28.4032511Z adding 'executorch/include/executorch/extension/tensor/tensor_ptr_maker.h' 2025-06-05T23:55:28.4033375Z adding 'executorch/include/executorch/extension/threadpool/cpuinfo_utils.h' 2025-06-05T23:55:28.4034200Z adding 'executorch/include/executorch/extension/threadpool/threadpool.h' 2025-06-05T23:55:28.4035054Z adding 'executorch/include/executorch/extension/threadpool/threadpool_guard.h' 2025-06-05T23:55:28.4035834Z adding 'executorch/include/executorch/runtime/core/array_ref.h' 2025-06-05T23:55:28.4036549Z adding 'executorch/include/executorch/runtime/core/data_loader.h' 2025-06-05T23:55:28.4037253Z adding 'executorch/include/executorch/runtime/core/defines.h' 2025-06-05T23:55:28.4037926Z adding 'executorch/include/executorch/runtime/core/error.h' 2025-06-05T23:55:28.4038576Z adding 'executorch/include/executorch/runtime/core/evalue.h' 2025-06-05T23:55:28.4039280Z adding 'executorch/include/executorch/runtime/core/event_tracer.h' 2025-06-05T23:55:28.4040042Z adding 'executorch/include/executorch/runtime/core/event_tracer_hooks.h' 2025-06-05T23:55:28.4041166Z adding 'executorch/include/executorch/runtime/core/event_tracer_hooks_delegate.h' 2025-06-05T23:55:28.4042005Z adding 'executorch/include/executorch/runtime/core/freeable_buffer.h' 2025-06-05T23:55:28.4042800Z adding 'executorch/include/executorch/runtime/core/function_ref.h' 2025-06-05T23:55:28.4043588Z adding 'executorch/include/executorch/runtime/core/hierarchical_allocator.h' 2025-06-05T23:55:28.4044426Z adding 'executorch/include/executorch/runtime/core/memory_allocator.h' 2025-06-05T23:55:28.4045302Z adding 'executorch/include/executorch/runtime/core/named_data_map.h' 2025-06-05T23:55:28.4046018Z adding 'executorch/include/executorch/runtime/core/result.h' 2025-06-05T23:55:28.4046657Z adding 'executorch/include/executorch/runtime/core/span.h' 2025-06-05T23:55:28.4047302Z adding 'executorch/include/executorch/runtime/core/tag.h' 2025-06-05T23:55:28.4047975Z adding 'executorch/include/executorch/runtime/core/tensor_layout.h' 2025-06-05T23:55:28.4048771Z adding 'executorch/include/executorch/runtime/core/tensor_shape_dynamism.h' 2025-06-05T23:55:28.4049600Z adding 'executorch/include/executorch/runtime/core/exec_aten/exec_aten.h' 2025-06-05T23:55:28.4050527Z adding 'executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h' 2025-06-05T23:55:28.4051529Z adding 'executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h' 2025-06-05T23:55:28.4052494Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/dim_order_util.h' 2025-06-05T23:55:28.4053423Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h' 2025-06-05T23:55:28.4054421Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h' 2025-06-05T23:55:28.4055566Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h' 2025-06-05T23:55:28.4056548Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_util.h' 2025-06-05T23:55:28.4057429Z adding 'executorch/include/executorch/runtime/core/portable_type/bfloat16.h' 2025-06-05T23:55:28.4058323Z adding 'executorch/include/executorch/runtime/core/portable_type/bfloat16_math.h' 2025-06-05T23:55:28.4059213Z adding 'executorch/include/executorch/runtime/core/portable_type/bits_types.h' 2025-06-05T23:55:28.4060085Z adding 'executorch/include/executorch/runtime/core/portable_type/complex.h' 2025-06-05T23:55:28.4060926Z adding 'executorch/include/executorch/runtime/core/portable_type/device.h' 2025-06-05T23:55:28.4061758Z adding 'executorch/include/executorch/runtime/core/portable_type/half.h' 2025-06-05T23:55:28.4062584Z adding 'executorch/include/executorch/runtime/core/portable_type/optional.h' 2025-06-05T23:55:28.4063458Z adding 'executorch/include/executorch/runtime/core/portable_type/qint_types.h' 2025-06-05T23:55:28.4064300Z adding 'executorch/include/executorch/runtime/core/portable_type/scalar.h' 2025-06-05T23:55:28.4065166Z adding 'executorch/include/executorch/runtime/core/portable_type/scalar_type.h' 2025-06-05T23:55:28.4066056Z adding 'executorch/include/executorch/runtime/core/portable_type/string_view.h' 2025-06-05T23:55:28.4066921Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor.h' 2025-06-05T23:55:28.4067768Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor_impl.h' 2025-06-05T23:55:28.4068692Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor_options.h' 2025-06-05T23:55:28.4069660Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h' 2025-06-05T23:55:28.4070680Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h' 2025-06-05T23:55:28.4071705Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h' 2025-06-05T23:55:28.4072775Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h' 2025-06-05T23:55:28.4073819Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h' 2025-06-05T23:55:28.4074901Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h' 2025-06-05T23:55:28.4075889Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h' 2025-06-05T23:55:28.4076929Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h' 2025-06-05T23:55:28.4078066Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h' 2025-06-05T23:55:28.4079049Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h' 2025-06-05T23:55:28.4080076Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h' 2025-06-05T23:55:28.4081130Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h' 2025-06-05T23:55:28.4082245Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h' 2025-06-05T23:55:28.4083311Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h' 2025-06-05T23:55:28.4084210Z adding 'executorch/include/executorch/runtime/kernel/kernel_includes.h' 2025-06-05T23:55:28.4085038Z adding 'executorch/include/executorch/runtime/kernel/kernel_runtime_context.h' 2025-06-05T23:55:28.4085894Z adding 'executorch/include/executorch/runtime/kernel/operator_registry.h' 2025-06-05T23:55:28.4086762Z adding 'executorch/include/executorch/runtime/kernel/thread_parallel_interface.h' 2025-06-05T23:55:28.4087615Z adding 'executorch/include/executorch/runtime/kernel/test/test_util.h' 2025-06-05T23:55:28.4088350Z adding 'executorch/include/executorch/runtime/platform/abort.h' 2025-06-05T23:55:28.4089060Z adding 'executorch/include/executorch/runtime/platform/assert.h' 2025-06-05T23:55:28.4089753Z adding 'executorch/include/executorch/runtime/platform/clock.h' 2025-06-05T23:55:28.4090506Z adding 'executorch/include/executorch/runtime/platform/compat_unistd.h' 2025-06-05T23:55:28.4091279Z adding 'executorch/include/executorch/runtime/platform/compiler.h' 2025-06-05T23:55:28.4091996Z adding 'executorch/include/executorch/runtime/platform/log.h' 2025-06-05T23:55:28.4092695Z adding 'executorch/include/executorch/runtime/platform/platform.h' 2025-06-05T23:55:28.4093442Z adding 'executorch/include/executorch/runtime/platform/profiler.h' 2025-06-05T23:55:28.4094170Z adding 'executorch/include/executorch/runtime/platform/runtime.h' 2025-06-05T23:55:28.4095002Z adding 'executorch/include/executorch/runtime/platform/system.h' 2025-06-05T23:55:28.4095706Z adding 'executorch/include/executorch/runtime/platform/types.h' 2025-06-05T23:55:28.4096456Z adding 'executorch/include/executorch/runtime/platform/test/pal_spy.h' 2025-06-05T23:55:28.4097271Z adding 'executorch/include/executorch/runtime/platform/test/stub_platform.h' 2025-06-05T23:55:28.4097982Z adding 'executorch/kernels/quantized/__init__.py' 2025-06-05T23:55:28.4098730Z adding 'executorch/kernels/quantized/libquantized_ops_aot_lib.so' 2025-06-05T23:55:28.4099398Z adding 'executorch/kernels/quantized/quantized.yaml' 2025-06-05T23:55:28.4100068Z adding 'executorch/kernels/quantized/test/supported_features_def.yaml' 2025-06-05T23:55:28.4100802Z adding 'executorch/kernels/quantized/test/test_out_variants.py' 2025-06-05T23:55:28.4101574Z adding 'executorch/kernels/quantized/test/test_quant_dequant_per_token.py' 2025-06-05T23:55:28.4102237Z adding 'executorch/runtime/__init__.py' 2025-06-05T23:55:28.4102787Z adding 'executorch/runtime/kernel/test/functions.yaml' 2025-06-05T23:55:28.4103353Z adding 'executorch/runtime/test/test_runtime.py' 2025-06-05T23:55:28.4104250Z adding 'executorch/schema/program.fbs' 2025-06-05T23:55:28.4104734Z adding 'executorch/schema/scalar_type.fbs' 2025-06-05T23:55:28.4105306Z adding 'executorch/share/cmake/executorch-config.cmake' 2025-06-05T23:55:28.4105916Z adding 'executorch/util/activation_memory_profiler.py' 2025-06-05T23:55:28.4106635Z adding 'executorch/util/collect_env.py' 2025-06-05T23:55:28.4107120Z adding 'executorch/util/python_profiler.py' 2025-06-05T23:55:28.4107726Z adding 'executorch-0.7.0a0+bd57234.dist-info/licenses/LICENSE' 2025-06-05T23:55:28.4108371Z adding 'executorch-0.7.0a0+bd57234.dist-info/METADATA' 2025-06-05T23:55:28.4108955Z adding 'executorch-0.7.0a0+bd57234.dist-info/WHEEL' 2025-06-05T23:55:28.4109849Z adding 'executorch-0.7.0a0+bd57234.dist-info/entry_points.txt' 2025-06-05T23:55:28.4110662Z adding 'executorch-0.7.0a0+bd57234.dist-info/top_level.txt' 2025-06-05T23:55:28.4111277Z adding 'executorch-0.7.0a0+bd57234.dist-info/RECORD' 2025-06-05T23:55:28.4111823Z removing pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:55:28.4112676Z Building wheel for executorch (pyproject.toml) ... [?25l[?25hdone 2025-06-05T23:55:28.4114025Z Created wheel for executorch: filename=executorch-0.7.0a0+bd57234-cp310-cp310-linux_x86_64.whl size=9987128 sha256=094daaa20422756ab9ed215bd2479ce4314741cf7ad3a2ba2114fdec24fb5b40 2025-06-05T23:55:28.4115695Z Stored in directory: /tmp/pip-ephem-wheel-cache-v6o8d1kg/wheels/9e/f0/2b/6a778c77421b91e006bef425e288a1e5c7c35b04c51317756b 2025-06-05T23:55:28.4116638Z Successfully built executorch 2025-06-05T23:55:33.0336973Z Installing collected packages: flatbuffers, tabulate, pyaml, protobuf, execnet, pytest, cattrs, pytest-xdist, pytest-rerunfailures, coremltools, executorch 2025-06-05T23:55:33.0339335Z [?25l 2025-06-05T23:55:33.0340269Z  changing mode of /opt/conda/envs/py_3.10/bin/tabulate to 755 2025-06-05T23:55:33.0341026Z 2025-06-05T23:55:33.0341625Z  changing mode of /opt/conda/envs/py_3.10/bin/pyaml to 755 2025-06-05T23:55:33.0342350Z 2025-06-05T23:55:33.0343130Z  ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:55:33.0344270Z  Attempting uninstall: pytest 2025-06-05T23:55:33.0345520Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:55:33.0346731Z  Found existing installation: pytest 7.2.0 2025-06-05T23:55:33.0347989Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:55:33.0349110Z  Uninstalling pytest-7.2.0: 2025-06-05T23:55:33.0350299Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:55:33.0351822Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:33.0353251Z  Removing file or directory /opt/conda/envs/py_3.10/bin/py.test 2025-06-05T23:55:33.0354730Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:33.0356111Z  Removing file or directory /opt/conda/envs/py_3.10/bin/pytest 2025-06-05T23:55:33.0357565Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:33.0359498Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/__pycache__/py.cpython-310.pyc 2025-06-05T23:55:33.0361458Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:33.0363145Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/_pytest/ 2025-06-05T23:55:33.0364822Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:33.0366449Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/py.py 2025-06-05T23:55:33.0368123Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:33.0370002Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pytest-7.2.0.dist-info/ 2025-06-05T23:55:33.0371916Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:33.0373941Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pytest/ 2025-06-05T23:55:33.0375767Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:33.0376959Z  Successfully uninstalled pytest-7.2.0 2025-06-05T23:55:33.0378185Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:33.0379823Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:33.0381272Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:33.0382635Z  changing mode of /opt/conda/envs/py_3.10/bin/py.test to 755 2025-06-05T23:55:33.0384057Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:33.0385427Z  changing mode of /opt/conda/envs/py_3.10/bin/pytest to 755 2025-06-05T23:55:33.0386894Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:33.0388381Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:33.0389880Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:33.0391308Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:33.0392786Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:33.0394250Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:33.0395740Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:33.0397263Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:33.0398816Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:33.0400338Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:33.0401809Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:33.0403481Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:33.0405184Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:33.0406573Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:33.0408008Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:33.0409418Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:33.0411150Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:33.0412550Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:33.0413978Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:33.0415599Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:33.0417089Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:33.0418528Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:34.7894937Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:34.7896394Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:34.7897571Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:34.7898380Z  changing mode of /opt/conda/envs/py_3.10/bin/flatc to 755 2025-06-05T23:55:34.7899364Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:34.7900365Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11/11 [executorch] 2025-06-05T23:55:34.7901140Z [?25h 2025-06-05T23:55:34.7903000Z 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:55:34.7905059Z + pip list 2025-06-05T23:55:34.7905553Z Package Version Build Editable project location 2025-06-05T23:55:34.7906689Z ----------------------------- ------------------ ----- ----------------------------------- 2025-06-05T23:55:34.7907402Z aiohappyeyeballs 2.6.1 2025-06-05T23:55:34.7908033Z aiohttp 3.12.9 2025-06-05T23:55:34.7908516Z aiosignal 1.3.2 2025-06-05T23:55:34.7908947Z alabaster 0.7.16 2025-06-05T23:55:34.7909365Z antlr4-python3-runtime 4.9.3 2025-06-05T23:55:34.7909810Z async-timeout 5.0.1 2025-06-05T23:55:34.7910548Z attrs 25.3.0 2025-06-05T23:55:34.7910982Z babel 2.17.0 2025-06-05T23:55:34.7911421Z beautifulsoup4 4.13.4 2025-06-05T23:55:34.7911956Z blobfile 3.0.0 2025-06-05T23:55:34.7912416Z breathe 4.34.0 2025-06-05T23:55:34.7912823Z bs4 0.0.2 2025-06-05T23:55:34.7913264Z cattrs 25.1.1 2025-06-05T23:55:34.7913729Z certifi 2025.4.26 2025-06-05T23:55:34.7914181Z charset-normalizer 3.4.2 2025-06-05T23:55:34.7914587Z cmake 3.31.6 2025-06-05T23:55:34.7915107Z contourpy 1.3.2 2025-06-05T23:55:34.7915511Z coremltools 8.3.0 2025-06-05T23:55:34.7915923Z coverage 7.8.2 2025-06-05T23:55:34.7916313Z cycler 0.12.1 2025-06-05T23:55:34.7916772Z datasets 3.6.0 2025-06-05T23:55:34.7917266Z dill 0.3.8 2025-06-05T23:55:34.7917785Z docutils 0.16 2025-06-05T23:55:34.7918366Z exceptiongroup 1.3.0 2025-06-05T23:55:34.7918862Z execnet 2.1.1 2025-06-05T23:55:34.7919283Z executorch 0.7.0a0+bd57234 2025-06-05T23:55:34.7919783Z exhale 0.2.3 2025-06-05T23:55:34.7920244Z expecttest 0.1.6 2025-06-05T23:55:34.7920655Z filelock 3.18.0 2025-06-05T23:55:34.7921056Z flatbuffers 25.2.10 2025-06-05T23:55:34.7921518Z fonttools 4.58.1 2025-06-05T23:55:34.7922003Z frozenlist 1.6.2 2025-06-05T23:55:34.7922407Z fsspec 2025.3.0 2025-06-05T23:55:34.7922827Z hf_transfer 0.1.9 2025-06-05T23:55:34.7923224Z hf-xet 1.1.3 2025-06-05T23:55:34.7923705Z huggingface-hub 0.32.4 2025-06-05T23:55:34.7924176Z hypothesis 6.84.2 2025-06-05T23:55:34.7924663Z idna 3.10 2025-06-05T23:55:34.7925153Z imagesize 1.4.1 2025-06-05T23:55:34.7925565Z iniconfig 2.1.0 2025-06-05T23:55:34.7926035Z Jinja2 3.1.6 2025-06-05T23:55:34.7926561Z kagglehub 0.3.12 2025-06-05T23:55:34.7926986Z kiwisolver 1.4.8 2025-06-05T23:55:34.7927430Z lxml 5.4.0 2025-06-05T23:55:34.7927883Z markdown-it-py 2.2.0 2025-06-05T23:55:34.7928373Z MarkupSafe 3.0.2 2025-06-05T23:55:34.7928792Z matplotlib 3.10.3 2025-06-05T23:55:34.7929275Z mdit-py-plugins 0.3.5 2025-06-05T23:55:34.7929798Z mdurl 0.1.2 2025-06-05T23:55:34.7930286Z mpmath 1.3.0 2025-06-05T23:55:34.7930755Z multidict 6.4.4 2025-06-05T23:55:34.7931238Z multiprocess 0.70.16 2025-06-05T23:55:34.7931676Z myst-parser 0.18.1 2025-06-05T23:55:34.7932093Z networkx 3.4.2 2025-06-05T23:55:34.7932607Z numpy 2.2.6 2025-06-05T23:55:34.7933142Z nvidia-cublas-cu12 12.1.3.1 2025-06-05T23:55:34.7942535Z nvidia-cuda-cupti-cu12 12.1.105 2025-06-05T23:55:34.7943304Z nvidia-cuda-nvrtc-cu12 12.1.105 2025-06-05T23:55:34.7943775Z nvidia-cuda-runtime-cu12 12.1.105 2025-06-05T23:55:34.7944215Z nvidia-cudnn-cu12 9.1.0.70 2025-06-05T23:55:34.7944655Z nvidia-cufft-cu12 11.0.2.54 2025-06-05T23:55:34.7945243Z nvidia-curand-cu12 10.3.2.106 2025-06-05T23:55:34.7945701Z nvidia-cusolver-cu12 11.4.5.107 2025-06-05T23:55:34.7946152Z nvidia-cusparse-cu12 12.1.0.106 2025-06-05T23:55:34.7946604Z nvidia-nccl-cu12 2.20.5 2025-06-05T23:55:34.7947036Z nvidia-nvjitlink-cu12 12.9.41 2025-06-05T23:55:34.7947490Z nvidia-nvtx-cu12 12.1.105 2025-06-05T23:55:34.7947910Z omegaconf 2.3.0 2025-06-05T23:55:34.7948410Z packaging 25.0 2025-06-05T23:55:34.7948817Z pandas 2.2.3 2025-06-05T23:55:34.7949243Z parameterized 0.9.0 2025-06-05T23:55:34.7949652Z pillow 11.2.1 2025-06-05T23:55:34.7950069Z pip 25.1 2025-06-05T23:55:34.7950461Z pluggy 1.6.0 2025-06-05T23:55:34.7950858Z propcache 0.3.1 2025-06-05T23:55:34.7951270Z protobuf 6.31.1 2025-06-05T23:55:34.7951680Z psutil 7.0.0 2025-06-05T23:55:34.7952094Z pyaml 25.5.0 2025-06-05T23:55:34.7952491Z pyarrow 20.0.0 2025-06-05T23:55:34.7952917Z pycryptodomex 3.23.0 2025-06-05T23:55:34.7953325Z Pygments 2.19.1 2025-06-05T23:55:34.7953742Z pyparsing 3.2.3 2025-06-05T23:55:34.7954140Z pytest 8.4.0 2025-06-05T23:55:34.7954554Z pytest-cov 4.1.0 2025-06-05T23:55:34.7954978Z pytest-rerunfailures 15.1 2025-06-05T23:55:34.7955409Z pytest-xdist 3.7.0 2025-06-05T23:55:34.7955836Z python-dateutil 2.9.0.post0 2025-06-05T23:55:34.7956460Z pytorch_sphinx_theme 0.0.24 /opt/conda/src/pytorch-sphinx-theme 2025-06-05T23:55:34.7957074Z pytorch_tokenizers 0.1.0 2025-06-05T23:55:34.7957499Z pytz 2025.2 2025-06-05T23:55:34.7957895Z PyYAML 6.0.1 2025-06-05T23:55:34.7958312Z regex 2024.11.6 2025-06-05T23:55:34.7958726Z requests 2.32.3 2025-06-05T23:55:34.7959131Z ruamel.yaml 0.17.32 2025-06-05T23:55:34.7959559Z ruamel.yaml.clib 0.2.12 2025-06-05T23:55:34.7959964Z safetensors 0.5.3 2025-06-05T23:55:34.7960384Z sentencepiece 0.2.0 2025-06-05T23:55:34.7960790Z setuptools 78.1.1 2025-06-05T23:55:34.7961203Z six 1.17.0 2025-06-05T23:55:34.7961603Z snowballstemmer 3.0.1 2025-06-05T23:55:34.7962036Z sortedcontainers 2.4.0 2025-06-05T23:55:34.7962446Z soupsieve 2.7 2025-06-05T23:55:34.7962852Z Sphinx 5.3.0 2025-06-05T23:55:34.7963257Z sphinx-copybutton 0.5.0 2025-06-05T23:55:34.7963692Z sphinx_design 0.4.1 2025-06-05T23:55:34.7964101Z sphinx-gallery 0.14.0 2025-06-05T23:55:34.7964529Z sphinx_reredirects 0.1.4 2025-06-05T23:55:34.7964960Z sphinxcontrib-applehelp 2.0.0 2025-06-05T23:55:34.7965398Z sphinxcontrib-devhelp 2.0.0 2025-06-05T23:55:34.7965850Z sphinxcontrib-htmlhelp 2.1.0 2025-06-05T23:55:34.7966281Z sphinxcontrib-jsmath 1.0.1 2025-06-05T23:55:34.7966724Z sphinxcontrib-qthelp 2.0.0 2025-06-05T23:55:34.7967164Z sphinxcontrib-serializinghtml 2.0.0 2025-06-05T23:55:34.7967604Z sympy 1.14.0 2025-06-05T23:55:34.7968009Z tabulate 0.9.0 2025-06-05T23:55:34.7968422Z tiktoken 0.9.0 2025-06-05T23:55:34.7968809Z timm 1.0.7 2025-06-05T23:55:34.7969220Z tokenizers 0.21.1 2025-06-05T23:55:34.7969622Z tomli 2.0.1 2025-06-05T23:55:34.7970046Z torch 2.8.0a0+git5616fa4 2025-06-05T23:55:34.7970544Z torchao 0.12.0+gitbc68b11 2025-06-05T23:55:34.7971020Z torchaudio 2.6.0a0+1a8f621 2025-06-05T23:55:34.7972061Z torchdata 0.11.0 2025-06-05T23:55:34.7972463Z torchsr 1.0.4 2025-06-05T23:55:34.7972876Z torchtune 0.6.1 2025-06-05T23:55:34.7973302Z torchvision 0.22.0a0+966da7e 2025-06-05T23:55:34.7973755Z tqdm 4.67.1 2025-06-05T23:55:34.7974153Z transformers 4.47.1 2025-06-05T23:55:34.7974715Z triton 3.0.0 1 2025-06-05T23:55:34.7975380Z typing_extensions 4.14.0 2025-06-05T23:55:34.7975809Z tzdata 2025.2 2025-06-05T23:55:34.7976267Z urllib3 2.4.0 2025-06-05T23:55:34.7976678Z wheel 0.45.1 2025-06-05T23:55:34.7977127Z xxhash 3.5.0 2025-06-05T23:55:34.7977584Z yarl 1.20.0 2025-06-05T23:55:34.7977990Z zstd 1.5.5.1 2025-06-05T23:55:34.7978410Z + build_executorch_runner cmake Release 2025-06-05T23:55:34.7978862Z + [[ cmake == \b\u\c\k\2 ]] 2025-06-05T23:55:34.7979233Z + [[ cmake == \c\m\a\k\e ]] 2025-06-05T23:55:34.7979635Z + build_executorch_runner_cmake Release 2025-06-05T23:55:34.7980071Z + CMAKE_OUTPUT_DIR=cmake-out 2025-06-05T23:55:34.7980488Z + clean_executorch_install_folders 2025-06-05T23:55:34.7980914Z + ./install_executorch.sh --clean 2025-06-05T23:55:34.7981346Z Cleaning build artifacts... 2025-06-05T23:55:34.7981725Z Cleaning pip-out/... 2025-06-05T23:55:34.7982104Z Done cleaning build artifacts. 2025-06-05T23:55:34.7982486Z + mkdir cmake-out 2025-06-05T23:55:34.7982820Z + pushd cmake-out 2025-06-05T23:55:34.7983209Z /pytorch/executorch/cmake-out /pytorch/executorch 2025-06-05T23:55:34.7983696Z + [[ Release == \D\e\b\u\g ]] 2025-06-05T23:55:34.7984075Z + CXXFLAGS= 2025-06-05T23:55:34.7984365Z + CXXFLAGS= 2025-06-05T23:55:34.7984839Z + retry cmake -DPYTHON_EXECUTABLE=python -DCMAKE_BUILD_TYPE=Release .. 2025-06-05T23:55:34.7985543Z + cmake -DPYTHON_EXECUTABLE=python -DCMAKE_BUILD_TYPE=Release .. 2025-06-05T23:55:34.7986166Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:55:34.7986688Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:55:34.7987196Z -- Detecting C compiler ABI info 2025-06-05T23:55:34.7987623Z -- Detecting C compiler ABI info - done 2025-06-05T23:55:34.7988176Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:55:34.7988705Z -- Detecting C compile features 2025-06-05T23:55:34.7989137Z -- Detecting C compile features - done 2025-06-05T23:55:34.7989580Z -- Detecting CXX compiler ABI info 2025-06-05T23:55:34.7990032Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:55:34.7990581Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:55:34.7991138Z -- Detecting CXX compile features 2025-06-05T23:55:34.7991573Z -- Detecting CXX compile features - done 2025-06-05T23:55:34.7992035Z -- --- Configured Options --- 2025-06-05T23:55:34.7992284Z 2025-06-05T23:55:34.7992466Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:55:34.7992966Z -- CMAKE_SYSTEM_PROCESSOR : x86_64 2025-06-05T23:55:34.7993490Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:55:34.7993994Z -- PYTHON_EXECUTABLE : python 2025-06-05T23:55:34.7994512Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-06-05T23:55:34.7995019Z -- CMAKE_TOOLCHAIN_FILE x (unset) 2025-06-05T23:55:34.7995532Z -- BUCK2 x (unset) 2025-06-05T23:55:34.7996016Z -- EXECUTORCH_ENABLE_LOGGING : OFF 2025-06-05T23:55:34.7996524Z -- EXECUTORCH_BUILD_COREML : OFF 2025-06-05T23:55:34.7997028Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:55:39.4627589Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-06-05T23:55:39.4629058Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-06-05T23:55:39.4630409Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:55:39.4631633Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:55:39.4632533Z -- EXECUTORCH_ENABLE_EVENT_TRACER : OFF 2025-06-05T23:55:39.4633410Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-06-05T23:55:39.4634331Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-06-05T23:55:39.4635242Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : OFF 2025-06-05T23:55:39.4636146Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : OFF 2025-06-05T23:55:39.4637355Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : OFF 2025-06-05T23:55:39.4638280Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : OFF 2025-06-05T23:55:39.4639176Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : OFF 2025-06-05T23:55:39.4640021Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:55:39.4640896Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : OFF 2025-06-05T23:55:39.4641822Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : OFF 2025-06-05T23:55:39.4642728Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : OFF 2025-06-05T23:55:39.4643698Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : OFF 2025-06-05T23:55:39.4644622Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:55:39.4645536Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:55:39.4646453Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:55:39.4647358Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:55:39.4648262Z -- EXECUTORCH_BUILD_PYBIND : OFF 2025-06-05T23:55:39.4649178Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:55:39.4650080Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : OFF 2025-06-05T23:55:39.4650997Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : OFF 2025-06-05T23:55:39.4651904Z -- EXECUTORCH_BUILD_DEVTOOLS : OFF 2025-06-05T23:55:39.4652834Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:55:39.4653741Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:55:39.4654779Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:55:39.4655664Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:55:39.4656577Z -- EXECUTORCH_BUILD_XNNPACK : OFF 2025-06-05T23:55:39.4657472Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:55:39.4658396Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:55:39.4659282Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:55:39.4660171Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:55:39.4661057Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:55:39.4661950Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:55:39.4662854Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:55:39.4663778Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-06-05T23:55:39.4664696Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-06-05T23:55:39.4665592Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : ON 2025-06-05T23:55:39.4666537Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:55:39.4667479Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:55:39.4668437Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:55:39.4669291Z -- -------------------------- 2025-06-05T23:55:39.4670372Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:55:39.4672575Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:55:39.4674288Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:39.4675363Z CMake. 2025-06-05T23:55:39.4675665Z 2025-06-05T23:55:39.4676247Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:39.4677663Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:39.4678915Z to work with policies introduced by or earlier. 2025-06-05T23:55:39.4679518Z 2025-06-05T23:55:39.4679767Z  2025-06-05T23:55:39.4680438Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:55:39.4681700Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:55:39.4682632Z -- Setting Clang compiler options 2025-06-05T23:55:39.4684379Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:55:39.4687221Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:55:39.4689221Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:39.4690318Z CMake. 2025-06-05T23:55:39.4690627Z 2025-06-05T23:55:39.4691178Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:39.4692591Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:39.4693820Z to work with policies introduced by or earlier. 2025-06-05T23:55:39.4694478Z 2025-06-05T23:55:39.4694903Z  2025-06-05T23:55:39.4696439Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:55:39.4698380Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:39.4699468Z CMake. 2025-06-05T23:55:39.4699763Z 2025-06-05T23:55:39.4700341Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:39.4701725Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:39.4702983Z to work with policies introduced by or earlier. 2025-06-05T23:55:39.4703965Z 2025-06-05T23:55:39.4704256Z  2025-06-05T23:55:39.4704821Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-05T23:55:39.4705757Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-06-05T23:55:39.4706641Z -- Found Threads: TRUE 2025-06-05T23:55:39.4708347Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:55:39.4710283Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:39.4711351Z CMake. 2025-06-05T23:55:39.4711638Z 2025-06-05T23:55:39.4712207Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:39.4713585Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:39.4714793Z to work with policies introduced by or earlier. 2025-06-05T23:55:39.4715427Z 2025-06-05T23:55:39.4715725Z  2025-06-05T23:55:39.4716244Z -- Resolved buck2 as buck2. 2025-06-05T23:55:39.4716907Z -- Killing buck2 daemon 2025-06-05T23:55:39.4717522Z 'buck2 killall' 2025-06-05T23:55:39.4718131Z -- executorch: Generating source lists 2025-06-05T23:55:39.4719456Z -- executorch: Generating source file list /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:55:39.4721249Z -- executorch: Using sources file /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:55:39.4722514Z -- Generating operator lib: 2025-06-05T23:55:39.4723237Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:55:39.4724192Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:55:39.4725203Z -- ROOT_OPS: 2025-06-05T23:55:39.4725763Z -- INCLUDE_ALL_OPS: 2025-06-05T23:55:39.4728996Z 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:55:39.4732001Z -- Generating kernel bindings: 2025-06-05T23:55:39.4732744Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:55:39.4733786Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:55:39.4734895Z -- CUSTOM_OPS_YAML: 2025-06-05T23:55:39.4735564Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:55:39.4739927Z 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:55:39.4744032Z -- Generating operator lib: 2025-06-05T23:55:39.4744745Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:55:39.4745468Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:55:39.4746217Z -- DEPS: executorch_core 2025-06-05T23:55:39.4747826Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:55:39.4749525Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:39.4750626Z CMake. 2025-06-05T23:55:39.4750912Z 2025-06-05T23:55:39.4751485Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:39.4752928Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:39.4754139Z to work with policies introduced by or earlier. 2025-06-05T23:55:39.4754760Z 2025-06-05T23:55:39.4755044Z  2025-06-05T23:55:39.4755551Z -- Looking for C++ include unistd.h 2025-06-05T23:55:39.4756313Z -- Looking for C++ include unistd.h - found 2025-06-05T23:55:39.4757094Z -- Looking for C++ include stdint.h 2025-06-05T23:55:39.4757857Z -- Looking for C++ include stdint.h - found 2025-06-05T23:55:39.4758676Z -- Looking for C++ include inttypes.h 2025-06-05T23:55:39.4759485Z -- Looking for C++ include inttypes.h - found 2025-06-05T23:55:39.4760336Z -- Looking for C++ include sys/types.h 2025-06-05T23:55:39.4761146Z -- Looking for C++ include sys/types.h - found 2025-06-05T23:55:39.4762002Z -- Looking for C++ include sys/stat.h 2025-06-05T23:55:39.4762813Z -- Looking for C++ include sys/stat.h - found 2025-06-05T23:55:39.4763669Z -- Looking for C++ include fnmatch.h 2025-06-05T23:55:39.4764486Z -- Looking for C++ include fnmatch.h - found 2025-06-05T23:55:39.4765321Z -- Looking for C++ include stddef.h 2025-06-05T23:55:39.4766072Z -- Looking for C++ include stddef.h - found 2025-06-05T23:55:39.4766877Z -- Check size of uint32_t 2025-06-05T23:55:39.4767556Z -- Check size of uint32_t - done 2025-06-05T23:55:39.4768287Z -- Looking for strtoll 2025-06-05T23:55:39.4768929Z -- Looking for strtoll - found 2025-06-05T23:55:39.4769642Z -- Configuring done (5.1s) 2025-06-05T23:55:39.4770330Z -- Generating done (0.1s) 2025-06-05T23:55:39.4771241Z -- Build files have been written to: /pytorch/executorch/cmake-out 2025-06-05T23:55:39.4772224Z + popd 2025-06-05T23:55:39.4772748Z /pytorch/executorch 2025-06-05T23:55:39.4773327Z ++ uname 2025-06-05T23:55:39.4773844Z + '[' Linux == Darwin ']' 2025-06-05T23:55:39.4774471Z ++ nproc 2025-06-05T23:55:39.4775071Z + CMAKE_JOBS=7 2025-06-05T23:55:39.4775638Z + cmake --build cmake-out -j 7 2025-06-05T23:55:39.4776759Z [ 0%] Creating directories for 'flatcc_external_project' 2025-06-05T23:55:39.4778729Z [ 0%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags.cc.o 2025-06-05T23:55:39.4780658Z [ 1%] Creating directories for 'flatbuffers_external_project' 2025-06-05T23:55:39.4782786Z [ 1%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_reporting.cc.o 2025-06-05T23:55:39.4785269Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-06-05T23:55:39.4787809Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-06-05T23:55:39.4789740Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-06-05T23:55:39.4791450Z [ 2%] No download step for 'flatcc_external_project' 2025-06-05T23:55:39.4792619Z [ 2%] No download step for 'flatbuffers_external_project' 2025-06-05T23:55:39.4793747Z [ 3%] No update step for 'flatcc_external_project' 2025-06-05T23:55:39.4794882Z [ 3%] No update step for 'flatbuffers_external_project' 2025-06-05T23:55:39.4796190Z [ 3%] No patch step for 'flatcc_external_project' 2025-06-05T23:55:39.4797392Z [ 3%] No patch step for 'flatbuffers_external_project' 2025-06-05T23:55:40.2950057Z [ 3%] Performing configure step for 'flatcc_external_project' 2025-06-05T23:55:40.2951761Z [ 4%] Performing configure step for 'flatbuffers_external_project' 2025-06-05T23:55:40.2952920Z CMake Warning: 2025-06-05T23:55:40.2953992Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:55:40.2954692Z 2025-06-05T23:55:40.2954977Z  2025-06-05T23:55:40.2955591Z fatal: No names found, cannot describe anything. 2025-06-05T23:55:40.2956480Z CMake Warning at CMake/Version.cmake:32 (message): 2025-06-05T23:55:40.2957306Z git describe failed with exit code: 128 2025-06-05T23:55:40.2957815Z 2025-06-05T23:55:40.2958209Z Make sure you cloned with tags or run 'git fetch --tags'. 2025-06-05T23:55:40.2959169Z Call Stack (most recent call first): 2025-06-05T23:55:40.2959904Z CMakeLists.txt:5 (include) 2025-06-05T23:55:40.2960321Z 2025-06-05T23:55:40.2960602Z  2025-06-05T23:55:40.2961148Z -- Proceeding with version: 24.3.25.0 2025-06-05T23:55:40.2961977Z CMake Warning: 2025-06-05T23:55:40.2962750Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:55:40.2963451Z 2025-06-05T23:55:40.2963711Z  2025-06-05T23:55:40.2964729Z CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:55:40.2966016Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:40.2966869Z CMake. 2025-06-05T23:55:40.2967031Z 2025-06-05T23:55:40.2967350Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:40.2968124Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:40.2968781Z to work with policies introduced by or earlier. 2025-06-05T23:55:40.2969153Z 2025-06-05T23:55:40.2969337Z  2025-06-05T23:55:40.2970090Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-06-05T23:55:40.2971625Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-06-05T23:55:40.2973363Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-06-05T23:55:40.2975284Z [ 4%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-06-05T23:55:40.2976602Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-06-05T23:55:40.2977426Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:55:40.2978433Z [ 6%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_completions.cc.o 2025-06-05T23:55:40.2979308Z -- Detecting C compiler ABI info 2025-06-05T23:55:40.2980140Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-06-05T23:55:40.2981401Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-06-05T23:55:40.2983245Z [ 8%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-06-05T23:55:40.2984769Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o 2025-06-05T23:55:40.2985599Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:55:40.2986105Z -- Detecting CXX compiler ABI info 2025-06-05T23:55:40.2987332Z [ 8%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-06-05T23:55:40.2989424Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/init.c.o 2025-06-05T23:55:40.2991039Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o 2025-06-05T23:55:40.2992369Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/info.c.o 2025-06-05T23:55:40.2993234Z -- Detecting C compiler ABI info - done 2025-06-05T23:55:40.2993869Z [ 9%] Linking CXX static library libgflags_nothreads.a 2025-06-05T23:55:40.2994891Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:55:40.2995664Z -- Detecting C compile features 2025-06-05T23:55:40.2996164Z -- Detecting C compile features - done 2025-06-05T23:55:40.2996959Z [ 9%] Built target gflags_nothreads_static 2025-06-05T23:55:40.2998148Z [ 9%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o 2025-06-05T23:55:40.2999494Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o 2025-06-05T23:55:40.3000769Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o 2025-06-05T23:55:40.3001782Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:55:40.3002880Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:55:40.3004016Z -- Setting Clang compiler options 2025-06-05T23:55:40.3005569Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:55:40.3007096Z -- Configuring done (0.3s) 2025-06-05T23:55:40.3008459Z [ 10%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o 2025-06-05T23:55:40.3010630Z [ 11%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/vendor.c.o 2025-06-05T23:55:40.3012022Z -- Generating done (0.0s) 2025-06-05T23:55:40.3013403Z -- Build files have been written to: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/src/flatcc_external_project-build 2025-06-05T23:55:40.3015226Z [ 12%] Performing build step for 'flatcc_external_project' 2025-06-05T23:55:40.3016752Z [ 12%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o 2025-06-05T23:55:40.3018308Z [ 3%] Building C object src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:55:40.3019741Z [ 6%] Building C object src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:55:40.3020841Z [ 13%] Linking C static library libpthreadpool.a 2025-06-05T23:55:40.3021618Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:55:40.3023125Z [ 13%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/uarch.c.o 2025-06-05T23:55:40.3024450Z [ 13%] Built target pthreadpool 2025-06-05T23:55:40.3025836Z [ 13%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/name.c.o 2025-06-05T23:55:40.3028327Z [ 13%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/topology.c.o 2025-06-05T23:55:40.3030089Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:55:40.3030993Z -- Detecting CXX compile features 2025-06-05T23:55:40.3031711Z -- Detecting CXX compile features - done 2025-06-05T23:55:40.3033243Z [ 13%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o 2025-06-05T23:55:40.3034489Z -- Looking for strtof_l 2025-06-05T23:55:40.3035954Z [ 14%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o 2025-06-05T23:55:40.3037846Z [ 9%] Building C object src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:55:40.3039725Z [ 15%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/isa.c.o 2025-06-05T23:55:40.3042541Z [ 15%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:55:40.3045350Z [ 15%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/init.c.o 2025-06-05T23:55:40.3047975Z [ 12%] Building C object src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:55:40.3050096Z [ 15%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/str_set.c.o 2025-06-05T23:55:40.3052632Z [ 15%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:55:40.3055163Z [ 18%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/ptr_set.c.o 2025-06-05T23:55:40.3057173Z [ 21%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/symbol_table.c.o 2025-06-05T23:55:40.3058978Z [ 24%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:55:40.3060778Z [ 27%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/scope_table.c.o 2025-06-05T23:55:40.3063002Z [ 15%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o 2025-06-05T23:55:40.3065594Z [ 15%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:55:40.3067317Z -- Looking for strtof_l - found 2025-06-05T23:55:40.3068043Z -- Looking for strtoull_l 2025-06-05T23:55:40.3069685Z [ 16%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:55:40.3072224Z [ 16%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-06-05T23:55:40.3074353Z [ 30%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:55:40.3076245Z [ 33%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/name_table.c.o 2025-06-05T23:55:40.3078750Z [ 17%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:55:40.3081970Z [ 17%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/init.c.o 2025-06-05T23:55:40.3084678Z [ 17%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-06-05T23:55:40.3087174Z [ 18%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-06-05T23:55:40.3089401Z [ 36%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:55:40.3091452Z [ 39%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/schema_table.c.o 2025-06-05T23:55:40.3093746Z [ 18%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-06-05T23:55:40.3095426Z [ 39%] Built target flatccrt 2025-06-05T23:55:41.0196800Z [ 18%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:55:41.0199233Z [ 42%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/value_set.c.o 2025-06-05T23:55:41.0201624Z [ 19%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/smallfile.c.o 2025-06-05T23:55:41.0203785Z [ 45%] Building C object src/compiler/CMakeFiles/flatcc.dir/fileio.c.o 2025-06-05T23:55:41.0204895Z -- Looking for strtoull_l - found 2025-06-05T23:55:41.0205574Z -- Looking for realpath 2025-06-05T23:55:41.0206710Z [ 48%] Building C object src/compiler/CMakeFiles/flatcc.dir/parser.c.o 2025-06-05T23:55:41.0208354Z [ 19%] Linking C static library libcpuinfo.a 2025-06-05T23:55:41.0209708Z [ 51%] Building C object src/compiler/CMakeFiles/flatcc.dir/semantics.c.o 2025-06-05T23:55:41.0211895Z [ 19%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/multiline.c.o 2025-06-05T23:55:41.0213446Z [ 19%] Built target cpuinfo 2025-06-05T23:55:41.0215439Z [ 19%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/cpulist.c.o 2025-06-05T23:55:41.0217590Z [ 54%] Building C object src/compiler/CMakeFiles/flatcc.dir/coerce.c.o 2025-06-05T23:55:41.0219613Z [ 20%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/processors.c.o 2025-06-05T23:55:41.0221456Z [ 57%] Building C object src/compiler/CMakeFiles/flatcc.dir/flatcc.c.o 2025-06-05T23:55:41.0222769Z [ 60%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c.c.o 2025-06-05T23:55:41.0224215Z [ 63%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_reader.c.o 2025-06-05T23:55:41.0225642Z [ 66%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sort.c.o 2025-06-05T23:55:41.0226815Z [ 20%] Linking C static library libcpuinfo_internals.a 2025-06-05T23:55:41.0228175Z [ 69%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_builder.c.o 2025-06-05T23:55:41.0229878Z [ 72%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_verifier.c.o 2025-06-05T23:55:41.0231015Z [ 20%] Built target cpuinfo_internals 2025-06-05T23:55:41.0232297Z [ 75%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sorter.c.o 2025-06-05T23:55:41.0234035Z [ 78%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_parser.c.o 2025-06-05T23:55:41.0235855Z [ 81%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_printer.c.o 2025-06-05T23:55:41.0237020Z -- Looking for realpath - found 2025-06-05T23:55:41.0237673Z -- CMAKE_CXX_FLAGS: "-DFLATBUFFERS_MAX_ALIGNMENT=1024" 2025-06-05T23:55:41.0238412Z -- Configuring done (1.1s) 2025-06-05T23:55:41.0239507Z [ 84%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/builder.c.o 2025-06-05T23:55:41.0240520Z -- Generating done (0.0s) 2025-06-05T23:55:41.0241608Z [ 87%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/emitter.c.o 2025-06-05T23:55:41.0243626Z -- Build files have been written to: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/src/flatbuffers_external_project-build 2025-06-05T23:55:41.0245320Z [ 20%] Performing build step for 'flatbuffers_external_project' 2025-06-05T23:55:41.0246693Z [ 90%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/refmap.c.o 2025-06-05T23:55:41.0248276Z [ 2%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o 2025-06-05T23:55:41.0249760Z [ 5%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o 2025-06-05T23:55:41.0250830Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o 2025-06-05T23:55:41.0251638Z [ 10%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o 2025-06-05T23:55:41.0252473Z [ 13%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_binary.cpp.o 2025-06-05T23:55:41.0253621Z [ 15%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o 2025-06-05T23:55:41.0254989Z [ 93%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatcc.a 2025-06-05T23:55:41.0255692Z [ 93%] Built target flatcc 2025-06-05T23:55:41.0256355Z [ 96%] Building C object src/cli/CMakeFiles/flatcc_cli.dir/flatcc_cli.c.o 2025-06-05T23:55:41.0257506Z [ 18%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_csharp.cpp.o 2025-06-05T23:55:41.0258706Z [ 21%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o 2025-06-05T23:55:41.0259769Z [100%] Linking C executable /pytorch/executorch/third-party/flatcc/bin/flatcc 2025-06-05T23:55:41.0260712Z [ 23%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin.cpp.o 2025-06-05T23:55:41.0261919Z [ 26%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin_kmp.cpp.o 2025-06-05T23:55:41.0263163Z [ 28%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o 2025-06-05T23:55:41.0263756Z [100%] Built target flatcc_cli 2025-06-05T23:55:41.0264482Z [ 21%] Performing install step for 'flatcc_external_project' 2025-06-05T23:55:41.0265307Z [ 31%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_java.cpp.o 2025-06-05T23:55:41.0265921Z [ 21%] Built target flatccrt 2025-06-05T23:55:41.0266306Z [ 93%] Built target flatcc 2025-06-05T23:55:41.0266693Z [100%] Built target flatcc_cli 2025-06-05T23:55:41.0267142Z Install the project... 2025-06-05T23:55:41.0267557Z -- Install configuration: "" 2025-06-05T23:55:41.0268263Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc 2025-06-05T23:55:41.0269502Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc.h 2025-06-05T23:55:41.0271479Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_accessors.h 2025-06-05T23:55:41.0273652Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_alloc.h 2025-06-05T23:55:41.0275795Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_assert.h 2025-06-05T23:55:41.0277044Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_builder.h 2025-06-05T23:55:41.0278265Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_emitter.h 2025-06-05T23:55:41.0279492Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_endian.h 2025-06-05T23:55:41.0280728Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_epilogue.h 2025-06-05T23:55:41.0282201Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_flatbuffers.h 2025-06-05T23:55:41.0283544Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_identifier.h 2025-06-05T23:55:41.0284777Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_iov.h 2025-06-05T23:55:41.0285991Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_json_parser.h 2025-06-05T23:55:41.0287269Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_json_printer.h 2025-06-05T23:55:41.0288525Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_portable.h 2025-06-05T23:55:41.0289783Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_prologue.h 2025-06-05T23:55:41.0291017Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_refmap.h 2025-06-05T23:55:41.0292242Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_rtconfig.h 2025-06-05T23:55:41.0293481Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_types.h 2025-06-05T23:55:41.0295348Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_unaligned.h 2025-06-05T23:55:41.0297638Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_verifier.h 2025-06-05T23:55:41.0299807Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_version.h 2025-06-05T23:55:41.0302222Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable 2025-06-05T23:55:41.0304748Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/LICENSE 2025-06-05T23:55:41.0306978Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/README.md 2025-06-05T23:55:41.0308989Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_math.h 2025-06-05T23:55:41.0311532Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_parse.h 2025-06-05T23:55:41.0313981Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_print.h 2025-06-05T23:55:41.0316359Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include 2025-06-05T23:55:41.0318672Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/README 2025-06-05T23:55:41.0321171Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/linux 2025-06-05T23:55:41.0323792Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/linux/endian.h 2025-06-05T23:55:41.0326389Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std 2025-06-05T23:55:41.0329021Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/inttypes.h 2025-06-05T23:55:41.8787448Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdalign.h 2025-06-05T23:55:41.8790079Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdbool.h 2025-06-05T23:55:41.8792626Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdint.h 2025-06-05T23:55:41.8795234Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/paligned_alloc.h 2025-06-05T23:55:41.8797676Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pattributes.h 2025-06-05T23:55:41.8800075Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pbase64.h 2025-06-05T23:55:41.8802242Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pcrt.h 2025-06-05T23:55:41.8804743Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic.h 2025-06-05T23:55:41.8807211Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_pop.h 2025-06-05T23:55:41.8809768Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_push.h 2025-06-05T23:55:41.8812237Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pendian.h 2025-06-05T23:55:41.8814736Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pendian_detect.h 2025-06-05T23:55:41.8817195Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pinline.h 2025-06-05T23:55:41.8819697Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pinttypes.h 2025-06-05T23:55:41.8822200Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pmemaccess.h 2025-06-05T23:55:41.8824488Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/portable.h 2025-06-05T23:55:41.8826972Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/portable_basic.h 2025-06-05T23:55:41.8829400Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pparsefp.h 2025-06-05T23:55:41.8832001Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pparseint.h 2025-06-05T23:55:41.8834430Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pprintfp.h 2025-06-05T23:55:41.8836897Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pprintint.h 2025-06-05T23:55:41.8839449Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/prestrict.h 2025-06-05T23:55:41.8842060Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert.h 2025-06-05T23:55:41.8844695Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert_scope.h 2025-06-05T23:55:41.8847047Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdalign.h 2025-06-05T23:55:41.8849321Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdbool.h 2025-06-05T23:55:41.8851590Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdint.h 2025-06-05T23:55:41.8853902Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/punaligned.h 2025-06-05T23:55:41.8856527Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pversion.h 2025-06-05T23:55:41.8858803Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pwarnings.h 2025-06-05T23:55:41.8860991Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection 2025-06-05T23:55:41.8863207Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/README 2025-06-05T23:55:41.8865812Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_builder.h 2025-06-05T23:55:41.8868708Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_reader.h 2025-06-05T23:55:41.8871436Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_builder.h 2025-06-05T23:55:41.8874130Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_reader.h 2025-06-05T23:55:41.8876861Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_verifier.h 2025-06-05T23:55:41.8879279Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support 2025-06-05T23:55:41.8881569Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/README 2025-06-05T23:55:41.8883922Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/cdump.h 2025-06-05T23:55:41.8886300Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/elapsed.h 2025-06-05T23:55:41.8888692Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/hexdump.h 2025-06-05T23:55:41.8891129Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/readfile.h 2025-06-05T23:55:41.8893502Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/lib/libflatccrt.a 2025-06-05T23:55:41.8895620Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/lib/libflatcc.a 2025-06-05T23:55:41.8897588Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/bin/flatcc 2025-06-05T23:55:41.8899611Z [ 34%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_ts.cpp.o 2025-06-05T23:55:41.8901162Z [ 21%] Completed 'flatcc_external_project' 2025-06-05T23:55:41.8902540Z [ 36%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o 2025-06-05T23:55:41.8921977Z [ 21%] Built target flatcc_external_project 2025-06-05T23:55:41.8923687Z [ 39%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o 2025-06-05T23:55:41.8925400Z [ 42%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o 2025-06-05T23:55:41.8927055Z [ 44%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o 2025-06-05T23:55:41.8928727Z [ 47%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o 2025-06-05T23:55:41.8930356Z [ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o 2025-06-05T23:55:41.8932055Z [ 52%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o 2025-06-05T23:55:41.8933773Z [ 55%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_swift.cpp.o 2025-06-05T23:55:41.8935787Z [ 57%] Building CXX object CMakeFiles/flatc.dir/src/file_name_saving_file_manager.cpp.o 2025-06-05T23:55:41.8937647Z [ 60%] Building CXX object CMakeFiles/flatc.dir/src/file_binary_writer.cpp.o 2025-06-05T23:55:41.8939339Z [ 63%] Building CXX object CMakeFiles/flatc.dir/src/file_writer.cpp.o 2025-06-05T23:55:41.8940869Z [ 65%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o 2025-06-05T23:55:41.8942401Z [ 68%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o 2025-06-05T23:55:41.8944064Z [ 71%] Building CXX object CMakeFiles/flatc.dir/src/binary_annotator.cpp.o 2025-06-05T23:55:41.8945925Z [ 73%] Building CXX object CMakeFiles/flatc.dir/src/annotated_binary_text_gen.cpp.o 2025-06-05T23:55:41.8947667Z [ 76%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_lua.cpp.o 2025-06-05T23:55:41.8949293Z [ 78%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_nim.cpp.o 2025-06-05T23:55:41.8950981Z [ 81%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o 2025-06-05T23:55:41.8952820Z [ 84%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o 2025-06-05T23:55:41.8954710Z [ 86%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o 2025-06-05T23:55:41.8956681Z [ 89%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o 2025-06-05T23:55:41.8958653Z [ 92%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/python_generator.cc.o 2025-06-05T23:55:41.8960724Z [ 21%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:55:41.8962717Z [ 21%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:55:41.8964795Z [ 94%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/swift_generator.cc.o 2025-06-05T23:55:41.8966887Z [ 22%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:55:41.8969126Z [ 22%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:55:41.8971403Z [ 22%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:55:41.8973703Z [ 22%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:55:43.5734117Z [ 97%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/ts_generator.cc.o 2025-06-05T23:55:43.5736646Z [ 23%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:55:43.5738020Z [ 23%] Built target flatccrt 2025-06-05T23:55:43.5738886Z [100%] Linking CXX executable flatc 2025-06-05T23:55:43.5739689Z [100%] Built target flatc 2025-06-05T23:55:43.5740769Z [ 23%] Performing install step for 'flatbuffers_external_project' 2025-06-05T23:55:43.5742077Z [100%] Built target flatc 2025-06-05T23:55:43.5742839Z Install the project... 2025-06-05T23:55:43.5743494Z -- Install configuration: "" 2025-06-05T23:55:43.5744819Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers 2025-06-05T23:55:43.5746956Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/allocator.h 2025-06-05T23:55:43.5749459Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/array.h 2025-06-05T23:55:43.5751819Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/base.h 2025-06-05T23:55:43.5754230Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/buffer.h 2025-06-05T23:55:43.5756645Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/buffer_ref.h 2025-06-05T23:55:43.5759216Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/code_generator.h 2025-06-05T23:55:43.5761751Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/code_generators.h 2025-06-05T23:55:43.5764324Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/default_allocator.h 2025-06-05T23:55:43.5766960Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/detached_buffer.h 2025-06-05T23:55:43.5769530Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/file_manager.h 2025-06-05T23:55:43.5772088Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffer_builder.h 2025-06-05T23:55:43.5774769Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffers.h 2025-06-05T23:55:43.5777314Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatc.h 2025-06-05T23:55:43.5779886Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flex_flat_util.h 2025-06-05T23:55:43.5782439Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flexbuffers.h 2025-06-05T23:55:43.5784845Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/grpc.h 2025-06-05T23:55:43.5787224Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/hash.h 2025-06-05T23:55:43.5789619Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/idl.h 2025-06-05T23:55:43.5792187Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/minireflect.h 2025-06-05T23:55:43.5794777Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch 2025-06-05T23:55:43.5797280Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch/flatc_pch.h 2025-06-05T23:55:43.5799625Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch/pch.h 2025-06-05T23:55:43.5802050Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/reflection.h 2025-06-05T23:55:43.5804812Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/reflection_generated.h 2025-06-05T23:55:43.5807363Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/registry.h 2025-06-05T23:55:43.5810208Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/stl_emulation.h 2025-06-05T23:55:43.5812751Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/string.h 2025-06-05T23:55:43.5815273Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/struct.h 2025-06-05T23:55:43.5817504Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/table.h 2025-06-05T23:55:43.5819732Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/util.h 2025-06-05T23:55:43.5822030Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/vector.h 2025-06-05T23:55:43.5824346Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/vector_downward.h 2025-06-05T23:55:43.5826860Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/verifier.h 2025-06-05T23:55:43.5829303Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config.cmake 2025-06-05T23:55:43.5832068Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/BuildFlatBuffers.cmake 2025-06-05T23:55:43.5834799Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config-version.cmake 2025-06-05T23:55:43.5836305Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/bin/flatc 2025-06-05T23:55:43.5837557Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets.cmake 2025-06-05T23:55:43.5839041Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets-noconfig.cmake 2025-06-05T23:55:43.5840339Z [ 23%] Completed 'flatbuffers_external_project' 2025-06-05T23:55:43.5840894Z [ 23%] Built target flatbuffers_external_project 2025-06-05T23:55:43.5841495Z [ 23%] Generating common_schema headers 2025-06-05T23:55:43.5841974Z [ 23%] Built target common_schema 2025-06-05T23:55:43.5842507Z [ 24%] Generating program_schema headers 2025-06-05T23:55:43.5842985Z [ 24%] Built target program_schema 2025-06-05T23:55:43.5843788Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-06-05T23:55:43.5845064Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-06-05T23:55:43.5846273Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-06-05T23:55:43.5847469Z [ 26%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-06-05T23:55:43.5848788Z [ 26%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-06-05T23:55:43.5849953Z [ 26%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-06-05T23:55:43.5851002Z [ 26%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-06-05T23:55:43.5852208Z [ 27%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-06-05T23:55:43.5853917Z [ 27%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-06-05T23:55:43.5855988Z [ 27%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-06-05T23:55:43.5857857Z [ 28%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-06-05T23:55:43.5859447Z [ 28%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-06-05T23:55:43.5860804Z [ 28%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-06-05T23:55:43.5862018Z [ 29%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-06-05T23:55:43.5863145Z [ 29%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-06-05T23:55:43.5864182Z [ 29%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-06-05T23:55:43.5865256Z [ 30%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-06-05T23:55:43.5866342Z [ 30%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-06-05T23:55:43.5867427Z [ 30%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-06-05T23:55:43.5868481Z [ 30%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-06-05T23:55:43.5869598Z [ 31%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.o 2025-06-05T23:55:43.5870516Z [ 31%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:55:43.5871068Z [ 31%] Built target executorch_core 2025-06-05T23:55:43.5871869Z [ 31%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-06-05T23:55:43.5872937Z [ 32%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-06-05T23:55:43.5874030Z [ 33%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-06-05T23:55:45.9581259Z [ 33%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-06-05T23:55:45.9583947Z [ 33%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-06-05T23:55:45.9586521Z [ 33%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-06-05T23:55:45.9589214Z [ 33%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-06-05T23:55:45.9591894Z [ 33%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-06-05T23:55:45.9594576Z [ 34%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-06-05T23:55:45.9597316Z [ 34%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-06-05T23:55:45.9600011Z [ 34%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-06-05T23:55:45.9602752Z [ 35%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-06-05T23:55:45.9606432Z [ 35%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-06-05T23:55:45.9608373Z [ 35%] Linking CXX static library libexecutorch.a 2025-06-05T23:55:45.9609705Z [ 36%] Linking CXX static library libextension_threadpool.a 2025-06-05T23:55:45.9610710Z [ 36%] Built target executorch 2025-06-05T23:55:45.9612420Z [ 36%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-06-05T23:55:45.9614051Z [ 36%] Built target extension_threadpool 2025-06-05T23:55:45.9616299Z [ 37%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-06-05T23:55:45.9618968Z [ 37%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-06-05T23:55:45.9621664Z [ 37%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-06-05T23:55:45.9624644Z [ 37%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-06-05T23:55:45.9627416Z [ 38%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-06-05T23:55:45.9630063Z [ 38%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-06-05T23:55:45.9632693Z [ 38%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-06-05T23:55:45.9635394Z [ 39%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-06-05T23:55:45.9638022Z [ 39%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-06-05T23:55:45.9640596Z [ 39%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-06-05T23:55:45.9642678Z [ 40%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:55:45.9643762Z [ 40%] Built target kernels_util_all_deps 2025-06-05T23:55:45.9645560Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:55:45.9648169Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:55:45.9650581Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:55:45.9652821Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:55:45.9655217Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:55:45.9657465Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:55:45.9659741Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:55:45.9662076Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:55:45.9664474Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:55:45.9666774Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:55:45.9669039Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:55:45.9671273Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:55:45.9673553Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:55:45.9675880Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:55:45.9678227Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:55:45.9680622Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:55:45.9683020Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:55:45.9685289Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:55:45.9687778Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:55:45.9690054Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:55:45.9692308Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:55:45.9694968Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:55:45.9697401Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:55:45.9699847Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:55:45.9702238Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:55:45.9705768Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:55:45.9708137Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:55:45.9710375Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:55:45.9712746Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:55:45.9715144Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:55:45.9717358Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:55:45.9719643Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:55:45.9721989Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:55:45.9724494Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:55:45.9727067Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:55:45.9729535Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:55:45.9731765Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:55:45.9734016Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:55:45.9736411Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:55:45.9738805Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:55:45.9741248Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:55:45.9743611Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:55:45.9745858Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:55:45.9748183Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:55:45.9750428Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:55:45.9752671Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:55:45.9754840Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:55:45.9757026Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:55:45.9759631Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:55:45.9761985Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:55:48.4220709Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:55:48.4223244Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:55:48.4225923Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:55:48.4228335Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:55:48.4230645Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:55:48.4232834Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:55:48.4235143Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:55:48.4237434Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:55:48.4239644Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:55:48.4241815Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:55:48.4244016Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:55:48.4246170Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:55:48.4248383Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:55:48.4250616Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:55:48.4252904Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:55:48.4255363Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:55:48.4257626Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:55:48.4259854Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:55:48.4262047Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:55:48.4264225Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:55:48.4266532Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:55:48.4268925Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:55:48.4271158Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:55:48.4273223Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:55:48.4275286Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:55:48.4277368Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:55:48.4279514Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:55:48.4281771Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:55:48.4283990Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:55:48.4286468Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:55:48.4288664Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:55:48.4290833Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:55:48.4293028Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:55:48.4295368Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:55:48.4297777Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:55:48.4300256Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:55:48.4302570Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:55:48.4305506Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:55:48.4308366Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:55:48.4310940Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:55:48.4313165Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:55:48.4315323Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:55:48.4317535Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:55:48.4319675Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:55:48.4321782Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:55:48.4323950Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:55:48.4326328Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:55:48.4328724Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:55:48.4331098Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:55:48.4333503Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:55:48.4335793Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:55:48.4337874Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:55:48.4340064Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:55:48.4342231Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:55:48.4344496Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:55:48.4346862Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:55:48.4349195Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:55:48.4351554Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:55:48.4354051Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:55:48.4356159Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:55:48.4358282Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:55:48.4360578Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:55:48.4363223Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:55:48.4365642Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:55:48.4368047Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:55:48.4370202Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:55:48.4372516Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:55:48.4374836Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:55:48.4377137Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:55:48.4379593Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:55:48.4382240Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:55:48.4384901Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:55:48.4387436Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:55:48.4389641Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:55:48.4391696Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:55:53.3598684Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:55:53.3600005Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:55:53.3601237Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:55:53.3602490Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:55:53.3603897Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:55:53.3605173Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:55:53.3606456Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:55:53.3607705Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:55:53.3608876Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:55:53.3610050Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:55:53.3611199Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:55:53.3612408Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:55:53.3613661Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:55:53.3615205Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:55:53.3616425Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:55:53.3617754Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:55:53.3619140Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:55:53.3620357Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:55:53.3621590Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:55:53.3622749Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:55:53.3623910Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:55:53.3625085Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:55:53.3626253Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:55:53.3627398Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:55:53.3628589Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:55:53.3629761Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:55:53.3630991Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:55:53.3632200Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:55:53.3633382Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:55:53.3634591Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:55:53.3635846Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:55:53.3637108Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:55:53.3638449Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:55:53.3639794Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:55:53.3641036Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:55:53.3642270Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:55:53.3643553Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:55:53.3644745Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:55:53.3645926Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:55:53.3647292Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:55:53.3648877Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:55:53.3650419Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:55:53.3651814Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:55:53.3653281Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:55:53.3654615Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:55:53.3656110Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:55:53.3657442Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:55:53.3658778Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:55:53.3660049Z [ 94%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:55:53.3661321Z [ 94%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:55:53.3662609Z [ 94%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:55:53.3663937Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:55:53.3665305Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:55:53.3666662Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:55:53.3667933Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:55:53.3669213Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:55:53.3670529Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:55:53.3671824Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:55:53.3673111Z [ 97%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:55:53.3674101Z [ 97%] Linking CXX static library libportable_kernels.a 2025-06-05T23:55:53.3674666Z [ 97%] Built target portable_kernels 2025-06-05T23:55:53.3675327Z [ 98%] Generating selected_operators.yaml for portable_ops_lib 2025-06-05T23:55:53.3676066Z [ 98%] Generating code for kernel registration 2025-06-05T23:55:53.3677316Z [ 98%] Building CXX object kernels/portable/CMakeFiles/portable_ops_lib.dir/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:55:53.3678554Z [ 98%] Linking CXX static library libportable_ops_lib.a 2025-06-05T23:55:53.3679099Z [ 98%] Built target portable_ops_lib 2025-06-05T23:55:53.3680078Z [ 98%] Building CXX object CMakeFiles/executor_runner.dir/examples/portable/executor_runner/executor_runner.cpp.o 2025-06-05T23:55:53.3681321Z [ 98%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs.cpp.o 2025-06-05T23:55:53.3682521Z [ 98%] Building CXX object CMakeFiles/executor_runner.dir/extension/data_loader/file_data_loader.cpp.o 2025-06-05T23:55:53.3683735Z [ 99%] Building CXX object CMakeFiles/executor_runner.dir/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:55:53.3684976Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs_portable.cpp.o 2025-06-05T23:55:53.3686287Z [100%] Building CXX object CMakeFiles/executor_runner.dir/runtime/executor/test/test_backend_compiler_lib.cpp.o 2025-06-05T23:55:53.3687279Z [100%] Linking CXX executable executor_runner 2025-06-05T23:55:53.3687778Z [100%] Built target executor_runner 2025-06-05T23:55:53.3688284Z + [[ '' == *main* ]] 2025-06-05T23:55:53.3688613Z + [[ '' == *gh* ]] 2025-06-05T23:55:53.3688977Z + PYTHON_EXECUTABLE=python 2025-06-05T23:55:53.7148859Z + cmake -DPYTHON_EXECUTABLE=python -DCMAKE_INSTALL_PREFIX=cmake-out -DEXECUTORCH_ENABLE_LOGGING=1 -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON -DEXECUTORCH_BUILD_XNNPACK=ON -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON -DEXECUTORCH_BUILD_DEVTOOLS=ON -DEXECUTORCH_ENABLE_EVENT_TRACER=ON -Bcmake-out . 2025-06-05T23:55:53.7151667Z -- --- Configured Options --- 2025-06-05T23:55:53.7151940Z 2025-06-05T23:55:53.7152127Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:55:53.7152629Z -- CMAKE_SYSTEM_PROCESSOR : x86_64 2025-06-05T23:55:53.7153160Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:55:53.7153669Z -- PYTHON_EXECUTABLE : python 2025-06-05T23:55:53.7154211Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-06-05T23:55:53.7154727Z -- CMAKE_TOOLCHAIN_FILE x (unset) 2025-06-05T23:55:53.7155239Z -- BUCK2 x (unset) 2025-06-05T23:55:53.7155720Z -- EXECUTORCH_ENABLE_LOGGING : 1 2025-06-05T23:55:53.7156219Z -- EXECUTORCH_BUILD_COREML : OFF 2025-06-05T23:55:53.7156725Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:55:53.7157265Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-06-05T23:55:53.7158008Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-06-05T23:55:53.7158766Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:55:53.7159272Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:55:53.7159800Z -- EXECUTORCH_ENABLE_EVENT_TRACER : ON 2025-06-05T23:55:53.7160294Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-06-05T23:55:53.7160811Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-06-05T23:55:53.7161311Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : ON 2025-06-05T23:55:53.7161823Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : OFF 2025-06-05T23:55:53.7162332Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : OFF 2025-06-05T23:55:53.7162850Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : ON 2025-06-05T23:55:53.7163355Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : OFF 2025-06-05T23:55:53.7163875Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:55:53.7164369Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : ON 2025-06-05T23:55:53.7164869Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : OFF 2025-06-05T23:55:53.7165384Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : ON 2025-06-05T23:55:53.7165888Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : OFF 2025-06-05T23:55:53.7166405Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:55:53.7166898Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:55:53.7167403Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:55:53.7167892Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:55:53.7168395Z -- EXECUTORCH_BUILD_PYBIND : OFF 2025-06-05T23:55:53.7168876Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:55:53.7169378Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : ON 2025-06-05T23:55:53.7169876Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : ON 2025-06-05T23:55:53.7170386Z -- EXECUTORCH_BUILD_DEVTOOLS : ON 2025-06-05T23:55:53.7170870Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:55:53.7171369Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:55:53.7171856Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:55:53.7172361Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:55:53.7172848Z -- EXECUTORCH_BUILD_XNNPACK : ON 2025-06-05T23:55:53.7173347Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:55:53.7173985Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:55:53.7174502Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:55:53.7175095Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:55:53.7175608Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:55:53.7176098Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:55:53.7176612Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:55:53.7177211Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-06-05T23:55:53.7177728Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-06-05T23:55:53.7178223Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : ON 2025-06-05T23:55:53.7178744Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:55:53.7179252Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:55:53.7179782Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:55:53.7180253Z -- -------------------------- 2025-06-05T23:55:53.7180855Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:55:53.7182065Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:55:53.7182970Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:53.7183549Z CMake. 2025-06-05T23:55:53.7183725Z 2025-06-05T23:55:53.7184041Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:53.7184796Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:53.7185473Z to work with policies introduced by or earlier. 2025-06-05T23:55:53.7185819Z 2025-06-05T23:55:53.7185971Z  2025-06-05T23:55:53.7186368Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:55:53.7186983Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:55:53.7187649Z -- Setting Clang compiler options 2025-06-05T23:55:53.7188585Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:55:53.7190056Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:55:53.7191036Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:53.7191623Z CMake. 2025-06-05T23:55:53.7191780Z 2025-06-05T23:55:53.7192094Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:53.7192869Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:53.7193528Z to work with policies introduced by or earlier. 2025-06-05T23:55:53.7193888Z 2025-06-05T23:55:53.7194037Z  2025-06-05T23:55:53.7194840Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:55:53.7195841Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:53.7196413Z CMake. 2025-06-05T23:55:53.7196584Z 2025-06-05T23:55:53.7196893Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:53.7197638Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:53.7198305Z to work with policies introduced by or earlier. 2025-06-05T23:55:53.7198647Z 2025-06-05T23:55:53.7198795Z  2025-06-05T23:55:53.7199654Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:55:53.7200674Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:53.7201261Z CMake. 2025-06-05T23:55:53.7201418Z 2025-06-05T23:55:53.7201729Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:53.7202490Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:53.7203142Z to work with policies introduced by or earlier. 2025-06-05T23:55:53.7203789Z 2025-06-05T23:55:53.7203961Z  2025-06-05T23:55:53.7204265Z -- Resolved buck2 as buck2. 2025-06-05T23:55:53.7204668Z -- Killing buck2 daemon 2025-06-05T23:55:53.7205015Z 'buck2 killall' 2025-06-05T23:55:53.7205377Z -- executorch: Generating source lists 2025-06-05T23:55:53.7206052Z -- executorch: Using source file list /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:55:53.7207066Z -- executorch: Using sources file /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:55:53.7208081Z 'python' '-c' 'import importlib.util; print(importlib.util.find_spec('torch').submodule_search_locations[0])' 2025-06-05T23:55:53.7208872Z -- Generating operator lib: 2025-06-05T23:55:53.7209269Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:55:53.7209823Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:55:53.7210413Z -- ROOT_OPS: 2025-06-05T23:55:53.7210732Z -- INCLUDE_ALL_OPS: 2025-06-05T23:55:53.7212379Z 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:55:53.7213876Z -- Generating kernel bindings: 2025-06-05T23:55:53.7214293Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:55:53.7214961Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:55:53.7215563Z -- CUSTOM_OPS_YAML: 2025-06-05T23:55:53.7215934Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:55:53.7218178Z 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:55:53.7220162Z -- Generating operator lib: 2025-06-05T23:55:53.7220572Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:55:53.7220982Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:55:53.7221408Z -- DEPS: executorch_core 2025-06-05T23:55:53.7221785Z -- Generating operator lib: 2025-06-05T23:55:53.7222188Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:55:53.7222741Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:55:53.7223330Z -- ROOT_OPS: 2025-06-05T23:55:53.7223648Z -- INCLUDE_ALL_OPS: 2025-06-05T23:55:53.7225301Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out/kernels/optimized/optimized_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/optimized/optimized.yaml" 2025-06-05T23:55:53.7226804Z -- Generating kernel bindings: 2025-06-05T23:55:53.7227224Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:55:53.7227792Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:55:53.7228398Z -- CUSTOM_OPS_YAML: 2025-06-05T23:55:53.7228767Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:55:53.7231044Z Generated files /pytorch/executorch/cmake-out/kernels/optimized/optimized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out/kernels/optimized/optimized_ops_lib/Functions.h;/pytorch/executorch/cmake-out/kernels/optimized/optimized_ops_lib/NativeFunctions.h 2025-06-05T23:55:53.7233062Z -- Generating operator lib: 2025-06-05T23:55:53.7233478Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:55:53.7233897Z -- KERNEL_LIBS: optimized_kernels 2025-06-05T23:55:53.7234343Z -- DEPS: executorch_core 2025-06-05T23:55:53.7234727Z -- Merging kernel yaml files: 2025-06-05T23:55:53.7235404Z -- FUNCTIONS_YAML: /pytorch/executorch/configurations/../kernels/optimized/optimized.yaml 2025-06-05T23:55:53.7236364Z -- FALLBACK_YAML: /pytorch/executorch/configurations/../kernels/portable/functions.yaml 2025-06-05T23:55:53.7237157Z -- OUTPUT_DIR: /pytorch/executorch/cmake-out/configurations 2025-06-05T23:55:53.7237685Z -- Generating operator lib: 2025-06-05T23:55:53.7238241Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:55:53.7238870Z -- OPS_SCHEMA_YAML: /pytorch/executorch/cmake-out/configurations/merged.yaml 2025-06-05T23:55:53.7239481Z -- ROOT_OPS: 2025-06-05T23:55:53.7239805Z -- INCLUDE_ALL_OPS: 2025-06-05T23:55:58.5290229Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out/configurations/optimized_native_cpu_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/cmake-out/configurations/merged.yaml" 2025-06-05T23:55:58.5293168Z -- Generating kernel bindings: 2025-06-05T23:55:58.5293893Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:55:58.5295198Z -- FUNCTIONS_YAML: /pytorch/executorch/cmake-out/configurations/merged.yaml 2025-06-05T23:55:58.5296302Z -- CUSTOM_OPS_YAML: 2025-06-05T23:55:58.5296870Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:55:58.5301061Z Generated files /pytorch/executorch/cmake-out/configurations/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out/configurations/optimized_native_cpu_ops_lib/Functions.h;/pytorch/executorch/cmake-out/configurations/optimized_native_cpu_ops_lib/NativeFunctions.h 2025-06-05T23:55:58.5305308Z -- Generating operator lib: 2025-06-05T23:55:58.5305998Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:55:58.5306969Z -- KERNEL_LIBS: optimized_kernels;optimized_portable_kernels 2025-06-05T23:55:58.5307839Z -- DEPS: executorch_core 2025-06-05T23:55:58.5309220Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:55:58.5310730Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:58.5311966Z CMake. 2025-06-05T23:55:58.5312222Z 2025-06-05T23:55:58.5312745Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:58.5314086Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:58.5315273Z to work with policies introduced by or earlier. 2025-06-05T23:55:58.5315924Z 2025-06-05T23:55:58.5316255Z  2025-06-05T23:55:58.5317053Z -- The ASM compiler identification is Clang with GNU-like command-line 2025-06-05T23:55:58.5318171Z -- Found assembler: /opt/cache/bin/cc 2025-06-05T23:55:58.5319079Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-06-05T23:55:58.5320646Z -- Found Python: /opt/conda/envs/py_3.10/bin/python3.10 (found version "3.10.16") found components: Interpreter 2025-06-05T23:55:58.5322042Z -- Generating microkernels.cmake 2025-06-05T23:55:58.5322951Z No microkernel found in src/reference/binary-elementwise.cc 2025-06-05T23:55:58.5324033Z No microkernel found in src/reference/packing.cc 2025-06-05T23:55:58.5325061Z No microkernel found in src/reference/unary-elementwise.cc 2025-06-05T23:55:58.5326852Z -- executorch: Using source file list /pytorch/executorch/cmake-out/extension/llm/custom_ops/../../../executorch_srcs.cmake 2025-06-05T23:55:58.5328470Z -- Generating operator lib: 2025-06-05T23:55:58.5329185Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:55:58.5330191Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:55:58.5331291Z -- ROOT_OPS: 2025-06-05T23:55:58.5331858Z -- INCLUDE_ALL_OPS: 2025-06-05T23:55:58.5335248Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/quantized/quantized.yaml" 2025-06-05T23:55:58.5338159Z -- Generating kernel bindings: 2025-06-05T23:55:58.5338911Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:55:58.5339617Z -- FUNCTIONS_YAML: 2025-06-05T23:55:58.5340585Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:55:58.5341723Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:55:58.5350126Z Generated files /pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/Functions.h;/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/NativeFunctions.h;/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/RegisterCPUCustomOps.cpp;/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/RegisterSchema.cpp;/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/CustomOpsNativeFunctions.h 2025-06-05T23:55:58.5357966Z -- Generating operator lib: 2025-06-05T23:55:58.5358692Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:55:58.5359443Z -- KERNEL_LIBS: quantized_kernels 2025-06-05T23:55:58.5360211Z -- DEPS: executorch_core 2025-06-05T23:55:58.5360914Z -- Configuring done (4.1s) 2025-06-05T23:55:58.5361597Z -- Generating done (0.4s) 2025-06-05T23:55:58.5362526Z -- Build files have been written to: /pytorch/executorch/cmake-out 2025-06-05T23:55:58.5363793Z + cmake --build cmake-out -j16 --target install --config Release 2025-06-05T23:55:58.5364898Z [ 0%] Built target flatbuffers_external_project 2025-06-05T23:55:58.5365824Z [ 1%] Built target flatcc_external_project 2025-06-05T23:55:58.5367763Z [ 1%] Building C object extension/llm/custom_ops/spinquant/third-party/FFHT/CMakeFiles/dumb_fht.dir/dumb_fht.c.o 2025-06-05T23:55:58.5370423Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/single.cpp.o 2025-06-05T23:55:58.5373084Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_single.cpp.o 2025-06-05T23:55:58.5375883Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/double.cpp.o 2025-06-05T23:55:58.5378550Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_double.cpp.o 2025-06-05T23:55:58.5381245Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/xerbla.cpp.o 2025-06-05T23:55:58.5383901Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-06-05T23:55:58.5386764Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-06-05T23:55:58.5389324Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-06-05T23:55:58.5391810Z [ 2%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-06-05T23:55:58.5394441Z [ 2%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-06-05T23:55:58.5396112Z [ 2%] Built target common_schema 2025-06-05T23:55:58.5397762Z [ 2%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags.cc.o 2025-06-05T23:55:58.5400165Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-06-05T23:55:58.5402007Z [ 2%] Generating scalar_type_schema headers 2025-06-05T23:55:58.5403138Z [ 3%] Generating xnnpack_schema headers 2025-06-05T23:55:58.5444855Z [ 3%] Built target scalar_type_schema 2025-06-05T23:55:58.5445841Z [ 3%] Built target program_schema 2025-06-05T23:55:58.5447723Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-06-05T23:55:58.5449332Z [ 3%] Built target xnnpack_schema 2025-06-05T23:55:58.5451077Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-06-05T23:55:58.5452832Z [ 4%] Linking C static library libdumb_fht.a 2025-06-05T23:55:58.5454431Z [ 4%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:55:58.5456859Z [ 4%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o 2025-06-05T23:55:58.5459595Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-06-05T23:55:58.5461876Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-06-05T23:55:58.5463204Z [ 4%] Built target dumb_fht 2025-06-05T23:55:58.5465072Z [ 5%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_reporting.cc.o 2025-06-05T23:55:58.5467607Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotm.c.o 2025-06-05T23:55:58.5470067Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotmg.c.o 2025-06-05T23:55:58.5472436Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-06-05T23:55:58.5474594Z [ 5%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:55:58.5476686Z [ 5%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:55:58.5478696Z [ 5%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:55:58.5480945Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotm.c.o 2025-06-05T23:55:58.5483061Z [ 5%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_completions.cc.o 2025-06-05T23:55:58.5484817Z [ 5%] Linking C static library libpthreadpool.a 2025-06-05T23:55:58.5485646Z [ 5%] Generating flat_tensor_schema headers 2025-06-05T23:55:58.5486302Z [ 5%] Built target pthreadpool 2025-06-05T23:55:58.5487499Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotmg.c.o 2025-06-05T23:55:58.5490024Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/init.c.o 2025-06-05T23:55:58.5492433Z [ 5%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:55:58.5493882Z [ 5%] Built target flat_tensor_schema 2025-06-05T23:55:58.5495694Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dspmv.c.o 2025-06-05T23:55:58.5498160Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/lsame.c.o 2025-06-05T23:55:58.5500564Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ssbmv.c.o 2025-06-05T23:55:58.5502990Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chbmv.c.o 2025-06-05T23:55:58.5505775Z [ 5%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:55:59.1957121Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-06-05T23:55:59.1959627Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/sspmv.c.o 2025-06-05T23:55:59.1962153Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhbmv.c.o 2025-06-05T23:55:59.1964726Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chpmv.c.o 2025-06-05T23:55:59.1967026Z [ 6%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-06-05T23:55:59.1969363Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dsbmv.c.o 2025-06-05T23:55:59.1971879Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhpmv.c.o 2025-06-05T23:55:59.1974862Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/info.c.o 2025-06-05T23:55:59.1977539Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/uarch.c.o 2025-06-05T23:55:59.1980349Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/vendor.c.o 2025-06-05T23:55:59.1983192Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dtbmv.c.o 2025-06-05T23:55:59.1985726Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/stbmv.c.o 2025-06-05T23:55:59.1987646Z [ 6%] Linking CXX static library libgflags_nothreads.a 2025-06-05T23:55:59.1990261Z [ 7%] 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:55:59.1993362Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ctbmv.c.o 2025-06-05T23:55:59.1995651Z [ 7%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:55:59.1997073Z [ 7%] Built target gflags_nothreads_static 2025-06-05T23:55:59.1998946Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/complexdots.c.o 2025-06-05T23:55:59.2001722Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-06-05T23:55:59.2004576Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ztbmv.c.o 2025-06-05T23:55:59.2007066Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o 2025-06-05T23:55:59.2010156Z [ 7%] 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:55:59.2013371Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-06-05T23:55:59.2016247Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/name.c.o 2025-06-05T23:55:59.2018938Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-06-05T23:55:59.2021662Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/topology.c.o 2025-06-05T23:55:59.2024513Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-06-05T23:55:59.2027401Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-06-05T23:55:59.2029133Z [ 7%] Built target flatccrt 2025-06-05T23:55:59.2030530Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o 2025-06-05T23:55:59.2032670Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o 2025-06-05T23:55:59.2034874Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o 2025-06-05T23:55:59.2037355Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-06-05T23:55:59.2039885Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o 2025-06-05T23:55:59.2041670Z [ 8%] Linking CXX static library libeigen_blas.a 2025-06-05T23:55:59.2043669Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-06-05T23:55:59.2046338Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/isa.c.o 2025-06-05T23:55:59.2049045Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-06-05T23:55:59.2051472Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o 2025-06-05T23:55:59.2054953Z [ 8%] 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:55:59.2057143Z [ 8%] Built target microparams-init 2025-06-05T23:55:59.2058613Z [ 8%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-06-05T23:55:59.2059904Z [ 8%] Built target eigen_blas 2025-06-05T23:55:59.2061547Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o 2025-06-05T23:55:59.2064139Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-06-05T23:55:59.2066778Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-06-05T23:55:59.2069354Z [ 8%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-06-05T23:55:59.2072052Z [ 8%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-06-05T23:55:59.2074663Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o 2025-06-05T23:55:59.2077736Z [ 8%] 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:55:59.2080843Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:55:59.2083693Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:55:59.2085379Z [ 8%] Built target indirection 2025-06-05T23:55:59.2087259Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/init.c.o 2025-06-05T23:55:59.2088988Z [ 8%] Built target logging 2025-06-05T23:55:59.2090693Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o 2025-06-05T23:55:59.2093652Z [ 8%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-06-05T23:55:59.2095711Z [ 8%] Built target datatype 2025-06-05T23:55:59.2097516Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:55:59.2100746Z [ 8%] 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:55:59.2102889Z [ 8%] Built target normalization 2025-06-05T23:55:59.2104694Z [ 8%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-06-05T23:55:59.2107310Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-06-05T23:55:59.2110517Z [ 8%] 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:55:59.2113565Z [ 9%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-06-05T23:55:59.2116097Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-06-05T23:55:59.2118665Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-06-05T23:55:59.2121422Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-06-05T23:55:59.2124467Z [ 9%] 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:55:59.2127915Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:55:59.2131289Z [ 9%] 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:55:59.2134438Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-06-05T23:55:59.2137022Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-06-05T23:55:59.2139157Z [ 9%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-06-05T23:56:00.1149900Z [ 9%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-06-05T23:56:00.1151887Z [ 9%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-06-05T23:56:00.1153629Z [ 9%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-06-05T23:56:00.1156085Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-f16c-u16.c.o 2025-06-05T23:56:00.1157795Z [ 9%] Built target packing 2025-06-05T23:56:00.1159852Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u1.c.o 2025-06-05T23:56:00.1163219Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:56:00.1165037Z [ 9%] Built target allocator 2025-06-05T23:56:00.1167077Z [ 9%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-06-05T23:56:00.1169084Z [ 9%] Built target cache 2025-06-05T23:56:00.1170356Z [ 9%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-06-05T23:56:00.1173066Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u4.c.o 2025-06-05T23:56:00.1175879Z [ 9%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-06-05T23:56:00.1178078Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-06-05T23:56:00.1180910Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-u32.c.o 2025-06-05T23:56:00.1183671Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-06-05T23:56:00.1186591Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-u16.c.o 2025-06-05T23:56:00.1189274Z [ 9%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-06-05T23:56:00.1190956Z [ 11%] Linking C static library libcpuinfo.a 2025-06-05T23:56:00.1193308Z [ 11%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/init.c.o 2025-06-05T23:56:00.1196232Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-06-05T23:56:00.1199819Z [ 11%] 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:56:00.1204434Z [ 11%] 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:56:00.1206584Z [ 11%] Built target reference-ukernels 2025-06-05T23:56:00.1208302Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-06-05T23:56:00.1209468Z [ 11%] Built target memory 2025-06-05T23:56:00.1210047Z [ 11%] Built target cpuinfo 2025-06-05T23:56:00.1211349Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-06-05T23:56:00.1213252Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-06-05T23:56:00.1214463Z [ 11%] Built target microkernel-utils 2025-06-05T23:56:00.1217326Z [ 11%] 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:56:00.1221557Z [ 12%] 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:56:00.1224476Z [ 12%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-06-05T23:56:00.1226182Z [ 12%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-06-05T23:56:00.1228679Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-06-05T23:56:00.1231208Z [ 12%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:56:00.1233635Z [ 12%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-06-05T23:56:00.1235585Z [ 12%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-06-05T23:56:00.1237986Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-06-05T23:56:00.1239642Z [ 12%] Built target mutex 2025-06-05T23:56:00.1241603Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-06-05T23:56:00.1244281Z [ 13%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.o 2025-06-05T23:56:00.1246413Z [ 13%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-06-05T23:56:00.1247773Z [ 13%] Built target operator-utils 2025-06-05T23:56:00.1249711Z [ 13%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/smallfile.c.o 2025-06-05T23:56:00.1253277Z [ 13%] 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:56:00.1257786Z [ 13%] 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:56:00.1261188Z [ 13%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/multiline.c.o 2025-06-05T23:56:00.1264017Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-06-05T23:56:00.1266946Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-06-05T23:56:00.1269935Z [ 14%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/cpulist.c.o 2025-06-05T23:56:00.1273661Z [ 14%] 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:56:00.1277106Z [ 14%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/processors.c.o 2025-06-05T23:56:00.1278854Z [ 14%] Built target operator-run 2025-06-05T23:56:00.1283220Z [ 14%] 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:56:00.1286698Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-06-05T23:56:00.1288842Z [ 14%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:56:00.1291123Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-06-05T23:56:00.1293094Z [ 14%] Built target hardware-config 2025-06-05T23:56:00.1295447Z [ 14%] 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:56:00.1298854Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-06-05T23:56:00.1302347Z [ 14%] 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:56:00.1305952Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-06-05T23:56:00.1309442Z [ 14%] 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:56:00.1312839Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-06-05T23:56:00.1316344Z [ 14%] 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:56:00.1319586Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-06-05T23:56:00.1322980Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:56:00.1325116Z [ 14%] Built target executorch_core 2025-06-05T23:56:00.1326259Z [ 14%] Linking C static library libcpuinfo_internals.a 2025-06-05T23:56:00.1329242Z [ 14%] 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:56:00.1333169Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/f16-rmax-f16c-u32.c.o 2025-06-05T23:56:01.1917508Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-06-05T23:56:01.1921063Z [ 14%] 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:56:01.1923983Z [ 14%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-06-05T23:56:01.1926600Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-06-05T23:56:01.1929847Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-scalar-u2-acc2.c.o 2025-06-05T23:56:01.1932342Z [ 14%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-06-05T23:56:01.1944758Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-06-05T23:56:01.1946782Z [ 14%] Built target cpuinfo_internals 2025-06-05T23:56:01.1949275Z [ 15%] 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:56:01.1952689Z [ 15%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-06-05T23:56:01.1955894Z [ 15%] 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:56:01.1959228Z [ 15%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/file_data_loader.cpp.o 2025-06-05T23:56:01.1962117Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-06-05T23:56:01.1965072Z [ 15%] Building CXX object extension/flat_tensor/CMakeFiles/extension_flat_tensor.dir/flat_tensor_data_map.cpp.o 2025-06-05T23:56:01.1967906Z [ 15%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-06-05T23:56:01.1970679Z [ 15%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/mmap_data_loader.cpp.o 2025-06-05T23:56:01.1973496Z [ 15%] Building CXX object extension/flat_tensor/CMakeFiles/extension_flat_tensor.dir/serialize/flat_tensor_header.cpp.o 2025-06-05T23:56:01.1976805Z [ 15%] 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:56:01.1979861Z [ 15%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-06-05T23:56:01.1982502Z [ 15%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-06-05T23:56:01.1985391Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-06-05T23:56:01.1988685Z [ 15%] 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:56:01.1992093Z [ 15%] 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:56:01.1995573Z [ 15%] 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:56:01.1998689Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-06-05T23:56:01.2001548Z [ 15%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-06-05T23:56:01.2004417Z [ 15%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-06-05T23:56:01.2006793Z [ 15%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr.cpp.o 2025-06-05T23:56:01.2008679Z [ 15%] Linking CXX static library libextension_data_loader.a 2025-06-05T23:56:01.2010722Z [ 15%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr_maker.cpp.o 2025-06-05T23:56:01.2013091Z [ 15%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-06-05T23:56:01.2015744Z [ 15%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-06-05T23:56:01.2018569Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-06-05T23:56:01.2020593Z [ 15%] Built target extension_data_loader 2025-06-05T23:56:01.2022593Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-06-05T23:56:01.2025536Z [ 15%] 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:56:01.2029020Z [ 15%] 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:56:01.2032047Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-06-05T23:56:01.2034032Z [ 15%] Linking CXX static library libextension_flat_tensor.a 2025-06-05T23:56:01.2035773Z [ 15%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-06-05T23:56:01.2038485Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmin-f16c-u16.c.o 2025-06-05T23:56:01.2041361Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vminc-f16c-u16.c.o 2025-06-05T23:56:01.2044470Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmul-f16c-u16.c.o 2025-06-05T23:56:01.2046130Z [ 15%] Built target extension_flat_tensor 2025-06-05T23:56:01.2048018Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-06-05T23:56:01.2051247Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-06-05T23:56:01.2053676Z [ 16%] Linking CXX static library libextension_threadpool.a 2025-06-05T23:56:01.2055457Z [ 16%] Building CXX object extension/module/CMakeFiles/extension_module.dir/module.cpp.o 2025-06-05T23:56:01.2057942Z [ 16%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-06-05T23:56:01.2060402Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-06-05T23:56:01.2063181Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-06-05T23:56:01.2065070Z [ 17%] Linking CXX static library libextension_tensor.a 2025-06-05T23:56:01.2066074Z [ 17%] Built target extension_threadpool 2025-06-05T23:56:01.2068160Z [ 17%] 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:56:01.2070072Z [ 17%] Linking CXX static library libexecutorch.a 2025-06-05T23:56:01.2071568Z [ 17%] Building CXX object extension/module/CMakeFiles/extension_module_static.dir/module.cpp.o 2025-06-05T23:56:01.2072819Z [ 17%] Built target extension_tensor 2025-06-05T23:56:01.2074343Z [ 17%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-06-05T23:56:01.2077038Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-06-05T23:56:01.2079300Z [ 17%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/BlasKernel.cpp.o 2025-06-05T23:56:01.2081941Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-06-05T23:56:01.2084748Z [ 17%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:56:01.2086346Z [ 17%] Built target executorch 2025-06-05T23:56:01.2088396Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-06-05T23:56:01.2091668Z [ 17%] 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:56:01.2094358Z [ 17%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/CPUBlas.cpp.o 2025-06-05T23:56:01.2097507Z [ 17%] 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:56:01.2100864Z [ 17%] 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:56:01.2105892Z [ 17%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:56:01.2108441Z [ 17%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:56:02.5196035Z [ 17%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-06-05T23:56:02.5197862Z [ 17%] Generating etdump headers 2025-06-05T23:56:02.5199702Z [ 17%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-06-05T23:56:02.5201705Z [ 17%] Linking CXX shared library libextension_module.so 2025-06-05T23:56:02.5204286Z [ 17%] 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:56:02.5205981Z [ 17%] Built target operators 2025-06-05T23:56:02.5206926Z [ 17%] Generating bundled_program headers 2025-06-05T23:56:02.5209311Z [ 18%] 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:56:02.5212065Z [ 18%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/etdump_flatcc.cpp.o 2025-06-05T23:56:02.5213810Z [ 18%] Linking CXX static library libextension_module_static.a 2025-06-05T23:56:02.5216086Z [ 18%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-06-05T23:56:02.5219057Z [ 18%] 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:56:02.5222052Z [ 18%] Building CXX object devtools/bundled_program/CMakeFiles/bundled_program.dir/bundled_program.cpp.o 2025-06-05T23:56:02.5224936Z [ 18%] 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:56:02.5227051Z [ 18%] Built target extension_module_static 2025-06-05T23:56:02.5229311Z [ 18%] 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:56:02.5231600Z [ 18%] Linking CXX static library libcpublas.a 2025-06-05T23:56:02.5233964Z [ 18%] 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:56:02.5236844Z [ 18%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:56:02.5239023Z [ 18%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/emitter.cpp.o 2025-06-05T23:56:02.5240299Z [ 18%] Built target extension_module 2025-06-05T23:56:02.5241938Z [ 18%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/buffer_data_sink.cpp.o 2025-06-05T23:56:02.5243363Z [ 18%] Built target cpublas 2025-06-05T23:56:02.5244898Z [ 18%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/file_data_sink.cpp.o 2025-06-05T23:56:02.5247750Z [ 18%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-06-05T23:56:02.5250446Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-06-05T23:56:02.5253246Z [ 19%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-06-05T23:56:02.5256225Z [ 19%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:56:02.5259267Z [ 19%] 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:56:02.5262782Z [ 19%] 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:56:02.5266276Z [ 19%] 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:56:02.5269364Z [ 19%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-06-05T23:56:02.5272456Z [ 19%] 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:56:02.5276155Z [ 19%] 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:56:02.5279280Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-06-05T23:56:02.5281149Z [ 19%] Linking CXX static library libbundled_program.a 2025-06-05T23:56:02.5282149Z [ 19%] Built target bundled_program 2025-06-05T23:56:02.5283867Z [ 19%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:56:02.5286541Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-06-05T23:56:02.5289284Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-06-05T23:56:02.5291858Z [ 19%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-06-05T23:56:02.5294976Z [ 19%] 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:56:02.5297186Z [ 20%] Linking CXX static library libetdump.a 2025-06-05T23:56:02.5299138Z [ 20%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-06-05T23:56:02.5302180Z [ 20%] 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:56:02.5305443Z [ 20%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-06-05T23:56:02.5308553Z [ 20%] 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:56:02.5311708Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-06-05T23:56:02.5313518Z [ 20%] Built target etdump 2025-06-05T23:56:02.5315589Z [ 20%] 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:56:02.5319098Z [ 20%] 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:56:02.5322478Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-06-05T23:56:02.5325565Z [ 20%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:56:02.5328809Z [ 21%] 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:56:02.5332173Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-06-05T23:56:02.5335432Z [ 21%] 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:56:02.5338510Z [ 21%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-06-05T23:56:02.5341947Z [ 21%] 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:56:02.5345412Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-06-05T23:56:02.5348166Z [ 21%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-06-05T23:56:02.5351541Z [ 21%] 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:56:02.5354803Z [ 21%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:56:02.5357849Z [ 21%] 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:56:02.5360996Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-06-05T23:56:02.5364159Z [ 21%] 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:56:02.5367150Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-06-05T23:56:02.5369936Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-06-05T23:56:02.5373147Z [ 22%] 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:56:02.5376809Z [ 22%] 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:56:02.5380413Z [ 22%] 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:56:03.4797653Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-06-05T23:56:03.4801023Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-06-05T23:56:03.4807976Z [ 22%] 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:56:03.4811422Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-06-05T23:56:03.4814235Z [ 22%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:56:03.4817537Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-06-05T23:56:03.4821280Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-06-05T23:56:03.4824053Z [ 22%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:56:03.4826517Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:56:03.4829766Z [ 23%] 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:56:03.4833420Z [ 23%] 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:56:03.4837001Z [ 23%] 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:56:03.4840105Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-06-05T23:56:03.4843307Z [ 24%] 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:56:03.4846960Z [ 24%] 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:56:03.4850027Z [ 24%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:56:03.4853341Z [ 24%] 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:56:03.4857024Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-06-05T23:56:03.4860523Z [ 24%] 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:56:03.4863162Z [ 24%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:56:03.4865431Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-06-05T23:56:03.4868824Z [ 24%] 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:56:03.4872174Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-06-05T23:56:03.4875604Z [ 24%] 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:56:03.4879415Z [ 24%] 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:56:03.4882579Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-06-05T23:56:03.4885808Z [ 24%] 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:56:03.4888888Z [ 24%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:56:03.4890507Z [ 24%] Built target kernels_util_all_deps 2025-06-05T23:56:03.4892516Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-06-05T23:56:03.4895968Z [ 24%] 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:56:03.4899592Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-06-05T23:56:03.4903018Z [ 24%] 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:56:03.4906225Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-06-05T23:56:03.4908889Z [ 24%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:56:03.4911408Z [ 24%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:56:03.4914194Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-06-05T23:56:03.4917819Z [ 24%] 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:56:03.4921389Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-06-05T23:56:03.4924317Z [ 24%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:56:03.4926845Z [ 24%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:56:03.4929905Z [ 24%] 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:56:03.4933168Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-06-05T23:56:03.4936597Z [ 25%] 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:56:03.4939646Z [ 25%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:56:03.4942471Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-06-05T23:56:03.4945984Z [ 25%] 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:56:03.4949240Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-06-05T23:56:03.4951808Z [ 25%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:56:03.4954937Z [ 25%] 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:56:03.4958134Z [ 25%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:56:03.4960919Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-06-05T23:56:03.4963845Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-06-05T23:56:03.4966523Z [ 25%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:56:03.4969056Z [ 25%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:56:03.4972087Z [ 25%] 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:56:03.4975274Z [ 25%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:56:03.4978141Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-06-05T23:56:03.4980854Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-06-05T23:56:03.4984172Z [ 26%] 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:56:03.4987204Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:56:05.0787928Z [ 26%] 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:56:05.0791008Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-06-05T23:56:05.0793614Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:56:05.0796871Z [ 26%] 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:56:05.0800634Z [ 26%] 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:56:05.0803925Z [ 26%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:56:05.0807036Z [ 26%] 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:56:05.0810767Z [ 26%] 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:56:05.0814439Z [ 26%] 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:56:05.0817532Z [ 26%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:56:05.0819077Z [ 26%] Built target subgraph 2025-06-05T23:56:05.0821552Z [ 26%] 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:56:05.0824734Z [ 26%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:56:05.0827192Z [ 26%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/binary_ops.cpp.o 2025-06-05T23:56:05.0829665Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:56:05.0832962Z [ 26%] 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:56:05.0836784Z [ 26%] 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:56:05.0839993Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:56:05.0843216Z [ 26%] 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:56:05.0846258Z [ 26%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:56:05.0849222Z [ 26%] 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:56:05.0853181Z [ 26%] 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:56:05.0857020Z [ 26%] 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:56:05.0861041Z [ 26%] 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:56:05.0864224Z [ 26%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:56:05.0867242Z [ 27%] 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:56:05.0870328Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:56:05.0873442Z [ 27%] 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:56:05.0876324Z [ 27%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:56:05.0878683Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:56:05.0881138Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:56:05.0883450Z [ 27%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:56:05.0885874Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:56:05.0888396Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:56:05.0890909Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:56:05.0894264Z [ 28%] 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:56:05.0898723Z [ 28%] 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:56:05.0902871Z [ 28%] 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:56:05.0907295Z [ 28%] 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:56:05.0910509Z [ 28%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:56:05.0913913Z [ 28%] 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:56:05.0917285Z [ 28%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_quantize.cpp.o 2025-06-05T23:56:05.0919878Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:56:05.0922399Z [ 28%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:56:05.0924805Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:56:05.0928336Z [ 28%] 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:56:05.0931952Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:56:05.0935517Z [ 28%] 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:56:05.0938960Z [ 28%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_c2r.cpp.o 2025-06-05T23:56:05.0942329Z [ 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:56:05.0945648Z [ 28%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_r2c.cpp.o 2025-06-05T23:56:05.0949018Z [ 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:56:05.0953289Z [ 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:56:05.0956592Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:56:05.0958526Z [ 28%] Linking CXX static library libquantized_kernels.a 2025-06-05T23:56:05.0960336Z [ 29%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:56:05.0962891Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:56:05.0965322Z [ 29%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:56:05.0966781Z [ 29%] Built target quantized_kernels 2025-06-05T23:56:05.0969532Z [ 29%] 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:56:05.0973963Z [ 29%] 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:56:08.5967777Z [ 29%] Generating selected_operators.yaml for quantized_ops_lib 2025-06-05T23:56:08.5970804Z [ 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:56:08.5973986Z [ 29%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_linear.cpp.o 2025-06-05T23:56:08.5977069Z [ 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:56:08.5980019Z [ 29%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:56:08.5982501Z [ 29%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:56:08.5985070Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:56:08.5987869Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:56:08.5991157Z [ 30%] 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:56:08.5994100Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:56:08.5995890Z [ 31%] Generating code for kernel registration 2025-06-05T23:56:08.5998713Z [ 31%] 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:56:08.6002296Z [ 31%] 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:56:08.6005550Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:56:08.6008891Z [ 31%] 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:56:08.6012425Z [ 31%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:56:08.6015201Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:56:08.6017686Z [ 31%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:56:08.6020684Z [ 31%] 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:56:08.6023887Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:56:08.6026619Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:56:08.6029770Z [ 31%] 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:56:08.6032730Z [ 31%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:56:08.6035256Z [ 31%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:56:08.6038604Z [ 32%] 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:56:08.6041938Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:56:08.6044499Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:56:08.6046999Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:56:08.6049563Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:56:08.6051983Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:56:08.6055222Z [ 32%] 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:56:08.6059155Z [ 32%] 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:56:08.6062287Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:56:08.6064639Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:56:08.6067889Z [ 32%] 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:56:08.6071735Z [ 32%] 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:56:08.6074665Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:56:08.6077226Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:56:08.6080154Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:56:08.6082565Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:56:08.6084929Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:56:08.6088130Z [ 32%] 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:56:08.6091662Z [ 32%] 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:56:08.6094559Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:56:08.6097785Z [ 32%] 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:56:08.6101459Z [ 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:56:08.6209116Z [ 33%] 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:56:08.6212213Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:56:08.6214607Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:56:08.6216976Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:56:08.6219309Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:56:08.6221529Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:56:08.6224320Z [ 34%] 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:56:08.6227162Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:56:08.6229541Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:56:08.6231822Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:56:08.6234951Z [ 34%] 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:56:08.6238542Z [ 34%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_lib.dir/quantized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:56:08.6241466Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:56:08.6243888Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:56:08.6246432Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:56:08.6248860Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:56:08.6251150Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:56:08.6253418Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:56:08.6255825Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:56:08.6259783Z [ 34%] 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:56:12.8740282Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:56:12.8743713Z [ 34%] 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:56:12.8746046Z [ 34%] Linking CXX static library libquantized_ops_lib.a 2025-06-05T23:56:12.8748556Z [ 34%] 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:56:12.8751448Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:56:12.8752933Z [ 34%] Built target quantized_ops_lib 2025-06-05T23:56:12.8755262Z [ 34%] 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:56:12.8758364Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:56:12.8760960Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:56:12.8763344Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:56:12.8765715Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:56:12.8768046Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:56:12.8770253Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:56:12.8772406Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:56:12.8774574Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:56:12.8777290Z [ 35%] 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:56:12.8780182Z [ 35%] 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:56:12.8783100Z [ 35%] 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:56:12.8785615Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:56:12.8787718Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:56:12.8789871Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:56:12.8791890Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:56:12.8793977Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:56:12.8797084Z [ 35%] 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:56:12.8800812Z [ 35%] 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:56:12.8803935Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:56:12.8807224Z [ 35%] 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:56:12.8810322Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:56:12.8813582Z [ 35%] 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:56:12.8816722Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:56:12.8819101Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:56:12.8821477Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:56:12.8824449Z [ 36%] 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:56:12.8835034Z [ 37%] 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:56:12.8838593Z [ 37%] 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:56:12.8842236Z [ 37%] 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:56:12.8845263Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:56:12.8848384Z [ 37%] 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:56:12.8851454Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:56:12.8854748Z [ 37%] 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:56:12.8857925Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:56:12.8860422Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:56:12.8863629Z [ 37%] 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:56:12.8867296Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o 2025-06-05T23:56:12.8870121Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:56:12.8872502Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:56:12.8875111Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:56:12.8877504Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:56:12.8879705Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:56:12.8882219Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:56:12.8884708Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:56:12.8887173Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:56:12.8889845Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:56:12.8892939Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o 2025-06-05T23:56:12.8896357Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:56:12.8899191Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:56:12.8901847Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:56:12.8906007Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:56:12.8908415Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:56:12.8910750Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:56:12.8913359Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:56:12.8915738Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:56:12.8918126Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:56:12.8921008Z [ 38%] 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:56:12.8924025Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:56:12.8927254Z [ 38%] 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:56:15.7649559Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:56:15.7652675Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:56:15.7655752Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:56:15.7658524Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:56:15.7661300Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:56:15.7664636Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o 2025-06-05T23:56:15.7668319Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2025-06-05T23:56:15.7671414Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:56:15.7674063Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:56:15.7677253Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o 2025-06-05T23:56:15.7680363Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:56:15.7683058Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:56:15.7685900Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:56:15.7688956Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:56:15.7692493Z [ 38%] 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:56:15.7696255Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:56:15.7699667Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2025-06-05T23:56:15.7702760Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:56:15.7708002Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-06-05T23:56:15.7710794Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:56:15.7713363Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:56:15.7716437Z [ 40%] 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:56:15.7719756Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:56:15.7722861Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:56:15.7725762Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:56:15.7728175Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:56:15.7731175Z [ 40%] 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:56:15.7734871Z [ 40%] 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:56:15.7738420Z [ 40%] 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:56:15.7741352Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:56:15.7743767Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:56:15.7746848Z [ 40%] 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:56:15.7749871Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:56:15.7752329Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:56:15.7754845Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:56:15.7757414Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:56:15.7759874Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:56:15.7763036Z [ 41%] 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:56:15.7766174Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:56:15.7769603Z [ 41%] 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:56:15.7772694Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:56:15.7776147Z [ 41%] 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:56:15.7779432Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:56:15.7781854Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:56:15.7784378Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:56:15.7786951Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:56:15.7789639Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:56:15.7792423Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:56:15.7795815Z [ 41%] 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:56:15.7799110Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:56:15.7801630Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:56:15.7807094Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:56:15.7810366Z [ 41%] 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:56:15.7813237Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:56:15.7816501Z [ 41%] 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:56:15.7819703Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:56:15.7822947Z [ 42%] 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:56:15.7826052Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:56:15.7828427Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:56:15.7831484Z [ 42%] 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:56:15.7835243Z [ 42%] 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:56:15.7838454Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:56:15.7841863Z [ 42%] 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:56:17.9838910Z [ 43%] 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:56:17.9842743Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:56:17.9845503Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:56:17.9848302Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:56:17.9852011Z [ 43%] 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:56:17.9855404Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:56:17.9858650Z [ 43%] 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:56:17.9862539Z [ 43%] 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:56:17.9865716Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:56:17.9868099Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:56:17.9870495Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:56:17.9872888Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:56:17.9876207Z [ 43%] 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:56:17.9880323Z [ 43%] 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:56:17.9883570Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:56:17.9886076Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:56:17.9889419Z [ 43%] 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:56:17.9892811Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:56:17.9895395Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:56:17.9898527Z [ 43%] 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:56:17.9902437Z [ 43%] 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:56:17.9907323Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:56:17.9909871Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:56:17.9913130Z [ 43%] 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:56:17.9916608Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:56:17.9919164Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:56:17.9921889Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:56:17.9925415Z [ 43%] 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:56:17.9928725Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:56:17.9932263Z [ 43%] 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:56:17.9935533Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:56:17.9937941Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:56:17.9940840Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:56:17.9943356Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:56:17.9945913Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:56:17.9949047Z [ 45%] 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:56:17.9952344Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:56:17.9955051Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:56:17.9957694Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:56:17.9960323Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:56:17.9963203Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:56:17.9966745Z [ 45%] 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:56:17.9969950Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:56:17.9972564Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:56:17.9975204Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:56:17.9977489Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:56:17.9979885Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:56:17.9983151Z [ 45%] 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:56:17.9986410Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:56:17.9988821Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:56:17.9991064Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:56:17.9993433Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:56:17.9995959Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:56:17.9998728Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:56:18.0002037Z [ 46%] 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:56:18.0005431Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:56:18.0008127Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:56:18.0010488Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:56:18.0012927Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:56:18.0015585Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:56:18.0018135Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:56:18.0021014Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:56:18.0023571Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:56:18.0025957Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:56:20.3537677Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:56:20.3541084Z [ 47%] 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:56:20.3544213Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:56:20.3546597Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:56:20.3549000Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:56:20.3551478Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:56:20.3554386Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:56:20.3556778Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:56:20.3559556Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:56:20.3562015Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:56:20.3564665Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:56:20.3567866Z [ 48%] 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:56:20.3570953Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:56:20.3573664Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:56:20.3576178Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:56:20.3578439Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:56:20.3580888Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:56:20.3583924Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:56:20.3586623Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:56:20.3589052Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:56:20.3591762Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:56:20.3595122Z [ 48%] 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:56:20.3598309Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:56:20.3600721Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:56:20.3603065Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:56:20.3605897Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:56:20.3608357Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:56:20.3610861Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:56:20.3613307Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:56:20.3615797Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:56:20.3618142Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:56:20.3637573Z [ 48%] 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:56:20.3640866Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:56:20.3643427Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:56:20.3645968Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:56:20.3648388Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:56:20.3650820Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:56:20.3653381Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:56:20.3655787Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:56:20.3658158Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:56:20.3660606Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:56:20.3663141Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:56:20.3665748Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:56:20.3668104Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:56:20.3670453Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:56:20.3674001Z [ 50%] 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:56:20.3677392Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:56:20.3680020Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:56:20.3683586Z [ 50%] 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:56:20.3687688Z [ 50%] 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:56:20.3691103Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:56:20.3693965Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:56:20.3697076Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:56:20.3699591Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:56:20.3702196Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:56:20.3705625Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:56:20.3708234Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:56:20.3711360Z [ 50%] 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:56:20.3714216Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:56:20.3716532Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:56:20.3718755Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:56:20.3721665Z [ 50%] 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:56:20.3724915Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:56:20.3727494Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:56:20.3730759Z [ 50%] 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:56:20.3734953Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:56:20.3737510Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:56:20.3740048Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:56:21.9953038Z [ 50%] 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:56:21.9956378Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:56:21.9959626Z [ 50%] 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:56:21.9963451Z [ 50%] 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:56:21.9966642Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:56:21.9969149Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:56:21.9972485Z [ 50%] 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:56:21.9975395Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:56:21.9977780Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:56:21.9980912Z [ 51%] 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:56:21.9984535Z [ 52%] 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:56:21.9987527Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:56:21.9990033Z [ 52%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:56:21.9993173Z [ 52%] 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:56:21.9996105Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:56:21.9999184Z [ 52%] 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:56:22.0002080Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:56:22.0005322Z [ 52%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:56:22.0007838Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:56:22.0010948Z [ 52%] 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:56:22.0014032Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:56:22.0016639Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:56:22.0019791Z [ 53%] 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:56:22.0022910Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:56:22.0026085Z [ 53%] 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:56:22.0029246Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:56:22.0032330Z [ 53%] 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:56:22.0035203Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:56:22.0037964Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:56:22.0041510Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:56:22.0044383Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:56:22.0048078Z [ 53%] 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:56:22.0052839Z [ 53%] 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:56:22.0056247Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:56:22.0058928Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:56:22.0061494Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:56:22.0064983Z [ 53%] 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:56:22.0069637Z [ 53%] 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:56:22.0072509Z [ 53%] Linking CXX static library liboptimized_kernels.a 2025-06-05T23:56:22.0074667Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:56:22.0077298Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:56:22.0079977Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:56:22.0082700Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:56:22.0085861Z [ 53%] 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:56:22.0089537Z [ 53%] 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:56:22.0092788Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:56:22.0095655Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:56:22.0098500Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:56:22.0101784Z [ 53%] 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:56:22.0104999Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:56:22.0106565Z [ 53%] Built target optimized_kernels 2025-06-05T23:56:22.0108349Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:56:22.0111020Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:56:22.0113127Z [ 54%] Generating selected_operators.yaml for optimized_ops_lib 2025-06-05T23:56:22.0115003Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:56:22.0117433Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:56:22.0119976Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:56:22.0122460Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:56:22.0125177Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:56:22.0128344Z [ 54%] 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:56:22.0131414Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:56:22.0134071Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:56:22.0137254Z [ 55%] 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:56:22.0139686Z [ 55%] Generating code for kernel registration 2025-06-05T23:56:23.7048106Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:56:23.7051302Z [ 55%] 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:56:23.7054444Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:56:23.7057188Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:56:23.7060055Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:56:23.7063431Z [ 55%] 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:56:23.7066526Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:56:23.7068941Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:56:23.7071258Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:56:23.7073826Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:56:23.7076555Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:56:23.7079065Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:56:23.7081365Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:56:23.7084325Z [ 56%] 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:56:23.7087960Z [ 56%] 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:56:23.7091137Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:56:23.7093969Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:56:23.7097439Z [ 56%] 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:56:23.7100722Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:56:23.7103149Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:56:23.7106458Z [ 56%] 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:56:23.7109904Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:56:23.7112509Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:56:23.7115002Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:56:23.7117658Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:56:23.7120932Z [ 56%] 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:56:23.7124596Z [ 56%] 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:56:23.7127542Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:56:23.7130441Z [ 57%] 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:56:23.7133971Z [ 57%] 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:56:23.7136996Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:56:23.7139949Z [ 57%] 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:56:23.7142814Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:56:23.7145643Z [ 57%] 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:56:23.7148456Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:56:23.7150699Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:56:23.7153685Z [ 57%] 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:56:23.7157290Z [ 57%] 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:56:23.7159775Z [ 57%] Linking CXX static library liboptimized_portable_kernels.a 2025-06-05T23:56:23.7162400Z [ 58%] 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:56:23.7165901Z [ 58%] 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:56:23.7169382Z [ 58%] 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:56:23.7172332Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:56:23.7174880Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:56:23.7177975Z [ 58%] 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:56:23.7181349Z [ 58%] 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:56:23.7184741Z [ 58%] 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:56:23.7188370Z [ 58%] 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:56:23.7191268Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:56:23.7193616Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:56:23.7196187Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:56:23.7199296Z [ 58%] 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:56:23.7202841Z [ 58%] 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:56:23.7205652Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:56:23.7253831Z [ 58%] 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:56:23.7256687Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:56:23.7259694Z [ 58%] 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:56:23.7262320Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:56:23.7263747Z [ 58%] Built target optimized_portable_kernels 2025-06-05T23:56:23.7264717Z [ 58%] Merging kernel yaml files 2025-06-05T23:56:23.7266878Z [ 58%] 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:56:23.7270037Z [ 58%] 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:56:23.7273255Z [ 58%] 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:56:23.7275804Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:56:23.7277889Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:56:25.3574253Z [ 58%] 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:56:25.3577386Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:56:25.3580342Z [ 59%] 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:56:25.3583217Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:56:25.3586089Z [ 60%] 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:56:25.3588872Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:56:25.3591969Z [ 60%] 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:56:25.3594552Z [ 60%] Generating selected_operators.yaml for optimized_native_cpu_ops_lib 2025-06-05T23:56:25.3597292Z [ 60%] 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:56:25.3600316Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:56:25.3602651Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:56:25.3605471Z [ 60%] 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:56:25.3608444Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:56:25.3611419Z [ 60%] 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:56:25.3614363Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:56:25.3617326Z [ 60%] 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:56:25.3620164Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:56:25.3623099Z [ 60%] 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:56:25.3626707Z [ 60%] 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:56:25.3629675Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:56:25.3632639Z [ 60%] 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:56:25.3635535Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:56:25.3638501Z [ 60%] 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:56:25.3641965Z [ 60%] 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:56:25.3644947Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:56:25.3647588Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:56:25.3649486Z [ 60%] Generating code for kernel registration 2025-06-05T23:56:25.3651903Z [ 60%] 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:56:25.3655389Z [ 60%] 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:56:25.3658363Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:56:25.3660764Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:56:25.3663654Z [ 60%] 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:56:25.3667119Z [ 61%] 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:56:25.3670270Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:56:25.3673377Z [ 61%] 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:56:25.3676487Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:56:25.3679466Z [ 62%] 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:56:25.3682284Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:56:25.3685169Z [ 62%] 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:56:25.3687973Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:56:25.3690998Z [ 62%] 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:56:25.3694230Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:56:25.3697575Z [ 62%] 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:56:25.3700928Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:56:25.3704331Z [ 62%] 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:56:25.3707748Z [ 62%] 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:56:25.3710817Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:56:25.3714185Z [ 62%] 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:56:25.3717248Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:56:25.3720385Z [ 62%] 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:56:25.3723921Z [ 62%] Building CXX object kernels/optimized/CMakeFiles/optimized_ops_lib.dir/optimized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:56:25.3727072Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:56:25.3729684Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:56:25.3732712Z [ 62%] 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:56:25.3736241Z [ 62%] 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:56:25.3739751Z [ 62%] 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:56:25.3743303Z [ 62%] 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:56:25.3746320Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:56:25.3749132Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:56:25.3752230Z [ 62%] 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:56:25.3755320Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:56:25.3757845Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:56:25.3760877Z [ 62%] 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:56:26.5706319Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:56:26.5709398Z [ 63%] 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:56:26.5713222Z [ 63%] 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:56:26.5716569Z [ 63%] 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:56:26.5719156Z [ 63%] Linking CXX static library liboptimized_ops_lib.a 2025-06-05T23:56:26.5721173Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:56:26.5724232Z [ 63%] 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:56:26.5727237Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:56:26.5730375Z [ 63%] 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:56:26.5733838Z [ 63%] 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:56:26.5736004Z [ 63%] Built target optimized_ops_lib 2025-06-05T23:56:26.5738286Z [ 63%] 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:56:26.5741360Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:56:26.5744564Z [ 64%] 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:56:26.5748124Z [ 64%] 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:56:26.5751700Z [ 64%] 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:56:26.5755210Z [ 64%] 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:56:26.5758266Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:56:26.5761119Z [ 64%] 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:56:26.5764061Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:56:26.5767086Z [ 64%] 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:56:26.5770297Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:56:26.5773270Z [ 64%] 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:56:26.5777035Z [ 64%] 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:56:26.5780500Z [ 64%] 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:56:26.5783542Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:56:26.5786737Z [ 65%] 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:56:26.5789707Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:56:26.5792863Z [ 65%] 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:56:26.5795852Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:56:26.5798908Z [ 65%] 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:56:26.5802766Z [ 65%] 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:56:26.5807285Z [ 65%] 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:56:26.5810893Z [ 65%] 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:56:26.5814449Z [ 65%] 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:56:26.5818096Z [ 65%] 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:56:26.5821567Z [ 65%] 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:56:26.5825068Z [ 65%] 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:56:26.5828475Z [ 65%] 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:56:26.5831890Z [ 65%] 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:56:26.5835251Z [ 65%] 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:56:26.5838802Z [ 66%] 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:56:26.5842245Z [ 66%] 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:56:26.5845698Z [ 66%] 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:56:26.5849157Z [ 66%] 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:56:26.5852883Z [ 66%] 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:56:26.5856404Z [ 66%] 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:56:26.5860008Z [ 66%] 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:56:26.5863433Z [ 66%] 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:56:26.5866878Z [ 66%] 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:56:26.5870109Z [ 66%] 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:56:26.5872573Z [ 66%] Linking CXX static library libportable_kernels.a 2025-06-05T23:56:26.5875194Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx512f.c.o 2025-06-05T23:56:26.5878828Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-06-05T23:56:26.5882385Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx.c.o 2025-06-05T23:56:26.5885897Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-sse2.c.o 2025-06-05T23:56:26.5889464Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx.c.o 2025-06-05T23:56:26.5893042Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx512f.c.o 2025-06-05T23:56:26.5896770Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-06-05T23:56:27.5300220Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-sse2.c.o 2025-06-05T23:56:27.5304057Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx.c.o 2025-06-05T23:56:27.5307643Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx512f.c.o 2025-06-05T23:56:27.5311237Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-sse2.c.o 2025-06-05T23:56:27.5314861Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-06-05T23:56:27.5318569Z [ 67%] 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:56:27.5322364Z [ 67%] 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:56:27.5326034Z [ 67%] 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:56:27.5329695Z [ 67%] 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:56:27.5333652Z [ 67%] 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:56:27.5337453Z [ 67%] 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:56:27.5341286Z [ 67%] 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:56:27.5343190Z [ 67%] Built target portable_kernels 2025-06-05T23:56:27.5345644Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-avx512f-rational-12-10-nr.c.o 2025-06-05T23:56:27.5349419Z [ 67%] 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:56:27.5353228Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-fma3-rational-12-10-div.c.o 2025-06-05T23:56:27.5357189Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-06-05T23:56:27.5360920Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-avx-u16.c.o 2025-06-05T23:56:27.5364895Z [ 68%] 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:56:27.5368576Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_ops_lib.dir/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:56:27.5372144Z [ 68%] 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:56:27.5375789Z [ 68%] 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:56:27.5379304Z [ 68%] 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:56:27.5382803Z [ 68%] 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:56:27.5386415Z [ 68%] 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:56:27.5390142Z [ 68%] 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:56:27.5393865Z [ 68%] 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:56:27.5397694Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-sse2-rational-3-3-div.c.o 2025-06-05T23:56:27.5401317Z [ 68%] 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:56:27.5406581Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-avx512f-u16.c.o 2025-06-05T23:56:27.5410102Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-avx-u16.c.o 2025-06-05T23:56:27.5413557Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2025-06-05T23:56:27.5417308Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-sse-u8.c.o 2025-06-05T23:56:27.5420746Z [ 69%] 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:56:27.5424578Z [ 69%] 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:56:27.5428415Z [ 69%] 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:56:27.5440447Z [ 69%] 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:56:27.5442954Z [ 69%] Linking CXX static library libportable_ops_lib.a 2025-06-05T23:56:27.5445368Z [ 69%] 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:56:27.5448982Z [ 69%] 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:56:27.5452541Z [ 69%] 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:56:27.5456248Z [ 69%] 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:56:27.5459663Z [ 69%] 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:56:27.5463034Z [ 69%] 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:56:27.5466443Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-avx-u16.c.o 2025-06-05T23:56:27.5469906Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-avx512f-u16.c.o 2025-06-05T23:56:27.5471938Z [ 69%] Built target portable_ops_lib 2025-06-05T23:56:27.5474270Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u1.c.o 2025-06-05T23:56:27.5477883Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u4.c.o 2025-06-05T23:56:27.5481339Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-sse2-u8.c.o 2025-06-05T23:56:27.5484742Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-avx-u16.c.o 2025-06-05T23:56:27.5488066Z [ 70%] 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:56:27.5491542Z [ 70%] 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:56:27.5495148Z [ 70%] 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:56:27.5498751Z [ 70%] 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:56:27.5502218Z [ 70%] 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:56:28.3815076Z [ 70%] 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:56:28.3818532Z [ 70%] 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:56:28.3822285Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-avx512f-u16.c.o 2025-06-05T23:56:28.3829145Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u1.c.o 2025-06-05T23:56:28.3832842Z [ 70%] 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:56:28.3836252Z [ 70%] 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:56:28.3839594Z [ 70%] 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:56:28.3843281Z [ 70%] 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:56:28.3846967Z [ 70%] 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:56:28.3850385Z [ 70%] 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:56:28.3853917Z [ 70%] 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:56:28.3857612Z [ 70%] 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:56:28.3861308Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u1.c.o 2025-06-05T23:56:28.3864805Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-u40.c.o 2025-06-05T23:56:28.3868575Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-u40.c.o 2025-06-05T23:56:28.3872743Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u64.c.o 2025-06-05T23:56:28.3876788Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u2.c.o 2025-06-05T23:56:28.3880497Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-u8.c.o 2025-06-05T23:56:28.3883882Z [ 71%] 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:56:28.3887333Z [ 71%] 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:56:28.3891157Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-u8.c.o 2025-06-05T23:56:28.3895000Z [ 71%] 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:56:28.3898839Z [ 71%] 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:56:28.3902769Z [ 71%] 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:56:28.3908079Z [ 71%] 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:56:28.3911868Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-avx512f-rational-9-8-nr.c.o 2025-06-05T23:56:28.3915692Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-fma3-rational-9-8-div.c.o 2025-06-05T23:56:28.3919454Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-scalar-rational-9-8-div.c.o 2025-06-05T23:56:28.3923257Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-sse2-rational-9-8-div.c.o 2025-06-05T23:56:28.3926868Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-avx.c.o 2025-06-05T23:56:28.3930172Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-avx512f.c.o 2025-06-05T23:56:28.3933492Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-scalar.c.o 2025-06-05T23:56:28.3936858Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-sse2.c.o 2025-06-05T23:56:28.3940534Z [ 73%] Building CXX object configurations/CMakeFiles/optimized_native_cpu_ops_lib.dir/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:56:28.3944163Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-avx.c.o 2025-06-05T23:56:28.3947472Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-scalar.c.o 2025-06-05T23:56:28.3950823Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-avx512f.c.o 2025-06-05T23:56:28.3954120Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-sse2.c.o 2025-06-05T23:56:28.3957418Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-avx.c.o 2025-06-05T23:56:28.3960708Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-avx512f.c.o 2025-06-05T23:56:28.3964086Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-scalar.c.o 2025-06-05T23:56:28.3967403Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-sse2.c.o 2025-06-05T23:56:28.3971137Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:56:28.3975310Z [ 74%] 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:56:28.3979562Z [ 74%] 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:56:28.3984073Z [ 74%] 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:56:28.3988180Z [ 74%] 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:56:28.3992389Z [ 74%] 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:56:28.3996689Z [ 74%] 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:56:28.4000765Z [ 74%] 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:56:28.4004890Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:56:28.4009045Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:56:29.2642742Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-sse41-ld128.c.o 2025-06-05T23:56:29.2646968Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:56:29.2651140Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-avx-ld128.c.o 2025-06-05T23:56:29.2655467Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:56:29.2658395Z [ 74%] Linking CXX static library liboptimized_native_cpu_ops_lib.a 2025-06-05T23:56:29.2661456Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x4c8-minmax-sse41-ld128.c.o 2025-06-05T23:56:29.2665646Z [ 75%] 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:56:29.2668001Z [ 75%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:56:29.2670684Z [ 75%] 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:56:29.2674837Z [ 75%] 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:56:29.2679118Z [ 75%] 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:56:29.2683487Z [ 75%] 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:56:29.2687935Z [ 75%] 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:56:29.2692421Z [ 75%] 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:56:29.2697033Z [ 75%] 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:56:29.2701219Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:56:29.2705958Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4c8-minmax-ssse3-madd.c.o 2025-06-05T23:56:29.2710314Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:56:29.2714554Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:56:29.2718701Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:56:29.2722984Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4c8-minmax-ssse3-madd.c.o 2025-06-05T23:56:29.2727283Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:56:29.2731566Z [ 76%] 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:56:29.2735984Z [ 76%] 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:56:29.2740429Z [ 76%] 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:56:29.2744706Z [ 76%] 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:56:29.2748846Z [ 76%] 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:56:29.2753243Z [ 76%] 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:56:29.2757474Z [ 76%] 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:56:29.2761644Z [ 76%] 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:56:29.2765890Z [ 76%] 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:56:29.2770062Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:56:29.2774148Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x2-minmax-scalar.c.o 2025-06-05T23:56:29.2778205Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:56:29.2782553Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:56:29.2786770Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:56:29.2791076Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8c8-minmax-avx2.c.o 2025-06-05T23:56:29.2795233Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-8x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:56:29.2799662Z [ 77%] 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:56:29.2804230Z [ 77%] 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:56:29.2808494Z [ 77%] 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:56:29.2812647Z [ 77%] 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:56:29.2816688Z [ 77%] 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:56:29.2821055Z [ 77%] 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:56:29.2825168Z [ 77%] 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:56:29.2829408Z [ 77%] 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:56:29.2833511Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x2-minmax-scalar.c.o 2025-06-05T23:56:29.9649173Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4-minmax-scalar.c.o 2025-06-05T23:56:29.9653304Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:56:29.9657558Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:56:29.9661885Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8c8-minmax-avx2.c.o 2025-06-05T23:56:29.9666087Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:56:29.9670367Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:56:29.9674640Z [ 78%] 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:56:29.9678992Z [ 78%] 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:56:29.9683167Z [ 78%] 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:56:29.9687513Z [ 78%] 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:56:29.9691742Z [ 78%] 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:56:29.9696046Z [ 78%] 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:56:29.9700309Z [ 78%] 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:56:29.9704815Z [ 78%] 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:56:29.9708979Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:56:29.9713088Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:56:29.9717262Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:29.9721388Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:56:29.9725556Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:29.9729737Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.o 2025-06-05T23:56:29.9733918Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.o 2025-06-05T23:56:29.9737931Z [ 79%] 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:56:29.9741511Z [ 79%] 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:56:29.9745104Z [ 79%] 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:56:29.9748860Z [ 79%] 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:56:29.9752384Z [ 79%] 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:56:29.9755980Z [ 79%] 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:56:29.9759576Z [ 79%] 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:56:29.9763294Z [ 79%] 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:56:29.9767014Z [ 79%] 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:56:29.9770950Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-goi-scalar.c.o 2025-06-05T23:56:29.9775266Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:56:29.9779725Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:56:29.9784121Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:56:29.9788486Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:29.9792768Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:29.9797251Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:56:29.9801471Z [ 80%] 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:56:29.9805745Z [ 80%] 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:56:29.9809943Z [ 80%] 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:56:29.9813953Z [ 80%] 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:56:29.9818119Z [ 80%] 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:56:29.9822199Z [ 80%] 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:56:29.9826324Z [ 80%] 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:56:29.9830431Z [ 80%] 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:56:29.9834538Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:56:29.9838748Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:56:30.7847324Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:56:30.7852013Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:56:30.7856495Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:30.7861066Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:56:30.7865494Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:30.7869911Z [ 81%] 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:56:30.7874330Z [ 81%] 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:56:30.7878745Z [ 81%] 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:56:30.7883101Z [ 81%] 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:56:30.7887456Z [ 81%] 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:56:30.7891753Z [ 81%] 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:56:30.7895929Z [ 81%] 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:56:30.7899849Z [ 81%] 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:56:30.7906887Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:56:30.7911259Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:56:30.7915387Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:56:30.7919172Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:30.7923104Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:56:30.7926837Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:56:30.7930773Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:30.7934775Z [ 82%] 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:56:30.7938998Z [ 82%] 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:56:30.7943391Z [ 82%] 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:56:30.7947763Z [ 82%] 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:56:30.7951468Z [ 82%] 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:56:30.7955099Z [ 82%] 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:56:30.7958813Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:30.7962583Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:30.7966420Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:56:30.7970658Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:56:30.7974939Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:56:30.7978838Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:56:30.7983060Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:30.7987269Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:56:30.7991515Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:30.7995729Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:56:30.7999786Z [ 83%] 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:56:30.8004019Z [ 83%] 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:56:30.8007847Z [ 83%] 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:56:30.8011939Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:56:30.8016192Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x16c8-gemm-goi-scalar.c.o 2025-06-05T23:56:30.8020208Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-avx512skx-c64.c.o 2025-06-05T23:56:30.8024346Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-avx2-c64.c.o 2025-06-05T23:56:30.8028345Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-sse41-c64.c.o 2025-06-05T23:56:30.8032253Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.o 2025-06-05T23:56:30.8035738Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx2-u64-acc2.c.o 2025-06-05T23:56:30.8039095Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u4.c.o 2025-06-05T23:56:31.4994934Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx512vnni-u128-acc2.c.o 2025-06-05T23:56:31.4998826Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx512skx-u128-acc2.c.o 2025-06-05T23:56:31.5002274Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-ssse3-u32-acc2.c.o 2025-06-05T23:56:31.5005924Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:56:31.5009419Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u1.c.o 2025-06-05T23:56:31.5012954Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:56:31.5017077Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:56:31.5020942Z [ 84%] 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:56:31.5024564Z [ 84%] 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:56:31.5028150Z [ 84%] 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:56:31.5031580Z [ 84%] 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:56:31.5034923Z [ 84%] 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:56:31.5038362Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u1.c.o 2025-06-05T23:56:31.5042164Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:56:31.5045853Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u4.c.o 2025-06-05T23:56:31.5049462Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:56:31.5052917Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-avx-u32.c.o 2025-06-05T23:56:31.5056614Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:56:31.5060151Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-avx2-u32.c.o 2025-06-05T23:56:31.5063700Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u1.c.o 2025-06-05T23:56:31.5067073Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u4.c.o 2025-06-05T23:56:31.5070321Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-sse2-u32.c.o 2025-06-05T23:56:31.5073531Z [ 85%] 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:56:31.5076845Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-sse41-u32.c.o 2025-06-05T23:56:31.5080171Z [ 85%] 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:56:31.5083585Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u4.c.o 2025-06-05T23:56:31.5086956Z [ 85%] 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:56:31.5090249Z [ 85%] 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:56:31.5093654Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse2-u32.c.o 2025-06-05T23:56:31.5097023Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse41-u32.c.o 2025-06-05T23:56:31.5100202Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-ssse3-u32.c.o 2025-06-05T23:56:31.5103905Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:56:31.5107443Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u4.c.o 2025-06-05T23:56:31.5111063Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:56:31.5114866Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:56:31.5117188Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u4.c.o 2025-06-05T23:56:31.5119193Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:56:31.5121331Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:56:31.5125132Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:56:31.5129439Z [ 86%] 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:56:31.5133439Z [ 86%] 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:56:31.5137579Z [ 86%] 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:56:31.5141325Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.o 2025-06-05T23:56:31.5145025Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-sse2-c8.c.o 2025-06-05T23:56:31.5148782Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:56:31.5153396Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:31.5157484Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:56:31.5161507Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:31.5165599Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:56:31.5169641Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:56:31.5173474Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:56:32.2887567Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:56:32.2891598Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.o 2025-06-05T23:56:32.2895667Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:32.2899721Z [ 87%] 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:56:32.2904750Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:56:32.2908917Z [ 87%] 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:56:32.2912910Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:56:32.2916716Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-u32.c.o 2025-06-05T23:56:32.2920228Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:56:32.2924198Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u1.c.o 2025-06-05T23:56:32.2939852Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-u32.c.o 2025-06-05T23:56:32.2944336Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-u16.c.o 2025-06-05T23:56:32.2947659Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u4.c.o 2025-06-05T23:56:32.2950917Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-u32.c.o 2025-06-05T23:56:32.2954132Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-u16.c.o 2025-06-05T23:56:32.2957844Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:56:32.2961679Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:32.2965350Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:32.2969087Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:56:32.2972875Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:56:32.2976794Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:56:32.2980598Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:56:32.2984351Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:56:32.2988070Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:32.2991820Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:32.2995743Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:56:32.2999629Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:56:32.3003464Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:56:32.3007710Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:56:32.3011599Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:56:32.3015745Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:32.3019718Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:32.3023783Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:56:32.3027458Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:56:32.3031129Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:56:32.3034737Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:56:32.3038485Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:32.3042260Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:56:32.3045961Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:32.3049889Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:56:32.3053817Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:56:32.3057821Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:56:32.3061773Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:56:32.3065612Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-ssse3-c64.c.o 2025-06-05T23:56:32.3069117Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-avx2-u64-acc2.c.o 2025-06-05T23:56:32.3072326Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u4.c.o 2025-06-05T23:56:32.3075575Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-scalar.c.o 2025-06-05T23:56:32.3079034Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-sse2-u32-acc2.c.o 2025-06-05T23:56:32.3082716Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:56:32.3086572Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:56:32.9761540Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:56:32.9765193Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u1.c.o 2025-06-05T23:56:32.9768631Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u4.c.o 2025-06-05T23:56:32.9772052Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:56:32.9775751Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:56:32.9779146Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:56:32.9782626Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:56:32.9786099Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:56:32.9789591Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2025-06-05T23:56:32.9793002Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u1.c.o 2025-06-05T23:56:32.9796506Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:56:32.9800197Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:56:32.9804018Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-avx-u32.c.o 2025-06-05T23:56:32.9807139Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u4.c.o 2025-06-05T23:56:32.9810900Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-sse2-u32.c.o 2025-06-05T23:56:32.9814478Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-avx2-u32.c.o 2025-06-05T23:56:32.9818150Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u1.c.o 2025-06-05T23:56:32.9821576Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-sse41-u32.c.o 2025-06-05T23:56:32.9825025Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-ssse3-u32.c.o 2025-06-05T23:56:32.9828433Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u4.c.o 2025-06-05T23:56:32.9832243Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx2-u32.c.o 2025-06-05T23:56:32.9836026Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u4.c.o 2025-06-05T23:56:32.9849368Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx-u32.c.o 2025-06-05T23:56:32.9853047Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse2-u32.c.o 2025-06-05T23:56:32.9856876Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse41-u32.c.o 2025-06-05T23:56:32.9862028Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-ssse3-u32.c.o 2025-06-05T23:56:32.9865480Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u4.c.o 2025-06-05T23:56:32.9869343Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:56:32.9872143Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:56:32.9875852Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:56:32.9879710Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:56:32.9883616Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u4.c.o 2025-06-05T23:56:32.9887418Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:56:32.9891236Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:56:32.9894908Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-avx2.c.o 2025-06-05T23:56:32.9898080Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-avx512f.c.o 2025-06-05T23:56:32.9901246Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-scalar.c.o 2025-06-05T23:56:32.9904571Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o 2025-06-05T23:56:32.9907854Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-sse41-c16.c.o 2025-06-05T23:56:32.9911170Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:56:32.9914432Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-sse2-c8.c.o 2025-06-05T23:56:32.9917701Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse2-c16.c.o 2025-06-05T23:56:32.9921034Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse41-c16.c.o 2025-06-05T23:56:32.9924303Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-avx512skx-u256.c.o 2025-06-05T23:56:32.9927508Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-scalar-u4.c.o 2025-06-05T23:56:32.9930709Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-avx2-u128.c.o 2025-06-05T23:56:32.9933826Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-sse2-u64.c.o 2025-06-05T23:56:32.9937299Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-sse41-u64.c.o 2025-06-05T23:56:32.9940623Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o 2025-06-05T23:56:32.9944261Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-sse41-c16.c.o 2025-06-05T23:56:32.9947694Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-sse2-c8.c.o 2025-06-05T23:56:32.9951138Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:56:32.9954465Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2025-06-05T23:56:33.6423488Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-sse2-c16.c.o 2025-06-05T23:56:33.6427100Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-scalar-u2.c.o 2025-06-05T23:56:33.6429990Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-sse2-u16.c.o 2025-06-05T23:56:33.6433359Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-avx2-u128.c.o 2025-06-05T23:56:33.6436807Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-avx512skx-u256.c.o 2025-06-05T23:56:33.6440228Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2025-06-05T23:56:33.6443712Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-sse2-u64.c.o 2025-06-05T23:56:33.6447151Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x64-gemm-goi-scalar-int-u4.c.o 2025-06-05T23:56:33.6450295Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-avx2-u16-prfm.c.o 2025-06-05T23:56:33.6454235Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-16x16-reuse-switch-avx2.c.o 2025-06-05T23:56:33.6457725Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o 2025-06-05T23:56:33.6461049Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-sse2.c.o 2025-06-05T23:56:33.6464762Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o 2025-06-05T23:56:33.6467768Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-4x4-ssse3.c.o 2025-06-05T23:56:33.6471018Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-avx-u4.c.o 2025-06-05T23:56:33.6474498Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16s4-gemm-goi-avx-u4.c.o 2025-06-05T23:56:33.6477497Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x32-gemm-goi-avx512f-u4-prfm.c.o 2025-06-05T23:56:33.6480915Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x4-gemm-goi-scalar-float-u4.c.o 2025-06-05T23:56:33.6484013Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2c4-gemm-goi-sse2-u4.c.o 2025-06-05T23:56:33.6487759Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-scalar-float-u4.c.o 2025-06-05T23:56:33.6491116Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-sse2-u4.c.o 2025-06-05T23:56:33.6494415Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-8x8-reuse-multi-avx.c.o 2025-06-05T23:56:33.6497921Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o 2025-06-05T23:56:33.6501159Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/x32-transposec-4x4-sse.c.o 2025-06-05T23:56:33.6504855Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-06-05T23:56:33.6507550Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-sse2.c.o 2025-06-05T23:56:33.6510412Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-scalar.c.o 2025-06-05T23:56:33.6513504Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-sse2.c.o 2025-06-05T23:56:33.6516621Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-sse2.c.o 2025-06-05T23:56:33.6519735Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-scalar.c.o 2025-06-05T23:56:33.6522701Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-scalar.c.o 2025-06-05T23:56:33.6525849Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-sse2.c.o 2025-06-05T23:56:33.6528643Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-scalar.c.o 2025-06-05T23:56:33.6531408Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-sse2.c.o 2025-06-05T23:56:33.6534996Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-sse2.c.o 2025-06-05T23:56:33.6538754Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o 2025-06-05T23:56:33.6542488Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x4-reuse-multi-avx.c.o 2025-06-05T23:56:33.6545802Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx2-u128.c.o 2025-06-05T23:56:33.6548910Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx-u64.c.o 2025-06-05T23:56:33.6552102Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-u64.c.o 2025-06-05T23:56:33.6555831Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-u128.c.o 2025-06-05T23:56:33.6559105Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-scalar-u4.c.o 2025-06-05T23:56:33.6562987Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-scalar-f32qp8-u1.c.o 2025-06-05T23:56:33.6566505Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u2.c.o 2025-06-05T23:56:33.6570055Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u2.c.o 2025-06-05T23:56:33.6573572Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u2.c.o 2025-06-05T23:56:33.6577378Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u2.c.o 2025-06-05T23:56:33.6580944Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o 2025-06-05T23:56:33.6584612Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-sse2.c.o 2025-06-05T23:56:33.6588407Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-32x32-reuse-switch-avx2.c.o 2025-06-05T23:56:33.6591831Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-scalar.c.o 2025-06-05T23:56:33.6594849Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-sse2.c.o 2025-06-05T23:56:33.6597625Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-scalar.c.o 2025-06-05T23:56:33.6600549Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-sse2.c.o 2025-06-05T23:56:35.5153390Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-scalar.c.o 2025-06-05T23:56:35.5156597Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-sse2.c.o 2025-06-05T23:56:35.5159502Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-sse2.c.o 2025-06-05T23:56:35.5162637Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-scalar.c.o 2025-06-05T23:56:35.5165845Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o 2025-06-05T23:56:35.5168733Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-scalar-u16.c.o 2025-06-05T23:56:35.5171056Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-sse2-u64.c.o 2025-06-05T23:56:35.5174221Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p4-scalar-u16.c.o 2025-06-05T23:56:35.5177489Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p16-sse2-u16.c.o 2025-06-05T23:56:35.5180626Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-06-05T23:56:35.5182676Z [ 98%] 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:56:35.5185665Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-06-05T23:56:35.5188736Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-06-05T23:56:35.5191904Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-06-05T23:56:35.5195012Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-06-05T23:56:35.5198234Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-06-05T23:56:35.5201688Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-06-05T23:56:35.5205144Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-06-05T23:56:35.5208056Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-06-05T23:56:35.5210097Z [ 98%] Linking C static library libmicrokernels-prod.a 2025-06-05T23:56:35.5211126Z [ 98%] Built target microkernels-prod 2025-06-05T23:56:35.5212151Z [ 98%] Generating build_identifier.c 2025-06-05T23:56:35.5214194Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-06-05T23:56:35.5217230Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-06-05T23:56:35.5219593Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-06-05T23:56:35.5221318Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-06-05T23:56:35.5223855Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-06-05T23:56:35.5226619Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-06-05T23:56:35.5229508Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-06-05T23:56:35.5232470Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-06-05T23:56:35.5235238Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-06-05T23:56:35.5237965Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-06-05T23:56:35.5240798Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-06-05T23:56:35.5243569Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-06-05T23:56:35.5246382Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-06-05T23:56:35.5249200Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-06-05T23:56:35.5251103Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-06-05T23:56:35.5252742Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-06-05T23:56:35.5254293Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-06-05T23:56:35.5255970Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-06-05T23:56:35.5257406Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-06-05T23:56:35.5258852Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-06-05T23:56:35.5260416Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-06-05T23:56:35.5261941Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-06-05T23:56:35.5263451Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-06-05T23:56:35.5264929Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-06-05T23:56:35.5266371Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-06-05T23:56:35.5267707Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-06-05T23:56:35.5269024Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-06-05T23:56:35.5270444Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-06-05T23:56:35.5271744Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-06-05T23:56:35.5273034Z [100%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-06-05T23:56:35.5273998Z [100%] Linking CXX static library libXNNPACK.a 2025-06-05T23:56:35.5274518Z [100%] Built target XNNPACK 2025-06-05T23:56:35.5275604Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNCompiler.cpp.o 2025-06-05T23:56:35.5277678Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNExecutor.cpp.o 2025-06-05T23:56:35.5279685Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNHeader.cpp.o 2025-06-05T23:56:35.5282009Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/profiling/XNNProfiler.cpp.o 2025-06-05T23:56:35.5284265Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNPACKBackend.cpp.o 2025-06-05T23:56:35.5286446Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNWeightsCache.cpp.o 2025-06-05T23:56:35.5287906Z [100%] Linking CXX static library libxnnpack_backend.a 2025-06-05T23:56:35.5288706Z [100%] Built target xnnpack_backend 2025-06-05T23:56:35.5289930Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_fallback.cpp.o 2025-06-05T23:56:35.5291956Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_fast_hadamard_transform.cpp.o 2025-06-05T23:56:35.5293889Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_update_cache.cpp.o 2025-06-05T23:56:35.5295831Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_sdpa.cpp.o 2025-06-05T23:56:35.5297853Z [100%] Building C object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/spinquant/third-party/FFHT/fht_avx.c.o 2025-06-05T23:56:35.5300007Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/spinquant/fast_hadamard_transform.cpp.o 2025-06-05T23:56:35.5301477Z [100%] Linking CXX static library libcustom_ops.a 2025-06-05T23:56:35.5302293Z [100%] Built target custom_ops 2025-06-05T23:56:36.3696589Z [100%] Building CXX object CMakeFiles/executor_runner.dir/examples/portable/executor_runner/executor_runner.cpp.o 2025-06-05T23:56:36.3698130Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/data_loader/file_data_loader.cpp.o 2025-06-05T23:56:36.3699462Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:56:36.3701048Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs.cpp.o 2025-06-05T23:56:36.3702760Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs_portable.cpp.o 2025-06-05T23:56:36.3705144Z [100%] Building CXX object CMakeFiles/executor_runner.dir/runtime/executor/test/test_backend_compiler_lib.cpp.o 2025-06-05T23:56:36.3706534Z [100%] Linking CXX executable executor_runner 2025-06-05T23:56:36.3707174Z [100%] Built target executor_runner 2025-06-05T23:56:36.3707895Z Install the project... 2025-06-05T23:56:36.3708438Z -- Install configuration: "Release" 2025-06-05T23:56:36.3709369Z -- Installing: /pytorch/executorch/cmake-out/lib/libflatccrt.a 2025-06-05T23:56:36.3710358Z -- Installing: /pytorch/executorch/cmake-out/include/fxdiv.h 2025-06-05T23:56:36.3711452Z -- Installing: /pytorch/executorch/cmake-out/share/cpuinfo/cpuinfo-config.cmake 2025-06-05T23:56:36.3712542Z -- Installing: /pytorch/executorch/cmake-out/lib/libcpuinfo.a 2025-06-05T23:56:36.3713229Z -- Installing: /pytorch/executorch/cmake-out/include/cpuinfo.h 2025-06-05T23:56:36.3714195Z -- Installing: /pytorch/executorch/cmake-out/share/cpuinfo/cpuinfo-targets.cmake 2025-06-05T23:56:36.3715309Z -- Installing: /pytorch/executorch/cmake-out/share/cpuinfo/cpuinfo-targets-release.cmake 2025-06-05T23:56:36.3716479Z -- Installing: /pytorch/executorch/cmake-out/lib/pkgconfig/libcpuinfo.pc 2025-06-05T23:56:36.3717541Z -- Installing: /pytorch/executorch/cmake-out/include/pthreadpool.h 2025-06-05T23:56:36.3718590Z -- Installing: /pytorch/executorch/cmake-out/lib/libpthreadpool.a 2025-06-05T23:56:36.3719710Z -- Installing: /pytorch/executorch/cmake-out/lib/liboptimized_portable_kernels.a 2025-06-05T23:56:36.3720754Z -- Installing: /pytorch/executorch/cmake-out/lib/libportable_kernels.a 2025-06-05T23:56:36.3721794Z -- Installing: /pytorch/executorch/cmake-out/lib/libportable_ops_lib.a 2025-06-05T23:56:36.3722936Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/portable/Functions.h 2025-06-05T23:56:36.3724358Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/portable/NativeFunctions.h 2025-06-05T23:56:36.3725669Z -- Installing: /pytorch/executorch/cmake-out/lib/libeigen_blas.a 2025-06-05T23:56:36.3726654Z -- Installing: /pytorch/executorch/cmake-out/lib/libcpublas.a 2025-06-05T23:56:36.3727693Z -- Installing: /pytorch/executorch/cmake-out/lib/liboptimized_kernels.a 2025-06-05T23:56:36.3728904Z -- Installing: /pytorch/executorch/cmake-out/lib/liboptimized_ops_lib.a 2025-06-05T23:56:36.3729880Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/optimized/Functions.h 2025-06-05T23:56:36.3731519Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/optimized/NativeFunctions.h 2025-06-05T23:56:36.3732769Z -- Up-to-date: /pytorch/executorch/cmake-out/lib/libcpublas.a 2025-06-05T23:56:36.3733832Z -- Installing: /pytorch/executorch/cmake-out/lib/liboptimized_native_cpu_ops_lib.a 2025-06-05T23:56:36.3734938Z -- Installing: /pytorch/executorch/cmake-out/lib/Functions.h 2025-06-05T23:56:36.3736022Z -- Installing: /pytorch/executorch/cmake-out/lib/NativeFunctions.h 2025-06-05T23:56:36.3737077Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core 2025-06-05T23:56:36.3738388Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/array_ref.h 2025-06-05T23:56:36.3739619Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/data_loader.h 2025-06-05T23:56:36.3741016Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/defines.h 2025-06-05T23:56:36.3742003Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/error.h 2025-06-05T23:56:36.3743083Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/evalue.h 2025-06-05T23:56:36.3744152Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer.h 2025-06-05T23:56:36.3745412Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer_hooks.h 2025-06-05T23:56:36.3749622Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer_hooks_delegate.h 2025-06-05T23:56:36.3751128Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten 2025-06-05T23:56:36.3752528Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/exec_aten.h 2025-06-05T23:56:36.3753871Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:56:36.3755300Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h 2025-06-05T23:56:36.3756830Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h 2025-06-05T23:56:36.3758270Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/test 2025-06-05T23:56:36.3759574Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:56:36.3760939Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/dim_order_util.h 2025-06-05T23:56:36.3762569Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h 2025-06-05T23:56:36.3764029Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h 2025-06-05T23:56:36.3765439Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h 2025-06-05T23:56:36.3766923Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_util.h 2025-06-05T23:56:36.3768334Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/test 2025-06-05T23:56:36.3769507Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/freeable_buffer.h 2025-06-05T23:56:36.3770600Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/function_ref.h 2025-06-05T23:56:36.3771673Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/hierarchical_allocator.h 2025-06-05T23:56:36.3772775Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/memory_allocator.h 2025-06-05T23:56:36.3773849Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/named_data_map.h 2025-06-05T23:56:36.3775085Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type 2025-06-05T23:56:36.3776364Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bfloat16.h 2025-06-05T23:56:36.3777736Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bfloat16_math.h 2025-06-05T23:56:36.3779090Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bits_types.h 2025-06-05T23:56:36.3780424Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10 2025-06-05T23:56:36.3781739Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10 2025-06-05T23:56:36.3782879Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:56:36.3784163Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h 2025-06-05T23:56:36.3785556Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h 2025-06-05T23:56:36.3786856Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:56:36.3788118Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h 2025-06-05T23:56:36.3789719Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h 2025-06-05T23:56:36.3791134Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h 2025-06-05T23:56:36.3792507Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h 2025-06-05T23:56:36.3793910Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h 2025-06-05T23:56:36.3795218Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h 2025-06-05T23:56:36.3796661Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h 2025-06-05T23:56:36.3797957Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h 2025-06-05T23:56:36.3799258Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h 2025-06-05T23:56:36.3800696Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h 2025-06-05T23:56:36.3802341Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h 2025-06-05T23:56:36.3804115Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h 2025-06-05T23:56:36.3805316Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/complex.h 2025-06-05T23:56:36.3806486Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/device.h 2025-06-05T23:56:36.3807576Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/half.h 2025-06-05T23:56:36.9512531Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/optional.h 2025-06-05T23:56:36.9513839Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/qint_types.h 2025-06-05T23:56:36.9515000Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/scalar.h 2025-06-05T23:56:36.9516161Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/scalar_type.h 2025-06-05T23:56:36.9517321Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/string_view.h 2025-06-05T23:56:36.9518460Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor.h 2025-06-05T23:56:36.9519580Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor_impl.h 2025-06-05T23:56:36.9520768Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor_options.h 2025-06-05T23:56:36.9521886Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/test 2025-06-05T23:56:36.9523047Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/result.h 2025-06-05T23:56:36.9523960Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/span.h 2025-06-05T23:56:36.9524860Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tag.h 2025-06-05T23:56:36.9525847Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tensor_layout.h 2025-06-05T23:56:36.9526909Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tensor_shape_dynamism.h 2025-06-05T23:56:36.9527897Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/test 2025-06-05T23:56:36.9528761Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel 2025-06-05T23:56:36.9529698Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/kernel_includes.h 2025-06-05T23:56:36.9530809Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/kernel_runtime_context.h 2025-06-05T23:56:36.9532015Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/operator_registry.h 2025-06-05T23:56:36.9533079Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/test 2025-06-05T23:56:36.9534039Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/test/test_util.h 2025-06-05T23:56:36.9535272Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/thread_parallel_interface.h 2025-06-05T23:56:36.9536301Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform 2025-06-05T23:56:36.9537218Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/abort.h 2025-06-05T23:56:36.9538176Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/assert.h 2025-06-05T23:56:36.9539151Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/clock.h 2025-06-05T23:56:36.9540199Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/compat_unistd.h 2025-06-05T23:56:36.9541225Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/compiler.h 2025-06-05T23:56:36.9542210Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/default 2025-06-05T23:56:36.9543148Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/log.h 2025-06-05T23:56:36.9544118Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/platform.h 2025-06-05T23:56:36.9545100Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/profiler.h 2025-06-05T23:56:36.9546205Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/runtime.h 2025-06-05T23:56:36.9547179Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/system.h 2025-06-05T23:56:36.9548140Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test 2025-06-05T23:56:36.9549117Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test/pal_spy.h 2025-06-05T23:56:36.9550217Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test/stub_platform.h 2025-06-05T23:56:36.9551255Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/types.h 2025-06-05T23:56:36.9552200Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util 2025-06-05T23:56:36.9553334Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h 2025-06-05T23:56:36.9554595Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/meta_programming.h 2025-06-05T23:56:36.9555655Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/test 2025-06-05T23:56:36.9556920Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/type_list.h 2025-06-05T23:56:36.9557914Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor 2025-06-05T23:56:36.9558830Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor.h 2025-06-05T23:56:36.9559872Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_accessor.h 2025-06-05T23:56:36.9560972Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_ptr.h 2025-06-05T23:56:36.9562042Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_ptr_maker.h 2025-06-05T23:56:36.9563050Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/test 2025-06-05T23:56:36.9563977Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool 2025-06-05T23:56:36.9564982Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/cpuinfo_utils.h 2025-06-05T23:56:36.9566037Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/test 2025-06-05T23:56:36.9567141Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/threadpool.h 2025-06-05T23:56:36.9568267Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/threadpool_guard.h 2025-06-05T23:56:36.9569186Z -- Installing: /pytorch/executorch/cmake-out/lib/libexecutorch.a 2025-06-05T23:56:36.9569911Z -- Installing: /pytorch/executorch/cmake-out/lib/libexecutorch_core.a 2025-06-05T23:56:36.9570757Z -- Installing: /pytorch/executorch/cmake-out/lib/cmake/ExecuTorch/executorch-config.cmake 2025-06-05T23:56:36.9571590Z -- Installing: /pytorch/executorch/cmake-out/lib/libXNNPACK.a 2025-06-05T23:56:36.9572242Z -- Installing: /pytorch/executorch/cmake-out/include/xnnpack.h 2025-06-05T23:56:36.9572982Z -- Installing: /pytorch/executorch/cmake-out/include/experiments-config.h 2025-06-05T23:56:36.9573768Z -- Installing: /pytorch/executorch/cmake-out/lib/libmicrokernels-prod.a 2025-06-05T23:56:36.9574546Z -- Up-to-date: /pytorch/executorch/cmake-out/lib/libmicrokernels-prod.a 2025-06-05T23:56:36.9575384Z -- Installing: /pytorch/executorch/cmake-out/lib/libxnnpack_backend.a 2025-06-05T23:56:36.9576086Z -- Installing: /pytorch/executorch/cmake-out/lib/libetdump.a 2025-06-05T23:56:36.9576769Z -- Installing: /pytorch/executorch/cmake-out/lib/libbundled_program.a 2025-06-05T23:56:36.9577545Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_data_loader.a 2025-06-05T23:56:36.9578344Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_flat_tensor.a 2025-06-05T23:56:36.9579139Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_module.so 2025-06-05T23:56:36.9579931Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_module_static.a 2025-06-05T23:56:36.9580729Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_tensor.a 2025-06-05T23:56:36.9581492Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_threadpool.a 2025-06-05T23:56:36.9582243Z -- Installing: /pytorch/executorch/cmake-out/lib/libcustom_ops.a 2025-06-05T23:56:36.9582962Z -- Installing: /pytorch/executorch/cmake-out/lib/libquantized_kernels.a 2025-06-05T23:56:36.9583730Z -- Installing: /pytorch/executorch/cmake-out/lib/libquantized_ops_lib.a 2025-06-05T23:56:36.9584615Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/quantized/Functions.h 2025-06-05T23:56:36.9585696Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/quantized/NativeFunctions.h 2025-06-05T23:56:36.9586496Z + echo ::endgroup:: 2025-06-05T23:56:36.9587168Z ##[endgroup] 2025-06-05T23:56:36.9587528Z + echo '::group::Set up Hugging Face' 2025-06-05T23:56:36.9588206Z ##[group]Set up Hugging Face 2025-06-05T23:56:36.9588614Z + pip install -U 'huggingface_hub[cli]' 2025-06-05T23:56:36.9589460Z Requirement already satisfied: huggingface_hub[cli] in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (0.32.4) 2025-06-05T23:56:36.9590823Z Requirement already satisfied: filelock in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub[cli]) (3.18.0) 2025-06-05T23:56:36.9592256Z Requirement already satisfied: fsspec>=2023.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub[cli]) (2025.3.0) 2025-06-05T23:56:36.9593718Z Requirement already satisfied: packaging>=20.9 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub[cli]) (25.0) 2025-06-05T23:56:36.9595121Z Requirement already satisfied: pyyaml>=5.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub[cli]) (6.0.1) 2025-06-05T23:56:36.9596506Z Requirement already satisfied: requests in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub[cli]) (2.32.3) 2025-06-05T23:56:36.9597877Z Requirement already satisfied: tqdm>=4.42.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub[cli]) (4.67.1) 2025-06-05T23:56:36.9599352Z Requirement already satisfied: typing-extensions>=3.7.4.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub[cli]) (4.14.0) 2025-06-05T23:56:36.9600898Z 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[cli]) (1.1.3) 2025-06-05T23:56:36.9601914Z Collecting InquirerPy==0.3.4 (from huggingface_hub[cli]) 2025-06-05T23:56:38.5213809Z Downloading InquirerPy-0.3.4-py3-none-any.whl.metadata (8.1 kB) 2025-06-05T23:56:38.5215094Z Collecting pfzy<0.4.0,>=0.3.1 (from InquirerPy==0.3.4->huggingface_hub[cli]) 2025-06-05T23:56:38.5216144Z Downloading pfzy-0.3.4-py3-none-any.whl.metadata (4.9 kB) 2025-06-05T23:56:38.5217284Z Collecting prompt-toolkit<4.0.0,>=3.0.1 (from InquirerPy==0.3.4->huggingface_hub[cli]) 2025-06-05T23:56:38.5218531Z Downloading prompt_toolkit-3.0.51-py3-none-any.whl.metadata (6.4 kB) 2025-06-05T23:56:38.5219925Z Collecting wcwidth (from prompt-toolkit<4.0.0,>=3.0.1->InquirerPy==0.3.4->huggingface_hub[cli]) 2025-06-05T23:56:38.5221427Z Downloading wcwidth-0.2.13-py2.py3-none-any.whl.metadata (14 kB) 2025-06-05T23:56:38.5223543Z Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->huggingface_hub[cli]) (3.4.2) 2025-06-05T23:56:38.5226377Z Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->huggingface_hub[cli]) (3.10) 2025-06-05T23:56:38.5228890Z Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->huggingface_hub[cli]) (2.4.0) 2025-06-05T23:56:38.5231551Z Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->huggingface_hub[cli]) (2025.4.26) 2025-06-05T23:56:38.5233481Z Downloading InquirerPy-0.3.4-py3-none-any.whl (67 kB) 2025-06-05T23:56:38.5234412Z Downloading pfzy-0.3.4-py3-none-any.whl (8.5 kB) 2025-06-05T23:56:38.5235270Z Downloading prompt_toolkit-3.0.51-py3-none-any.whl (387 kB) 2025-06-05T23:56:38.5236016Z Downloading wcwidth-0.2.13-py2.py3-none-any.whl (34 kB) 2025-06-05T23:56:38.5236956Z Installing collected packages: wcwidth, prompt-toolkit, pfzy, InquirerPy 2025-06-05T23:56:38.5237836Z [?25l 2025-06-05T23:56:38.5238625Z  ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1/4 [prompt-toolkit] 2025-06-05T23:56:38.5239722Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 3/4 [InquirerPy] 2025-06-05T23:56:38.5240630Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4/4 [InquirerPy] 2025-06-05T23:56:38.5241310Z [?25h 2025-06-05T23:56:38.5242120Z Successfully installed InquirerPy-0.3.4 pfzy-0.3.4 prompt-toolkit-3.0.51 wcwidth-0.2.13 2025-06-05T23:56:38.5243304Z + huggingface-cli login --token *** 2025-06-05T23:56:38.5244862Z The token has not been saved to the git credentials helper. Pass `add_to_git_credential=True` in this function directly or `--add-to-git-credential` if using via `huggingface-cli` if you want to set the git credential as well. 2025-06-05T23:56:38.5247362Z Token is valid (permission: read). 2025-06-05T23:56:38.5248064Z The token `EexecuTorch_CI` has been saved to /var/lib/ci-user/.cache/huggingface/stored_tokens 2025-06-05T23:56:38.5248889Z Your token has been saved to /var/lib/ci-user/.cache/huggingface/token 2025-06-05T23:56:38.5249473Z Login successful. 2025-06-05T23:56:38.5250204Z The current active token is: `EexecuTorch_CI` 2025-06-05T23:56:38.5250994Z + git clone https://github.com/huggingface/optimum-executorch 2025-06-05T23:56:38.5251888Z Cloning into 'optimum-executorch'... 2025-06-05T23:56:38.5252896Z remote: Enumerating objects: 692, done. 2025-06-05T23:56:38.5253794Z remote: Counting objects: 0% (1/272) 2025-06-05T23:56:38.5254794Z remote: Counting objects: 1% (3/272) 2025-06-05T23:56:38.5255716Z remote: Counting objects: 2% (6/272) 2025-06-05T23:56:38.5256630Z remote: Counting objects: 3% (9/272) 2025-06-05T23:56:38.5257558Z remote: Counting objects: 4% (11/272) 2025-06-05T23:56:38.5258772Z remote: Counting objects: 5% (14/272) 2025-06-05T23:56:38.5259727Z remote: Counting objects: 6% (17/272) 2025-06-05T23:56:38.5260651Z remote: Counting objects: 7% (20/272) 2025-06-05T23:56:38.5261591Z remote: Counting objects: 8% (22/272) 2025-06-05T23:56:38.5262516Z remote: Counting objects: 9% (25/272) 2025-06-05T23:56:38.5263469Z remote: Counting objects: 10% (28/272) 2025-06-05T23:56:38.5264396Z remote: Counting objects: 11% (30/272) 2025-06-05T23:56:38.5265339Z remote: Counting objects: 12% (33/272) 2025-06-05T23:56:38.5266258Z remote: Counting objects: 13% (36/272) 2025-06-05T23:56:38.5267195Z remote: Counting objects: 14% (39/272) 2025-06-05T23:56:38.5268122Z remote: Counting objects: 15% (41/272) 2025-06-05T23:56:38.5269066Z remote: Counting objects: 16% (44/272) 2025-06-05T23:56:38.5269995Z remote: Counting objects: 17% (47/272) 2025-06-05T23:56:38.5270933Z remote: Counting objects: 18% (49/272) 2025-06-05T23:56:38.5271856Z remote: Counting objects: 19% (52/272) 2025-06-05T23:56:38.5272784Z remote: Counting objects: 20% (55/272) 2025-06-05T23:56:38.5273729Z remote: Counting objects: 21% (58/272) 2025-06-05T23:56:38.5274659Z remote: Counting objects: 22% (60/272) 2025-06-05T23:56:38.5275595Z remote: Counting objects: 23% (63/272) 2025-06-05T23:56:38.5276519Z remote: Counting objects: 24% (66/272) 2025-06-05T23:56:38.5277461Z remote: Counting objects: 25% (68/272) 2025-06-05T23:56:38.5278379Z remote: Counting objects: 26% (71/272) 2025-06-05T23:56:38.5279317Z remote: Counting objects: 27% (74/272) 2025-06-05T23:56:38.5280236Z remote: Counting objects: 28% (77/272) 2025-06-05T23:56:38.5281172Z remote: Counting objects: 29% (79/272) 2025-06-05T23:56:38.5282160Z remote: Counting objects: 30% (82/272) 2025-06-05T23:56:38.5283081Z remote: Counting objects: 31% (85/272) 2025-06-05T23:56:38.5284010Z remote: Counting objects: 32% (88/272) 2025-06-05T23:56:38.5284956Z remote: Counting objects: 33% (90/272) 2025-06-05T23:56:38.5285894Z remote: Counting objects: 34% (93/272) 2025-06-05T23:56:38.5286843Z remote: Counting objects: 35% (96/272) 2025-06-05T23:56:38.5287753Z remote: Counting objects: 36% (98/272) 2025-06-05T23:56:38.5288700Z remote: Counting objects: 37% (101/272) 2025-06-05T23:56:38.5289654Z remote: Counting objects: 38% (104/272) 2025-06-05T23:56:38.5290603Z remote: Counting objects: 39% (107/272) 2025-06-05T23:56:38.5291534Z remote: Counting objects: 40% (109/272) 2025-06-05T23:56:38.5292494Z remote: Counting objects: 41% (112/272) 2025-06-05T23:56:38.5293437Z remote: Counting objects: 42% (115/272) 2025-06-05T23:56:38.5294412Z remote: Counting objects: 43% (117/272) 2025-06-05T23:56:38.5295452Z remote: Counting objects: 44% (120/272) 2025-06-05T23:56:38.5296409Z remote: Counting objects: 45% (123/272) 2025-06-05T23:56:38.5297459Z remote: Counting objects: 46% (126/272) 2025-06-05T23:56:38.5298427Z remote: Counting objects: 47% (128/272) 2025-06-05T23:56:38.5299394Z remote: Counting objects: 48% (131/272) 2025-06-05T23:56:38.5300344Z remote: Counting objects: 49% (134/272) 2025-06-05T23:56:38.5301288Z remote: Counting objects: 50% (136/272) 2025-06-05T23:56:38.5302249Z remote: Counting objects: 51% (139/272) 2025-06-05T23:56:38.5303287Z remote: Counting objects: 52% (142/272) 2025-06-05T23:56:38.5304450Z remote: Counting objects: 53% (145/272) 2025-06-05T23:56:38.5305417Z remote: Counting objects: 54% (147/272) 2025-06-05T23:56:38.5306353Z remote: Counting objects: 55% (150/272) 2025-06-05T23:56:38.5307326Z remote: Counting objects: 56% (153/272) 2025-06-05T23:56:38.5308287Z remote: Counting objects: 57% (156/272) 2025-06-05T23:56:38.5309256Z remote: Counting objects: 58% (158/272) 2025-06-05T23:56:38.5310206Z remote: Counting objects: 59% (161/272) 2025-06-05T23:56:38.5311182Z remote: Counting objects: 60% (164/272) 2025-06-05T23:56:38.5312122Z remote: Counting objects: 61% (166/272) 2025-06-05T23:56:38.5313281Z remote: Counting objects: 62% (169/272) 2025-06-05T23:56:38.5314229Z remote: Counting objects: 63% (172/272) 2025-06-05T23:56:38.5315183Z remote: Counting objects: 64% (175/272) 2025-06-05T23:56:38.5316108Z remote: Counting objects: 65% (177/272) 2025-06-05T23:56:38.5317070Z remote: Counting objects: 66% (180/272) 2025-06-05T23:56:38.5318004Z remote: Counting objects: 67% (183/272) 2025-06-05T23:56:38.5318960Z remote: Counting objects: 68% (185/272) 2025-06-05T23:56:38.5319903Z remote: Counting objects: 69% (188/272) 2025-06-05T23:56:38.5320857Z remote: Counting objects: 70% (191/272) 2025-06-05T23:56:38.5321803Z remote: Counting objects: 71% (194/272) 2025-06-05T23:56:38.5322738Z remote: Counting objects: 72% (196/272) 2025-06-05T23:56:38.5323704Z remote: Counting objects: 73% (199/272) 2025-06-05T23:56:38.5324642Z remote: Counting objects: 74% (202/272) 2025-06-05T23:56:38.5325600Z remote: Counting objects: 75% (204/272) 2025-06-05T23:56:38.5326540Z remote: Counting objects: 76% (207/272) 2025-06-05T23:56:38.5327482Z remote: Counting objects: 77% (210/272) 2025-06-05T23:56:38.5328404Z remote: Counting objects: 78% (213/272) 2025-06-05T23:56:38.5329358Z remote: Counting objects: 79% (215/272) 2025-06-05T23:56:38.5330280Z remote: Counting objects: 80% (218/272) 2025-06-05T23:56:38.5331216Z remote: Counting objects: 81% (221/272) 2025-06-05T23:56:38.5332088Z remote: Counting objects: 82% (224/272) 2025-06-05T23:56:38.5333032Z remote: Counting objects: 83% (226/272) 2025-06-05T23:56:38.5333958Z remote: Counting objects: 84% (229/272) 2025-06-05T23:56:38.5334982Z remote: Counting objects: 85% (232/272) 2025-06-05T23:56:38.5335895Z remote: Counting objects: 86% (234/272) 2025-06-05T23:56:38.5336865Z remote: Counting objects: 87% (237/272) 2025-06-05T23:56:38.5337814Z remote: Counting objects: 88% (240/272) 2025-06-05T23:56:38.5338771Z remote: Counting objects: 89% (243/272) 2025-06-05T23:56:38.5339705Z remote: Counting objects: 90% (245/272) 2025-06-05T23:56:38.5340649Z remote: Counting objects: 91% (248/272) 2025-06-05T23:56:38.5341583Z remote: Counting objects: 92% (251/272) 2025-06-05T23:56:38.5342532Z remote: Counting objects: 93% (253/272) 2025-06-05T23:56:38.5343483Z remote: Counting objects: 94% (256/272) 2025-06-05T23:56:38.5344417Z remote: Counting objects: 95% (259/272) 2025-06-05T23:56:38.5345370Z remote: Counting objects: 96% (262/272) 2025-06-05T23:56:38.5346312Z remote: Counting objects: 97% (264/272) 2025-06-05T23:56:38.5347246Z remote: Counting objects: 98% (267/272) 2025-06-05T23:56:38.5348185Z remote: Counting objects: 99% (270/272) 2025-06-05T23:56:38.5349139Z remote: Counting objects: 100% (272/272) 2025-06-05T23:56:38.5350158Z remote: Counting objects: 100% (272/272), done. 2025-06-05T23:56:38.5351336Z remote: Compressing objects: 1% (1/79) 2025-06-05T23:56:38.5352296Z remote: Compressing objects: 2% (2/79) 2025-06-05T23:56:38.5353265Z remote: Compressing objects: 3% (3/79) 2025-06-05T23:56:38.5354224Z remote: Compressing objects: 5% (4/79) 2025-06-05T23:56:38.5355204Z remote: Compressing objects: 6% (5/79) 2025-06-05T23:56:38.5356159Z remote: Compressing objects: 7% (6/79) 2025-06-05T23:56:38.5357216Z remote: Compressing objects: 8% (7/79) 2025-06-05T23:56:38.5358186Z remote: Compressing objects: 10% (8/79) 2025-06-05T23:56:38.5359159Z remote: Compressing objects: 11% (9/79) 2025-06-05T23:56:38.5360135Z remote: Compressing objects: 12% (10/79) 2025-06-05T23:56:38.5361134Z remote: Compressing objects: 13% (11/79) 2025-06-05T23:56:38.5362089Z remote: Compressing objects: 15% (12/79) 2025-06-05T23:56:38.5363009Z remote: Compressing objects: 16% (13/79) 2025-06-05T23:56:38.5363827Z remote: Compressing objects: 17% (14/79) 2025-06-05T23:56:38.5364582Z remote: Compressing objects: 18% (15/79) 2025-06-05T23:56:38.5365395Z remote: Compressing objects: 20% (16/79) 2025-06-05T23:56:38.5366460Z remote: Compressing objects: 21% (17/79) 2025-06-05T23:56:38.5367342Z remote: Compressing objects: 22% (18/79) 2025-06-05T23:56:38.5368191Z remote: Compressing objects: 24% (19/79) 2025-06-05T23:56:38.5369048Z remote: Compressing objects: 25% (20/79) 2025-06-05T23:56:38.5369870Z remote: Compressing objects: 26% (21/79) 2025-06-05T23:56:38.5391472Z remote: Compressing objects: 27% (22/79) 2025-06-05T23:56:38.5392613Z remote: Compressing objects: 29% (23/79) 2025-06-05T23:56:38.5393531Z remote: Compressing objects: 30% (24/79) 2025-06-05T23:56:38.5394492Z remote: Compressing objects: 31% (25/79) 2025-06-05T23:56:38.5395259Z remote: Compressing objects: 32% (26/79) 2025-06-05T23:56:38.5396052Z remote: Compressing objects: 34% (27/79) 2025-06-05T23:56:38.5396893Z remote: Compressing objects: 35% (28/79) 2025-06-05T23:56:38.5397723Z remote: Compressing objects: 36% (29/79) 2025-06-05T23:56:38.5398365Z remote: Compressing objects: 37% (30/79) 2025-06-05T23:56:38.5399172Z remote: Compressing objects: 39% (31/79) 2025-06-05T23:56:38.5400022Z remote: Compressing objects: 40% (32/79) 2025-06-05T23:56:38.5400791Z remote: Compressing objects: 41% (33/79) 2025-06-05T23:56:38.5401581Z remote: Compressing objects: 43% (34/79) 2025-06-05T23:56:38.5402199Z remote: Compressing objects: 44% (35/79) 2025-06-05T23:56:38.5402920Z remote: Compressing objects: 45% (36/79) 2025-06-05T23:56:38.5403828Z remote: Compressing objects: 46% (37/79) 2025-06-05T23:56:38.5404546Z remote: Compressing objects: 48% (38/79) 2025-06-05T23:56:38.5405082Z remote: Compressing objects: 49% (39/79) 2025-06-05T23:56:38.5405610Z remote: Compressing objects: 50% (40/79) 2025-06-05T23:56:38.5406158Z remote: Compressing objects: 51% (41/79) 2025-06-05T23:56:38.5406980Z remote: Compressing objects: 53% (42/79) 2025-06-05T23:56:38.5407566Z remote: Compressing objects: 54% (43/79) 2025-06-05T23:56:38.5408098Z remote: Compressing objects: 55% (44/79) 2025-06-05T23:56:38.5408683Z remote: Compressing objects: 56% (45/79) 2025-06-05T23:56:38.5409323Z remote: Compressing objects: 58% (46/79) 2025-06-05T23:56:38.5409925Z remote: Compressing objects: 59% (47/79) 2025-06-05T23:56:38.5410569Z remote: Compressing objects: 60% (48/79) 2025-06-05T23:56:38.5411357Z remote: Compressing objects: 62% (49/79) 2025-06-05T23:56:38.5412050Z remote: Compressing objects: 63% (50/79) 2025-06-05T23:56:38.5412815Z remote: Compressing objects: 64% (51/79) 2025-06-05T23:56:38.5413396Z remote: Compressing objects: 65% (52/79) 2025-06-05T23:56:38.5413999Z remote: Compressing objects: 67% (53/79) 2025-06-05T23:56:38.5414946Z remote: Compressing objects: 68% (54/79) 2025-06-05T23:56:38.5415695Z remote: Compressing objects: 69% (55/79) 2025-06-05T23:56:38.5416750Z remote: Compressing objects: 70% (56/79) 2025-06-05T23:56:38.5417456Z remote: Compressing objects: 72% (57/79) 2025-06-05T23:56:38.5418412Z remote: Compressing objects: 73% (58/79) 2025-06-05T23:56:38.5419316Z remote: Compressing objects: 74% (59/79) 2025-06-05T23:56:38.5420267Z remote: Compressing objects: 75% (60/79) 2025-06-05T23:56:38.5421101Z remote: Compressing objects: 77% (61/79) 2025-06-05T23:56:38.5421780Z remote: Compressing objects: 78% (62/79) 2025-06-05T23:56:38.5422538Z remote: Compressing objects: 79% (63/79) 2025-06-05T23:56:38.5423433Z remote: Compressing objects: 81% (64/79) 2025-06-05T23:56:38.5424171Z remote: Compressing objects: 82% (65/79) 2025-06-05T23:56:38.5424706Z remote: Compressing objects: 83% (66/79) 2025-06-05T23:56:38.5425249Z remote: Compressing objects: 84% (67/79) 2025-06-05T23:56:38.5425774Z remote: Compressing objects: 86% (68/79) 2025-06-05T23:56:38.5426314Z remote: Compressing objects: 87% (69/79) 2025-06-05T23:56:38.5426848Z remote: Compressing objects: 88% (70/79) 2025-06-05T23:56:38.5427390Z remote: Compressing objects: 89% (71/79) 2025-06-05T23:56:38.5428079Z remote: Compressing objects: 91% (72/79) 2025-06-05T23:56:38.5428635Z remote: Compressing objects: 92% (73/79) 2025-06-05T23:56:38.5429167Z remote: Compressing objects: 93% (74/79) 2025-06-05T23:56:38.5429712Z remote: Compressing objects: 94% (75/79) 2025-06-05T23:56:38.5430244Z remote: Compressing objects: 96% (76/79) 2025-06-05T23:56:38.5430793Z remote: Compressing objects: 97% (77/79) 2025-06-05T23:56:38.5439945Z remote: Compressing objects: 98% (78/79) 2025-06-05T23:56:38.5440724Z remote: Compressing objects: 100% (79/79) 2025-06-05T23:56:38.5441308Z remote: Compressing objects: 100% (79/79), done. 2025-06-05T23:56:38.5441815Z Receiving objects: 0% (1/692) 2025-06-05T23:56:38.5442215Z Receiving objects: 1% (7/692) 2025-06-05T23:56:38.5442629Z Receiving objects: 2% (14/692) 2025-06-05T23:56:38.5443050Z Receiving objects: 3% (21/692) 2025-06-05T23:56:38.5443457Z Receiving objects: 4% (28/692) 2025-06-05T23:56:38.5443847Z Receiving objects: 5% (35/692) 2025-06-05T23:56:38.5444263Z Receiving objects: 6% (42/692) 2025-06-05T23:56:38.5444655Z Receiving objects: 7% (49/692) 2025-06-05T23:56:38.5445046Z Receiving objects: 8% (56/692) 2025-06-05T23:56:38.5445453Z Receiving objects: 9% (63/692) 2025-06-05T23:56:38.5445849Z Receiving objects: 10% (70/692) 2025-06-05T23:56:38.5446258Z Receiving objects: 11% (77/692) 2025-06-05T23:56:38.5446649Z Receiving objects: 12% (84/692) 2025-06-05T23:56:38.5447055Z Receiving objects: 13% (90/692) 2025-06-05T23:56:38.5447453Z Receiving objects: 14% (97/692) 2025-06-05T23:56:38.5447865Z Receiving objects: 15% (104/692) 2025-06-05T23:56:38.5448268Z Receiving objects: 16% (111/692) 2025-06-05T23:56:38.5448681Z Receiving objects: 17% (118/692) 2025-06-05T23:56:38.5449076Z Receiving objects: 18% (125/692) 2025-06-05T23:56:38.5449492Z Receiving objects: 19% (132/692) 2025-06-05T23:56:38.5449895Z Receiving objects: 20% (139/692) 2025-06-05T23:56:38.5450304Z Receiving objects: 21% (146/692) 2025-06-05T23:56:38.5450708Z Receiving objects: 22% (153/692) 2025-06-05T23:56:38.5451104Z Receiving objects: 23% (160/692) 2025-06-05T23:56:38.5451523Z Receiving objects: 24% (167/692) 2025-06-05T23:56:38.5451921Z Receiving objects: 25% (173/692) 2025-06-05T23:56:38.5452335Z Receiving objects: 26% (180/692) 2025-06-05T23:56:38.5452735Z Receiving objects: 27% (187/692) 2025-06-05T23:56:38.5453152Z Receiving objects: 28% (194/692) 2025-06-05T23:56:38.5453551Z Receiving objects: 29% (201/692) 2025-06-05T23:56:38.5453966Z Receiving objects: 30% (208/692) 2025-06-05T23:56:38.5454368Z Receiving objects: 31% (215/692) 2025-06-05T23:56:38.5454892Z Receiving objects: 32% (222/692) 2025-06-05T23:56:38.5455298Z Receiving objects: 33% (229/692) 2025-06-05T23:56:38.5455716Z Receiving objects: 34% (236/692) 2025-06-05T23:56:38.5456116Z Receiving objects: 35% (243/692) 2025-06-05T23:56:38.5456640Z Receiving objects: 36% (250/692) 2025-06-05T23:56:38.5457038Z Receiving objects: 37% (257/692) 2025-06-05T23:56:38.5457443Z Receiving objects: 38% (263/692) 2025-06-05T23:56:38.5457868Z Receiving objects: 39% (270/692) 2025-06-05T23:56:38.5458269Z Receiving objects: 40% (277/692) 2025-06-05T23:56:38.5458684Z Receiving objects: 41% (284/692) 2025-06-05T23:56:38.5459083Z Receiving objects: 42% (291/692) 2025-06-05T23:56:38.5459497Z Receiving objects: 43% (298/692) 2025-06-05T23:56:38.5459936Z Receiving objects: 44% (305/692) 2025-06-05T23:56:38.5460351Z Receiving objects: 45% (312/692) 2025-06-05T23:56:38.5460746Z Receiving objects: 46% (319/692) 2025-06-05T23:56:38.5461162Z Receiving objects: 47% (326/692) 2025-06-05T23:56:38.5461719Z Receiving objects: 48% (333/692) 2025-06-05T23:56:38.5462281Z Receiving objects: 49% (340/692) 2025-06-05T23:56:38.5462831Z Receiving objects: 50% (346/692) 2025-06-05T23:56:38.5463373Z Receiving objects: 51% (353/692) 2025-06-05T23:56:38.5463779Z Receiving objects: 52% (360/692) 2025-06-05T23:56:38.5464176Z Receiving objects: 53% (367/692) 2025-06-05T23:56:38.5464586Z Receiving objects: 54% (374/692) 2025-06-05T23:56:38.5465077Z Receiving objects: 55% (381/692) 2025-06-05T23:56:38.5465493Z Receiving objects: 56% (388/692) 2025-06-05T23:56:38.5465892Z Receiving objects: 57% (395/692) 2025-06-05T23:56:38.5466307Z Receiving objects: 58% (402/692) 2025-06-05T23:56:38.5466704Z Receiving objects: 59% (409/692) 2025-06-05T23:56:38.5467114Z Receiving objects: 60% (416/692) 2025-06-05T23:56:38.5467515Z Receiving objects: 61% (423/692) 2025-06-05T23:56:38.5467931Z Receiving objects: 62% (430/692) 2025-06-05T23:56:38.5468329Z Receiving objects: 63% (436/692) 2025-06-05T23:56:38.5468741Z Receiving objects: 64% (443/692) 2025-06-05T23:56:38.5469136Z Receiving objects: 65% (450/692) 2025-06-05T23:56:38.5469543Z Receiving objects: 66% (457/692) 2025-06-05T23:56:38.5469941Z Receiving objects: 67% (464/692) 2025-06-05T23:56:38.5470350Z Receiving objects: 68% (471/692) 2025-06-05T23:56:38.5470748Z Receiving objects: 69% (478/692) 2025-06-05T23:56:38.5471144Z Receiving objects: 70% (485/692) 2025-06-05T23:56:38.5471562Z Receiving objects: 71% (492/692) 2025-06-05T23:56:38.5471961Z Receiving objects: 72% (499/692) 2025-06-05T23:56:38.5472373Z Receiving objects: 73% (506/692) 2025-06-05T23:56:38.5472771Z Receiving objects: 74% (513/692) 2025-06-05T23:56:38.5473505Z remote: Total 692 (delta 226), reused 198 (delta 191), pack-reused 420 (from 1) 2025-06-05T23:56:38.5474125Z Receiving objects: 75% (519/692) 2025-06-05T23:56:38.5474547Z Receiving objects: 76% (526/692) 2025-06-05T23:56:38.5474944Z Receiving objects: 77% (533/692) 2025-06-05T23:56:38.5475355Z Receiving objects: 78% (540/692) 2025-06-05T23:56:38.5475755Z Receiving objects: 79% (547/692) 2025-06-05T23:56:38.5476168Z Receiving objects: 80% (554/692) 2025-06-05T23:56:38.5476565Z Receiving objects: 81% (561/692) 2025-06-05T23:56:38.5476976Z Receiving objects: 82% (568/692) 2025-06-05T23:56:38.5477374Z Receiving objects: 83% (575/692) 2025-06-05T23:56:38.5477782Z Receiving objects: 84% (582/692) 2025-06-05T23:56:38.5478179Z Receiving objects: 85% (589/692) 2025-06-05T23:56:38.5478577Z Receiving objects: 86% (596/692) 2025-06-05T23:56:38.5478985Z Receiving objects: 87% (603/692) 2025-06-05T23:56:38.5479377Z Receiving objects: 88% (609/692) 2025-06-05T23:56:38.5479786Z Receiving objects: 89% (616/692) 2025-06-05T23:56:38.5480182Z Receiving objects: 90% (623/692) 2025-06-05T23:56:38.5480595Z Receiving objects: 91% (630/692) 2025-06-05T23:56:38.5480992Z Receiving objects: 92% (637/692) 2025-06-05T23:56:38.5481402Z Receiving objects: 93% (644/692) 2025-06-05T23:56:38.5481801Z Receiving objects: 94% (651/692) 2025-06-05T23:56:38.5482216Z Receiving objects: 95% (658/692) 2025-06-05T23:56:38.5482620Z Receiving objects: 96% (665/692) 2025-06-05T23:56:38.5483033Z Receiving objects: 97% (672/692) 2025-06-05T23:56:38.5483432Z Receiving objects: 98% (679/692) 2025-06-05T23:56:38.5483898Z Receiving objects: 99% (686/692) 2025-06-05T23:56:38.5484298Z Receiving objects: 100% (692/692) 2025-06-05T23:56:38.5484811Z Receiving objects: 100% (692/692), 188.41 KiB | 17.13 MiB/s, done. 2025-06-05T23:56:38.5485376Z Resolving deltas: 0% (0/389) 2025-06-05T23:56:38.5485765Z Resolving deltas: 1% (4/389) 2025-06-05T23:56:38.5486161Z Resolving deltas: 2% (8/389) 2025-06-05T23:56:38.5486549Z Resolving deltas: 3% (12/389) 2025-06-05T23:56:38.5486952Z Resolving deltas: 4% (16/389) 2025-06-05T23:56:38.5487383Z Resolving deltas: 5% (20/389) 2025-06-05T23:56:38.5487860Z Resolving deltas: 6% (24/389) 2025-06-05T23:56:38.5488275Z Resolving deltas: 7% (28/389) 2025-06-05T23:56:38.5488678Z Resolving deltas: 8% (32/389) 2025-06-05T23:56:38.5489145Z Resolving deltas: 9% (36/389) 2025-06-05T23:56:38.5489651Z Resolving deltas: 10% (39/389) 2025-06-05T23:56:38.5490035Z Resolving deltas: 11% (43/389) 2025-06-05T23:56:38.5490426Z Resolving deltas: 12% (47/389) 2025-06-05T23:56:38.5490804Z Resolving deltas: 13% (51/389) 2025-06-05T23:56:38.5491202Z Resolving deltas: 14% (55/389) 2025-06-05T23:56:38.5491582Z Resolving deltas: 15% (59/389) 2025-06-05T23:56:38.5492079Z Resolving deltas: 16% (63/389) 2025-06-05T23:56:38.5492478Z Resolving deltas: 17% (67/389) 2025-06-05T23:56:38.5492859Z Resolving deltas: 18% (71/389) 2025-06-05T23:56:38.5493249Z Resolving deltas: 19% (74/389) 2025-06-05T23:56:38.5493628Z Resolving deltas: 20% (78/389) 2025-06-05T23:56:38.5494023Z Resolving deltas: 21% (82/389) 2025-06-05T23:56:38.5494406Z Resolving deltas: 22% (86/389) 2025-06-05T23:56:38.5494896Z Resolving deltas: 23% (90/389) 2025-06-05T23:56:38.5495273Z Resolving deltas: 24% (94/389) 2025-06-05T23:56:38.5495669Z Resolving deltas: 25% (98/389) 2025-06-05T23:56:38.5496054Z Resolving deltas: 26% (102/389) 2025-06-05T23:56:38.5496496Z Resolving deltas: 27% (106/389) 2025-06-05T23:56:38.5496937Z Resolving deltas: 28% (109/389) 2025-06-05T23:56:38.5497340Z Resolving deltas: 29% (113/389) 2025-06-05T23:56:38.5497728Z Resolving deltas: 30% (117/389) 2025-06-05T23:56:38.5498209Z Resolving deltas: 31% (121/389) 2025-06-05T23:56:38.5498616Z Resolving deltas: 32% (125/389) 2025-06-05T23:56:38.5499014Z Resolving deltas: 33% (129/389) 2025-06-05T23:56:38.5499418Z Resolving deltas: 34% (133/389) 2025-06-05T23:56:38.5499806Z Resolving deltas: 35% (138/389) 2025-06-05T23:56:38.5500308Z Resolving deltas: 36% (141/389) 2025-06-05T23:56:38.5500951Z Resolving deltas: 37% (144/389) 2025-06-05T23:56:38.5501629Z Resolving deltas: 38% (148/389) 2025-06-05T23:56:38.5502271Z Resolving deltas: 39% (152/389) 2025-06-05T23:56:38.5502927Z Resolving deltas: 40% (156/389) 2025-06-05T23:56:38.5503478Z Resolving deltas: 41% (160/389) 2025-06-05T23:56:38.5504109Z Resolving deltas: 42% (164/389) 2025-06-05T23:56:38.5504478Z Resolving deltas: 43% (168/389) 2025-06-05T23:56:38.5504857Z Resolving deltas: 44% (172/389) 2025-06-05T23:56:38.5505229Z Resolving deltas: 45% (176/389) 2025-06-05T23:56:38.5505607Z Resolving deltas: 46% (179/389) 2025-06-05T23:56:38.5506148Z Resolving deltas: 47% (183/389) 2025-06-05T23:56:38.5506645Z Resolving deltas: 48% (187/389) 2025-06-05T23:56:38.5507042Z Resolving deltas: 49% (191/389) 2025-06-05T23:56:38.5507413Z Resolving deltas: 50% (195/389) 2025-06-05T23:56:38.5507789Z Resolving deltas: 51% (199/389) 2025-06-05T23:56:38.5508160Z Resolving deltas: 52% (203/389) 2025-06-05T23:56:38.5508540Z Resolving deltas: 53% (207/389) 2025-06-05T23:56:38.5508907Z Resolving deltas: 54% (211/389) 2025-06-05T23:56:38.5509289Z Resolving deltas: 55% (215/389) 2025-06-05T23:56:38.5509657Z Resolving deltas: 56% (218/389) 2025-06-05T23:56:38.5510037Z Resolving deltas: 57% (222/389) 2025-06-05T23:56:38.5510415Z Resolving deltas: 58% (226/389) 2025-06-05T23:56:38.5510787Z Resolving deltas: 59% (230/389) 2025-06-05T23:56:41.4613598Z Resolving deltas: 60% (234/389) 2025-06-05T23:56:41.4614103Z Resolving deltas: 61% (238/389) 2025-06-05T23:56:41.4614521Z Resolving deltas: 62% (242/389) 2025-06-05T23:56:41.4615194Z Resolving deltas: 63% (246/389) 2025-06-05T23:56:41.4615606Z Resolving deltas: 64% (249/389) 2025-06-05T23:56:41.4615999Z Resolving deltas: 65% (253/389) 2025-06-05T23:56:41.4616404Z Resolving deltas: 66% (257/389) 2025-06-05T23:56:41.4616804Z Resolving deltas: 67% (261/389) 2025-06-05T23:56:41.4617193Z Resolving deltas: 68% (265/389) 2025-06-05T23:56:41.4617592Z Resolving deltas: 69% (269/389) 2025-06-05T23:56:41.4617980Z Resolving deltas: 70% (273/389) 2025-06-05T23:56:41.4618449Z Resolving deltas: 71% (277/389) 2025-06-05T23:56:41.4618841Z Resolving deltas: 72% (281/389) 2025-06-05T23:56:41.4619249Z Resolving deltas: 73% (284/389) 2025-06-05T23:56:41.4619638Z Resolving deltas: 74% (288/389) 2025-06-05T23:56:41.4620045Z Resolving deltas: 75% (292/389) 2025-06-05T23:56:41.4620434Z Resolving deltas: 76% (296/389) 2025-06-05T23:56:41.4620836Z Resolving deltas: 77% (301/389) 2025-06-05T23:56:41.4621224Z Resolving deltas: 78% (304/389) 2025-06-05T23:56:41.4621631Z Resolving deltas: 79% (308/389) 2025-06-05T23:56:41.4622026Z Resolving deltas: 80% (312/389) 2025-06-05T23:56:41.4622418Z Resolving deltas: 81% (316/389) 2025-06-05T23:56:41.4622973Z Resolving deltas: 82% (319/389) 2025-06-05T23:56:41.4623396Z Resolving deltas: 83% (323/389) 2025-06-05T23:56:41.4623837Z Resolving deltas: 84% (327/389) 2025-06-05T23:56:41.4624229Z Resolving deltas: 85% (331/389) 2025-06-05T23:56:41.4624665Z Resolving deltas: 86% (335/389) 2025-06-05T23:56:41.4625068Z Resolving deltas: 87% (339/389) 2025-06-05T23:56:41.4625461Z Resolving deltas: 88% (343/389) 2025-06-05T23:56:41.4625860Z Resolving deltas: 89% (347/389) 2025-06-05T23:56:41.4626266Z Resolving deltas: 90% (351/389) 2025-06-05T23:56:41.4626661Z Resolving deltas: 91% (354/389) 2025-06-05T23:56:41.4627068Z Resolving deltas: 92% (358/389) 2025-06-05T23:56:41.4627457Z Resolving deltas: 93% (362/389) 2025-06-05T23:56:41.4627858Z Resolving deltas: 94% (366/389) 2025-06-05T23:56:41.4628252Z Resolving deltas: 95% (370/389) 2025-06-05T23:56:41.4628656Z Resolving deltas: 96% (374/389) 2025-06-05T23:56:41.4629041Z Resolving deltas: 97% (378/389) 2025-06-05T23:56:41.4629443Z Resolving deltas: 98% (382/389) 2025-06-05T23:56:41.4629836Z Resolving deltas: 99% (386/389) 2025-06-05T23:56:41.4630237Z Resolving deltas: 100% (389/389) 2025-06-05T23:56:41.4630638Z Resolving deltas: 100% (389/389), done. 2025-06-05T23:56:41.4631095Z + pushd optimum-executorch 2025-06-05T23:56:41.4631596Z /pytorch/executorch/optimum-executorch /pytorch/executorch 2025-06-05T23:56:41.4632234Z + git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 2025-06-05T23:56:41.4632846Z Note: switching to 'da80c9e35b3db5c7eea8731b7d660482fb4870a8'. 2025-06-05T23:56:41.4633254Z 2025-06-05T23:56:41.4633549Z You are in 'detached HEAD' state. You can look around, make experimental 2025-06-05T23:56:41.4634283Z changes and commit them, and you can discard any commits you make in this 2025-06-05T23:56:41.4635026Z state without impacting any branches by switching back to a branch. 2025-06-05T23:56:41.4635448Z 2025-06-05T23:56:41.4635737Z If you want to create a new branch to retain commits you create, you may 2025-06-05T23:56:41.4636421Z do so (now or later) by using -c with the switch command. Example: 2025-06-05T23:56:41.4636804Z 2025-06-05T23:56:41.4636971Z git switch -c 2025-06-05T23:56:41.4637251Z 2025-06-05T23:56:41.4637410Z Or undo this operation with: 2025-06-05T23:56:41.4637649Z 2025-06-05T23:56:41.4637789Z git switch - 2025-06-05T23:56:41.4637984Z 2025-06-05T23:56:41.4638311Z Turn off this advice by setting config variable advice.detachedHead to false 2025-06-05T23:56:41.4638768Z 2025-06-05T23:56:41.4638989Z HEAD is now at da80c9e TorchAO version bump in CI (#68) 2025-06-05T23:56:41.4639503Z + pip install '.[tests]' 2025-06-05T23:56:41.4639937Z Processing /pytorch/executorch/optimum-executorch 2025-06-05T23:56:41.4640811Z Installing build dependencies ... [?25l- \ done 2025-06-05T23:56:41.4641475Z [?25h Getting requirements to build wheel ... [?25l- done 2025-06-05T23:56:41.4642237Z [?25h Preparing metadata (pyproject.toml) ... [?25l- done 2025-06-05T23:56:41.4642984Z [?25hCollecting optimum~=1.24 (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:41.4643706Z Downloading optimum-1.25.3-py3-none-any.whl.metadata (16 kB) 2025-06-05T23:56:41.4644946Z Requirement already satisfied: executorch>=0.6.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from optimum-executorch==0.0.0.dev0) (0.7.0a0+bd57234) 2025-06-05T23:56:41.4646313Z Collecting transformers==4.51.0 (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:41.4647084Z Downloading transformers-4.51.0-py3-none-any.whl.metadata (38 kB) 2025-06-05T23:56:41.4647843Z Collecting accelerate>=0.26.0 (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:41.4648561Z Downloading accelerate-1.7.0-py3-none-any.whl.metadata (19 kB) 2025-06-05T23:56:41.4649689Z Requirement already satisfied: datasets in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from optimum-executorch==0.0.0.dev0) (3.6.0) 2025-06-05T23:56:41.4651223Z Requirement already satisfied: parameterized in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from optimum-executorch==0.0.0.dev0) (0.9.0) 2025-06-05T23:56:41.4652837Z Requirement already satisfied: pytest in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from optimum-executorch==0.0.0.dev0) (8.4.0) 2025-06-05T23:56:41.4654398Z Requirement already satisfied: safetensors in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from optimum-executorch==0.0.0.dev0) (0.5.3) 2025-06-05T23:56:41.4656119Z Requirement already satisfied: sentencepiece in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from optimum-executorch==0.0.0.dev0) (0.2.0) 2025-06-05T23:56:41.4657230Z Collecting numba!=0.58.0 (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:41.4658125Z Downloading numba-0.61.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.8 kB) 2025-06-05T23:56:41.4659036Z Collecting librosa (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:41.4659770Z Downloading librosa-0.11.0-py3-none-any.whl.metadata (8.7 kB) 2025-06-05T23:56:41.4660440Z Collecting soundfile (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:41.4661213Z Downloading soundfile-0.13.1-py2.py3-none-manylinux_2_28_x86_64.whl.metadata (16 kB) 2025-06-05T23:56:41.4662542Z Requirement already satisfied: filelock in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (3.18.0) 2025-06-05T23:56:41.4664555Z Requirement already satisfied: huggingface-hub<1.0,>=0.30.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (0.32.4) 2025-06-05T23:56:41.4666352Z Requirement already satisfied: numpy>=1.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (2.2.6) 2025-06-05T23:56:41.4668104Z Requirement already satisfied: packaging>=20.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (25.0) 2025-06-05T23:56:41.4669862Z Requirement already satisfied: pyyaml>=5.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (6.0.1) 2025-06-05T23:56:41.4671622Z Requirement already satisfied: regex!=2019.12.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (2024.11.6) 2025-06-05T23:56:41.4673402Z Requirement already satisfied: requests in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (2.32.3) 2025-06-05T23:56:41.4675175Z Requirement already satisfied: tokenizers<0.22,>=0.21 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (0.21.1) 2025-06-05T23:56:41.4676942Z Requirement already satisfied: tqdm>=4.27 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (4.67.1) 2025-06-05T23:56:41.4678881Z 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.30.0->transformers==4.51.0->optimum-executorch==0.0.0.dev0) (2025.3.0) 2025-06-05T23:56:41.4681036Z 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.30.0->transformers==4.51.0->optimum-executorch==0.0.0.dev0) (4.14.0) 2025-06-05T23:56:41.4683124Z 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.30.0->transformers==4.51.0->optimum-executorch==0.0.0.dev0) (1.1.3) 2025-06-05T23:56:41.4685002Z Requirement already satisfied: torch>=1.11 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from optimum~=1.24->optimum-executorch==0.0.0.dev0) (2.8.0a0+git5616fa4) 2025-06-05T23:56:41.4686738Z Requirement already satisfied: psutil in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from accelerate>=0.26.0->optimum-executorch==0.0.0.dev0) (7.0.0) 2025-06-05T23:56:41.4688525Z Requirement already satisfied: expecttest in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (0.1.6) 2025-06-05T23:56:41.4690284Z Requirement already satisfied: flatbuffers in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (25.2.10) 2025-06-05T23:56:41.4692037Z Requirement already satisfied: hypothesis in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (6.84.2) 2025-06-05T23:56:41.4693768Z Requirement already satisfied: mpmath==1.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (1.3.0) 2025-06-05T23:56:41.4695580Z Requirement already satisfied: pandas>=2.2.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (2.2.3) 2025-06-05T23:56:41.4697311Z Requirement already satisfied: pytest-xdist in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (3.7.0) 2025-06-05T23:56:41.4699123Z Requirement already satisfied: pytest-rerunfailures in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (15.1) 2025-06-05T23:56:41.4700923Z Requirement already satisfied: ruamel.yaml in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (0.17.32) 2025-06-05T23:56:41.4702640Z Requirement already satisfied: sympy in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (1.14.0) 2025-06-05T23:56:42.5888319Z Requirement already satisfied: tabulate in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (0.9.0) 2025-06-05T23:56:42.5890120Z Requirement already satisfied: coremltools==8.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (8.3.0) 2025-06-05T23:56:42.5891975Z Requirement already satisfied: protobuf>=3.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from coremltools==8.3->executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (6.31.1) 2025-06-05T23:56:42.5893895Z 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.6.0->optimum-executorch==0.0.0.dev0) (25.3.0) 2025-06-05T23:56:42.5895812Z Requirement already satisfied: cattrs in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from coremltools==8.3->executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (25.1.1) 2025-06-05T23:56:42.5897674Z Requirement already satisfied: pyaml in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from coremltools==8.3->executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (25.5.0) 2025-06-05T23:56:42.5899190Z Collecting llvmlite<0.45,>=0.44.0dev0 (from numba!=0.58.0->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.5900205Z Downloading llvmlite-0.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.8 kB) 2025-06-05T23:56:42.5901762Z 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.6.0->optimum-executorch==0.0.0.dev0) (2.9.0.post0) 2025-06-05T23:56:42.5903970Z 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.6.0->optimum-executorch==0.0.0.dev0) (2025.2) 2025-06-05T23:56:42.5905808Z 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.6.0->optimum-executorch==0.0.0.dev0) (2025.2) 2025-06-05T23:56:42.5907746Z 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.6.0->optimum-executorch==0.0.0.dev0) (1.17.0) 2025-06-05T23:56:42.5909754Z Requirement already satisfied: networkx in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch>=1.11->optimum~=1.24->optimum-executorch==0.0.0.dev0) (3.4.2) 2025-06-05T23:56:42.5911519Z Requirement already satisfied: jinja2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch>=1.11->optimum~=1.24->optimum-executorch==0.0.0.dev0) (3.1.6) 2025-06-05T23:56:42.5913419Z 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.6.0->optimum-executorch==0.0.0.dev0) (1.3.0) 2025-06-05T23:56:42.5915281Z Requirement already satisfied: pyarrow>=15.0.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets->optimum-executorch==0.0.0.dev0) (20.0.0) 2025-06-05T23:56:42.5916909Z Requirement already satisfied: dill<0.3.9,>=0.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets->optimum-executorch==0.0.0.dev0) (0.3.8) 2025-06-05T23:56:42.5918492Z Requirement already satisfied: xxhash in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets->optimum-executorch==0.0.0.dev0) (3.5.0) 2025-06-05T23:56:42.5920148Z Requirement already satisfied: multiprocess<0.70.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets->optimum-executorch==0.0.0.dev0) (0.70.16) 2025-06-05T23:56:42.5921994Z Requirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (3.12.9) 2025-06-05T23:56:42.5924115Z Requirement already satisfied: aiohappyeyeballs>=2.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (2.6.1) 2025-06-05T23:56:42.5926427Z Requirement already satisfied: aiosignal>=1.1.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (1.3.2) 2025-06-05T23:56:42.5928573Z Requirement already satisfied: async-timeout<6.0,>=4.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (5.0.1) 2025-06-05T23:56:42.5930765Z Requirement already satisfied: frozenlist>=1.1.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (1.6.2) 2025-06-05T23:56:42.5932899Z Requirement already satisfied: multidict<7.0,>=4.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (6.4.4) 2025-06-05T23:56:42.5935092Z Requirement already satisfied: propcache>=0.2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (0.3.1) 2025-06-05T23:56:42.5937273Z Requirement already satisfied: yarl<2.0,>=1.17.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (1.20.0) 2025-06-05T23:56:42.5939418Z 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->optimum-executorch==0.0.0.dev0) (3.10) 2025-06-05T23:56:42.5941504Z Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->transformers==4.51.0->optimum-executorch==0.0.0.dev0) (3.4.2) 2025-06-05T23:56:42.5943447Z Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->transformers==4.51.0->optimum-executorch==0.0.0.dev0) (2.4.0) 2025-06-05T23:56:42.5945399Z Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->transformers==4.51.0->optimum-executorch==0.0.0.dev0) (2025.4.26) 2025-06-05T23:56:42.5947375Z 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.6.0->optimum-executorch==0.0.0.dev0) (2.4.0) 2025-06-05T23:56:42.5949308Z Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from jinja2->torch>=1.11->optimum~=1.24->optimum-executorch==0.0.0.dev0) (3.0.2) 2025-06-05T23:56:42.5950637Z Collecting audioread>=2.1.9 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.5951391Z Downloading audioread-3.0.1-py3-none-any.whl.metadata (8.4 kB) 2025-06-05T23:56:42.5952124Z Collecting scipy>=1.6.0 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.5953006Z Downloading scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) 2025-06-05T23:56:42.5953943Z Collecting scikit-learn>=1.1.0 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.5954891Z Downloading scikit_learn-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (17 kB) 2025-06-05T23:56:42.5955821Z Collecting joblib>=1.0 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.5956517Z Downloading joblib-1.5.1-py3-none-any.whl.metadata (5.6 kB) 2025-06-05T23:56:42.5957242Z Collecting decorator>=4.3.0 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.5957983Z Downloading decorator-5.2.1-py3-none-any.whl.metadata (3.9 kB) 2025-06-05T23:56:42.5958699Z Collecting pooch>=1.1 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.5959378Z Downloading pooch-1.8.2-py3-none-any.whl.metadata (10 kB) 2025-06-05T23:56:42.5960066Z Collecting soxr>=0.3.2 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.5960970Z Downloading soxr-0.5.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.6 kB) 2025-06-05T23:56:42.5961915Z Collecting lazy_loader>=0.1 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.5962645Z Downloading lazy_loader-0.4-py3-none-any.whl.metadata (7.6 kB) 2025-06-05T23:56:42.5963372Z Collecting msgpack>=1.0 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.5964266Z Downloading msgpack-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.4 kB) 2025-06-05T23:56:42.5965258Z Collecting platformdirs>=2.5.0 (from pooch>=1.1->librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.5966086Z Downloading platformdirs-4.3.8-py3-none-any.whl.metadata (12 kB) 2025-06-05T23:56:42.5966967Z Collecting threadpoolctl>=3.1.0 (from scikit-learn>=1.1.0->librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.5967899Z Downloading threadpoolctl-3.6.0-py3-none-any.whl.metadata (13 kB) 2025-06-05T23:56:42.5968649Z Collecting cffi>=1.0 (from soundfile->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.5969523Z Downloading cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB) 2025-06-05T23:56:42.5970471Z Collecting pycparser (from cffi>=1.0->soundfile->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:47.1685494Z Downloading pycparser-2.22-py3-none-any.whl.metadata (943 bytes) 2025-06-05T23:56:47.1686963Z Requirement already satisfied: iniconfig>=1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest->optimum-executorch==0.0.0.dev0) (2.1.0) 2025-06-05T23:56:47.1688574Z Requirement already satisfied: pluggy<2,>=1.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest->optimum-executorch==0.0.0.dev0) (1.6.0) 2025-06-05T23:56:47.1690192Z Requirement already satisfied: pygments>=2.7.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest->optimum-executorch==0.0.0.dev0) (2.19.1) 2025-06-05T23:56:47.1691865Z Requirement already satisfied: tomli>=1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest->optimum-executorch==0.0.0.dev0) (2.0.1) 2025-06-05T23:56:47.1693641Z Requirement already satisfied: execnet>=2.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest-xdist->executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (2.1.1) 2025-06-05T23:56:47.1695627Z 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.6.0->optimum-executorch==0.0.0.dev0) (0.2.12) 2025-06-05T23:56:47.1696948Z Downloading transformers-4.51.0-py3-none-any.whl (10.4 MB) 2025-06-05T23:56:47.1697988Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/10.4 MB ? eta -:--:-- 2025-06-05T23:56:47.1698905Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.4/10.4 MB 145.9 MB/s eta 0:00:00 2025-06-05T23:56:47.1699686Z [?25hDownloading optimum-1.25.3-py3-none-any.whl (429 kB) 2025-06-05T23:56:47.1700318Z Downloading accelerate-1.7.0-py3-none-any.whl (362 kB) 2025-06-05T23:56:47.1701119Z Downloading numba-0.61.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.8 MB) 2025-06-05T23:56:47.1702114Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/3.8 MB ? eta -:--:-- 2025-06-05T23:56:47.1702986Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.8/3.8 MB 235.0 MB/s eta 0:00:00 2025-06-05T23:56:47.1704228Z [?25hDownloading llvmlite-0.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (42.4 MB) 2025-06-05T23:56:47.1705274Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/42.4 MB ? eta -:--:-- 2025-06-05T23:56:47.1706175Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.4/42.4 MB 290.4 MB/s eta 0:00:00 2025-06-05T23:56:47.1707052Z [?25hDownloading librosa-0.11.0-py3-none-any.whl (260 kB) 2025-06-05T23:56:47.1707660Z Downloading audioread-3.0.1-py3-none-any.whl (23 kB) 2025-06-05T23:56:47.1708281Z Downloading decorator-5.2.1-py3-none-any.whl (9.2 kB) 2025-06-05T23:56:47.1708853Z Downloading joblib-1.5.1-py3-none-any.whl (307 kB) 2025-06-05T23:56:47.1709415Z Downloading lazy_loader-0.4-py3-none-any.whl (12 kB) 2025-06-05T23:56:47.1710260Z Downloading msgpack-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (378 kB) 2025-06-05T23:56:47.1711027Z Downloading pooch-1.8.2-py3-none-any.whl (64 kB) 2025-06-05T23:56:47.1711615Z Downloading platformdirs-4.3.8-py3-none-any.whl (18 kB) 2025-06-05T23:56:47.1712435Z Downloading scikit_learn-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.9 MB) 2025-06-05T23:56:47.1713472Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/12.9 MB ? eta -:--:-- 2025-06-05T23:56:47.1714355Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.9/12.9 MB 229.3 MB/s eta 0:00:00 2025-06-05T23:56:47.1715374Z [?25hDownloading scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (37.7 MB) 2025-06-05T23:56:47.1716388Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/37.7 MB ? eta -:--:-- 2025-06-05T23:56:47.1717267Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 37.7/37.7 MB 291.4 MB/s eta 0:00:00 2025-06-05T23:56:47.1718190Z [?25hDownloading soundfile-0.13.1-py2.py3-none-manylinux_2_28_x86_64.whl (1.3 MB) 2025-06-05T23:56:47.1719109Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.3 MB ? eta -:--:-- 2025-06-05T23:56:47.1719977Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 146.5 MB/s eta 0:00:00 2025-06-05T23:56:47.1720943Z [?25hDownloading cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (446 kB) 2025-06-05T23:56:47.1721981Z Downloading soxr-0.5.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (252 kB) 2025-06-05T23:56:47.1722934Z Downloading threadpoolctl-3.6.0-py3-none-any.whl (18 kB) 2025-06-05T23:56:47.1723560Z Downloading pycparser-2.22-py3-none-any.whl (117 kB) 2025-06-05T23:56:47.1724171Z Building wheels for collected packages: optimum-executorch 2025-06-05T23:56:47.1724982Z Building wheel for optimum-executorch (pyproject.toml) ... [?25l- done 2025-06-05T23:56:47.1726560Z [?25h Created wheel for optimum-executorch: filename=optimum_executorch-0.0.0.dev0-py3-none-any.whl size=46306 sha256=cb182e7cd91e14a026e8d6dcb4fef0ade40083c863ac69a47c83b1dd494c747e 2025-06-05T23:56:47.1728187Z Stored in directory: /var/lib/ci-user/.cache/pip/wheels/21/45/32/92f39150ceac4c40476febd5873fe6c89c3ce7bb223d0e07ee 2025-06-05T23:56:47.1729065Z Successfully built optimum-executorch 2025-06-05T23:56:47.1730615Z Installing collected packages: threadpoolctl, soxr, scipy, pycparser, platformdirs, msgpack, llvmlite, lazy_loader, joblib, decorator, audioread, scikit-learn, pooch, numba, cffi, soundfile, accelerate, transformers, librosa, optimum, optimum-executorch 2025-06-05T23:56:47.1732172Z [?25l 2025-06-05T23:56:47.1732749Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1733546Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1734353Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1735217Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1736011Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1736795Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1737589Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1738432Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1739227Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1740003Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1740836Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1741611Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1742395Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1743162Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:54.1151742Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:54.1152818Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:54.1153712Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:54.1154491Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:54.1155307Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:54.1156082Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:54.1156888Z  ━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  5/21 [msgpack] 2025-06-05T23:56:54.1157685Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/21 [llvmlite] 2025-06-05T23:56:54.1158491Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/21 [llvmlite] 2025-06-05T23:56:54.1159388Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/21 [llvmlite] 2025-06-05T23:56:54.1160206Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/21 [llvmlite] 2025-06-05T23:56:54.1160985Z  ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━  8/21 [joblib] 2025-06-05T23:56:54.1161881Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.1162704Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.1163542Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.1164357Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.1165202Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.1166187Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.1167161Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.1167973Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.1168810Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.1169618Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.1170466Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.1171267Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.1172059Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.1172877Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.1173650Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.1174423Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.1175333Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.1176180Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.1177116Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.1178129Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.1179022Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.1179820Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.1180607Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.1181402Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 16/21 [accelerate] 2025-06-05T23:56:54.1182124Z  Attempting uninstall: transformers 2025-06-05T23:56:54.1182817Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 16/21 [accelerate] 2025-06-05T23:56:54.1183522Z  Found existing installation: transformers 4.47.1 2025-06-05T23:56:54.1184260Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 16/21 [accelerate] 2025-06-05T23:56:54.1185080Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:56:54.1185902Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:56:54.1186650Z  Uninstalling transformers-4.47.1: 2025-06-05T23:56:54.1187348Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:56:54.1188159Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:56:54.1188972Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:56:54.1189787Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3490620Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3491634Z  Successfully uninstalled transformers-4.47.1 2025-06-05T23:57:00.3492807Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3493866Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3494921Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3496031Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3497823Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3498938Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3499897Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3500891Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3501928Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3503267Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3504386Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3505450Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3506405Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3507401Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3508407Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3509371Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3510383Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3511426Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3512307Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3513286Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3514398Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3515369Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3516317Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3517521Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3518594Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3519457Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3520444Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3521495Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3522412Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3523399Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3524313Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3525250Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:00.3526535Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 18/21 [librosa] 2025-06-05T23:57:00.3527486Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 19/21 [optimum] 2025-06-05T23:57:00.3528427Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [optimum-executorch] 2025-06-05T23:57:00.3529391Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 21/21 [optimum-executorch] 2025-06-05T23:57:00.3529986Z [?25h 2025-06-05T23:57:00.3532624Z Successfully installed accelerate-1.7.0 audioread-3.0.1 cffi-1.17.1 decorator-5.2.1 joblib-1.5.1 lazy_loader-0.4 librosa-0.11.0 llvmlite-0.44.0 msgpack-1.1.0 numba-0.61.2 optimum-1.25.3 optimum-executorch-0.0.0.dev0 platformdirs-4.3.8 pooch-1.8.2 pycparser-2.22 scikit-learn-1.7.0 scipy-1.15.3 soundfile-0.13.1 soxr-0.5.0.post1 threadpoolctl-3.6.0 transformers-4.51.0 2025-06-05T23:57:00.3535174Z + popd 2025-06-05T23:57:00.3535501Z /pytorch/executorch 2025-06-05T23:57:00.3536078Z + '[' HuggingFaceTB/SmolLM2-135M == google/gemma-3-1b-it ']' 2025-06-05T23:57:00.3536750Z + pip list 2025-06-05T23:57:00.3537209Z Package Version Build Editable project location 2025-06-05T23:57:00.3538043Z ----------------------------- ------------------ ----- ----------------------------------- 2025-06-05T23:57:00.3538624Z accelerate 1.7.0 2025-06-05T23:57:00.3539125Z aiohappyeyeballs 2.6.1 2025-06-05T23:57:00.3539667Z aiohttp 3.12.9 2025-06-05T23:57:00.3540082Z aiosignal 1.3.2 2025-06-05T23:57:00.3540572Z alabaster 0.7.16 2025-06-05T23:57:00.3541109Z antlr4-python3-runtime 4.9.3 2025-06-05T23:57:00.3541557Z async-timeout 5.0.1 2025-06-05T23:57:00.3542125Z attrs 25.3.0 2025-06-05T23:57:00.3542621Z audioread 3.0.1 2025-06-05T23:57:00.3543023Z babel 2.17.0 2025-06-05T23:57:00.3543628Z beautifulsoup4 4.13.4 2025-06-05T23:57:00.3544120Z blobfile 3.0.0 2025-06-05T23:57:00.3544546Z breathe 4.34.0 2025-06-05T23:57:00.3545018Z bs4 0.0.2 2025-06-05T23:57:00.3545495Z cattrs 25.1.1 2025-06-05T23:57:00.3545997Z certifi 2025.4.26 2025-06-05T23:57:00.3546478Z cffi 1.17.1 2025-06-06T00:01:41.6712751Z charset-normalizer 3.4.2 2025-06-06T00:01:41.6713368Z cmake 3.31.6 2025-06-06T00:01:41.6714244Z contourpy 1.3.2 2025-06-06T00:01:41.6714867Z coremltools 8.3.0 2025-06-06T00:01:41.6715284Z coverage 7.8.2 2025-06-06T00:01:41.6715676Z cycler 0.12.1 2025-06-06T00:01:41.6716110Z datasets 3.6.0 2025-06-06T00:01:41.6716504Z decorator 5.2.1 2025-06-06T00:01:41.6717578Z dill 0.3.8 2025-06-06T00:01:41.6717994Z docutils 0.16 2025-06-06T00:01:41.6718402Z exceptiongroup 1.3.0 2025-06-06T00:01:41.6718823Z execnet 2.1.1 2025-06-06T00:01:41.6719249Z executorch 0.7.0a0+bd57234 2025-06-06T00:01:41.6719710Z exhale 0.2.3 2025-06-06T00:01:41.6720105Z expecttest 0.1.6 2025-06-06T00:01:41.6720515Z filelock 3.18.0 2025-06-06T00:01:41.6720919Z flatbuffers 25.2.10 2025-06-06T00:01:41.6721340Z fonttools 4.58.1 2025-06-06T00:01:41.6721740Z frozenlist 1.6.2 2025-06-06T00:01:41.6722152Z fsspec 2025.3.0 2025-06-06T00:01:41.6722563Z hf_transfer 0.1.9 2025-06-06T00:01:41.6722974Z hf-xet 1.1.3 2025-06-06T00:01:41.6723382Z huggingface-hub 0.32.4 2025-06-06T00:01:41.6723808Z hypothesis 6.84.2 2025-06-06T00:01:41.6724212Z idna 3.10 2025-06-06T00:01:41.6724601Z imagesize 1.4.1 2025-06-06T00:01:41.6725011Z iniconfig 2.1.0 2025-06-06T00:01:41.6725406Z inquirerpy 0.3.4 2025-06-06T00:01:41.6725813Z Jinja2 3.1.6 2025-06-06T00:01:41.6726206Z joblib 1.5.1 2025-06-06T00:01:41.6726614Z kagglehub 0.3.12 2025-06-06T00:01:41.6727013Z kiwisolver 1.4.8 2025-06-06T00:01:41.6727429Z lazy_loader 0.4 2025-06-06T00:01:41.6727818Z librosa 0.11.0 2025-06-06T00:01:41.6728227Z llvmlite 0.44.0 2025-06-06T00:01:41.6728619Z lxml 5.4.0 2025-06-06T00:01:41.6729034Z markdown-it-py 2.2.0 2025-06-06T00:01:41.6729448Z MarkupSafe 3.0.2 2025-06-06T00:01:41.6729860Z matplotlib 3.10.3 2025-06-06T00:01:41.6730276Z mdit-py-plugins 0.3.5 2025-06-06T00:01:41.6730690Z mdurl 0.1.2 2025-06-06T00:01:41.6731079Z mpmath 1.3.0 2025-06-06T00:01:41.6731469Z msgpack 1.1.0 2025-06-06T00:01:41.6731876Z multidict 6.4.4 2025-06-06T00:01:41.6732289Z multiprocess 0.70.16 2025-06-06T00:01:41.6732718Z myst-parser 0.18.1 2025-06-06T00:01:41.6733124Z networkx 3.4.2 2025-06-06T00:01:41.6733533Z numba 0.61.2 2025-06-06T00:01:41.6733923Z numpy 2.2.6 2025-06-06T00:01:41.6734360Z nvidia-cublas-cu12 12.1.3.1 2025-06-06T00:01:41.6734911Z nvidia-cuda-cupti-cu12 12.1.105 2025-06-06T00:01:41.6735368Z nvidia-cuda-nvrtc-cu12 12.1.105 2025-06-06T00:01:41.6743631Z nvidia-cuda-runtime-cu12 12.1.105 2025-06-06T00:01:41.6744455Z nvidia-cudnn-cu12 9.1.0.70 2025-06-06T00:01:41.6744928Z nvidia-cufft-cu12 11.0.2.54 2025-06-06T00:01:41.6745401Z nvidia-curand-cu12 10.3.2.106 2025-06-06T00:01:41.6745870Z nvidia-cusolver-cu12 11.4.5.107 2025-06-06T00:01:41.6746320Z nvidia-cusparse-cu12 12.1.0.106 2025-06-06T00:01:41.6746776Z nvidia-nccl-cu12 2.20.5 2025-06-06T00:01:41.6747212Z nvidia-nvjitlink-cu12 12.9.41 2025-06-06T00:01:41.6747753Z nvidia-nvtx-cu12 12.1.105 2025-06-06T00:01:41.6748178Z omegaconf 2.3.0 2025-06-06T00:01:41.6748599Z optimum 1.25.3 2025-06-06T00:01:41.6749028Z optimum-executorch 0.0.0.dev0 2025-06-06T00:01:41.6749480Z packaging 25.0 2025-06-06T00:01:41.6749886Z pandas 2.2.3 2025-06-06T00:01:41.6750305Z parameterized 0.9.0 2025-06-06T00:01:41.6750707Z pfzy 0.3.4 2025-06-06T00:01:41.6751121Z pillow 11.2.1 2025-06-06T00:01:41.6751521Z pip 25.1 2025-06-06T00:01:41.6752001Z platformdirs 4.3.8 2025-06-06T00:01:41.6752418Z pluggy 1.6.0 2025-06-06T00:01:41.6752809Z pooch 1.8.2 2025-06-06T00:01:41.6753223Z prompt_toolkit 3.0.51 2025-06-06T00:01:41.6753626Z propcache 0.3.1 2025-06-06T00:01:41.6754043Z protobuf 6.31.1 2025-06-06T00:01:41.6754439Z psutil 7.0.0 2025-06-06T00:01:41.6754841Z pyaml 25.5.0 2025-06-06T00:01:41.6755234Z pyarrow 20.0.0 2025-06-06T00:01:41.6755652Z pycparser 2.22 2025-06-06T00:01:41.6756056Z pycryptodomex 3.23.0 2025-06-06T00:01:41.6756476Z Pygments 2.19.1 2025-06-06T00:01:41.6756878Z pyparsing 3.2.3 2025-06-06T00:01:41.6757296Z pytest 8.4.0 2025-06-06T00:01:41.6757696Z pytest-cov 4.1.0 2025-06-06T00:01:41.6758127Z pytest-rerunfailures 15.1 2025-06-06T00:01:41.6758550Z pytest-xdist 3.7.0 2025-06-06T00:01:41.6758976Z python-dateutil 2.9.0.post0 2025-06-06T00:01:41.6759606Z pytorch_sphinx_theme 0.0.24 /opt/conda/src/pytorch-sphinx-theme 2025-06-06T00:01:41.6760217Z pytorch_tokenizers 0.1.0 2025-06-06T00:01:41.6760642Z pytz 2025.2 2025-06-06T00:01:41.6761036Z PyYAML 6.0.1 2025-06-06T00:01:41.6761452Z regex 2024.11.6 2025-06-06T00:01:41.6761864Z requests 2.32.3 2025-06-06T00:01:41.6762286Z ruamel.yaml 0.17.32 2025-06-06T00:01:41.6762700Z ruamel.yaml.clib 0.2.12 2025-06-06T00:01:41.6763125Z safetensors 0.5.3 2025-06-06T00:01:41.6763531Z scikit-learn 1.7.0 2025-06-06T00:01:41.6763947Z scipy 1.15.3 2025-06-06T00:01:41.6764350Z sentencepiece 0.2.0 2025-06-06T00:01:41.6764777Z setuptools 78.1.1 2025-06-06T00:01:41.6765176Z six 1.17.0 2025-06-06T00:01:41.6765598Z snowballstemmer 3.0.1 2025-06-06T00:01:41.6766011Z sortedcontainers 2.4.0 2025-06-06T00:01:41.6766419Z soundfile 0.13.1 2025-06-06T00:01:41.6766837Z soupsieve 2.7 2025-06-06T00:01:41.6767248Z soxr 0.5.0.post1 2025-06-06T00:01:41.6767686Z Sphinx 5.3.0 2025-06-06T00:01:41.6768091Z sphinx-copybutton 0.5.0 2025-06-06T00:01:41.6768520Z sphinx_design 0.4.1 2025-06-06T00:01:41.6768925Z sphinx-gallery 0.14.0 2025-06-06T00:01:41.6769353Z sphinx_reredirects 0.1.4 2025-06-06T00:01:41.6769780Z sphinxcontrib-applehelp 2.0.0 2025-06-06T00:01:41.6770236Z sphinxcontrib-devhelp 2.0.0 2025-06-06T00:01:41.6770732Z sphinxcontrib-htmlhelp 2.1.0 2025-06-06T00:01:41.6771168Z sphinxcontrib-jsmath 1.0.1 2025-06-06T00:01:41.6771612Z sphinxcontrib-qthelp 2.0.0 2025-06-06T00:01:41.6772080Z sphinxcontrib-serializinghtml 2.0.0 2025-06-06T00:01:41.6772513Z sympy 1.14.0 2025-06-06T00:01:41.6772921Z tabulate 0.9.0 2025-06-06T00:01:41.6773319Z threadpoolctl 3.6.0 2025-06-06T00:01:41.6773758Z tiktoken 0.9.0 2025-06-06T00:01:41.6774166Z timm 1.0.7 2025-06-06T00:01:41.6774684Z tokenizers 0.21.1 2025-06-06T00:01:41.6775110Z tomli 2.0.1 2025-06-06T00:01:41.6775538Z torch 2.8.0a0+git5616fa4 2025-06-06T00:01:41.6776037Z torchao 0.12.0+gitbc68b11 2025-06-06T00:01:41.6776517Z torchaudio 2.6.0a0+1a8f621 2025-06-06T00:01:41.6776976Z torchdata 0.11.0 2025-06-06T00:01:41.6777378Z torchsr 1.0.4 2025-06-06T00:01:41.6777788Z torchtune 0.6.1 2025-06-06T00:01:41.6778302Z torchvision 0.22.0a0+966da7e 2025-06-06T00:01:41.6778765Z tqdm 4.67.1 2025-06-06T00:01:41.6779166Z transformers 4.51.0 2025-06-06T00:01:41.6779618Z triton 3.0.0 1 2025-06-06T00:01:41.6780076Z typing_extensions 4.14.0 2025-06-06T00:01:41.6780498Z tzdata 2025.2 2025-06-06T00:01:41.6780893Z urllib3 2.4.0 2025-06-06T00:01:41.6781283Z wcwidth 0.2.13 2025-06-06T00:01:41.6781689Z wheel 0.45.1 2025-06-06T00:01:41.6782081Z xxhash 3.5.0 2025-06-06T00:01:41.6782480Z yarl 1.20.0 2025-06-06T00:01:41.6782872Z zstd 1.5.5.1 2025-06-06T00:01:41.6783319Z + echo ::endgroup:: 2025-06-06T00:01:41.6783990Z ##[endgroup] 2025-06-06T00:01:41.6784330Z + echo '::group::Export to ExecuTorch' 2025-06-06T00:01:41.6785020Z ##[group]Export to ExecuTorch 2025-06-06T00:01:41.6785453Z + export MODEL_ID=HuggingFaceTB/SmolLM2-135M 2025-06-06T00:01:41.6785936Z + MODEL_ID=HuggingFaceTB/SmolLM2-135M 2025-06-06T00:01:41.6786338Z ++ pwd 2025-06-06T00:01:41.6786898Z + export OUTPUT_DIR=/pytorch/executorch/HuggingFaceTB/SmolLM2-135M_custom_sdpa_8da4w 2025-06-06T00:01:41.6787840Z + OUTPUT_DIR=/pytorch/executorch/HuggingFaceTB/SmolLM2-135M_custom_sdpa_8da4w 2025-06-06T00:01:41.6788559Z + pushd optimum-executorch 2025-06-06T00:01:41.6789063Z /pytorch/executorch/optimum-executorch /pytorch/executorch 2025-06-06T00:01:41.6790550Z + optimum-cli export executorch --model HuggingFaceTB/SmolLM2-135M --task text-generation --recipe xnnpack --use_custom_sdpa --output_dir /pytorch/executorch/HuggingFaceTB/SmolLM2-135M_custom_sdpa_8da4w --qlinear 2025-06-06T00:01:41.6791755Z 2025-06-06T00:01:41.6791928Z config.json: 0% 0.00/704 [00:00/dev/null 2>/dev/null; then 2025-06-06T00:02:15.8392445Z  mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/" 2025-06-06T00:02:15.8392922Z  fi 2025-06-06T00:02:15.8393305Z  if [[ -d "artifacts-to-be-uploaded" ]]; then 2025-06-06T00:02:15.8393931Z  mv -v artifacts-to-be-uploaded/* "${RUNNER_ARTIFACT_DIR}/" 2025-06-06T00:02:15.8394470Z  fi 2025-06-06T00:02:15.8394836Z fi 2025-06-06T00:02:15.8395154Z  2025-06-06T00:02:15.8395466Z upload_docs=0 2025-06-06T00:02:15.8396035Z # Check if there are files in the documentation folder to upload, note that 2025-06-06T00:02:15.8396672Z # empty folders do not count 2025-06-06T00:02:15.8397300Z if find "${RUNNER_DOCS_DIR}" -mindepth 1 -maxdepth 1 -type f | read -r; then 2025-06-06T00:02:15.8398105Z  # TODO: Add a check here to test if on ec2 because if we're not on ec2 then this 2025-06-06T00:02:15.8398791Z  # upload will probably not work correctly 2025-06-06T00:02:15.8399265Z  upload_docs=1 2025-06-06T00:02:15.8399635Z fi 2025-06-06T00:02:15.8400063Z echo "upload-docs=${upload_docs}" >> "${GITHUB_OUTPUT}" 2025-06-06T00:02:15.8408405Z shell: /usr/bin/bash -e {0} 2025-06-06T00:02:15.8408801Z env: 2025-06-06T00:02:15.8409188Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:02:15.8409779Z REPOSITORY: pytorch/executorch 2025-06-06T00:02:15.8410186Z PR_NUMBER: 2025-06-06T00:02:15.8425314Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-06T00:02:15.8440928Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:02:15.8441729Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:02:15.8442484Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:02:15.8443073Z UPLOAD_ARTIFACT_NAME: profiling-artifacts-2 2025-06-06T00:02:15.8443541Z ##[endgroup] 2025-06-06T00:02:15.8540301Z renamed 'artifacts-to-be-uploaded/HuggingFaceTB' -> '/home/ec2-user/actions-runner/_work/_temp/artifacts/HuggingFaceTB' 2025-06-06T00:02:15.8629863Z ##[group]Run actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 2025-06-06T00:02:15.8630496Z with: 2025-06-06T00:02:15.8630850Z name: profiling-artifacts-2 2025-06-06T00:02:15.8631359Z path: /home/ec2-user/actions-runner/_work/_temp/artifacts/ 2025-06-06T00:02:15.8632009Z if-no-files-found: warn 2025-06-06T00:02:15.8632394Z compression-level: 6 2025-06-06T00:02:15.8632776Z overwrite: false 2025-06-06T00:02:15.8633131Z include-hidden-files: false 2025-06-06T00:02:15.8633527Z env: 2025-06-06T00:02:15.8633885Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:02:15.8634395Z REPOSITORY: pytorch/executorch 2025-06-06T00:02:15.8634797Z PR_NUMBER: 2025-06-06T00:02:15.8649841Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-06T00:02:15.8665590Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:02:15.8666383Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:02:15.8683806Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:02:15.8684378Z ##[endgroup] 2025-06-06T00:02:16.1401117Z With the provided path, there will be 1 file uploaded 2025-06-06T00:02:16.1406243Z Artifact name is valid! 2025-06-06T00:02:16.1407507Z Root directory input is valid! 2025-06-06T00:02:16.2519011Z Beginning upload of artifact content to blob storage 2025-06-06T00:02:16.4644249Z Uploaded bytes 22202 2025-06-06T00:02:16.4812894Z Finished uploading artifact content to blob storage! 2025-06-06T00:02:16.4817221Z SHA256 digest of uploaded artifact zip is ea945f9373c00e0b1b8ec3387f3e9fe3a2620a8298e2365087ccbefe3cc76656 2025-06-06T00:02:16.4819315Z Finalizing artifact upload 2025-06-06T00:02:16.5537526Z Artifact profiling-artifacts-2.zip successfully finalized. Artifact ID 3272131022 2025-06-06T00:02:16.5539468Z Artifact profiling-artifacts-2 has been successfully uploaded! Final size is 22202 bytes. Artifact ID is 3272131022 2025-06-06T00:02:16.5546899Z Artifact download URL: https://github.com/pytorch/executorch/actions/runs/15475023371/artifacts/3272131022 2025-06-06T00:02:16.5666813Z Prepare all required actions 2025-06-06T00:02:16.5709421Z ##[group]Run ./test-infra/.github/actions/teardown-linux 2025-06-06T00:02:16.5709940Z with: 2025-06-06T00:02:16.5710226Z env: 2025-06-06T00:02:16.5710609Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:02:16.5711125Z REPOSITORY: pytorch/executorch 2025-06-06T00:02:16.5711629Z PR_NUMBER: 2025-06-06T00:02:16.5726716Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-06T00:02:16.5743060Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:02:16.5743880Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:02:16.5744630Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:02:16.5745186Z ##[endgroup] 2025-06-06T00:02:16.5773315Z ##[group]Run set -eou pipefail 2025-06-06T00:02:16.5773778Z set -eou pipefail 2025-06-06T00:02:16.5774172Z  2025-06-06T00:02:16.5774947Z echo "Holding runner for 2 hours until all ssh sessions have logged out" 2025-06-06T00:02:16.5775603Z for _ in $(seq 1440); do 2025-06-06T00:02:16.5776065Z  # Break if no ssh session exists anymore 2025-06-06T00:02:16.5776577Z  if [ "$(who)" = "" ]; then 2025-06-06T00:02:16.5777015Z  break 2025-06-06T00:02:16.5777406Z  fi 2025-06-06T00:02:16.5777750Z  echo "." 2025-06-06T00:02:16.5778093Z  sleep 5 2025-06-06T00:02:16.5778444Z done 2025-06-06T00:02:16.5785387Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-06T00:02:16.5785909Z env: 2025-06-06T00:02:16.5786288Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:02:16.5786791Z REPOSITORY: pytorch/executorch 2025-06-06T00:02:16.5787208Z PR_NUMBER: 2025-06-06T00:02:16.5802230Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-06T00:02:16.5818420Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:02:16.5819364Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:02:16.5820143Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:02:16.5820704Z ##[endgroup] 2025-06-06T00:02:16.5847457Z Holding runner for 2 hours until all ssh sessions have logged out 2025-06-06T00:02:16.5943471Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2025-06-06T00:02:16.5944243Z # ignore expansion of "docker ps -q" since it could be empty 2025-06-06T00:02:16.5944843Z # shellcheck disable=SC2046 2025-06-06T00:02:16.5945313Z docker stop $(docker ps -q) || true 2025-06-06T00:02:16.5945808Z # Prune all of the docker images 2025-06-06T00:02:16.5946267Z docker system prune -af 2025-06-06T00:02:16.5952219Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-06T00:02:16.5952757Z env: 2025-06-06T00:02:16.5953125Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:02:16.5953661Z REPOSITORY: pytorch/executorch 2025-06-06T00:02:16.5954071Z PR_NUMBER: 2025-06-06T00:02:16.5969128Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-06T00:02:16.5984819Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:02:16.5985645Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:02:16.5986456Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:02:16.5987021Z ##[endgroup] 2025-06-06T00:02:27.2013870Z aee75772ca26 2025-06-06T00:02:27.9787429Z Deleted Containers: 2025-06-06T00:02:27.9788054Z aee75772ca265fd786ae6594647e6928bb8ac63c7fb4922f994085c218954074 2025-06-06T00:02:27.9788527Z 2025-06-06T00:02:31.4670937Z Deleted Images: 2025-06-06T00:02:31.4672240Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-06T00:02:31.4674328Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12@sha256:4cd9e207005b6720f61c5035e99d041f7d33aa7b787473b2143d086595b815e8 2025-06-06T00:02:31.4675747Z deleted: sha256:fd1cd238ff938168c3b0ff27a52bce2daabd27e2c7b7761b7a136339684f075e 2025-06-06T00:02:31.4676776Z deleted: sha256:8e45c08bf5947fbd511f713a1228fe97bbc7a23e901b1ae4d380df1ea6e10bbd 2025-06-06T00:02:31.4677689Z deleted: sha256:04effa688fa3e631de720f5652a705aca7c423f4c57a52a17cab203cc7c89d78 2025-06-06T00:02:31.4678591Z deleted: sha256:0ff0d9e8bf8072f5337787845ca1c15ed53e1eb4b1325979a8899e3f3d0cd9b6 2025-06-06T00:02:31.4679480Z deleted: sha256:e21c7acdad8a20b74e017c4d3c602cd520d388d56673eb33601b7e7fd7734c7b 2025-06-06T00:02:31.4680382Z deleted: sha256:15f84d6dedce785359e71bf76f72f0c550d387b274e883f4ea873e5180e222f4 2025-06-06T00:02:31.4681264Z deleted: sha256:894d7b36dd864d27db1e330b1a162a9012835901827522b25298391a2d768ef6 2025-06-06T00:02:31.4682139Z deleted: sha256:c578fbd5cf90c0cb1321dc4665daca51df19d94a9e3233cda05ad2b39095f324 2025-06-06T00:02:31.4683055Z deleted: sha256:a3ae1882331fb2e2cc650f04ba666e79a1d7493ac410e4e9cef16046d6cc47eb 2025-06-06T00:02:31.4683958Z deleted: sha256:d6c1e6c23cde366fcd86e62903678d475d0bbaa5d8e30892eba290ec847581f3 2025-06-06T00:02:31.4684846Z deleted: sha256:41d6b173c732d8141d0dcf122a1fd782eb6ea3246bf9ab9ecac92d504cd1dc65 2025-06-06T00:02:31.4685770Z deleted: sha256:b898594510e3c85112a1b9c9ed180cd382abe3be010ed4cef3cbffd7900cfe26 2025-06-06T00:02:31.4686657Z deleted: sha256:8e9a4620529679655e070aa45ae0a012667cb644bc6963bbf84a92dde5c29ed7 2025-06-06T00:02:31.4687534Z deleted: sha256:b831ebe05f719c48c7afd17f0d5e830b3a163dc99dfade3de7ed32d9ab1271c7 2025-06-06T00:02:31.4688441Z deleted: sha256:a3c026106e4b60f469fdb358f83ceb2761c9583dd82ed6bbbacd88a5e4ac342c 2025-06-06T00:02:31.4689343Z deleted: sha256:61c84b39c8f7d11cba7663dfa971e39e14e80aa19e754f74c696880b3647ae99 2025-06-06T00:02:31.4690230Z deleted: sha256:09bcb1a8f6fd3ac4988128cf1ea53c735df1a2ac3663679b9ea9cbc96f53a1c1 2025-06-06T00:02:31.4691144Z deleted: sha256:89b3e3fc4a9a1a25de48e48b6c882c82cf8f82faf24085a72668bc70eaf06a27 2025-06-06T00:02:31.4692050Z deleted: sha256:97acfae18ee614330e3ea71a0fda2f5a596bf3030e2fe829cc23af709146245d 2025-06-06T00:02:31.4692950Z deleted: sha256:62b2d87fffae84561033cbdd6f5e1cd59a1ad74942eeeed86bbd956d2d0a0d3f 2025-06-06T00:02:31.4694020Z deleted: sha256:280ff1c9429e4607b0f4947860a078e4d46f21597c3653cf5551884a2b1bfbbe 2025-06-06T00:02:31.4695189Z deleted: sha256:85bb43f20e1a5d85fa3ef3eb2d266e4c6f6f408603f3301a65782cbbc27c6bb4 2025-06-06T00:02:31.4696235Z deleted: sha256:85050b37e77e36bb8e30dbeb0abcddd96660fbf95092296be9d69ba0d21b195f 2025-06-06T00:02:31.4697128Z deleted: sha256:492e28f4f452290fa23c59dc61792a00da9046048d4f2525f716e877df86ee12 2025-06-06T00:02:31.4697981Z deleted: sha256:b669f2886f4de1619df49b1700677312c5912185091049bb4ba99f0d1f862684 2025-06-06T00:02:31.4698849Z deleted: sha256:666019e7ec1ded4644a80f579b78fd07651dc345e72bb3455e2783056b7519f6 2025-06-06T00:02:31.4699916Z deleted: sha256:108ae6d65dcac481c9d45276a12a0c35e97c72a4ce664fc31f753bbbdb5f4449 2025-06-06T00:02:31.4700830Z deleted: sha256:f9cda9f943bccc583aed104cf62f3ffdc0c0efa2cce02ef89abf7654d720f9e0 2025-06-06T00:02:31.4701757Z deleted: sha256:aa7077b912bf18b97278dd36715a7342df2c3fc0ff9dacffd5d58c362d9da96b 2025-06-06T00:02:31.4702654Z deleted: sha256:218f2fa4e2b8b1716be2298b5fd12196474562196ef6ac73e3176474e231da22 2025-06-06T00:02:31.4703800Z deleted: sha256:bb30d8b0a8cd9ae992792111a97e127b9f9dee9fd711a40f1ecd4e51786551d7 2025-06-06T00:02:31.4704711Z deleted: sha256:ecab88b98f9775583775ff956ce981c3190e2b0f18fabc355545110fb942786d 2025-06-06T00:02:31.4706120Z deleted: sha256:63acee5bfd4df5f9a2b75e2ca5921a2d36bdb1f3f798a854beef35240e98e68a 2025-06-06T00:02:31.4707412Z deleted: sha256:ed51600353c07805db3559da8b3c08d1e52a301c4d9757ca5cfea8a627750de5 2025-06-06T00:02:31.4708293Z deleted: sha256:08459522b4922770ee1be40a7a3ac57d801d235364012b7142b40bd2afadf408 2025-06-06T00:02:31.4709157Z deleted: sha256:bb80166d4410f46deb56858f88f277bfc87b8c6f912d802aa80ac611299bc1d9 2025-06-06T00:02:31.4710060Z deleted: sha256:f862e1968e4b4c3c3af141e37d2ec22b19ec0fd50d6a8aaf683de6729e296226 2025-06-06T00:02:31.4710930Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest 2025-06-06T00:02:31.4712100Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine@sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 2025-06-06T00:02:31.4713328Z deleted: sha256:6dbb9cc54074106d46d4ccb330f2a40a682d49dda5f4844962b7dce9fe44aaec 2025-06-06T00:02:31.4714245Z deleted: sha256:b2d5eeeaba3a22b9b8aa97261957974a6bd65274ebd43e1d81d0a7b8b752b116 2025-06-06T00:02:31.4714786Z 2025-06-06T00:02:31.4714959Z Total reclaimed space: 15.27GB 2025-06-06T00:02:31.4752574Z ##[group]Run set +e 2025-06-06T00:02:31.4752987Z set +e 2025-06-06T00:02:31.4753358Z if [[ "${NO_SUDO}" == "false" ]]; then 2025-06-06T00:02:31.4753936Z  sudo rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2025-06-06T00:02:31.4754453Z else 2025-06-06T00:02:31.4754863Z  rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2025-06-06T00:02:31.4755362Z fi 2025-06-06T00:02:31.4755673Z set -e 2025-06-06T00:02:31.4761985Z shell: /usr/bin/bash -e {0} 2025-06-06T00:02:31.4762382Z env: 2025-06-06T00:02:31.4762767Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:02:31.4763281Z REPOSITORY: pytorch/executorch 2025-06-06T00:02:31.4763699Z PR_NUMBER: 2025-06-06T00:02:31.4778967Z SCRIPT: echo "::group::Set up ExecuTorch" # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake # Build executor_runner with ETdump enabled PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DEXECUTORCH_ENABLE_LOGGING=1 \ -DCMAKE_BUILD_TYPE=Release \ -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ -DEXECUTORCH_BUILD_XNNPACK=ON \ -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ -DEXECUTORCH_BUILD_DEVTOOLS=ON \ -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ -Bcmake-out . cmake --build cmake-out -j16 --target install --config Release echo "::endgroup::" echo "::group::Set up Hugging Face" pip install -U "huggingface_hub[cli]" huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN git clone https://github.com/huggingface/optimum-executorch pushd optimum-executorch # There is no release yet, for CI stability, always test from the same commit on main git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 pip install .[tests] popd if [ "HuggingFaceTB/SmolLM2-135M" == "google/gemma-3-1b-it" ]; then # Fixes for gemma-3 is not available in the released version git clone https://github.com/huggingface/transformers.git pushd transformers git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f pip install -e . popd fi pip list echo "::endgroup::" echo "::group::Export to ExecuTorch" # Pass matrix variable as environment variable export MODEL_ID="HuggingFaceTB/SmolLM2-135M" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-06T00:02:31.4794803Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:02:31.4795718Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:02:31.4796479Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:02:31.4797041Z NO_SUDO: false 2025-06-06T00:02:31.4797387Z ##[endgroup] 2025-06-06T00:02:32.8594188Z Post job cleanup. 2025-06-06T00:02:32.9764882Z Post job cleanup. 2025-06-06T00:02:33.0813296Z [command]/usr/bin/git version 2025-06-06T00:02:33.0856617Z git version 2.47.1 2025-06-06T00:02:33.0904224Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/b974baab-e4ea-4013-86f4-433aded7bdb4' before making global git config changes 2025-06-06T00:02:33.0906648Z Adding repository directory to the temporary git global config as a safe directory 2025-06-06T00:02:33.0911410Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-06T00:02:33.0944994Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-06T00:02:33.0984792Z [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-06T00:02:33.1268417Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-06T00:02:33.1287262Z http.https://github.com/.extraheader 2025-06-06T00:02:33.1297808Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2025-06-06T00:02:33.1325467Z [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-06T00:02:33.1671738Z A job completed hook has been configured by the self-hosted runner administrator 2025-06-06T00:02:33.1700569Z ##[group]Run '/home/ec2-user/runner-scripts/after_job.sh' 2025-06-06T00:02:33.1707078Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-06T00:02:33.1707625Z ##[endgroup] 2025-06-06T00:02:33.1792187Z [!ALERT!] Swap in detected! [!ALERT!] 2025-06-06T00:02:44.8223556Z [!ALERT!] Swap out detected [!ALERT!] 2025-06-06T00:03:03.7224140Z Cleaning up orphan processes