2025-06-05T23:49:10.7449217Z Current runner version: '2.325.0' 2025-06-05T23:49:10.7459792Z Runner name: 'i-0b540e1a87ecbd704' 2025-06-05T23:49:10.7461675Z Machine name: 'ip-10-0-2-113' 2025-06-05T23:49:10.7467108Z ##[group]GITHUB_TOKEN Permissions 2025-06-05T23:49:10.7471797Z Contents: read 2025-06-05T23:49:10.7473240Z Metadata: read 2025-06-05T23:49:10.7474872Z ##[endgroup] 2025-06-05T23:49:10.7478171Z Secret source: Actions 2025-06-05T23:49:10.7480214Z Prepare workflow directory 2025-06-05T23:49:10.8275643Z Prepare all required actions 2025-06-05T23:49:10.8323303Z Getting action download info 2025-06-05T23:49:11.0897941Z Download action repository 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-06-05T23:49:11.3628435Z Download action repository 'pytorch/pytorch@9c1bc9ce4684de96db025292610c0664d3d55345' (SHA:9c1bc9ce4684de96db025292610c0664d3d55345) 2025-06-05T23:49:22.4321060Z Download action repository 'actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) 2025-06-05T23:49:22.7726251Z Download action repository 'pmeier/pytest-results-action@a2c1430e2bddadbad9f49a6f9b879f062c6b19b1' (SHA:a2c1430e2bddadbad9f49a6f9b879f062c6b19b1) 2025-06-05T23:49:22.8790987Z Download action repository 'actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-06-05T23:49:23.3196682Z Download action repository 'seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-06-05T23:49:23.6042782Z Getting action download info 2025-06-05T23:49:23.7157847Z Download action repository 'pytorch/pytorch@main' (SHA:28796f71d04302029290f473a286efc2aba339c2) 2025-06-05T23:49:37.2652881Z Complete job name: test-huggingface-transformers (allenai/OLMo-1B-hf) / linux-job 2025-06-05T23:49:37.3172215Z A job started hook has been configured by the self-hosted runner administrator 2025-06-05T23:49:37.3303141Z ##[group]Run '/home/ec2-user/runner-scripts/before_job.sh' 2025-06-05T23:49:37.3315316Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:37.3316225Z ##[endgroup] 2025-06-05T23:49:38.8143881Z Runner Type: linux.2xlarge.memory 2025-06-05T23:49:38.8144666Z Instance Type: r5.2xlarge 2025-06-05T23:49:38.8145045Z AMI Name: unknown 2025-06-05T23:49:38.8181082Z AMI ID: ami-071226ecf16aa7d96 2025-06-05T23:49:46.0835279Z ##[group]Run set -euxo pipefail 2025-06-05T23:49:46.0836011Z set -euxo pipefail 2025-06-05T23:49:46.0836462Z if [[ "${NO_SUDO}" == "false" ]]; then 2025-06-05T23:49:46.0837011Z  echo "::group::Cleanup with-sudo debug output" 2025-06-05T23:49:46.0837561Z  sudo rm -rfv "${GITHUB_WORKSPACE}" 2025-06-05T23:49:46.0837998Z else 2025-06-05T23:49:46.0838394Z  echo "::group::Cleanup no-sudo debug output" 2025-06-05T23:49:46.0838895Z  rm -rfv "${GITHUB_WORKSPACE}" 2025-06-05T23:49:46.0839322Z fi 2025-06-05T23:49:46.0839636Z  2025-06-05T23:49:46.0839970Z mkdir -p "${GITHUB_WORKSPACE}" 2025-06-05T23:49:46.0840409Z echo "::endgroup::" 2025-06-05T23:49:46.0851661Z shell: /usr/bin/bash -e {0} 2025-06-05T23:49:46.0852163Z env: 2025-06-05T23:49:46.0852541Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:46.0853051Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:46.0853698Z PR_NUMBER: 2025-06-05T23:49:46.0868813Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:46.0884686Z NO_SUDO: false 2025-06-05T23:49:46.0885013Z ##[endgroup] 2025-06-05T23:49:46.0921907Z + [[ false == \f\a\l\s\e ]] 2025-06-05T23:49:46.0937388Z + echo '::group::Cleanup with-sudo debug output' 2025-06-05T23:49:46.0938172Z + sudo rm -rfv /home/ec2-user/actions-runner/_work/executorch/executorch 2025-06-05T23:49:46.0947339Z ##[group]Cleanup with-sudo debug output 2025-06-05T23:49:46.2306572Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch' 2025-06-05T23:49:46.2327082Z + mkdir -p /home/ec2-user/actions-runner/_work/executorch/executorch 2025-06-05T23:49:46.2341813Z + echo ::endgroup:: 2025-06-05T23:49:46.2343407Z ##[endgroup] 2025-06-05T23:49:46.2512646Z ##[group]Run actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 2025-06-05T23:49:46.2513335Z with: 2025-06-05T23:49:46.2513672Z repository: pytorch/test-infra 2025-06-05T23:49:46.2514107Z path: test-infra 2025-06-05T23:49:46.2514450Z submodules: recursive 2025-06-05T23:49:46.2515115Z token: *** 2025-06-05T23:49:46.2515430Z ssh-strict: true 2025-06-05T23:49:46.2515773Z ssh-user: git 2025-06-05T23:49:46.2516111Z persist-credentials: true 2025-06-05T23:49:46.2516496Z clean: true 2025-06-05T23:49:46.2516843Z sparse-checkout-cone-mode: true 2025-06-05T23:49:46.2517277Z fetch-depth: 1 2025-06-05T23:49:46.2517614Z fetch-tags: false 2025-06-05T23:49:46.2517952Z show-progress: true 2025-06-05T23:49:46.2518305Z lfs: false 2025-06-05T23:49:46.2518623Z set-safe-directory: true 2025-06-05T23:49:46.2518997Z env: 2025-06-05T23:49:46.2519612Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:46.2520117Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:46.2520605Z PR_NUMBER: 2025-06-05T23:49:46.2537806Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:46.2563841Z ##[endgroup] 2025-06-05T23:49:46.3981611Z Syncing repository: pytorch/test-infra 2025-06-05T23:49:46.3982784Z ##[group]Getting Git version info 2025-06-05T23:49:46.3983520Z Working directory is '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra' 2025-06-05T23:49:46.3984494Z [command]/usr/bin/git version 2025-06-05T23:49:46.3984883Z git version 2.47.1 2025-06-05T23:49:46.3999675Z ##[endgroup] 2025-06-05T23:49:46.4018059Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/2703d819-1416-42b7-93e9-197c9e6aaa69' before making global git config changes 2025-06-05T23:49:46.4025760Z Adding repository directory to the temporary git global config as a safe directory 2025-06-05T23:49:46.4027806Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-05T23:49:46.4066879Z ##[group]Initializing the repository 2025-06-05T23:49:46.4074044Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-05T23:49:46.4116108Z hint: Using 'master' as the name for the initial branch. This default branch name 2025-06-05T23:49:46.4117543Z hint: is subject to change. To configure the initial branch name to use in all 2025-06-05T23:49:46.4118792Z hint: of your new repositories, which will suppress this warning, call: 2025-06-05T23:49:46.4119801Z hint: 2025-06-05T23:49:46.4120462Z hint: git config --global init.defaultBranch 2025-06-05T23:49:46.4121278Z hint: 2025-06-05T23:49:46.4121999Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2025-06-05T23:49:46.4123266Z hint: 'development'. The just-created branch can be renamed via this command: 2025-06-05T23:49:46.4124189Z hint: 2025-06-05T23:49:46.4124700Z hint: git branch -m 2025-06-05T23:49:46.4126129Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/ 2025-06-05T23:49:46.4132656Z [command]/usr/bin/git remote add origin https://github.com/pytorch/test-infra 2025-06-05T23:49:46.4167467Z ##[endgroup] 2025-06-05T23:49:46.4168544Z ##[group]Disabling automatic garbage collection 2025-06-05T23:49:46.4174724Z [command]/usr/bin/git config --local gc.auto 0 2025-06-05T23:49:46.4210411Z ##[endgroup] 2025-06-05T23:49:46.4211423Z ##[group]Setting up auth 2025-06-05T23:49:46.4219703Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-05T23:49:46.4255813Z [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:46.4629621Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-05T23:49:46.4665491Z [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:46.5008641Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:49:46.5060958Z ##[endgroup] 2025-06-05T23:49:46.5062045Z ##[group]Determining the default branch 2025-06-05T23:49:46.5065308Z Retrieving the default branch name 2025-06-05T23:49:46.7460387Z Default branch 'main' 2025-06-05T23:49:46.7461432Z ##[endgroup] 2025-06-05T23:49:46.7462138Z ##[group]Fetching the repository 2025-06-05T23:49:46.7469651Z [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:47.2209605Z From https://github.com/pytorch/test-infra 2025-06-05T23:49:47.2210188Z * [new branch] main -> origin/main 2025-06-05T23:49:47.2237291Z ##[endgroup] 2025-06-05T23:49:47.2237878Z ##[group]Determining the checkout info 2025-06-05T23:49:47.2238855Z ##[endgroup] 2025-06-05T23:49:47.2243683Z [command]/usr/bin/git sparse-checkout disable 2025-06-05T23:49:47.2283121Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-06-05T23:49:47.2314759Z ##[group]Checking out the ref 2025-06-05T23:49:47.2319529Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main 2025-06-05T23:49:47.3322418Z Switched to a new branch 'main' 2025-06-05T23:49:47.3323444Z branch 'main' set up to track 'origin/main'. 2025-06-05T23:49:47.3331466Z ##[endgroup] 2025-06-05T23:49:47.3332081Z ##[group]Setting up auth for fetching submodules 2025-06-05T23:49:47.3338162Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:49:47.3386495Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-06-05T23:49:47.3420817Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-06-05T23:49:47.3454417Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-06-05T23:49:47.3484553Z ##[endgroup] 2025-06-05T23:49:47.3485122Z ##[group]Fetching submodules 2025-06-05T23:49:47.3490024Z [command]/usr/bin/git submodule sync --recursive 2025-06-05T23:49:47.3820969Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2025-06-05T23:49:47.4161461Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-06-05T23:49:47.4493086Z ##[endgroup] 2025-06-05T23:49:47.4499427Z ##[group]Persisting credentials for submodules 2025-06-05T23:49:47.4500838Z [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:47.4831361Z [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:47.5164240Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-06-05T23:49:47.5503813Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-06-05T23:49:47.5840009Z ##[endgroup] 2025-06-05T23:49:47.5883229Z [command]/usr/bin/git log -1 --format=%H 2025-06-05T23:49:47.5911911Z e339ed56a2ad5e0f901a4edc5e1d5770100696d3 2025-06-05T23:49:47.6133340Z Prepare all required actions 2025-06-05T23:49:47.6134239Z Getting action download info 2025-06-05T23:49:47.7017072Z Download action repository 'pytorch/test-infra@main' (SHA:e339ed56a2ad5e0f901a4edc5e1d5770100696d3) 2025-06-05T23:49:49.2394876Z Getting action download info 2025-06-05T23:49:49.3535830Z Download action repository 'nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482' (SHA:3e91a01664abd3c5cd539100d10d33b9c5b68482) 2025-06-05T23:49:49.5633976Z ##[group]Run ./test-infra/.github/actions/setup-linux 2025-06-05T23:49:49.5634804Z env: 2025-06-05T23:49:49.5635443Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:49.5636298Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:49.5636986Z PR_NUMBER: 2025-06-05T23:49:49.5664944Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:49.5694334Z ##[endgroup] 2025-06-05T23:49:49.5833899Z ##[group]Run set -euo pipefail 2025-06-05T23:49:49.5834399Z set -euo pipefail 2025-06-05T23:49:49.5835122Z function get_ec2_metadata() { 2025-06-05T23:49:49.5835655Z  # Pulled from instance metadata endpoint for EC2 2025-06-05T23:49:49.5836503Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-06-05T23:49:49.5837286Z  category=$1 2025-06-05T23:49:49.5838452Z  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:49.5839660Z } 2025-06-05T23:49:49.5840043Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-06-05T23:49:49.5840618Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-06-05T23:49:49.5841272Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-06-05T23:49:49.5841832Z echo "system info $(uname -a)" 2025-06-05T23:49:49.5849291Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:49.5849822Z env: 2025-06-05T23:49:49.5850179Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:49.5850685Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:49.5851076Z PR_NUMBER: 2025-06-05T23:49:49.5865972Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:49.5881323Z ##[endgroup] 2025-06-05T23:49:49.6041509Z ami-id: ami-071226ecf16aa7d96 2025-06-05T23:49:49.6167845Z instance-id: i-0b540e1a87ecbd704 2025-06-05T23:49:49.6294270Z instance-type: r5.2xlarge 2025-06-05T23:49:49.6307955Z system info Linux ip-10-0-2-113.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:49.6353608Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:49:49.6354857Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:49:49.6362098Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:49.6362633Z env: 2025-06-05T23:49:49.6363002Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:49.6363502Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:49.6363911Z PR_NUMBER: 2025-06-05T23:49:49.6379155Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:49.6394126Z ##[endgroup] 2025-06-05T23:49:49.6489691Z ##[group]Run if systemctl is-active --quiet docker; then 2025-06-05T23:49:49.6490338Z if systemctl is-active --quiet docker; then 2025-06-05T23:49:49.6490855Z  echo "Docker daemon is running..."; 2025-06-05T23:49:49.6491312Z else 2025-06-05T23:49:49.6491787Z  echo "Starting docker deamon..." && sudo systemctl start docker; 2025-06-05T23:49:49.6492372Z fi 2025-06-05T23:49:49.6499393Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:49.6499922Z env: 2025-06-05T23:49:49.6500286Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:49.6500811Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:49.6501208Z PR_NUMBER: 2025-06-05T23:49:49.6516032Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:49.6531098Z ##[endgroup] 2025-06-05T23:49:49.6623546Z Docker daemon is running... 2025-06-05T23:49:49.6660142Z ##[group]Run AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2025-06-05T23:49:49.6661030Z AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2025-06-05T23:49:49.6661722Z retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2025-06-05T23:49:49.6662545Z retry aws ecr get-login-password --region "$AWS_DEFAULT_REGION" | docker login --username AWS \ 2025-06-05T23:49:49.6663509Z  --password-stdin "$AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com" 2025-06-05T23:49:49.6670865Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:49.6671380Z env: 2025-06-05T23:49:49.6671787Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:49.6672283Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:49.6672679Z PR_NUMBER: 2025-06-05T23:49:49.6688106Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:49.6703226Z AWS_RETRY_MODE: standard 2025-06-05T23:49:49.6703647Z AWS_MAX_ATTEMPTS: 5 2025-06-05T23:49:49.6704033Z AWS_DEFAULT_REGION: us-east-1 2025-06-05T23:49:49.6704418Z ##[endgroup] 2025-06-05T23:49:51.0042629Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:49:51.0043547Z Configure a credential helper to remove this warning. See 2025-06-05T23:49:51.0044398Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:49:51.0044973Z 2025-06-05T23:49:51.0053244Z Login Succeeded 2025-06-05T23:49:51.0122555Z ##[group]Run env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:49:51.0123818Z env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:49:51.0124871Z env | grep '^CI' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:49:51.0135547Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:51.0136363Z env: 2025-06-05T23:49:51.0136907Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:51.0137713Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:51.0138352Z PR_NUMBER: 2025-06-05T23:49:51.0165041Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:51.0182119Z ##[endgroup] 2025-06-05T23:49:51.0416491Z ##[group]Run RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2025-06-05T23:49:51.0417164Z RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2025-06-05T23:49:51.0417703Z sudo rm -rf "${RUNNER_ARTIFACT_DIR}" 2025-06-05T23:49:51.0418204Z mkdir -p "${RUNNER_ARTIFACT_DIR}" 2025-06-05T23:49:51.0418803Z echo "RUNNER_ARTIFACT_DIR=${RUNNER_ARTIFACT_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:49:51.0419394Z  2025-06-05T23:49:51.0419819Z RUNNER_TEST_RESULTS_DIR="${RUNNER_TEMP}/test-results" 2025-06-05T23:49:51.0420403Z sudo rm -rf "${RUNNER_TEST_RESULTS_DIR}" 2025-06-05T23:49:51.0420902Z mkdir -p "${RUNNER_TEST_RESULTS_DIR}" 2025-06-05T23:49:51.0421549Z echo "RUNNER_TEST_RESULTS_DIR=${RUNNER_TEST_RESULTS_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:49:51.0422167Z  2025-06-05T23:49:51.0422517Z RUNNER_DOCS_DIR="${RUNNER_TEMP}/docs" 2025-06-05T23:49:51.0422985Z sudo rm -rf "${RUNNER_DOCS_DIR}" 2025-06-05T23:49:51.0423442Z mkdir -p "${RUNNER_DOCS_DIR}" 2025-06-05T23:49:51.0423976Z echo "RUNNER_DOCS_DIR=${RUNNER_DOCS_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:49:51.0431139Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:51.0431645Z env: 2025-06-05T23:49:51.0432006Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:51.0432512Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:51.0432910Z PR_NUMBER: 2025-06-05T23:49:51.0447795Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:51.0462969Z ##[endgroup] 2025-06-05T23:49:51.6210607Z ##[group]Run needs=0 2025-06-05T23:49:51.6211020Z needs=0 2025-06-05T23:49:51.6211523Z if lspci -v | grep -e 'controller.*NVIDIA' >/dev/null 2>/dev/null; then 2025-06-05T23:49:51.6212130Z  needs=1 2025-06-05T23:49:51.6212474Z fi 2025-06-05T23:49:51.6212817Z echo "does=${needs}" >> $GITHUB_OUTPUT 2025-06-05T23:49:51.6219974Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:51.6220479Z env: 2025-06-05T23:49:51.6220847Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:51.6221332Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:51.6221736Z PR_NUMBER: 2025-06-05T23:49:51.6236512Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:51.6251614Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:49:51.6252393Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:49:51.6253134Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:49:51.6253783Z ##[endgroup] 2025-06-05T23:49:51.6607935Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:49:51.6608745Z # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:49:51.6609337Z # shellcheck disable=SC2046 2025-06-05T23:49:51.6609805Z docker stop $(docker ps -q) || true 2025-06-05T23:49:51.6610280Z # Prune all of the docker images 2025-06-05T23:49:51.6610739Z docker system prune -af 2025-06-05T23:49:51.6617866Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:51.6618380Z env: 2025-06-05T23:49:51.6618759Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:51.6619254Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:51.6619658Z PR_NUMBER: 2025-06-05T23:49:51.6634436Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:51.6649679Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:49:51.6650477Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:49:51.6651222Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:49:51.6651748Z ##[endgroup] 2025-06-05T23:49:51.6922205Z "docker stop" requires at least 1 argument. 2025-06-05T23:49:51.6922751Z See 'docker stop --help'. 2025-06-05T23:49:51.6923004Z 2025-06-05T23:49:51.6923233Z Usage: docker stop [OPTIONS] CONTAINER [CONTAINER...] 2025-06-05T23:49:51.6923599Z 2025-06-05T23:49:51.6923764Z Stop one or more running containers 2025-06-05T23:49:51.7127898Z Total reclaimed space: 0B 2025-06-05T23:49:51.7221915Z ##[group]Run ./test-infra/.github/actions/setup-ssh 2025-06-05T23:49:51.7222426Z with: 2025-06-05T23:49:51.7223147Z github-secret: *** 2025-06-05T23:49:51.7224085Z 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:51.7225100Z activate-with-label: false 2025-06-05T23:49:51.7225497Z label: with-ssh 2025-06-05T23:49:51.7225837Z remove-existing-keys: true 2025-06-05T23:49:51.7226236Z fail-silently: true 2025-06-05T23:49:51.7226566Z env: 2025-06-05T23:49:51.7226909Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:51.7227607Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:51.7227999Z PR_NUMBER: 2025-06-05T23:49:51.7242686Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:51.7258010Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:49:51.7258968Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:49:51.7259725Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:49:51.7260247Z ##[endgroup] 2025-06-05T23:49:51.8570878Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-06-05T23:49:51.8572306Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-06-05T23:49:51.8723132Z ##[group]Run actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 2025-06-05T23:49:51.8723732Z with: 2025-06-05T23:49:51.8724075Z repository: pytorch/executorch 2025-06-05T23:49:51.8724521Z ref: bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:49:51.8725182Z path: pytorch/executorch 2025-06-05T23:49:51.8725555Z fetch-depth: 1 2025-06-05T23:49:51.8725900Z submodules: recursive 2025-06-05T23:49:51.8726505Z token: *** 2025-06-05T23:49:51.8726828Z ssh-strict: true 2025-06-05T23:49:51.8727145Z ssh-user: git 2025-06-05T23:49:51.8727491Z persist-credentials: true 2025-06-05T23:49:51.8727862Z clean: true 2025-06-05T23:49:51.8728198Z sparse-checkout-cone-mode: true 2025-06-05T23:49:51.8728617Z fetch-tags: false 2025-06-05T23:49:51.8728945Z show-progress: true 2025-06-05T23:49:51.8729288Z lfs: false 2025-06-05T23:49:51.8729599Z set-safe-directory: true 2025-06-05T23:49:51.8729963Z env: 2025-06-05T23:49:51.8730389Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:51.8730875Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:51.8731280Z PR_NUMBER: 2025-06-05T23:49:51.8746116Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:51.8761138Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:49:51.8762016Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:49:51.8762760Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:49:51.8763287Z ##[endgroup] 2025-06-05T23:49:51.9952859Z Syncing repository: pytorch/executorch 2025-06-05T23:49:51.9963239Z ##[group]Getting Git version info 2025-06-05T23:49:51.9964055Z Working directory is '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch' 2025-06-05T23:49:51.9996601Z [command]/usr/bin/git version 2025-06-05T23:49:52.0038765Z git version 2.47.1 2025-06-05T23:49:52.0069458Z ##[endgroup] 2025-06-05T23:49:52.0084584Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/6728254e-72ce-4bc3-9b3e-480bca2f912d' before making global git config changes 2025-06-05T23:49:52.0085992Z Adding repository directory to the temporary git global config as a safe directory 2025-06-05T23:49:52.0101875Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch 2025-06-05T23:49:52.0135871Z ##[group]Initializing the repository 2025-06-05T23:49:52.0142462Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch 2025-06-05T23:49:52.0180257Z hint: Using 'master' as the name for the initial branch. This default branch name 2025-06-05T23:49:52.0181316Z hint: is subject to change. To configure the initial branch name to use in all 2025-06-05T23:49:52.0182066Z hint: of your new repositories, which will suppress this warning, call: 2025-06-05T23:49:52.0182634Z hint: 2025-06-05T23:49:52.0183011Z hint: git config --global init.defaultBranch 2025-06-05T23:49:52.0183892Z hint: 2025-06-05T23:49:52.0184394Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2025-06-05T23:49:52.0185167Z hint: 'development'. The just-created branch can be renamed via this command: 2025-06-05T23:49:52.0185763Z hint: 2025-06-05T23:49:52.0186072Z hint: git branch -m 2025-06-05T23:49:52.0187191Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/ 2025-06-05T23:49:52.0193454Z [command]/usr/bin/git remote add origin https://github.com/pytorch/executorch 2025-06-05T23:49:52.0227920Z ##[endgroup] 2025-06-05T23:49:52.0228546Z ##[group]Disabling automatic garbage collection 2025-06-05T23:49:52.0233261Z [command]/usr/bin/git config --local gc.auto 0 2025-06-05T23:49:52.0266980Z ##[endgroup] 2025-06-05T23:49:52.0267567Z ##[group]Setting up auth 2025-06-05T23:49:52.0274449Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-05T23:49:52.0309491Z [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:52.0656488Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-05T23:49:52.0689831Z [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:52.1028309Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:49:52.1080554Z ##[endgroup] 2025-06-05T23:49:52.1081279Z ##[group]Fetching the repository 2025-06-05T23:49:52.1102043Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:49:54.5775746Z From https://github.com/pytorch/executorch 2025-06-05T23:49:54.5776951Z * branch bd572346e4f196b36aaa03a1645d12b1618fe88b -> FETCH_HEAD 2025-06-05T23:49:54.5801163Z ##[endgroup] 2025-06-05T23:49:54.5805191Z ##[group]Determining the checkout info 2025-06-05T23:49:54.5806597Z ##[endgroup] 2025-06-05T23:49:54.5808588Z [command]/usr/bin/git sparse-checkout disable 2025-06-05T23:49:54.5847085Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-06-05T23:49:54.5876689Z ##[group]Checking out the ref 2025-06-05T23:49:54.5881945Z [command]/usr/bin/git checkout --progress --force bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:49:55.1623955Z Note: switching to 'bd572346e4f196b36aaa03a1645d12b1618fe88b'. 2025-06-05T23:49:55.1624515Z 2025-06-05T23:49:55.1624914Z You are in 'detached HEAD' state. You can look around, make experimental 2025-06-05T23:49:55.1625895Z changes and commit them, and you can discard any commits you make in this 2025-06-05T23:49:55.1626819Z state without impacting any branches by switching back to a branch. 2025-06-05T23:49:55.1627277Z 2025-06-05T23:49:55.1627673Z If you want to create a new branch to retain commits you create, you may 2025-06-05T23:49:55.1628515Z do so (now or later) by using -c with the switch command. Example: 2025-06-05T23:49:55.1629010Z 2025-06-05T23:49:55.1629181Z git switch -c 2025-06-05T23:49:55.1629587Z 2025-06-05T23:49:55.1629824Z Or undo this operation with: 2025-06-05T23:49:55.1630150Z 2025-06-05T23:49:55.1630322Z git switch - 2025-06-05T23:49:55.1630593Z 2025-06-05T23:49:55.1631025Z Turn off this advice by setting config variable advice.detachedHead to false 2025-06-05T23:49:55.1631572Z 2025-06-05T23:49:55.1631992Z HEAD is now at bd57234 Qualcomm AI Engine Direct - QAIRT Visualizer Engagement (#10873) 2025-06-05T23:49:55.1656280Z ##[endgroup] 2025-06-05T23:49:55.1663956Z ##[group]Setting up auth for fetching submodules 2025-06-05T23:49:55.1665653Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:49:55.1714112Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-06-05T23:49:55.1744141Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-06-05T23:49:55.1775045Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-06-05T23:49:55.1800661Z ##[endgroup] 2025-06-05T23:49:55.1801998Z ##[group]Fetching submodules 2025-06-05T23:49:55.1805787Z [command]/usr/bin/git submodule sync --recursive 2025-06-05T23:49:55.2121550Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2025-06-05T23:49:55.2430608Z 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:55.2433101Z 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:55.2434939Z Submodule 'backends/cadence/utils/FACTO' (https://github.com/pytorch-labs/FACTO.git) registered for path 'backends/cadence/utils/FACTO' 2025-06-05T23:49:55.2436843Z 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:55.2440086Z 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:55.2442375Z Submodule 'backends/vulkan/third-party/volk' (https://github.com/zeux/volk) registered for path 'backends/vulkan/third-party/volk' 2025-06-05T23:49:55.2445917Z Submodule 'backends/xnnpack/third-party/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'backends/xnnpack/third-party/FP16' 2025-06-05T23:49:55.2449024Z Submodule 'backends/xnnpack/third-party/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:49:55.2452540Z Submodule 'backends/xnnpack/third-party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:49:55.2456041Z Submodule 'backends/xnnpack/third-party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:49:55.2459739Z Submodule 'backends/xnnpack/third-party/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:49:55.2463191Z Submodule 'extension/llm/tokenizers' (https://github.com/pytorch-labs/tokenizers.git) registered for path 'extension/llm/tokenizers' 2025-06-05T23:49:55.2467055Z Submodule 'kernels/optimized/third-party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'kernels/optimized/third-party/eigen' 2025-06-05T23:49:55.2470708Z Submodule 'shim' (https://github.com/facebook/buck2-shims-meta) registered for path 'shim' 2025-06-05T23:49:55.2474696Z Submodule 'third-party/ao' (https://github.com/pytorch/ao.git) registered for path 'third-party/ao' 2025-06-05T23:49:55.2480209Z Submodule 'third-party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third-party/flatbuffers' 2025-06-05T23:49:55.2486157Z Submodule 'third-party/flatcc' (https://github.com/dvidelabs/flatcc.git) registered for path 'third-party/flatcc' 2025-06-05T23:49:55.2490454Z Submodule 'third-party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third-party/gflags' 2025-06-05T23:49:55.2495126Z Submodule 'third-party/googletest' (https://github.com/google/googletest.git) registered for path 'third-party/googletest' 2025-06-05T23:49:55.2499558Z Submodule 'third-party/ios-cmake' (https://github.com/leetal/ios-cmake) registered for path 'third-party/ios-cmake' 2025-06-05T23:49:55.2504304Z Submodule 'third-party/json' (https://github.com/nlohmann/json.git) registered for path 'third-party/json' 2025-06-05T23:49:55.2509290Z Submodule 'third-party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third-party/pocketfft' 2025-06-05T23:49:55.2514272Z Submodule 'third-party/prelude' (https://github.com/facebook/buck2-prelude.git) registered for path 'third-party/prelude' 2025-06-05T23:49:55.2519567Z Submodule 'third-party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third-party/pybind11' 2025-06-05T23:49:55.2554113Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/ethos-u-core-driver'... 2025-06-05T23:49:56.0624566Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/serialization_lib'... 2025-06-05T23:49:56.6054936Z warning: redirecting to https://git.gitlab.arm.com/-/push_from_secondary/7/tosa/tosa-serialization.git/ 2025-06-05T23:49:57.3276481Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/cadence/utils/FACTO'... 2025-06-05T23:49:57.5635617Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/Vulkan-Headers'... 2025-06-05T23:49:57.9839238Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/VulkanMemoryAllocator'... 2025-06-05T23:49:58.2779426Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/volk'... 2025-06-05T23:49:58.4602789Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/FP16'... 2025-06-05T23:49:58.6612356Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/FXdiv'... 2025-06-05T23:49:58.8347763Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/XNNPACK'... 2025-06-05T23:49:59.7713463Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/cpuinfo'... 2025-06-05T23:50:00.1817701Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/pthreadpool'... 2025-06-05T23:50:00.4241798Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers'... 2025-06-05T23:50:00.7861884Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/kernels/optimized/third-party/eigen'... 2025-06-05T23:50:01.5973191Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/shim'... 2025-06-05T23:50:01.8997701Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ao'... 2025-06-05T23:50:02.3553220Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/flatbuffers'... 2025-06-05T23:50:02.7241530Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/flatcc'... 2025-06-05T23:50:03.0104875Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/gflags'... 2025-06-05T23:50:03.1987157Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/googletest'... 2025-06-05T23:50:03.4876708Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ios-cmake'... 2025-06-05T23:50:03.6834693Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/json'... 2025-06-05T23:50:04.0907799Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/pocketfft'... 2025-06-05T23:50:04.3080390Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/prelude'... 2025-06-05T23:50:04.6878337Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/pybind11'... 2025-06-05T23:50:06.2666454Z From https://git.gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-core-driver 2025-06-05T23:50:06.2667354Z * branch 7bf44c54527e718b99d588ce520cf2f96343adb1 -> FETCH_HEAD 2025-06-05T23:50:06.2791646Z Submodule path 'backends/arm/third-party/ethos-u-core-driver': checked out '7bf44c54527e718b99d588ce520cf2f96343adb1' 2025-06-05T23:50:06.7529681Z warning: redirecting to https://git.gitlab.arm.com/-/push_from_secondary/7/tosa/tosa-serialization.git/ 2025-06-05T23:50:07.8520527Z warning: redirecting to https://git.gitlab.arm.com/-/push_from_secondary/7/tosa/tosa-serialization.git/ 2025-06-05T23:50:08.7824827Z From https://git.gitlab.arm.com/tosa/tosa-serialization 2025-06-05T23:50:08.7825577Z * branch 187af0d41fe75d08d2a7ec84c1b4d24b9b641ed2 -> FETCH_HEAD 2025-06-05T23:50:08.7949160Z Submodule path 'backends/arm/third-party/serialization_lib': checked out '187af0d41fe75d08d2a7ec84c1b4d24b9b641ed2' 2025-06-05T23:50:08.7966764Z 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:08.7995648Z 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:09.9825083Z From https://github.com/google/flatbuffers 2025-06-05T23:50:09.9825760Z * branch 0100f6a5779831fa7a651e4b67ef389a8752bd9b -> FETCH_HEAD 2025-06-05T23:50:10.1008634Z Submodule path 'backends/arm/third-party/serialization_lib/third_party/flatbuffers': checked out '0100f6a5779831fa7a651e4b67ef389a8752bd9b' 2025-06-05T23:50:10.7764231Z From https://github.com/pytorch-labs/FACTO 2025-06-05T23:50:10.7764949Z * branch 1db37fc79d0d59638cbb794fa49d878aafc24461 -> FETCH_HEAD 2025-06-05T23:50:10.7851816Z Submodule path 'backends/cadence/utils/FACTO': checked out '1db37fc79d0d59638cbb794fa49d878aafc24461' 2025-06-05T23:50:11.6762104Z From https://github.com/KhronosGroup/Vulkan-Headers 2025-06-05T23:50:11.6762817Z * branch 0c5928795a66e93f65e5e68a36d8daa79a209dc2 -> FETCH_HEAD 2025-06-05T23:50:11.7331174Z Submodule path 'backends/vulkan/third-party/Vulkan-Headers': checked out '0c5928795a66e93f65e5e68a36d8daa79a209dc2' 2025-06-05T23:50:12.5325590Z From https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator 2025-06-05T23:50:12.5326444Z * branch a6bfc237255a6bac1513f7c1ebde6d8aed6b5191 -> FETCH_HEAD 2025-06-05T23:50:12.5680395Z Submodule path 'backends/vulkan/third-party/VulkanMemoryAllocator': checked out 'a6bfc237255a6bac1513f7c1ebde6d8aed6b5191' 2025-06-05T23:50:13.0533578Z From https://github.com/zeux/volk 2025-06-05T23:50:13.0534284Z * branch b3bc21e584f97400b6884cb2a541a56c6a5ddba3 -> FETCH_HEAD 2025-06-05T23:50:13.0644509Z Submodule path 'backends/vulkan/third-party/volk': checked out 'b3bc21e584f97400b6884cb2a541a56c6a5ddba3' 2025-06-05T23:50:13.6289346Z From https://github.com/Maratyszcza/FP16 2025-06-05T23:50:13.6290024Z * branch 4dfe081cf6bcd15db339cf2680b9281b8451eeb3 -> FETCH_HEAD 2025-06-05T23:50:13.6388072Z Submodule path 'backends/xnnpack/third-party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-06-05T23:50:14.1070603Z From https://github.com/Maratyszcza/FXdiv 2025-06-05T23:50:14.1071272Z * branch b408327ac2a15ec3e43352421954f5b1967701d1 -> FETCH_HEAD 2025-06-05T23:50:14.1132277Z Submodule path 'backends/xnnpack/third-party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-06-05T23:50:15.8294724Z From https://github.com/google/XNNPACK 2025-06-05T23:50:15.8295374Z * branch 4ea82e595b36106653175dcb04b2aa532660d0d8 -> FETCH_HEAD 2025-06-05T23:50:16.4964427Z Submodule path 'backends/xnnpack/third-party/XNNPACK': checked out '4ea82e595b36106653175dcb04b2aa532660d0d8' 2025-06-05T23:50:17.1433664Z From https://github.com/pytorch/cpuinfo 2025-06-05T23:50:17.1434670Z * branch c61fe919607bbc534d7a5a5707bdd7041e72c5ff -> FETCH_HEAD 2025-06-05T23:50:17.2378553Z Submodule path 'backends/xnnpack/third-party/cpuinfo': checked out 'c61fe919607bbc534d7a5a5707bdd7041e72c5ff' 2025-06-05T23:50:17.9320658Z From https://github.com/Maratyszcza/pthreadpool 2025-06-05T23:50:17.9321373Z * branch 4fe0e1e183925bf8cfa6aae24237e724a96479b8 -> FETCH_HEAD 2025-06-05T23:50:17.9410243Z Submodule path 'backends/xnnpack/third-party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-06-05T23:50:18.3652030Z From https://github.com/pytorch-labs/tokenizers 2025-06-05T23:50:18.3652734Z * branch fc5962cd9e08019c5df6667eba3377e7d76441f7 -> FETCH_HEAD 2025-06-05T23:50:18.3928420Z Submodule path 'extension/llm/tokenizers': checked out 'fc5962cd9e08019c5df6667eba3377e7d76441f7' 2025-06-05T23:50:18.3945679Z 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:18.3947983Z Submodule 'third-party/json' (https://github.com/nlohmann/json.git) registered for path 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:18.3951001Z Submodule 'third-party/pcre2' (https://github.com/PCRE2Project/pcre2.git) registered for path 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:18.3953893Z Submodule 'third-party/re2' (https://github.com/google/re2.git) registered for path 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:18.3957038Z Submodule 'third-party/sentencepiece' (https://github.com/google/sentencepiece.git) registered for path 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:18.3985894Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/abseil-cpp'... 2025-06-05T23:50:18.7483062Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/json'... 2025-06-05T23:50:20.2462843Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/pcre2'... 2025-06-05T23:50:20.6350543Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/re2'... 2025-06-05T23:50:20.8920952Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece'... 2025-06-05T23:50:22.3209863Z From https://github.com/abseil/abseil-cpp 2025-06-05T23:50:22.3210528Z * branch 7d96b2e93d9a84530748b68abd2f97595c51ecf4 -> FETCH_HEAD 2025-06-05T23:50:22.4296880Z Submodule path 'extension/llm/tokenizers/third-party/abseil-cpp': checked out '7d96b2e93d9a84530748b68abd2f97595c51ecf4' 2025-06-05T23:50:23.2223215Z From https://github.com/nlohmann/json 2025-06-05T23:50:23.2223900Z * branch e6cafa573aac6ed9227f752a5371c0b3f436307d -> FETCH_HEAD 2025-06-05T23:50:23.3272486Z Submodule path 'extension/llm/tokenizers/third-party/json': checked out 'e6cafa573aac6ed9227f752a5371c0b3f436307d' 2025-06-05T23:50:23.9152268Z From https://github.com/PCRE2Project/pcre2 2025-06-05T23:50:23.9152961Z * branch 2e03e323339ab692640626f02f8d8d6f95bff9c6 -> FETCH_HEAD 2025-06-05T23:50:23.9970724Z Submodule path 'extension/llm/tokenizers/third-party/pcre2': checked out '2e03e323339ab692640626f02f8d8d6f95bff9c6' 2025-06-05T23:50:23.9989124Z Submodule 'deps/sljit' (https://github.com/zherczeg/sljit.git) registered for path 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:24.0018320Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/pcre2/deps/sljit'... 2025-06-05T23:50:24.7718879Z From https://github.com/zherczeg/sljit 2025-06-05T23:50:24.7719542Z * branch 98802d939be3f0ccc2c538d611ec4c728564e8cf -> FETCH_HEAD 2025-06-05T23:50:24.7931372Z Submodule path 'extension/llm/tokenizers/third-party/pcre2/deps/sljit': checked out '98802d939be3f0ccc2c538d611ec4c728564e8cf' 2025-06-05T23:50:25.3779489Z From https://github.com/google/re2 2025-06-05T23:50:25.3780158Z * branch 6dcd83d60f7944926bfd308cc13979fc53dd69ca -> FETCH_HEAD 2025-06-05T23:50:25.3986909Z Submodule path 'extension/llm/tokenizers/third-party/re2': checked out '6dcd83d60f7944926bfd308cc13979fc53dd69ca' 2025-06-05T23:50:25.9768394Z From https://github.com/google/sentencepiece 2025-06-05T23:50:25.9769081Z * branch d8f741853847553169444afc12c00f4bbff3e9ce -> FETCH_HEAD 2025-06-05T23:50:26.1179559Z Submodule path 'extension/llm/tokenizers/third-party/sentencepiece': checked out 'd8f741853847553169444afc12c00f4bbff3e9ce' 2025-06-05T23:50:27.8913556Z From https://gitlab.com/libeigen/eigen 2025-06-05T23:50:27.8914274Z * branch a39ade4ccf99df845ec85c580fbbb324f71952fa -> FETCH_HEAD 2025-06-05T23:50:28.0411362Z Submodule path 'kernels/optimized/third-party/eigen': checked out 'a39ade4ccf99df845ec85c580fbbb324f71952fa' 2025-06-05T23:50:28.6372849Z From https://github.com/facebook/buck2-shims-meta 2025-06-05T23:50:28.6373608Z * branch cf6a954aae4bee7b4515e13475878460115027d1 -> FETCH_HEAD 2025-06-05T23:50:28.6608383Z Submodule path 'shim': checked out 'cf6a954aae4bee7b4515e13475878460115027d1' 2025-06-05T23:50:29.2785943Z From https://github.com/pytorch/ao 2025-06-05T23:50:29.2786617Z * branch bc68b11f1bf77be38721ca7dd2c477aeb5e6626e -> FETCH_HEAD 2025-06-05T23:50:29.3841879Z Submodule path 'third-party/ao': checked out 'bc68b11f1bf77be38721ca7dd2c477aeb5e6626e' 2025-06-05T23:50:29.3862182Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass) registered for path 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:29.3891046Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ao/third_party/cutlass'... 2025-06-05T23:50:31.2188892Z From https://github.com/NVIDIA/cutlass 2025-06-05T23:50:31.2190015Z * branch ad7b2f5e84fcfa124cb02b91d5bd26d238c0459e -> FETCH_HEAD 2025-06-05T23:50:31.8447295Z Submodule path 'third-party/ao/third_party/cutlass': checked out 'ad7b2f5e84fcfa124cb02b91d5bd26d238c0459e' 2025-06-05T23:50:32.5843828Z From https://github.com/google/flatbuffers 2025-06-05T23:50:32.5844493Z * branch 595bf0007ab1929570c7671f091313c8fc20644e -> FETCH_HEAD 2025-06-05T23:50:32.7009112Z Submodule path 'third-party/flatbuffers': checked out '595bf0007ab1929570c7671f091313c8fc20644e' 2025-06-05T23:50:33.3089873Z From https://github.com/dvidelabs/flatcc 2025-06-05T23:50:33.3090796Z * branch 896db54787e8b730a6be482c69324751f3f5f117 -> FETCH_HEAD 2025-06-05T23:50:33.3371044Z Submodule path 'third-party/flatcc': checked out '896db54787e8b730a6be482c69324751f3f5f117' 2025-06-05T23:50:33.8884352Z From https://github.com/gflags/gflags 2025-06-05T23:50:33.8885281Z * branch a738fdf9338412f83ab3f26f31ac11ed3f3ec4bd -> FETCH_HEAD 2025-06-05T23:50:33.8986988Z Submodule path 'third-party/gflags': checked out 'a738fdf9338412f83ab3f26f31ac11ed3f3ec4bd' 2025-06-05T23:50:34.7432895Z From https://github.com/google/googletest 2025-06-05T23:50:34.7433586Z * branch e2239ee6043f73722e7aa812a459f54a28552929 -> FETCH_HEAD 2025-06-05T23:50:34.7841055Z Submodule path 'third-party/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-06-05T23:50:35.3105673Z From https://github.com/leetal/ios-cmake 2025-06-05T23:50:35.3106362Z * branch 06465b27698424cf4a04a5ca4904d50a3c966c45 -> FETCH_HEAD 2025-06-05T23:50:35.3195091Z Submodule path 'third-party/ios-cmake': checked out '06465b27698424cf4a04a5ca4904d50a3c966c45' 2025-06-05T23:50:35.8914998Z From https://github.com/nlohmann/json 2025-06-05T23:50:35.8915713Z * branch ac0133ea89a8fd730a9cc9649c5226a9995dc3e1 -> FETCH_HEAD 2025-06-05T23:50:35.9984455Z Submodule path 'third-party/json': checked out 'ac0133ea89a8fd730a9cc9649c5226a9995dc3e1' 2025-06-05T23:50:36.0162698Z Submodule path 'third-party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-06-05T23:50:36.7663541Z From https://github.com/facebook/buck2-prelude 2025-06-05T23:50:36.7664216Z * branch 48c249f8c7b99ff501d6e857754760315072b306 -> FETCH_HEAD 2025-06-05T23:50:36.9289849Z Submodule path 'third-party/prelude': checked out '48c249f8c7b99ff501d6e857754760315072b306' 2025-06-05T23:50:37.5673917Z From https://github.com/pybind/pybind11 2025-06-05T23:50:37.5674601Z * branch a2e59f0e7065404b44dfe92a28aca47ba1378dc4 -> FETCH_HEAD 2025-06-05T23:50:37.6006330Z Submodule path 'third-party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-06-05T23:50:37.6045630Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-06-05T23:50:37.6385832Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:50:37.6439603Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:50:37.6492174Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:50:37.6550785Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:50:37.6602760Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:50:37.6651544Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:50:37.6701772Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:50:37.6750661Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:50:37.6802405Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:50:37.6851256Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:50:37.6921566Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:50:37.6972296Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:50:37.7021933Z Entering 'extension/llm/tokenizers' 2025-06-05T23:50:37.7073185Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:50:37.7126906Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:37.7181048Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:37.7232915Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:37.7287950Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:37.7339170Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:37.7392810Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:50:37.7445894Z Entering 'shim' 2025-06-05T23:50:37.7497677Z Entering 'third-party/ao' 2025-06-05T23:50:37.7548852Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:37.7616655Z Entering 'third-party/flatbuffers' 2025-06-05T23:50:37.7671548Z Entering 'third-party/flatcc' 2025-06-05T23:50:37.7723702Z Entering 'third-party/gflags' 2025-06-05T23:50:37.7772510Z Entering 'third-party/googletest' 2025-06-05T23:50:37.7822504Z Entering 'third-party/ios-cmake' 2025-06-05T23:50:37.7872431Z Entering 'third-party/json' 2025-06-05T23:50:37.7926246Z Entering 'third-party/pocketfft' 2025-06-05T23:50:37.7978723Z Entering 'third-party/prelude' 2025-06-05T23:50:37.8034582Z Entering 'third-party/pybind11' 2025-06-05T23:50:37.8097919Z ##[endgroup] 2025-06-05T23:50:37.8098547Z ##[group]Persisting credentials for submodules 2025-06-05T23:50:37.8105732Z [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:37.8448096Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:50:37.8519496Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:50:37.8588288Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:50:37.8661771Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:50:37.8732303Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:50:37.8799869Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:50:37.8869508Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:50:37.8939332Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:50:37.9009436Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:50:37.9080319Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:50:37.9167244Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:50:37.9236805Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:50:37.9304968Z Entering 'extension/llm/tokenizers' 2025-06-05T23:50:37.9373227Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:50:37.9444847Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:37.9514000Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:37.9582454Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:37.9650874Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:37.9718884Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:37.9789489Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:50:37.9860655Z Entering 'shim' 2025-06-05T23:50:37.9928185Z Entering 'third-party/ao' 2025-06-05T23:50:37.9993706Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:38.0074398Z Entering 'third-party/flatbuffers' 2025-06-05T23:50:38.0146274Z Entering 'third-party/flatcc' 2025-06-05T23:50:38.0212620Z Entering 'third-party/gflags' 2025-06-05T23:50:38.0277767Z Entering 'third-party/googletest' 2025-06-05T23:50:38.0346545Z Entering 'third-party/ios-cmake' 2025-06-05T23:50:38.0415040Z Entering 'third-party/json' 2025-06-05T23:50:38.0485262Z Entering 'third-party/pocketfft' 2025-06-05T23:50:38.0552146Z Entering 'third-party/prelude' 2025-06-05T23:50:38.0626073Z Entering 'third-party/pybind11' 2025-06-05T23:50:38.0709923Z [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:38.1054456Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:50:38.1121116Z 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:38.1140245Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:50:38.1208134Z 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:38.1225786Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:50:38.1293695Z 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:38.1317418Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:50:38.1383084Z 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:38.1402609Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:50:38.1469453Z 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:38.1489571Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:50:38.1555291Z 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:38.1575610Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:50:38.1641326Z 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:38.1661059Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:50:38.1727106Z 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:38.1746831Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:50:38.1817190Z 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:38.1837113Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:50:38.1904338Z 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:38.1943645Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:50:38.2011394Z 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:38.2032625Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:50:38.2099939Z 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:38.2119924Z Entering 'extension/llm/tokenizers' 2025-06-05T23:50:38.2186160Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/config remote.origin.url 2025-06-05T23:50:38.2204633Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:50:38.2271180Z 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:38.2292554Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:38.2357786Z 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:38.2377673Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:38.2442399Z 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:38.2460545Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:38.2526539Z 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:38.2548549Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:38.2615204Z 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:38.2635213Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:38.2704249Z 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:38.2726345Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:50:38.2795409Z 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:38.2818788Z Entering 'shim' 2025-06-05T23:50:38.2884042Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/shim/config remote.origin.url 2025-06-05T23:50:38.2904670Z Entering 'third-party/ao' 2025-06-05T23:50:38.2971099Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/ao/config remote.origin.url 2025-06-05T23:50:38.2993461Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:38.3060838Z 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:38.3095123Z Entering 'third-party/flatbuffers' 2025-06-05T23:50:38.3161717Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/flatbuffers/config remote.origin.url 2025-06-05T23:50:38.3186676Z Entering 'third-party/flatcc' 2025-06-05T23:50:38.3255264Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/flatcc/config remote.origin.url 2025-06-05T23:50:38.3275601Z Entering 'third-party/gflags' 2025-06-05T23:50:38.3342733Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/gflags/config remote.origin.url 2025-06-05T23:50:38.3363586Z Entering 'third-party/googletest' 2025-06-05T23:50:38.3430805Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/googletest/config remote.origin.url 2025-06-05T23:50:38.3449283Z Entering 'third-party/ios-cmake' 2025-06-05T23:50:38.3513860Z 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:38.3534519Z Entering 'third-party/json' 2025-06-05T23:50:38.3599677Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/json/config remote.origin.url 2025-06-05T23:50:38.3621537Z Entering 'third-party/pocketfft' 2025-06-05T23:50:38.3688821Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/pocketfft/config remote.origin.url 2025-06-05T23:50:38.3708544Z Entering 'third-party/prelude' 2025-06-05T23:50:38.3776004Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/prelude/config remote.origin.url 2025-06-05T23:50:38.3799746Z Entering 'third-party/pybind11' 2025-06-05T23:50:38.3867449Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/pybind11/config remote.origin.url 2025-06-05T23:50:38.4355046Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-06-05T23:50:38.4697553Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:50:38.4749480Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:50:38.4800496Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:50:38.4856854Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:50:38.4908418Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:50:38.4960171Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:50:38.5012066Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:50:38.5067602Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:50:38.5121693Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:50:38.5174302Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:50:38.5244958Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:50:38.5298026Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:50:38.5348031Z Entering 'extension/llm/tokenizers' 2025-06-05T23:50:38.5395872Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:50:38.5448677Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:38.5504071Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:38.5556423Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:38.5610969Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:38.5662791Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:38.5719211Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:50:38.5775447Z Entering 'shim' 2025-06-05T23:50:38.5830275Z Entering 'third-party/ao' 2025-06-05T23:50:38.5886460Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:38.5953516Z Entering 'third-party/flatbuffers' 2025-06-05T23:50:38.6011095Z Entering 'third-party/flatcc' 2025-06-05T23:50:38.6065465Z Entering 'third-party/gflags' 2025-06-05T23:50:38.6120187Z Entering 'third-party/googletest' 2025-06-05T23:50:38.6172673Z Entering 'third-party/ios-cmake' 2025-06-05T23:50:38.6225979Z Entering 'third-party/json' 2025-06-05T23:50:38.6280745Z Entering 'third-party/pocketfft' 2025-06-05T23:50:38.6332660Z Entering 'third-party/prelude' 2025-06-05T23:50:38.6390695Z Entering 'third-party/pybind11' 2025-06-05T23:50:38.6458322Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-06-05T23:50:38.6803054Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:50:38.6856617Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:50:38.6909786Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:50:38.6965544Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:50:38.7016607Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:50:38.7067090Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:50:38.7119896Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:50:38.7171138Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:50:38.7222572Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:50:38.7272169Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:50:38.7340417Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:50:38.7391052Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:50:38.7441286Z Entering 'extension/llm/tokenizers' 2025-06-05T23:50:38.7490454Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:50:38.7542924Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:38.7595081Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:38.7645131Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:38.7700269Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:38.7751676Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:38.7806268Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:50:38.7862831Z Entering 'shim' 2025-06-05T23:50:38.7912842Z Entering 'third-party/ao' 2025-06-05T23:50:38.7964233Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:38.8030506Z Entering 'third-party/flatbuffers' 2025-06-05T23:50:38.8088435Z Entering 'third-party/flatcc' 2025-06-05T23:50:38.8139014Z Entering 'third-party/gflags' 2025-06-05T23:50:38.8188724Z Entering 'third-party/googletest' 2025-06-05T23:50:38.8240421Z Entering 'third-party/ios-cmake' 2025-06-05T23:50:38.8292960Z Entering 'third-party/json' 2025-06-05T23:50:38.8346870Z Entering 'third-party/pocketfft' 2025-06-05T23:50:38.8444342Z Entering 'third-party/prelude' 2025-06-05T23:50:38.8499602Z Entering 'third-party/pybind11' 2025-06-05T23:50:38.8563221Z ##[endgroup] 2025-06-05T23:50:38.8608459Z [command]/usr/bin/git log -1 --format=%H 2025-06-05T23:50:38.8637490Z bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:50:38.8883857Z Prepare all required actions 2025-06-05T23:50:38.8884687Z Getting action download info 2025-06-05T23:50:38.9895052Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-06-05T23:50:39.1798807Z ##[group]Run ./test-infra/.github/actions/calculate-docker-image 2025-06-05T23:50:39.1799355Z with: 2025-06-05T23:50:39.1799741Z docker-image-name: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:39.1800263Z docker-build-dir: .ci/docker 2025-06-05T23:50:39.1800678Z working-directory: pytorch/executorch 2025-06-05T23:50:39.1801141Z docker-build-script: ./build.sh 2025-06-05T23:50:39.1801668Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:39.1802213Z force-push: false 2025-06-05T23:50:39.1802526Z env: 2025-06-05T23:50:39.1802885Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:39.1803385Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:39.1803794Z PR_NUMBER: 2025-06-05T23:50:39.1818846Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:39.1834072Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:39.1834853Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:39.1835593Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:39.1836110Z ##[endgroup] 2025-06-05T23:50:39.1872747Z ##[group]Run set -ex 2025-06-05T23:50:39.1873227Z set -ex 2025-06-05T23:50:39.1873555Z  2025-06-05T23:50:39.1874106Z # If the docker build directory or the build script doesn't exist, the action will 2025-06-05T23:50:39.1875033Z # gracefully return the docker image name as it is. Pulling docker image in Linux 2025-06-05T23:50:39.1875813Z # job could then download the pre-built image as usual 2025-06-05T23:50:39.1876560Z if [[ ! -d "${DOCKER_BUILD_DIR}" ]] || [[ ! -f "${DOCKER_BUILD_DIR}/${DOCKER_BUILD_SCRIPT}" ]]; then 2025-06-05T23:50:39.1877318Z  echo "skip=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:39.1877939Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:39.1878854Z  2025-06-05T23:50:39.1879355Z  echo "There is no Docker build script in ${REPO_NAME} repo, skipping..." 2025-06-05T23:50:39.1879972Z  exit 0 2025-06-05T23:50:39.1880292Z else 2025-06-05T23:50:39.1880669Z  echo "skip=false" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:39.1881136Z fi 2025-06-05T23:50:39.1881430Z  2025-06-05T23:50:39.1881906Z if [[ "${DOCKER_IMAGE_NAME}" == *"${DOCKER_REGISTRY}/${REPO_NAME}"* ]]; then 2025-06-05T23:50:39.1882712Z  # The docker image name already includes the ECR prefix and tag, so we can just 2025-06-05T23:50:39.1883449Z  # use it as it is, but first let's extract the tag 2025-06-05T23:50:39.1884121Z  DOCKER_TAG=$(echo "${DOCKER_IMAGE_NAME}" | awk -F '[:,]' '{print $2}') 2025-06-05T23:50:39.1884831Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:39.1885507Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:39.1886061Z else 2025-06-05T23:50:39.1886432Z  if [[ "${DOCKER_IMAGE_NAME}" == *:* ]]; then 2025-06-05T23:50:39.1886967Z  CUSTOM_TAG_PREFIX=${DOCKER_IMAGE_NAME#*:} 2025-06-05T23:50:39.1887495Z  DOCKER_IMAGE_NAME=${DOCKER_IMAGE_NAME%%:*} 2025-06-05T23:50:39.1887972Z  fi 2025-06-05T23:50:39.1888575Z  DOCKER_TAG=${CUSTOM_TAG_PREFIX:+${CUSTOM_TAG_PREFIX}-}$(git rev-parse HEAD:"${DOCKER_BUILD_DIR}") 2025-06-05T23:50:39.1889391Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:39.1890257Z  echo "docker-image=${DOCKER_REGISTRY}/${REPO_NAME}/${DOCKER_IMAGE_NAME}:${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:39.1891501Z  echo "custom-tag-prefix=${CUSTOM_TAG_PREFIX}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:39.1892104Z fi 2025-06-05T23:50:39.1899401Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:50:39.1899908Z env: 2025-06-05T23:50:39.1900284Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:39.1900777Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:39.1901182Z PR_NUMBER: 2025-06-05T23:50:39.1916141Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:39.1931521Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:39.1932301Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:39.1933051Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:39.1933690Z REPO_NAME: executorch 2025-06-05T23:50:39.1934136Z DOCKER_IMAGE_NAME: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:39.1934743Z DOCKER_BUILD_DIR: .ci/docker 2025-06-05T23:50:39.1935156Z DOCKER_BUILD_SCRIPT: ./build.sh 2025-06-05T23:50:39.1935685Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:39.1936230Z CUSTOM_TAG_PREFIX: 2025-06-05T23:50:39.1936566Z ##[endgroup] 2025-06-05T23:50:39.1977528Z + [[ ! -d .ci/docker ]] 2025-06-05T23:50:39.1977948Z + [[ ! -f .ci/docker/./build.sh ]] 2025-06-05T23:50:39.1978574Z + echo skip=false 2025-06-05T23:50:39.1979261Z + [[ 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:39.1980077Z + [[ executorch-ubuntu-22.04-clang12 == *:* ]] 2025-06-05T23:50:39.1983246Z ++ git rev-parse HEAD:.ci/docker 2025-06-05T23:50:39.2002362Z + DOCKER_TAG=6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:39.2002970Z + echo docker-tag=6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:39.2004091Z + echo docker-image=308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:39.2005439Z + echo custom-tag-prefix= 2025-06-05T23:50:39.2053160Z ##[group]Run set +e 2025-06-05T23:50:39.2053756Z set +e 2025-06-05T23:50:39.2054082Z set -x 2025-06-05T23:50:39.2054407Z  2025-06-05T23:50:39.2054704Z login() { 2025-06-05T23:50:39.2055356Z  aws ecr get-login-password --region us-east-1 | docker login -u AWS --password-stdin "$1" 2025-06-05T23:50:39.2056048Z } 2025-06-05T23:50:39.2056353Z  2025-06-05T23:50:39.2056646Z retry () { 2025-06-05T23:50:39.2057038Z  $* || (sleep 1 && $*) || (sleep 2 && $*) 2025-06-05T23:50:39.2057467Z } 2025-06-05T23:50:39.2057770Z  2025-06-05T23:50:39.2058090Z retry login "${DOCKER_REGISTRY}" 2025-06-05T23:50:39.2058519Z  2025-06-05T23:50:39.2058826Z START_TIME=$(date +%s) 2025-06-05T23:50:39.2059264Z # Wait up to 120 minutes 2025-06-05T23:50:39.2059767Z while [[ $(( $(date +%s) - 7200 )) -lt $START_TIME ]]; do 2025-06-05T23:50:39.2060436Z  # Check if image already exists, if it does then skip building it 2025-06-05T23:50:39.2061090Z  if docker manifest inspect "${DOCKER_IMAGE}"; then 2025-06-05T23:50:39.2061603Z  exit 0 2025-06-05T23:50:39.2061939Z  fi 2025-06-05T23:50:39.2062243Z  2025-06-05T23:50:39.2062778Z  # NB: This flag is used by Docker build workflow to push the image to ECR, so we can 2025-06-05T23:50:39.2063661Z  # use this to differentiate between the Docker build and regular build jobs. For the 2025-06-05T23:50:39.2064606Z  # latter, it will wait for the Docker images to become available before continuing 2025-06-05T23:50:39.2065307Z  if [ "${DOCKER_PUSH:-false}" == "true" ]; then 2025-06-05T23:50:39.2065863Z  # It's a Docker build job, let's build the image 2025-06-05T23:50:39.2066349Z  break 2025-06-05T23:50:39.2066690Z  else 2025-06-05T23:50:39.2067155Z  # It's a regular build job, wait for the image to become available 2025-06-05T23:50:39.2067724Z  sleep 300 2025-06-05T23:50:39.2068068Z  fi 2025-06-05T23:50:39.2068371Z done 2025-06-05T23:50:39.2068679Z  2025-06-05T23:50:39.2069155Z # NB: This part requires a full checkout. Otherwise, the merge base will 2025-06-05T23:50:39.2069926Z # be empty. The default action would be to continue rebuild the image 2025-06-05T23:50:39.2070608Z if [[ "$BASE_REVISION" = "$(git rev-parse HEAD)" ]]; then 2025-06-05T23:50:39.2071228Z  # if we're on the base branch then use the parent commit 2025-06-05T23:50:39.2071766Z  MERGE_BASE=$(git rev-parse HEAD~) 2025-06-05T23:50:39.2072214Z else 2025-06-05T23:50:39.2072651Z  # otherwise we're on a PR, so use the most recent base commit 2025-06-05T23:50:39.2073643Z  MERGE_BASE=$(git merge-base HEAD "$BASE_REVISION") 2025-06-05T23:50:39.2074141Z fi 2025-06-05T23:50:39.2074452Z  2025-06-05T23:50:39.2074785Z if [[ -z "${MERGE_BASE}" ]]; then 2025-06-05T23:50:39.2075285Z  echo "rebuild=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:39.2075733Z  2025-06-05T23:50:39.2076366Z  echo "Finding merge base only works with full checkout, please set fetch-depth to 0, continuing ..." 2025-06-05T23:50:39.2077104Z  exit 0 2025-06-05T23:50:39.2077430Z fi 2025-06-05T23:50:39.2077721Z  2025-06-05T23:50:39.2078147Z if ! git rev-parse "${MERGE_BASE}:${DOCKER_BUILD_DIR}"; then 2025-06-05T23:50:39.2079624Z  echo "Directory '${DOCKER_BUILD_DIR}' not found in commit $MERGE_BASE, you should rebase onto a more recent commit" 2025-06-05T23:50:39.2080425Z  exit 1 2025-06-05T23:50:39.2080742Z fi 2025-06-05T23:50:39.2081060Z  2025-06-05T23:50:39.2081705Z PREVIOUS_DOCKER_TAG=$(git rev-parse "${MERGE_BASE}:${DOCKER_BUILD_DIR}") 2025-06-05T23:50:39.2082600Z # If no image exists but the hash is the same as the previous hash then we should error out here 2025-06-05T23:50:39.2083377Z if [[ "${PREVIOUS_DOCKER_TAG}" == "${DOCKER_TAG}" ]]; then 2025-06-05T23:50:39.2084297Z  echo "WARNING: Something has gone wrong and the previous image isn't available for the merge-base of your branch" 2025-06-05T23:50:39.2085300Z  echo " Will re-build docker image to store in local cache, TTS may be longer" 2025-06-05T23:50:39.2085923Z fi 2025-06-05T23:50:39.2086211Z  2025-06-05T23:50:39.2086574Z echo "rebuild=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:39.2093921Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:50:39.2094430Z env: 2025-06-05T23:50:39.2095313Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:39.2096325Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:39.2096745Z PR_NUMBER: 2025-06-05T23:50:39.2111397Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:39.2126623Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:39.2127418Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:39.2128148Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:39.2128707Z DOCKER_BUILD_DIR: .ci/docker 2025-06-05T23:50:39.2129174Z BASE_REVISION: bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:50:39.2129754Z DOCKER_TAG: 6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:39.2130356Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:39.2130896Z DOCKER_PUSH: 2025-06-05T23:50:39.2131215Z ##[endgroup] 2025-06-05T23:50:39.2163549Z + retry login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:39.2164325Z + login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:39.2167403Z + aws ecr get-login-password --region us-east-1 2025-06-05T23:50:39.2168629Z + docker login -u AWS --password-stdin 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:39.9021708Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:50:39.9022756Z Configure a credential helper to remove this warning. See 2025-06-05T23:50:39.9024291Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:50:39.9024979Z 2025-06-05T23:50:39.9025166Z Login Succeeded 2025-06-05T23:50:39.9038277Z ++ date +%s 2025-06-05T23:50:39.9048206Z + START_TIME=1749167439 2025-06-05T23:50:39.9052800Z ++ date +%s 2025-06-05T23:50:39.9063959Z + [[ 1749160239 -lt 1749167439 ]] 2025-06-05T23:50:39.9065286Z + docker manifest inspect 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:40.1351478Z { 2025-06-05T23:50:40.1352456Z "schemaVersion": 2, 2025-06-05T23:50:40.1353379Z "mediaType": "application/vnd.docker.distribution.manifest.v2+json", 2025-06-05T23:50:40.1354087Z "config": { 2025-06-05T23:50:40.1354799Z "mediaType": "application/vnd.docker.container.image.v1+json", 2025-06-05T23:50:40.1355486Z "size": 15103, 2025-06-05T23:50:40.1356272Z "digest": "sha256:fd1cd238ff938168c3b0ff27a52bce2daabd27e2c7b7761b7a136339684f075e" 2025-06-05T23:50:40.1357045Z }, 2025-06-05T23:50:40.1357543Z "layers": [ 2025-06-05T23:50:40.1357948Z { 2025-06-05T23:50:40.1358594Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1359299Z "size": 30438509, 2025-06-05T23:50:40.1360022Z "digest": "sha256:f557aa5ee22480ee9e1af0a094ce5174a8c3d83e1aa20dc8482e4e387546e0c3" 2025-06-05T23:50:40.1360841Z }, 2025-06-05T23:50:40.1361222Z { 2025-06-05T23:50:40.1361891Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1362923Z "size": 631, 2025-06-05T23:50:40.1363724Z "digest": "sha256:e9a71f6cf6a033cad973f94ad3269a9e3774b3a547f2d35c6337589ebab6aeac" 2025-06-05T23:50:40.1364499Z }, 2025-06-05T23:50:40.1364921Z { 2025-06-05T23:50:40.1365779Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1366535Z "size": 150105004, 2025-06-05T23:50:40.1367256Z "digest": "sha256:049f3bd1fa828e09f2b95b85222e78d1369b0d9b32c63dba4a621ef4b3fdf4b0" 2025-06-05T23:50:40.1368052Z }, 2025-06-05T23:50:40.1368429Z { 2025-06-05T23:50:40.1369064Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1369773Z "size": 622, 2025-06-05T23:50:40.1370512Z "digest": "sha256:8f296761951c2477ba8d9546ac834b6cf17e772fbe388f9e3b2f4e822beb7713" 2025-06-05T23:50:40.1371344Z }, 2025-06-05T23:50:40.1371791Z { 2025-06-05T23:50:40.1372405Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1373159Z "size": 19308725, 2025-06-05T23:50:40.1374230Z "digest": "sha256:f9c927f03c6aba2421ca61827c3ba57321d629b5cd394bf199d0fda0f3373a5e" 2025-06-05T23:50:40.1375079Z }, 2025-06-05T23:50:40.1375439Z { 2025-06-05T23:50:40.1376145Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1376829Z "size": 736, 2025-06-05T23:50:40.1393872Z "digest": "sha256:4420b1e1a07f73643ce79401c2021c6970bc6e411c501a43b58d157e19090d5a" 2025-06-05T23:50:40.1394595Z }, 2025-06-05T23:50:40.1394873Z { 2025-06-05T23:50:40.1395341Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1395913Z "size": 131417895, 2025-06-05T23:50:40.1396504Z "digest": "sha256:fa5411ca12c0b4cc5391abc0d46354e4ebf811724698c909d35a8bc79acbae42" 2025-06-05T23:50:40.1397138Z }, 2025-06-05T23:50:40.1397417Z { 2025-06-05T23:50:40.1397859Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1398466Z "size": 445, 2025-06-05T23:50:40.1399011Z "digest": "sha256:172401b941b1764c760147d40814402d1238a7f1c7287fd8c0c9dd4897f09610" 2025-06-05T23:50:40.1399636Z }, 2025-06-05T23:50:40.1399901Z { 2025-06-05T23:50:40.1400359Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1400924Z "size": 102, 2025-06-05T23:50:40.1401469Z "digest": "sha256:08f9a627d97be81309ccf16cf39ed5beb24962447ad72a1615b0748e4173b204" 2025-06-05T23:50:40.1402117Z }, 2025-06-05T23:50:40.1402381Z { 2025-06-05T23:50:40.1402831Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1403388Z "size": 636, 2025-06-05T23:50:40.1403944Z "digest": "sha256:2d7e5abdd88dbf42ba6487b146573396d6f489b24623393763a4916452feeb69" 2025-06-05T23:50:40.1404564Z }, 2025-06-05T23:50:40.1404841Z { 2025-06-05T23:50:40.1405285Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1405859Z "size": 35165342, 2025-06-05T23:50:40.1406450Z "digest": "sha256:0e4e4efb264486fade95db2dcaeeed53768fdf1fd6972a24431bca5d3e4abfed" 2025-06-05T23:50:40.1407121Z }, 2025-06-05T23:50:40.1407389Z { 2025-06-05T23:50:40.1407841Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1408398Z "size": 318, 2025-06-05T23:50:40.1408944Z "digest": "sha256:380307a36ed2d54c982df9262fd1ec3b7fb61743ad1a24e7d1b691bc44edba7a" 2025-06-05T23:50:40.1409592Z }, 2025-06-05T23:50:40.1409852Z { 2025-06-05T23:50:40.1410303Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1410871Z "size": 252129603, 2025-06-05T23:50:40.1411470Z "digest": "sha256:c39259ba6557e88adff97daca9051eb3b7557220d56a15a595e102e0b7888888" 2025-06-05T23:50:40.1412098Z }, 2025-06-05T23:50:40.1412476Z + exit 0 2025-06-05T23:50:40.1412770Z { 2025-06-05T23:50:40.1413216Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1413929Z "size": 475, 2025-06-05T23:50:40.1414868Z "digest": "sha256:3ec19c2849b3bf6807efe10c62465e3f4d91dfd9fc8c1ff5b3667814c740339d" 2025-06-05T23:50:40.1415510Z }, 2025-06-05T23:50:40.1415794Z { 2025-06-05T23:50:40.1416239Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1416812Z "size": 1041, 2025-06-05T23:50:40.1417360Z "digest": "sha256:c906c3b73c9a07577673cc305885ff3cb88a96410f3536d3cc37d1ab95ea8105" 2025-06-05T23:50:40.1418002Z }, 2025-06-05T23:50:40.1418270Z { 2025-06-05T23:50:40.1418729Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1419287Z "size": 613, 2025-06-05T23:50:40.1419860Z "digest": "sha256:5e70c61fded41a31ea65efce907d9dff9acbc03826fb949591a55cfdd3385730" 2025-06-05T23:50:40.1420507Z }, 2025-06-05T23:50:40.1420788Z { 2025-06-05T23:50:40.1421232Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1421804Z "size": 77567180, 2025-06-05T23:50:40.1422380Z "digest": "sha256:32d238decf552efed879fd5a38ef4c28a93691784cfa4cf29f72f02ff98b663c" 2025-06-05T23:50:40.1423023Z }, 2025-06-05T23:50:40.1423444Z { 2025-06-05T23:50:40.1423891Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1424464Z "size": 572, 2025-06-05T23:50:40.1425000Z "digest": "sha256:82809b17e34970c5fc644204a01b9174222a6532e2bf50080d656bf431502fcb" 2025-06-05T23:50:40.1425631Z }, 2025-06-05T23:50:40.1425903Z { 2025-06-05T23:50:40.1426365Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1426925Z "size": 208, 2025-06-05T23:50:40.1427495Z "digest": "sha256:beff343a364c42297e426fde8abbfacb4531230cc6c28639cb27af09f8a6aeaa" 2025-06-05T23:50:40.1428129Z }, 2025-06-05T23:50:40.1428406Z { 2025-06-05T23:50:40.1428841Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1429411Z "size": 1190, 2025-06-05T23:50:40.1429953Z "digest": "sha256:5630a9397492da6fac00fcc2b54281af300c4762827878ad79bbf050d7f1388d" 2025-06-05T23:50:40.1430593Z }, 2025-06-05T23:50:40.1430854Z { 2025-06-05T23:50:40.1431304Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1431880Z "size": 679, 2025-06-05T23:50:40.1432432Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:50:40.1433074Z }, 2025-06-05T23:50:40.1433337Z { 2025-06-05T23:50:40.1433790Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1434350Z "size": 6857042734, 2025-06-05T23:50:40.1434926Z "digest": "sha256:91905b6f2f52504df72b723d19817eec2b201bee33ae760808b079869acb2f6b" 2025-06-05T23:50:40.1435549Z }, 2025-06-05T23:50:40.1435832Z { 2025-06-05T23:50:40.1436278Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1436843Z "size": 1383, 2025-06-05T23:50:40.1437396Z "digest": "sha256:09dac94eaf912c1143008ab2c199dc2a0547cf68fe2b08e1b96af9c2895928ae" 2025-06-05T23:50:40.1438052Z }, 2025-06-05T23:50:40.1438313Z { 2025-06-05T23:50:40.1438759Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1439331Z "size": 679, 2025-06-05T23:50:40.1439890Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:50:40.1440533Z }, 2025-06-05T23:50:40.1440799Z { 2025-06-05T23:50:40.1441250Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1441810Z "size": 232891491, 2025-06-05T23:50:40.1442385Z "digest": "sha256:6d88f3766b32d28d76e4b977173ca059882b729a62bfb97b74b2e112a7e07081" 2025-06-05T23:50:40.1443004Z }, 2025-06-05T23:50:40.1443283Z { 2025-06-05T23:50:40.1443720Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1444291Z "size": 827, 2025-06-05T23:50:40.1444862Z "digest": "sha256:dec0deaa1ed566de23b66dcd78ea8449250b56b611cab27ebb83b9504d48a46b" 2025-06-05T23:50:40.1445520Z }, 2025-06-05T23:50:40.1445929Z { 2025-06-05T23:50:40.1446382Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1446943Z "size": 679, 2025-06-05T23:50:40.1447497Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:50:40.1448142Z }, 2025-06-05T23:50:40.1448407Z { 2025-06-05T23:50:40.1448860Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1449414Z "size": 185012212, 2025-06-05T23:50:40.1449996Z "digest": "sha256:f8e551473643076aad7336eff42fb9eade23f8abdf765265391eb601688a508e" 2025-06-05T23:50:40.1450622Z }, 2025-06-05T23:50:40.1450902Z { 2025-06-05T23:50:40.1451338Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1451906Z "size": 530, 2025-06-05T23:50:40.1452459Z "digest": "sha256:e8c9ad02b5187f5d1cb1d0cce8e115dd9462726f44a685de71b4cbe4f70c67e6" 2025-06-05T23:50:40.1453105Z }, 2025-06-05T23:50:40.1453372Z { 2025-06-05T23:50:40.1453971Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1454545Z "size": 679, 2025-06-05T23:50:40.1455261Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:50:40.1455902Z }, 2025-06-05T23:50:40.1456171Z { 2025-06-05T23:50:40.1456632Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1457192Z "size": 354, 2025-06-05T23:50:40.1457752Z "digest": "sha256:ca22a013d303766ddf153f37526c40fa37dc1c0d112176fdb33378c50a81c354" 2025-06-05T23:50:40.1458375Z }, 2025-06-05T23:50:40.1458650Z { 2025-06-05T23:50:40.1459087Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1459659Z "size": 32, 2025-06-05T23:50:40.1460207Z "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1" 2025-06-05T23:50:40.1460855Z }, 2025-06-05T23:50:40.1461116Z { 2025-06-05T23:50:40.1461582Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1462164Z "size": 166, 2025-06-05T23:50:40.1462722Z "digest": "sha256:646de239c5522c189eeafe3c3e40d524fdb04e611ff7ac7ed962067edc79e37c" 2025-06-05T23:50:40.1463381Z }, 2025-06-05T23:50:40.1463648Z { 2025-06-05T23:50:40.1464107Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1464669Z "size": 1109, 2025-06-05T23:50:40.1465249Z "digest": "sha256:c2b62aa0dc26b7dd48338aef7893ebaf56403579f42aa88a56bd416c04f43619" 2025-06-05T23:50:40.1465892Z }, 2025-06-05T23:50:40.1466177Z { 2025-06-05T23:50:40.1466620Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1467181Z "size": 32, 2025-06-05T23:50:40.1467744Z "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1" 2025-06-05T23:50:40.1468380Z }, 2025-06-05T23:50:40.1468653Z { 2025-06-05T23:50:40.1469091Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:40.1469664Z "size": 108, 2025-06-05T23:50:40.1470204Z "digest": "sha256:f6779e1a371ff37aa81f30b1933474705799f32406c2afea442a0cada6c51e93" 2025-06-05T23:50:40.1470842Z } 2025-06-05T23:50:40.1471109Z ] 2025-06-05T23:50:40.1471379Z } 2025-06-05T23:50:40.1517816Z ##[group]Run set -eux 2025-06-05T23:50:40.1518223Z set -eux 2025-06-05T23:50:40.1519370Z 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:40.1527183Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:50:40.1527687Z env: 2025-06-05T23:50:40.1528067Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:40.1528561Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:40.1528970Z PR_NUMBER: 2025-06-05T23:50:40.1543995Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:40.1559178Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:40.1559961Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:40.1560711Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:40.1561234Z ##[endgroup] 2025-06-05T23:50:40.1595160Z + aws secretsmanager get-secret-value --secret-id docker_hub_readonly_token 2025-06-05T23:50:40.1595947Z + jq --raw-output .SecretString 2025-06-05T23:50:40.1597814Z + jq -r .docker_hub_readonly_token 2025-06-05T23:50:40.1600031Z + docker login --username pytorchbot --password-stdin 2025-06-05T23:50:40.8903580Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:50:40.8904853Z Configure a credential helper to remove this warning. See 2025-06-05T23:50:40.8905942Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:50:40.8906490Z 2025-06-05T23:50:40.8906640Z Login Succeeded 2025-06-05T23:50:40.9007704Z Prepare all required actions 2025-06-05T23:50:40.9087017Z ##[group]Run ./test-infra/.github/actions/pull-docker-image 2025-06-05T23:50:40.9087537Z with: 2025-06-05T23:50:40.9088422Z docker-image: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:40.9089538Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:40.9090076Z env: 2025-06-05T23:50:40.9090428Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:40.9090926Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:40.9091320Z PR_NUMBER: 2025-06-05T23:50:40.9106055Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:40.9121177Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:40.9121963Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:40.9122715Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:40.9123542Z ##[endgroup] 2025-06-05T23:50:40.9153876Z ##[group]Run set -x 2025-06-05T23:50:40.9154436Z set -x 2025-06-05T23:50:40.9154770Z set +e 2025-06-05T23:50:40.9155078Z  2025-06-05T23:50:40.9155378Z login() { 2025-06-05T23:50:40.9156028Z  aws ecr get-login-password --region us-east-1 | docker login -u AWS --password-stdin "$1" 2025-06-05T23:50:40.9156722Z } 2025-06-05T23:50:40.9157024Z  2025-06-05T23:50:40.9157315Z retry () { 2025-06-05T23:50:40.9157728Z  $* || (sleep 1 && $*) || (sleep 2 && $*) 2025-06-05T23:50:40.9158159Z } 2025-06-05T23:50:40.9158467Z  2025-06-05T23:50:40.9158794Z retry login "${DOCKER_REGISTRY}" 2025-06-05T23:50:40.9159216Z  2025-06-05T23:50:40.9159878Z IMAGE_SIZE=$(docker manifest inspect "${DOCKER_IMAGE}" | jq '[.layers[].size, .config.size] | add / 1024 / 1024') 2025-06-05T23:50:40.9160779Z echo "Compressed size of image in MB: ${IMAGE_SIZE}" 2025-06-05T23:50:40.9161282Z  2025-06-05T23:50:40.9161584Z set -e 2025-06-05T23:50:40.9162065Z # ignore output since only exit code is used for conditional 2025-06-05T23:50:40.9162723Z # only pull docker image if it's not available locally 2025-06-05T23:50:40.9163458Z if ! docker inspect --type=image "${DOCKER_IMAGE}" >/dev/null 2>/dev/null; then 2025-06-05T23:50:40.9164126Z  retry docker pull "${DOCKER_IMAGE}" 2025-06-05T23:50:40.9164572Z fi 2025-06-05T23:50:40.9171299Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:50:40.9171821Z env: 2025-06-05T23:50:40.9172682Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:40.9173849Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:40.9174250Z PR_NUMBER: 2025-06-05T23:50:40.9189351Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:40.9204518Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:40.9205313Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:40.9206045Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:40.9206722Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:40.9207256Z ##[endgroup] 2025-06-05T23:50:40.9237371Z + set +e 2025-06-05T23:50:40.9238078Z + retry login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:40.9238875Z + login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:40.9241777Z + aws ecr get-login-password --region us-east-1 2025-06-05T23:50:40.9243130Z + docker login -u AWS --password-stdin 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:41.6278570Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:50:41.6279535Z Configure a credential helper to remove this warning. See 2025-06-05T23:50:41.6280468Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:50:41.6281067Z 2025-06-05T23:50:41.6281218Z Login Succeeded 2025-06-05T23:50:41.6303169Z ++ docker manifest inspect 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:41.6304392Z ++ jq '[.layers[].size, .config.size] | add / 1024 / 1024' 2025-06-05T23:50:41.8350656Z + IMAGE_SIZE=7601.84158706665 2025-06-05T23:50:41.8351177Z Compressed size of image in MB: 7601.84158706665 2025-06-05T23:50:41.8351757Z + echo 'Compressed size of image in MB: 7601.84158706665' 2025-06-05T23:50:41.8352250Z + set -e 2025-06-05T23:50:41.8353203Z + docker inspect --type=image 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:41.8499798Z + retry docker pull 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:41.8501433Z + docker pull 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:42.0569840Z 6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa: Pulling from executorch/executorch-ubuntu-22.04-clang12 2025-06-05T23:50:42.0571091Z f557aa5ee224: Pulling fs layer 2025-06-05T23:50:42.0571533Z e9a71f6cf6a0: Pulling fs layer 2025-06-05T23:50:42.0571968Z 049f3bd1fa82: Pulling fs layer 2025-06-05T23:50:42.0572405Z 8f296761951c: Pulling fs layer 2025-06-05T23:50:42.0572805Z f9c927f03c6a: Pulling fs layer 2025-06-05T23:50:42.0573186Z 4420b1e1a07f: Pulling fs layer 2025-06-05T23:50:42.0573671Z fa5411ca12c0: Pulling fs layer 2025-06-05T23:50:42.0574056Z 172401b941b1: Pulling fs layer 2025-06-05T23:50:42.0574459Z 08f9a627d97b: Pulling fs layer 2025-06-05T23:50:42.0574833Z 8f296761951c: Waiting 2025-06-05T23:50:42.0575490Z 2d7e5abdd88d: Pulling fs layer 2025-06-05T23:50:42.0575886Z 0e4e4efb2644: Pulling fs layer 2025-06-05T23:50:42.0576409Z 380307a36ed2: Pulling fs layer 2025-06-05T23:50:42.0576809Z c39259ba6557: Pulling fs layer 2025-06-05T23:50:42.0577191Z 3ec19c2849b3: Pulling fs layer 2025-06-05T23:50:42.0577587Z c906c3b73c9a: Pulling fs layer 2025-06-05T23:50:42.0577970Z 5e70c61fded4: Pulling fs layer 2025-06-05T23:50:42.0578593Z 32d238decf55: Pulling fs layer 2025-06-05T23:50:42.0578990Z 82809b17e349: Pulling fs layer 2025-06-05T23:50:42.0579381Z 172401b941b1: Waiting 2025-06-05T23:50:42.0579717Z 08f9a627d97b: Waiting 2025-06-05T23:50:42.0580085Z beff343a364c: Pulling fs layer 2025-06-05T23:50:42.0580468Z 5630a9397492: Pulling fs layer 2025-06-05T23:50:42.0580851Z 2d7e5abdd88d: Waiting 2025-06-05T23:50:42.0581199Z 1fc2d9899ffb: Pulling fs layer 2025-06-05T23:50:42.0581586Z 0e4e4efb2644: Waiting 2025-06-05T23:50:42.0581929Z 91905b6f2f52: Pulling fs layer 2025-06-05T23:50:42.0582295Z 4420b1e1a07f: Waiting 2025-06-05T23:50:42.0582663Z 09dac94eaf91: Pulling fs layer 2025-06-05T23:50:42.0583044Z 6d88f3766b32: Pulling fs layer 2025-06-05T23:50:42.0583820Z dec0deaa1ed5: Pulling fs layer 2025-06-05T23:50:42.0584199Z 380307a36ed2: Waiting 2025-06-05T23:50:42.0584573Z c39259ba6557: Waiting 2025-06-05T23:50:42.0585058Z fa5411ca12c0: Waiting 2025-06-05T23:50:42.0585607Z f8e551473643: Pulling fs layer 2025-06-05T23:50:42.0586273Z 3ec19c2849b3: Waiting 2025-06-05T23:50:42.0586984Z e8c9ad02b518: Pulling fs layer 2025-06-05T23:50:42.0587492Z 82809b17e349: Waiting 2025-06-05T23:50:42.0587854Z 6d88f3766b32: Waiting 2025-06-05T23:50:42.0588190Z 09dac94eaf91: Waiting 2025-06-05T23:50:42.0588534Z c906c3b73c9a: Waiting 2025-06-05T23:50:42.0588867Z dec0deaa1ed5: Waiting 2025-06-05T23:50:42.0589199Z beff343a364c: Waiting 2025-06-05T23:50:42.0589543Z 91905b6f2f52: Waiting 2025-06-05T23:50:42.0589869Z 1fc2d9899ffb: Waiting 2025-06-05T23:50:42.0590215Z 5630a9397492: Waiting 2025-06-05T23:50:42.0590558Z ca22a013d303: Pulling fs layer 2025-06-05T23:50:42.0590977Z 5e70c61fded4: Waiting 2025-06-05T23:50:42.0591307Z f8e551473643: Waiting 2025-06-05T23:50:42.0591673Z 4f4fb700ef54: Pulling fs layer 2025-06-05T23:50:42.0592046Z 32d238decf55: Waiting 2025-06-05T23:50:42.0592398Z 646de239c552: Pulling fs layer 2025-06-05T23:50:42.0592779Z c2b62aa0dc26: Pulling fs layer 2025-06-05T23:50:42.0593334Z ca22a013d303: Waiting 2025-06-05T23:50:42.0593666Z 646de239c552: Waiting 2025-06-05T23:50:42.0594155Z f6779e1a371f: Pulling fs layer 2025-06-05T23:50:42.0594770Z c2b62aa0dc26: Waiting 2025-06-05T23:50:42.0595103Z f6779e1a371f: Waiting 2025-06-05T23:50:42.1354802Z e9a71f6cf6a0: Verifying Checksum 2025-06-05T23:50:42.1355527Z e9a71f6cf6a0: Download complete 2025-06-05T23:50:42.1996829Z 8f296761951c: Verifying Checksum 2025-06-05T23:50:42.1997599Z 8f296761951c: Download complete 2025-06-05T23:50:42.4200315Z f557aa5ee224: Verifying Checksum 2025-06-05T23:50:42.4201039Z f557aa5ee224: Download complete 2025-06-05T23:50:42.4526664Z f9c927f03c6a: Verifying Checksum 2025-06-05T23:50:42.4527395Z f9c927f03c6a: Download complete 2025-06-05T23:50:42.5333144Z 4420b1e1a07f: Verifying Checksum 2025-06-05T23:50:42.5333856Z 4420b1e1a07f: Download complete 2025-06-05T23:50:42.6006400Z 172401b941b1: Download complete 2025-06-05T23:50:42.6686211Z 08f9a627d97b: Verifying Checksum 2025-06-05T23:50:42.6686967Z 08f9a627d97b: Download complete 2025-06-05T23:50:42.7558923Z 2d7e5abdd88d: Verifying Checksum 2025-06-05T23:50:42.7559442Z 2d7e5abdd88d: Download complete 2025-06-05T23:50:43.1822565Z 0e4e4efb2644: Verifying Checksum 2025-06-05T23:50:43.1823220Z 0e4e4efb2644: Download complete 2025-06-05T23:50:43.2769562Z 380307a36ed2: Verifying Checksum 2025-06-05T23:50:43.2770267Z 380307a36ed2: Download complete 2025-06-05T23:50:43.6083002Z f557aa5ee224: Pull complete 2025-06-05T23:50:43.6156693Z 049f3bd1fa82: Verifying Checksum 2025-06-05T23:50:43.6157437Z 049f3bd1fa82: Download complete 2025-06-05T23:50:43.6304162Z e9a71f6cf6a0: Pull complete 2025-06-05T23:50:43.6838710Z 3ec19c2849b3: Download complete 2025-06-05T23:50:43.7705035Z c906c3b73c9a: Download complete 2025-06-05T23:50:43.8112135Z fa5411ca12c0: Verifying Checksum 2025-06-05T23:50:43.8113182Z fa5411ca12c0: Download complete 2025-06-05T23:50:43.8542559Z 5e70c61fded4: Verifying Checksum 2025-06-05T23:50:43.8543327Z 5e70c61fded4: Download complete 2025-06-05T23:50:43.9287552Z 82809b17e349: Download complete 2025-06-05T23:50:44.0062474Z beff343a364c: Verifying Checksum 2025-06-05T23:50:44.0063254Z beff343a364c: Download complete 2025-06-05T23:50:44.0774152Z 5630a9397492: Verifying Checksum 2025-06-05T23:50:44.1413641Z 1fc2d9899ffb: Download complete 2025-06-05T23:50:44.6616096Z 32d238decf55: Verifying Checksum 2025-06-05T23:50:44.6616695Z 32d238decf55: Download complete 2025-06-05T23:50:45.8671444Z c39259ba6557: Verifying Checksum 2025-06-05T23:50:45.8672118Z c39259ba6557: Download complete 2025-06-05T23:50:45.9274018Z dec0deaa1ed5: Verifying Checksum 2025-06-05T23:50:45.9274857Z dec0deaa1ed5: Download complete 2025-06-05T23:50:47.1353383Z 6d88f3766b32: Verifying Checksum 2025-06-05T23:50:47.2021942Z 6d88f3766b32: Download complete 2025-06-05T23:50:47.2022539Z e8c9ad02b518: Download complete 2025-06-05T23:50:47.2779397Z ca22a013d303: Download complete 2025-06-05T23:50:47.2886882Z 4f4fb700ef54: Verifying Checksum 2025-06-05T23:50:47.2887504Z 4f4fb700ef54: Download complete 2025-06-05T23:50:47.3633639Z 646de239c552: Download complete 2025-06-05T23:50:47.4501385Z c2b62aa0dc26: Verifying Checksum 2025-06-05T23:50:47.4501970Z c2b62aa0dc26: Download complete 2025-06-05T23:50:47.5386386Z f6779e1a371f: Verifying Checksum 2025-06-05T23:50:47.5387216Z f6779e1a371f: Download complete 2025-06-05T23:50:47.8324811Z f8e551473643: Verifying Checksum 2025-06-05T23:50:47.8325453Z f8e551473643: Download complete 2025-06-05T23:50:48.2429836Z 049f3bd1fa82: Pull complete 2025-06-05T23:50:48.2650927Z 8f296761951c: Pull complete 2025-06-05T23:50:48.5417353Z f9c927f03c6a: Pull complete 2025-06-05T23:50:48.5637689Z 4420b1e1a07f: Pull complete 2025-06-05T23:50:51.4450088Z fa5411ca12c0: Pull complete 2025-06-05T23:50:51.4672940Z 172401b941b1: Pull complete 2025-06-05T23:50:51.4890982Z 08f9a627d97b: Pull complete 2025-06-05T23:50:51.5112077Z 2d7e5abdd88d: Pull complete 2025-06-05T23:50:52.1643904Z 0e4e4efb2644: Pull complete 2025-06-05T23:50:52.1856825Z 380307a36ed2: Pull complete 2025-06-05T23:50:58.4795798Z c39259ba6557: Pull complete 2025-06-05T23:50:58.6692760Z 3ec19c2849b3: Pull complete 2025-06-05T23:50:58.7845705Z c906c3b73c9a: Pull complete 2025-06-05T23:50:58.9322547Z 5e70c61fded4: Pull complete 2025-06-05T23:51:01.0648246Z 32d238decf55: Pull complete 2025-06-05T23:51:01.2837244Z 82809b17e349: Pull complete 2025-06-05T23:51:01.4646740Z beff343a364c: Pull complete 2025-06-05T23:51:01.6506496Z 5630a9397492: Pull complete 2025-06-05T23:51:01.7914602Z 1fc2d9899ffb: Pull complete 2025-06-05T23:51:52.7604127Z 91905b6f2f52: Download complete 2025-06-05T23:53:08.0816055Z 91905b6f2f52: Pull complete 2025-06-05T23:53:08.1038512Z 09dac94eaf91: Pull complete 2025-06-05T23:53:14.9203482Z 6d88f3766b32: Pull complete 2025-06-05T23:53:15.0519960Z dec0deaa1ed5: Pull complete 2025-06-05T23:53:22.9030808Z f8e551473643: Pull complete 2025-06-05T23:53:23.1193551Z e8c9ad02b518: Pull complete 2025-06-05T23:53:23.5789843Z ca22a013d303: Pull complete 2025-06-05T23:53:23.7991978Z 4f4fb700ef54: Pull complete 2025-06-05T23:53:24.0330242Z 646de239c552: Pull complete 2025-06-05T23:53:24.2535322Z c2b62aa0dc26: Pull complete 2025-06-05T23:53:24.6264061Z f6779e1a371f: Pull complete 2025-06-05T23:53:24.6674125Z Digest: sha256:4cd9e207005b6720f61c5035e99d041f7d33aa7b787473b2143d086595b815e8 2025-06-05T23:53:24.6934546Z Status: Downloaded newer image for 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:53:24.7120895Z 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:53:24.7170335Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:53:24.7171788Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:53:24.7180583Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:53:24.7181097Z env: 2025-06-05T23:53:24.7181479Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:53:24.7181969Z REPOSITORY: pytorch/executorch 2025-06-05T23:53:24.7182383Z PR_NUMBER: 2025-06-05T23:53:24.7197077Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:24.7212210Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:53:24.7212991Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:53:24.7213816Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:53:24.7214543Z ##[endgroup] 2025-06-05T23:53:24.7393426Z ##[group]Run set -ex 2025-06-05T23:53:24.7393844Z set -ex 2025-06-05T23:53:24.7394157Z { 2025-06-05T23:53:24.7394641Z  echo "#!/usr/bin/env bash"; 2025-06-05T23:53:24.7395082Z  echo "set -eou pipefail"; 2025-06-05T23:53:24.7395531Z  # shellcheck disable=SC2016 2025-06-05T23:53:24.7396002Z  echo 'eval "$(conda shell.bash hook)"'; 2025-06-05T23:53:24.7396479Z  echo "set -x"; 2025-06-05T23:53:24.7396850Z  echo "${SCRIPT}"; 2025-06-05T23:53:24.7397259Z } > "${RUNNER_TEMP}/exec_script" 2025-06-05T23:53:24.7397720Z chmod +x "${RUNNER_TEMP}/exec_script" 2025-06-05T23:53:24.7398790Z 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:24.7406002Z shell: /usr/bin/bash -e {0} 2025-06-05T23:53:24.7406378Z env: 2025-06-05T23:53:24.7407329Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:53:24.7408338Z REPOSITORY: pytorch/executorch 2025-06-05T23:53:24.7408766Z PR_NUMBER: 2025-06-05T23:53:24.7423571Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:24.7438762Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:53:24.7439545Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:53:24.7440291Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:53:25.4992435Z 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:25.4995126Z ##[endgroup] 2025-06-05T23:53:25.5029437Z + echo '#!/usr/bin/env bash' 2025-06-05T23:53:25.5029907Z + echo 'set -eou pipefail' 2025-06-05T23:53:25.5030312Z + echo 'eval "$(conda shell.bash hook)"' 2025-06-05T23:53:25.5030749Z + echo 'set -x' 2025-06-05T23:53:25.5031124Z + echo 'echo "::group::Set up ExecuTorch" 2025-06-05T23:53:25.5031793Z # The generic Linux job chooses to use base env, not the one setup by the image 2025-06-05T23:53:25.5032505Z CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") 2025-06-05T23:53:25.5033269Z conda activate "${CONDA_ENV}" 2025-06-05T23:53:25.5034171Z PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake 2025-06-05T23:53:25.5035145Z # Build executor_runner with ETdump enabled 2025-06-05T23:53:25.5035728Z PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ 2025-06-05T23:53:25.5036299Z -DCMAKE_INSTALL_PREFIX=cmake-out \ 2025-06-05T23:53:25.5036735Z -DEXECUTORCH_ENABLE_LOGGING=1 \ 2025-06-05T23:53:25.5037181Z -DCMAKE_BUILD_TYPE=Release \ 2025-06-05T23:53:25.5037617Z -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ 2025-06-05T23:53:25.5038123Z -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ 2025-06-05T23:53:25.5038591Z -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ 2025-06-05T23:53:25.5039058Z -DEXECUTORCH_BUILD_XNNPACK=ON \ 2025-06-05T23:53:25.5039563Z -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ 2025-06-05T23:53:25.5040104Z -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ 2025-06-05T23:53:25.5040566Z -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ 2025-06-05T23:53:25.5041026Z -DEXECUTORCH_BUILD_DEVTOOLS=ON \ 2025-06-05T23:53:25.5041456Z -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ 2025-06-05T23:53:25.5041890Z -Bcmake-out . 2025-06-05T23:53:25.5042334Z cmake --build cmake-out -j16 --target install --config Release 2025-06-05T23:53:25.5042896Z echo "::endgroup::" 2025-06-05T23:53:25.5043097Z 2025-06-05T23:53:25.5043266Z echo "::group::Set up Hugging Face" 2025-06-05T23:53:25.5043711Z pip install -U "huggingface_hub[cli]" 2025-06-05T23:53:25.5044242Z huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN 2025-06-05T23:53:25.5044884Z git clone https://github.com/huggingface/optimum-executorch 2025-06-05T23:53:25.5045433Z pushd optimum-executorch 2025-06-05T23:53:25.5045987Z # There is no release yet, for CI stability, always test from the same commit on main 2025-06-05T23:53:25.5046699Z git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 2025-06-05T23:53:25.5047185Z pip install .[tests] 2025-06-05T23:53:25.5047517Z popd 2025-06-05T23:53:25.5047682Z 2025-06-05T23:53:25.5047910Z if [ "allenai/OLMo-1B-hf" == "google/gemma-3-1b-it" ]; then 2025-06-05T23:53:25.5048531Z # Fixes for gemma-3 is not available in the released version 2025-06-05T23:53:25.5049151Z git clone https://github.com/huggingface/transformers.git 2025-06-05T23:53:25.5049677Z pushd transformers 2025-06-05T23:53:25.5050345Z git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f 2025-06-05T23:53:25.5050849Z pip install -e . 2025-06-05T23:53:25.5051163Z popd 2025-06-05T23:53:25.5051554Z fi 2025-06-05T23:53:25.5051823Z pip list 2025-06-05T23:53:25.5052138Z echo "::endgroup::" 2025-06-05T23:53:25.5052330Z 2025-06-05T23:53:25.5052494Z echo "::group::Export to ExecuTorch" 2025-06-05T23:53:25.5052969Z # Pass matrix variable as environment variable 2025-06-05T23:53:25.5053445Z export MODEL_ID="allenai/OLMo-1B-hf" 2025-06-05T23:53:25.5054075Z export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" 2025-06-05T23:53:25.5054595Z pushd optimum-executorch 2025-06-05T23:53:25.5054834Z 2025-06-05T23:53:25.5054985Z optimum-cli export executorch \ 2025-06-05T23:53:25.5055400Z --model ${MODEL_ID} \ 2025-06-05T23:53:25.5055764Z --task text-generation \ 2025-06-05T23:53:25.5056146Z --recipe xnnpack \ 2025-06-05T23:53:25.5056486Z --use_custom_sdpa \ 2025-06-05T23:53:25.5056861Z --output_dir ${OUTPUT_DIR} \ 2025-06-05T23:53:25.5057239Z --qlinear 2025-06-05T23:53:25.5057417Z 2025-06-05T23:53:25.5057566Z ls -FlAGhp ${OUTPUT_DIR} 2025-06-05T23:53:25.5057905Z popd 2025-06-05T23:53:25.5058210Z echo "::endgroup::" 2025-06-05T23:53:25.5058399Z 2025-06-05T23:53:25.5058584Z echo "::group::Inference using python API" 2025-06-05T23:53:25.5059055Z pushd optimum-executorch 2025-06-05T23:53:25.5059415Z python -c " 2025-06-05T23:53:25.5059723Z import os 2025-06-05T23:53:25.5060147Z from optimum.executorch import ExecuTorchModelForCausalLM 2025-06-05T23:53:25.5060707Z from transformers import AutoTokenizer 2025-06-05T23:53:25.5061009Z 2025-06-05T23:53:25.5061174Z model_id = os.getenv('\''MODEL_ID'\'') 2025-06-05T23:53:25.5061616Z pte_dir = os.getenv('\''OUTPUT_DIR'\'') 2025-06-05T23:53:25.5062143Z print(f'\''Loading model {model_id} from {pte_dir}.'\'') 2025-06-05T23:53:25.5062766Z model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) 2025-06-05T23:53:25.5063354Z generated_text = model.text_generation( 2025-06-05T23:53:25.5063865Z tokenizer=AutoTokenizer.from_pretrained(model_id), 2025-06-05T23:53:25.5064484Z prompt='\''Simply put, the theory of relativity states that'\'', 2025-06-05T23:53:25.5065016Z max_seq_len=64 2025-06-05T23:53:25.5065332Z ) 2025-06-05T23:53:25.5065622Z print(generated_text) 2025-06-05T23:53:25.5065958Z " 2025-06-05T23:53:25.5066213Z popd 2025-06-05T23:53:25.5066504Z echo "::endgroup::" 2025-06-05T23:53:25.5066728Z 2025-06-05T23:53:25.5066967Z echo "::group::Inference using executor_runner with ETDump" 2025-06-05T23:53:25.5067538Z ./cmake-out/executor_runner \ 2025-06-05T23:53:25.5068040Z --model_path ${OUTPUT_DIR}/model.pte \ 2025-06-05T23:53:25.5068522Z --etdump_path ${OUTPUT_DIR}/etdump.etdp 2025-06-05T23:53:25.5068816Z 2025-06-05T23:53:25.5069103Z export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv 2025-06-05T23:53:25.5069689Z mkdir -p $(dirname "$TSV_PATH") 2025-06-05T23:53:25.5070139Z python3 -m devtools.inspector.inspector_cli \ 2025-06-05T23:53:25.5070668Z --etdump_path ${OUTPUT_DIR}/etdump.etdp \ 2025-06-05T23:53:25.5071110Z --tsv_path ${TSV_PATH} 2025-06-05T23:53:25.5071340Z 2025-06-05T23:53:25.5071487Z echo "::endgroup::" 2025-06-05T23:53:25.5071799Z ' 2025-06-05T23:53:25.5072203Z + chmod +x /home/ec2-user/actions-runner/_work/_temp/exec_script 2025-06-05T23:53:25.5073294Z + python3 /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py EXECUTORCH_HF_TOKEN 2025-06-05T23:54:04.0211173Z Running command: 2025-06-05T23:54:04.0219060Z 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_9ac659ed-eafc-4c27-abbe-db86b1f07872":"/home/ec2-user/actions-runner/_work/_temp/_runner_file_commands/step_summary_9ac659ed-eafc-4c27-abbe-db86b1f07872" -w /pytorch/executorch "308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa" 2025-06-05T23:54:04.0226903Z 2025-06-05T23:54:04.0227408Z 6c9ea154e16ac8698fe27d52542923f82bbce1e95abae9a8e372914099627d0f 2025-06-05T23:54:04.0228334Z Running command: docker exec -t 6c9ea154e16ac8698fe27d52542923f82bbce1e95abae9a8e372914099627d0f /exec 2025-06-05T23:54:04.0229166Z + echo '::group::Set up ExecuTorch' 2025-06-05T23:54:04.0229968Z ##[group]Set up ExecuTorch 2025-06-05T23:54:04.0230425Z ++ conda env list --json 2025-06-05T23:54:04.0230846Z ++ local cmd=env 2025-06-05T23:54:04.0231223Z ++ case "$cmd" in 2025-06-05T23:54:04.0231571Z ++ __conda_exe env list --json 2025-06-05T23:54:04.0231954Z ++ jq -r '.envs | .[-1]' 2025-06-05T23:54:04.0232352Z ++ /opt/conda/bin/conda env list --json 2025-06-05T23:54:04.0232794Z + CONDA_ENV=/opt/conda/envs/py_3.10 2025-06-05T23:54:04.0233246Z + conda activate /opt/conda/envs/py_3.10 2025-06-05T23:54:04.0233673Z + local cmd=activate 2025-06-05T23:54:04.0234028Z + case "$cmd" in 2025-06-05T23:54:04.0234405Z + __conda_activate activate /opt/conda/envs/py_3.10 2025-06-05T23:54:04.0234880Z + '[' -n '' ']' 2025-06-05T23:54:04.0235197Z + local ask_conda 2025-06-05T23:54:04.0235531Z ++ PS1='(base) ' 2025-06-05T23:54:04.0235946Z ++ __conda_exe shell.posix activate /opt/conda/envs/py_3.10 2025-06-05T23:54:04.0236618Z ++ /opt/conda/bin/conda shell.posix activate /opt/conda/envs/py_3.10 2025-06-05T23:54:04.0237192Z + ask_conda='PS1='\''(py_3.10) '\'' 2025-06-05T23:54:04.0238482Z 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:54:04.0239851Z export CONDA_PREFIX='\''/opt/conda/envs/py_3.10'\'' 2025-06-05T23:54:04.0240345Z export CONDA_SHLVL='\''2'\'' 2025-06-05T23:54:04.0240776Z export CONDA_DEFAULT_ENV='\''py_3.10'\'' 2025-06-05T23:54:04.0241259Z export CONDA_PROMPT_MODIFIER='\''(py_3.10) '\'' 2025-06-05T23:54:04.0241771Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2025-06-05T23:54:04.0242246Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2025-06-05T23:54:04.0242721Z export _CE_M='\'''\'' 2025-06-05T23:54:04.0243079Z export _CE_CONDA='\'''\'' 2025-06-05T23:54:04.0243547Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2025-06-05T23:54:04.0244046Z + eval 'PS1='\''(py_3.10) '\'' 2025-06-05T23:54:04.0245181Z 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:54:04.0246390Z export CONDA_PREFIX='\''/opt/conda/envs/py_3.10'\'' 2025-06-05T23:54:04.0246893Z export CONDA_SHLVL='\''2'\'' 2025-06-05T23:54:04.0247295Z export CONDA_DEFAULT_ENV='\''py_3.10'\'' 2025-06-05T23:54:04.0247785Z export CONDA_PROMPT_MODIFIER='\''(py_3.10) '\'' 2025-06-05T23:54:04.0248268Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2025-06-05T23:54:04.0248917Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2025-06-05T23:54:04.0249368Z export _CE_M='\'''\'' 2025-06-05T23:54:04.0249723Z export _CE_CONDA='\'''\'' 2025-06-05T23:54:04.0250186Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2025-06-05T23:54:04.0250759Z ++ PS1='(py_3.10) ' 2025-06-05T23:54:04.0251825Z ++ 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:54:04.0253712Z ++ 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:54:04.0254865Z ++ export CONDA_PREFIX=/opt/conda/envs/py_3.10 2025-06-05T23:54:04.0255341Z ++ CONDA_PREFIX=/opt/conda/envs/py_3.10 2025-06-05T23:54:04.0255788Z ++ export CONDA_SHLVL=2 2025-06-05T23:54:04.0256135Z ++ CONDA_SHLVL=2 2025-06-05T23:54:04.0256532Z ++ export CONDA_DEFAULT_ENV=py_3.10 2025-06-05T23:54:04.0257059Z ++ CONDA_DEFAULT_ENV=py_3.10 2025-06-05T23:54:04.0257494Z ++ export 'CONDA_PROMPT_MODIFIER=(py_3.10) ' 2025-06-05T23:54:04.0257957Z ++ CONDA_PROMPT_MODIFIER='(py_3.10) ' 2025-06-05T23:54:04.0258409Z ++ export CONDA_PREFIX_1=/opt/conda 2025-06-05T23:54:04.0258824Z ++ CONDA_PREFIX_1=/opt/conda 2025-06-05T23:54:04.0259241Z ++ export CONDA_EXE=/opt/conda/bin/conda 2025-06-05T23:54:04.0259678Z ++ CONDA_EXE=/opt/conda/bin/conda 2025-06-05T23:54:04.0260086Z ++ export _CE_M= 2025-06-05T23:54:04.0260395Z ++ _CE_M= 2025-06-05T23:54:04.0260708Z ++ export _CE_CONDA= 2025-06-05T23:54:04.0261036Z ++ _CE_CONDA= 2025-06-05T23:54:04.0261397Z ++ export CONDA_PYTHON_EXE=/opt/conda/bin/python 2025-06-05T23:54:04.0261902Z ++ CONDA_PYTHON_EXE=/opt/conda/bin/python 2025-06-05T23:54:04.0262327Z + __conda_hashr 2025-06-05T23:54:04.0262652Z + '[' -n '' ']' 2025-06-05T23:54:04.0262953Z + '[' -n '' ']' 2025-06-05T23:54:04.0263268Z + hash -r 2025-06-05T23:54:04.0263580Z + PYTHON_EXECUTABLE=python 2025-06-05T23:54:04.0264053Z + bash .ci/scripts/setup-linux.sh --build-tool cmake 2025-06-05T23:54:04.0264561Z ++ dirname .ci/scripts/setup-linux.sh 2025-06-05T23:54:04.0265006Z + source .ci/scripts/utils.sh 2025-06-05T23:54:04.0265420Z + read -r BUILD_TOOL BUILD_MODE EDITABLE 2025-06-05T23:54:04.0265878Z ++ parse_args --build-tool cmake 2025-06-05T23:54:04.0266284Z ++ args=('--build-tool' 'cmake') 2025-06-05T23:54:04.0266660Z ++ local args 2025-06-05T23:54:04.0266971Z ++ local i 2025-06-05T23:54:04.0267294Z ++ local BUILD_TOOL= 2025-06-05T23:54:04.0267770Z ++ local BUILD_MODE= 2025-06-05T23:54:04.0268117Z ++ local EDITABLE= 2025-06-05T23:54:04.0268448Z ++ (( i=0 )) 2025-06-05T23:54:04.0268739Z ++ (( i<2 )) 2025-06-05T23:54:04.0269058Z ++ case "${args[$i]}" in 2025-06-05T23:54:04.0269410Z ++ BUILD_TOOL=cmake 2025-06-05T23:54:04.0269732Z ++ i=1 2025-06-05T23:54:04.0270009Z ++ (( i++ )) 2025-06-05T23:54:04.0270299Z ++ (( i<2 )) 2025-06-05T23:54:04.0270621Z ++ '[' -z cmake ']' 2025-06-05T23:54:04.0270959Z ++ [[ cmake =~ ^(cmake|buck2)$ ]] 2025-06-05T23:54:04.0271375Z ++ BUILD_MODE=Release 2025-06-05T23:54:04.0271729Z ++ [[ Release =~ ^(Debug|Release)$ ]] 2025-06-05T23:54:04.0272150Z ++ EDITABLE=false 2025-06-05T23:54:04.0272483Z ++ [[ false =~ ^(true|false)$ ]] 2025-06-05T23:54:04.0272904Z ++ echo 'cmake Release false' 2025-06-05T23:54:04.0273287Z + [[ false == \t\r\u\e ]] 2025-06-05T23:54:04.0273706Z + install_executorch --use-pt-pinned-commit 2025-06-05T23:54:04.0274148Z + which pip 2025-06-05T23:54:04.0274483Z /opt/conda/envs/py_3.10/bin/pip 2025-06-05T23:54:04.0274936Z + ./install_executorch.sh --use-pt-pinned-commit 2025-06-05T23:54:04.0275587Z 2025-06-05 23:54:02,949 [ExecuTorch] INFO: All required submodules are present. 2025-06-05T23:54:04.0276465Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cpu 2025-06-05T23:54:04.0277562Z Requirement already satisfied: torch in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (2.8.0a0+git5616fa4) 2025-06-05T23:54:04.0279308Z Requirement already satisfied: torchvision in /var/lib/ci-user/.local/lib/python3.10/site-packages (0.22.0a0+966da7e) 2025-06-05T23:54:04.0280562Z Requirement already satisfied: torchaudio in /var/lib/ci-user/.local/lib/python3.10/site-packages (2.6.0a0+1a8f621) 2025-06-05T23:54:04.0281620Z Collecting timm==1.0.7 (from -r requirements-examples.txt (line 3)) 2025-06-05T23:54:04.0282324Z Downloading timm-1.0.7-py3-none-any.whl.metadata (47 kB) 2025-06-05T23:54:04.0283445Z 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:54:04.0284646Z Collecting torchtune>=0.6.1 (from -r requirements-examples.txt (line 5)) 2025-06-05T23:54:04.0285399Z Downloading torchtune-0.6.1-py3-none-any.whl.metadata (24 kB) 2025-06-05T23:54:04.0286603Z 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:54:04.0287798Z Collecting cmake<4.0.0,>=3.19 (from -r requirements-dev.txt (line 1)) 2025-06-05T23:54:04.0288674Z Downloading cmake-3.31.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.3 kB) 2025-06-05T23:54:04.0289917Z 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:54:04.0291391Z 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:54:04.0292903Z 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:54:04.0294504Z 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:54:04.0295971Z 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:54:04.0297457Z 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:54:04.0299104Z 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:54:04.0300829Z 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:54:04.0302597Z 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:54:04.0304366Z 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:54:07.3717190Z 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:54:07.3719692Z 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:54:07.3721528Z 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:54:07.3723348Z 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:54:07.3725186Z 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:54:07.3727333Z 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:54:07.3729431Z 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:54:07.3731394Z 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:54:07.3732946Z 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:54:07.3734262Z Requirement already satisfied: networkx in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (3.4.2) 2025-06-05T23:54:07.3735469Z Requirement already satisfied: jinja2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (3.1.6) 2025-06-05T23:54:07.3736713Z 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:54:07.3737853Z Collecting torchdata==0.11.0 (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:54:07.3738686Z Downloading torchdata-0.11.0-py3-none-any.whl.metadata (6.3 kB) 2025-06-05T23:54:07.3739491Z Collecting datasets (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:54:07.3740275Z Downloading datasets-3.6.0-py3-none-any.whl.metadata (19 kB) 2025-06-05T23:54:07.3741074Z Collecting kagglehub (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:54:07.3741881Z Downloading kagglehub-0.3.12-py3-none-any.whl.metadata (38 kB) 2025-06-05T23:54:07.3742714Z Collecting sentencepiece (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:54:07.3744009Z 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:54:07.3748485Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.3 MB ? eta -:--:-- 2025-06-05T23:54:07.3749503Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 89.0 MB/s eta 0:00:00 2025-06-05T23:54:07.3750443Z [?25hCollecting tiktoken (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:54:07.3751453Z Downloading tiktoken-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) 2025-06-05T23:54:07.3752447Z Collecting blobfile>=2 (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:54:07.3753420Z Downloading https://download.pytorch.org/whl/nightly/blobfile-3.0.0-py3-none-any.whl (75 kB) 2025-06-05T23:54:07.3754396Z Collecting omegaconf (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:54:07.3755386Z Downloading https://download.pytorch.org/whl/nightly/omegaconf-2.3.0-py3-none-any.whl (79 kB) 2025-06-05T23:54:07.3756348Z Collecting psutil (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:54:07.3757488Z 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:54:07.3759162Z 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:54:07.3760650Z Collecting pycryptodomex>=3.8 (from blobfile>=2->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:54:07.3761783Z Downloading pycryptodomex-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.4 kB) 2025-06-05T23:54:07.3763472Z 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:54:07.3765066Z 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:54:07.3766353Z Collecting pyarrow>=15.0.0 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:54:07.3767291Z Downloading pyarrow-20.0.0-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (3.3 kB) 2025-06-05T23:54:07.3768236Z Collecting dill<0.3.9,>=0.3.0 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:54:07.3769231Z Downloading https://download.pytorch.org/whl/nightly/dill-0.3.8-py3-none-any.whl (116 kB) 2025-06-05T23:54:07.3770662Z 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:54:07.3772057Z Collecting xxhash (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:54:07.3773266Z 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:54:07.3774654Z Collecting multiprocess<0.70.17 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:54:07.3775770Z Downloading https://download.pytorch.org/whl/nightly/multiprocess-0.70.16-py310-none-any.whl (134 kB) 2025-06-05T23:54:07.3776881Z Collecting fsspec>=2023.5.0 (from huggingface_hub->timm==1.0.7->-r requirements-examples.txt (line 3)) 2025-06-05T23:54:07.3777758Z Downloading fsspec-2025.3.0-py3-none-any.whl.metadata (11 kB) 2025-06-05T23:54:07.3779097Z 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:54:07.3780328Z Downloading aiohttp-3.12.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.6 kB) 2025-06-05T23:54:07.3781666Z 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:54:07.3782898Z Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl.metadata (5.9 kB) 2025-06-05T23:54:07.3784043Z 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:54:07.3785469Z Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) 2025-06-05T23:54:07.3786606Z 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:54:07.3787749Z Downloading async_timeout-5.0.1-py3-none-any.whl.metadata (5.1 kB) 2025-06-05T23:54:07.3789287Z 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:54:07.3791202Z 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:54:07.3792820Z 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:54:07.3794271Z 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:54:07.3795564Z Downloading multidict-6.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) 2025-06-05T23:54:07.3796839Z 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:54:07.3798358Z Downloading propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (10 kB) 2025-06-05T23:54:07.3799615Z 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:54:07.3800987Z Downloading yarl-1.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (72 kB) 2025-06-05T23:54:09.6205167Z 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:09.6209661Z 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:09.6213745Z 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:09.6216901Z 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:09.6219114Z 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:09.6221473Z 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:09.6223941Z Collecting antlr4-python3-runtime==4.9.* (from omegaconf->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:54:09.6226163Z Downloading https://download.pytorch.org/whl/nightly/antlr4_python3_runtime-4.9.3.tar.gz (117 kB) 2025-06-05T23:54:09.6228081Z Preparing metadata (setup.py) ... [?25l- done 2025-06-05T23:54:09.6230952Z [?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:09.6234808Z 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:09.6238564Z 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:09.6242077Z 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:09.6244419Z Downloading timm-1.0.7-py3-none-any.whl (2.3 MB) 2025-06-05T23:54:09.6246001Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:54:09.6247619Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 105.8 MB/s eta 0:00:00 2025-06-05T23:54:09.6249492Z [?25hDownloading cmake-3.31.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.8 MB) 2025-06-05T23:54:09.6251347Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/27.8 MB ? eta -:--:-- 2025-06-05T23:54:09.6253031Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 27.8/27.8 MB 166.1 MB/s eta 0:00:00 2025-06-05T23:54:09.6254596Z [?25hDownloading torchtune-0.6.1-py3-none-any.whl (910 kB) 2025-06-05T23:54:09.6256147Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/910.7 kB ? eta -:--:-- 2025-06-05T23:54:09.6257827Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 910.7/910.7 kB 90.4 MB/s eta 0:00:00 2025-06-05T23:54:09.6259849Z [?25hDownloading torchdata-0.11.0-py3-none-any.whl (61 kB) 2025-06-05T23:54:09.6261487Z Downloading pycryptodomex-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB) 2025-06-05T23:54:09.6263643Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:54:09.6265265Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 144.9 MB/s eta 0:00:00 2025-06-05T23:54:09.6266680Z [?25hDownloading datasets-3.6.0-py3-none-any.whl (491 kB) 2025-06-05T23:54:09.6267795Z Downloading fsspec-2025.3.0-py3-none-any.whl (193 kB) 2025-06-05T23:54:09.6269278Z Downloading aiohttp-3.12.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB) 2025-06-05T23:54:09.6271161Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.6 MB ? eta -:--:-- 2025-06-05T23:54:09.6272830Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 148.9 MB/s eta 0:00:00 2025-06-05T23:54:09.6274295Z [?25hDownloading async_timeout-5.0.1-py3-none-any.whl (6.2 kB) 2025-06-05T23:54:09.6275884Z Downloading multidict-6.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (219 kB) 2025-06-05T23:54:09.6277666Z Downloading yarl-1.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (333 kB) 2025-06-05T23:54:09.6279413Z Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl (15 kB) 2025-06-05T23:54:09.6280623Z Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) 2025-06-05T23:54:09.6282479Z 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:09.6284748Z Downloading propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206 kB) 2025-06-05T23:54:09.6286424Z Downloading pyarrow-20.0.0-cp310-cp310-manylinux_2_28_x86_64.whl (42.3 MB) 2025-06-05T23:54:09.6288241Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/42.3 MB ? eta -:--:-- 2025-06-05T23:54:09.6289830Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.3/42.3 MB 270.0 MB/s eta 0:00:00 2025-06-05T23:54:09.6309060Z [?25hDownloading hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB) 2025-06-05T23:54:09.6311071Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/3.6 MB ? eta -:--:-- 2025-06-05T23:54:09.6312717Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/3.6 MB 138.4 MB/s eta 0:00:00 2025-06-05T23:54:09.6314147Z [?25hDownloading kagglehub-0.3.12-py3-none-any.whl (67 kB) 2025-06-05T23:54:09.6316037Z 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:09.6318280Z Downloading tiktoken-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB) 2025-06-05T23:54:09.6320547Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.2 MB ? eta -:--:-- 2025-06-05T23:54:09.6322278Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 125.6 MB/s eta 0:00:00 2025-06-05T23:54:09.6324046Z [?25hBuilding wheels for collected packages: antlr4-python3-runtime 2025-06-05T23:54:09.6330175Z  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:09.6335612Z  Building wheel for antlr4-python3-runtime (setup.py) ... [?25l- \ done 2025-06-05T23:54:09.6338520Z [?25h Created wheel for antlr4-python3-runtime: filename=antlr4_python3_runtime-4.9.3-py3-none-any.whl size=144590 sha256=3469ca0a4378d31b7cbee1183515b4a5ddae36066077c388bc6cee7430aefd48 2025-06-05T23:54:09.6341615Z Stored in directory: /var/lib/ci-user/.cache/pip/wheels/8e/0c/ef/6e1004d7898c3e61c08b70be9a80232ee72e7c55c9a9bffa33 2025-06-05T23:54:09.6343278Z Successfully built antlr4-python3-runtime 2025-06-05T23:54:09.6347127Z 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:09.6351048Z [?25l 2025-06-05T23:54:20.1589062Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/27 [pycryptodomex] 2025-06-05T23:54:20.1590675Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/27 [pycryptodomex] 2025-06-05T23:54:20.1592269Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/27 [pycryptodomex] 2025-06-05T23:54:20.1593900Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:20.1595324Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:20.1596803Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:20.1598239Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:20.1599691Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:20.1601206Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:20.1602997Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:20.1604468Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  5/27 [psutil] 2025-06-05T23:54:20.1606364Z  ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━  9/27 [hf-transfer] 2025-06-05T23:54:20.1607428Z  Attempting uninstall: fsspec 2025-06-05T23:54:20.1608550Z ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━  9/27 [hf-transfer] 2025-06-05T23:54:20.1609780Z  Found existing installation: fsspec 2025.5.1 2025-06-05T23:54:20.1611097Z ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━  9/27 [hf-transfer] 2025-06-05T23:54:20.1612260Z  Uninstalling fsspec-2025.5.1: 2025-06-05T23:54:20.1613546Z ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━  9/27 [hf-transfer] 2025-06-05T23:54:20.1614756Z  Successfully uninstalled fsspec-2025.5.1 2025-06-05T23:54:20.1616087Z ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━  9/27 [hf-transfer] 2025-06-05T23:54:20.1617571Z  ━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 10/27 [fsspec] 2025-06-05T23:54:20.1619030Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:20.1620441Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:20.1621875Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:20.1623280Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:20.1624681Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:20.1626134Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:20.1627620Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 14/27 [async-timeout] 2025-06-05T23:54:20.1629145Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 18/27 [multiprocess] 2025-06-05T23:54:20.1630615Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 23/27 [aiohttp] 2025-06-05T23:54:20.1631647Z  Attempting uninstall: timm 2025-06-05T23:54:20.1632756Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 23/27 [aiohttp] 2025-06-05T23:54:20.1634157Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:20.1635363Z  Found existing installation: timm 0.6.13 2025-06-05T23:54:20.1636602Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:20.1637684Z  Uninstalling timm-0.6.13: 2025-06-05T23:54:20.1639051Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:20.1640183Z  Successfully uninstalled timm-0.6.13 2025-06-05T23:54:20.1641420Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:20.1642928Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:20.1644330Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:20.1645672Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:20.1646992Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:20.1648398Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 25/27 [datasets] 2025-06-05T23:54:20.1649776Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 26/27 [torchtune] 2025-06-05T23:54:20.1651338Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 26/27 [torchtune] 2025-06-05T23:54:20.1652697Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 27/27 [torchtune] 2025-06-05T23:54:20.1653767Z [?25h 2025-06-05T23:54:20.1659215Z 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:20.1664071Z Processing ./third-party/ao 2025-06-05T23:54:20.1665027Z Preparing metadata (setup.py) ... [?25l- done 2025-06-05T23:54:20.1666038Z [?25hProcessing ./extension/llm/tokenizers 2025-06-05T23:54:20.1667189Z Preparing metadata (pyproject.toml) ... [?25l- \ done 2025-06-05T23:54:20.1669470Z [?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:28.1618995Z 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:28.1620538Z 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:28.1622086Z 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:28.1623691Z 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:28.1625719Z 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:28.1627499Z 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:28.1629455Z 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:28.1631277Z 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:28.1633012Z 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:28.1634769Z 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:28.1636631Z 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:28.1638505Z 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:28.1640357Z 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:28.1642157Z 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:28.1644065Z 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:28.1645983Z 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:28.1647253Z Building wheels for collected packages: torchao, pytorch_tokenizers 2025-06-05T23:54:28.1650460Z  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:28.1653185Z  Building wheel for torchao (setup.py) ... [?25l- \ | / - done 2025-06-05T23:54:28.1654811Z [?25h Created wheel for torchao: filename=torchao-0.12.0+gitbc68b11-cp39-abi3-linux_x86_64.whl size=955946 sha256=1665d0a92f5973296c032298ded7cf3e6a46b87d22a3e21095d4a006f437669c 2025-06-05T23:54:28.1656435Z Stored in directory: /tmp/pip-ephem-wheel-cache-yn68gvl8/wheels/0b/23/ff/2261dc1c4a27252503fe159d9fc88676b133e0e8d621abf36f 2025-06-05T23:54:28.1657613Z Building wheel for pytorch_tokenizers (pyproject.toml) ... [?25l- \ done 2025-06-05T23:54:28.1659153Z [?25h Created wheel for pytorch_tokenizers: filename=pytorch_tokenizers-0.1.0-py3-none-any.whl size=10999 sha256=66b1d5c274ce1cd37e423b7fbebdee0efe4ab9094be9927fb3aa2903b8b9d505 2025-06-05T23:54:28.1660765Z Stored in directory: /tmp/pip-ephem-wheel-cache-yn68gvl8/wheels/27/7b/a1/358699b32a468639d6f9ef263f9676280bc5ee318b0bd9a0b2 2025-06-05T23:54:28.1661720Z Successfully built torchao pytorch_tokenizers 2025-06-05T23:54:28.1662414Z Installing collected packages: torchao, pytorch_tokenizers 2025-06-05T23:54:28.1662973Z [?25l 2025-06-05T23:54:28.1663492Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:54:28.1664264Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:54:28.1664929Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:54:28.1665610Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:54:28.1666312Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2/2 [pytorch_tokenizers] 2025-06-05T23:54:28.1666841Z [?25h 2025-06-05T23:54:28.1667432Z Successfully installed pytorch_tokenizers-0.1.0 torchao-0.12.0+gitbc68b11 2025-06-05T23:54:28.1668318Z Using pip 25.1 from /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pip (python 3.10) 2025-06-05T23:54:28.1669266Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cpu 2025-06-05T23:54:28.1669985Z Processing /pytorch/executorch 2025-06-05T23:54:28.1670460Z Running command Preparing metadata (pyproject.toml) 2025-06-05T23:54:28.1671776Z /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:28.1672952Z !! 2025-06-05T23:54:28.1673121Z 2025-06-05T23:54:28.1673302Z ******************************************************************************** 2025-06-05T23:54:28.1674401Z 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:28.1675326Z 2025-06-05T23:54:28.1675637Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-06-05T23:54:28.1676266Z or your builds will no longer be supported. 2025-06-05T23:54:28.1676594Z 2025-06-05T23:54:28.1677072Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:28.1677864Z ******************************************************************************** 2025-06-05T23:54:28.1678181Z 2025-06-05T23:54:28.1678305Z !! 2025-06-05T23:54:28.1678833Z corresp(dist, value, root_dir) 2025-06-05T23:54:28.1679975Z /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:28.1681105Z !! 2025-06-05T23:54:28.1681258Z 2025-06-05T23:54:28.1681439Z ******************************************************************************** 2025-06-05T23:54:28.1682182Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:54:28.1682725Z 2025-06-05T23:54:28.1682940Z License :: OSI Approved :: BSD License 2025-06-05T23:54:28.1683253Z 2025-06-05T23:54:28.1683732Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:28.1684500Z ******************************************************************************** 2025-06-05T23:54:28.1684836Z 2025-06-05T23:54:28.1684962Z !! 2025-06-05T23:54:28.1685275Z dist._finalize_license_expression() 2025-06-05T23:54:28.1686310Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:54:28.1687294Z !! 2025-06-05T23:54:28.1687453Z 2025-06-05T23:54:28.1687628Z ******************************************************************************** 2025-06-05T23:54:28.1688347Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:54:28.1688906Z 2025-06-05T23:54:28.1689107Z License :: OSI Approved :: BSD License 2025-06-05T23:54:28.1689407Z 2025-06-05T23:54:28.1690056Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:28.1690850Z ******************************************************************************** 2025-06-05T23:54:28.1691252Z 2025-06-05T23:54:28.1691381Z !! 2025-06-05T23:54:28.1691711Z self._finalize_license_expression() 2025-06-05T23:54:28.1692138Z running dist_info 2025-06-05T23:54:28.1692641Z creating /tmp/pip-modern-metadata-zbgein0u/executorch.egg-info 2025-06-05T23:54:28.1693405Z writing /tmp/pip-modern-metadata-zbgein0u/executorch.egg-info/PKG-INFO 2025-06-05T23:54:28.1694447Z writing dependency_links to /tmp/pip-modern-metadata-zbgein0u/executorch.egg-info/dependency_links.txt 2025-06-05T23:54:28.1695532Z writing entry points to /tmp/pip-modern-metadata-zbgein0u/executorch.egg-info/entry_points.txt 2025-06-05T23:54:28.1696558Z writing requirements to /tmp/pip-modern-metadata-zbgein0u/executorch.egg-info/requires.txt 2025-06-05T23:54:28.1697567Z writing top-level names to /tmp/pip-modern-metadata-zbgein0u/executorch.egg-info/top_level.txt 2025-06-05T23:54:28.1698580Z writing manifest file '/tmp/pip-modern-metadata-zbgein0u/executorch.egg-info/SOURCES.txt' 2025-06-05T23:54:29.2310840Z reading manifest file '/tmp/pip-modern-metadata-zbgein0u/executorch.egg-info/SOURCES.txt' 2025-06-05T23:54:29.2311605Z adding license file 'LICENSE' 2025-06-05T23:54:29.2312294Z writing manifest file '/tmp/pip-modern-metadata-zbgein0u/executorch.egg-info/SOURCES.txt' 2025-06-05T23:54:29.2313242Z creating '/tmp/pip-modern-metadata-zbgein0u/executorch-0.7.0a0+bd57234.dist-info' 2025-06-05T23:54:29.2314287Z Preparing metadata (pyproject.toml) ... [?25l[?25hdone 2025-06-05T23:54:29.2315325Z 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:29.2316382Z Collecting flatbuffers (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:29.2318053Z 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:29.2319779Z Downloading flatbuffers-25.2.10-py2.py3-none-any.whl.metadata (875 bytes) 2025-06-05T23:54:29.2320937Z 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:29.2322724Z 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:29.2324140Z 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:29.2325567Z 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:29.2327011Z 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:29.2328816Z 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:29.2330285Z 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:29.2331298Z Collecting pytest-xdist (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:29.2332879Z 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:29.2334576Z Downloading pytest_xdist-3.7.0-py3-none-any.whl.metadata (3.0 kB) 2025-06-05T23:54:29.2335325Z Collecting pytest-rerunfailures (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:29.2337213Z 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:29.2339304Z Downloading pytest_rerunfailures-15.1-py3-none-any.whl.metadata (20 kB) 2025-06-05T23:54:29.2340424Z 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:29.2341870Z 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:29.2343296Z 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:29.2344458Z Collecting tabulate (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:29.2345947Z 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:29.2347503Z Downloading tabulate-0.9.0-py3-none-any.whl.metadata (34 kB) 2025-06-05T23:54:29.2348672Z 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:29.2349792Z Collecting coremltools==8.3 (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:29.2351462Z 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:29.2353235Z Downloading coremltools-8.3.0-cp310-none-manylinux1_x86_64.whl.metadata (2.6 kB) 2025-06-05T23:54:29.2354076Z Collecting protobuf>=3.1.0 (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:54:29.2355762Z 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:29.2357513Z Downloading protobuf-6.31.1-cp39-abi3-manylinux2014_x86_64.whl.metadata (593 bytes) 2025-06-05T23:54:29.2358744Z 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:29.2360351Z 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:29.2361530Z Collecting cattrs (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:54:29.2363037Z 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:29.2364547Z Downloading cattrs-25.1.1-py3-none-any.whl.metadata (8.4 kB) 2025-06-05T23:54:29.2365240Z Collecting pyaml (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:54:29.2366745Z 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:29.2368210Z Downloading pyaml-25.5.0-py3-none-any.whl.metadata (12 kB) 2025-06-05T23:54:29.2369431Z 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:29.2371088Z 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:29.2372801Z 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:29.2374555Z 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:29.2376427Z 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:29.2378207Z 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:29.2380521Z 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:29.2382085Z 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:29.2383600Z 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:29.2384660Z Collecting pytest (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:29.2386112Z 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:29.2387632Z Downloading pytest-8.4.0-py3-none-any.whl.metadata (7.7 kB) 2025-06-05T23:54:29.2388756Z 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:29.2389921Z Collecting execnet>=2.1 (from pytest-xdist->executorch==0.7.0a0+bd57234) 2025-06-05T23:54:29.2391744Z 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:29.2393316Z Downloading execnet-2.1.1-py3-none-any.whl.metadata (2.9 kB) 2025-06-05T23:54:29.2394521Z 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:29.2396097Z Downloading coremltools-8.3.0-cp310-none-manylinux1_x86_64.whl (2.3 MB) 2025-06-05T23:54:29.2397170Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:54:29.2398043Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 113.2 MB/s eta 0:00:00 2025-06-05T23:54:29.2398929Z [?25hDownloading protobuf-6.31.1-cp39-abi3-manylinux2014_x86_64.whl (321 kB) 2025-06-05T23:54:30.8490774Z Downloading cattrs-25.1.1-py3-none-any.whl (69 kB) 2025-06-05T23:54:30.8492316Z Downloading flatbuffers-25.2.10-py2.py3-none-any.whl (30 kB) 2025-06-05T23:54:30.8493290Z Downloading pyaml-25.5.0-py3-none-any.whl (26 kB) 2025-06-05T23:54:30.8494072Z Downloading pytest_rerunfailures-15.1-py3-none-any.whl (13 kB) 2025-06-05T23:54:30.8494996Z Downloading pytest-8.4.0-py3-none-any.whl (363 kB) 2025-06-05T23:54:30.8495665Z Downloading pytest_xdist-3.7.0-py3-none-any.whl (46 kB) 2025-06-05T23:54:30.8496428Z Downloading execnet-2.1.1-py3-none-any.whl (40 kB) 2025-06-05T23:54:30.8497034Z Downloading tabulate-0.9.0-py3-none-any.whl (35 kB) 2025-06-05T23:54:30.8497732Z Building wheels for collected packages: executorch 2025-06-05T23:54:30.8498416Z Running command Building wheel for executorch (pyproject.toml) 2025-06-05T23:54:30.8500243Z /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:30.8501782Z !! 2025-06-05T23:54:30.8501959Z 2025-06-05T23:54:30.8502155Z ******************************************************************************** 2025-06-05T23:54:30.8503563Z 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:30.8504605Z 2025-06-05T23:54:30.8505039Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-06-05T23:54:30.8505678Z or your builds will no longer be supported. 2025-06-05T23:54:30.8506009Z 2025-06-05T23:54:30.8506511Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:30.8507578Z ******************************************************************************** 2025-06-05T23:54:30.8507914Z 2025-06-05T23:54:30.8508041Z !! 2025-06-05T23:54:30.8508412Z corresp(dist, value, root_dir) 2025-06-05T23:54:30.8509823Z /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:30.8511255Z !! 2025-06-05T23:54:30.8511422Z 2025-06-05T23:54:30.8511601Z ******************************************************************************** 2025-06-05T23:54:30.8512584Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:54:30.8513207Z 2025-06-05T23:54:30.8513419Z License :: OSI Approved :: BSD License 2025-06-05T23:54:30.8513838Z 2025-06-05T23:54:30.8514392Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:30.8515215Z ******************************************************************************** 2025-06-05T23:54:30.8515642Z 2025-06-05T23:54:30.8515813Z !! 2025-06-05T23:54:30.8516228Z dist._finalize_license_expression() 2025-06-05T23:54:30.8517405Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:54:30.8518428Z !! 2025-06-05T23:54:30.8518589Z 2025-06-05T23:54:30.8518767Z ******************************************************************************** 2025-06-05T23:54:30.8519495Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:54:30.8520054Z 2025-06-05T23:54:30.8520241Z License :: OSI Approved :: BSD License 2025-06-05T23:54:30.8520542Z 2025-06-05T23:54:30.8521014Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:30.8521796Z ******************************************************************************** 2025-06-05T23:54:30.8522109Z 2025-06-05T23:54:30.8522240Z !! 2025-06-05T23:54:30.8522572Z self._finalize_license_expression() 2025-06-05T23:54:30.8522997Z running bdist_wheel 2025-06-05T23:54:30.8523350Z running build 2025-06-05T23:54:30.8523817Z command options for 'CustomBuild': 2025-06-05T23:54:30.8524262Z build_base = pip-out 2025-06-05T23:54:30.8524640Z build_purelib = pip-out/lib 2025-06-05T23:54:30.8525183Z build_platlib = pip-out/lib.linux-x86_64-cpython-310 2025-06-05T23:54:30.8525751Z build_lib = pip-out/lib.linux-x86_64-cpython-310 2025-06-05T23:54:30.8526255Z build_scripts = pip-out/scripts-3.10 2025-06-05T23:54:30.8526778Z build_temp = pip-out/temp.linux-x86_64-cpython-310 2025-06-05T23:54:30.8527265Z plat_name = linux-x86_64 2025-06-05T23:54:30.8527659Z compiler = None 2025-06-05T23:54:30.8527986Z parallel = None 2025-06-05T23:54:30.8528324Z debug = None 2025-06-05T23:54:30.8528635Z force = None 2025-06-05T23:54:30.8529023Z executable = /opt/conda/envs/py_3.10/bin/python 2025-06-05T23:54:30.8529705Z creating /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:54:30.8530551Z clearing /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:54:30.8531186Z Preset CMake variables: 2025-06-05T23:54:30.8531429Z 2025-06-05T23:54:30.8531597Z CMAKE_OSX_DEPLOYMENT_TARGET="12.0" 2025-06-05T23:54:30.8532253Z EXECUTORCH_BUILD_PRESET_FILE="/pytorch/executorch/tools/cmake/preset/pybind.cmake" 2025-06-05T23:54:30.8532772Z 2025-06-05T23:54:30.8532979Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:54:30.8533588Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:54:30.8534109Z -- Detecting C compiler ABI info 2025-06-05T23:54:30.8534568Z -- Detecting C compiler ABI info - done 2025-06-05T23:54:30.8535115Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:54:30.8535666Z -- Detecting C compile features 2025-06-05T23:54:30.8536102Z -- Detecting C compile features - done 2025-06-05T23:54:30.8536572Z -- Detecting CXX compiler ABI info 2025-06-05T23:54:30.8537027Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:54:30.8537608Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:54:30.8538160Z -- Detecting CXX compile features 2025-06-05T23:54:30.8538625Z -- Detecting CXX compile features - done 2025-06-05T23:54:30.8539254Z -- Loading build preset: /pytorch/executorch/tools/cmake/preset/pybind.cmake 2025-06-05T23:54:30.8540114Z -- --- Configured Options --- 2025-06-05T23:54:30.8540412Z 2025-06-05T23:54:30.8540667Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:54:30.8541268Z -- CMAKE_SYSTEM_PROCESSOR : x86_64 2025-06-05T23:54:30.8541879Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:54:30.8542493Z -- PYTHON_EXECUTABLE : /opt/conda/envs/py_3.10/bin/python 2025-06-05T23:54:30.8543279Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-06-05T23:54:30.8543906Z -- CMAKE_TOOLCHAIN_FILE x (unset) 2025-06-05T23:54:30.8544445Z -- BUCK2 : 2025-06-05T23:54:30.8545227Z -- EXECUTORCH_BUILD_PRESET_FILE : /pytorch/executorch/tools/cmake/preset/pybind.cmake 2025-06-05T23:54:30.8546003Z -- EXECUTORCH_ENABLE_LOGGING : ON 2025-06-05T23:54:30.8546728Z -- EXECUTORCH_BUILD_COREML : ON 2025-06-05T23:54:30.8547242Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:54:30.8547878Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-06-05T23:54:30.8548685Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-06-05T23:54:30.8549631Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:54:30.8550248Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:54:30.8550870Z -- EXECUTORCH_ENABLE_EVENT_TRACER : OFF 2025-06-05T23:54:30.8551454Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-06-05T23:54:30.8552013Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-06-05T23:54:30.8552752Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : ON 2025-06-05T23:54:30.8553379Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : ON 2025-06-05T23:54:30.8553906Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : ON 2025-06-05T23:54:30.8554421Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : OFF 2025-06-05T23:54:30.8555017Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : ON 2025-06-05T23:54:30.8555520Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:54:30.8556041Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : OFF 2025-06-05T23:54:30.8556547Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : ON 2025-06-05T23:54:30.8557066Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : ON 2025-06-05T23:54:30.8557571Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : OFF 2025-06-05T23:54:30.8558099Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:54:30.8558599Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:54:30.8559104Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:54:30.8559598Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:54:30.8560108Z -- EXECUTORCH_BUILD_PYBIND : ON 2025-06-05T23:54:30.8560591Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:54:30.8561104Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : OFF 2025-06-05T23:54:30.8561609Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : ON 2025-06-05T23:54:30.8562120Z -- EXECUTORCH_BUILD_DEVTOOLS : OFF 2025-06-05T23:54:30.8562608Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:54:30.8563092Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:54:30.8563598Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:54:30.8564094Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:54:30.8564597Z -- EXECUTORCH_BUILD_XNNPACK : ON 2025-06-05T23:54:30.8565085Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:54:30.8565592Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:54:30.8566074Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:54:30.8566572Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:54:30.8567064Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:54:30.8567577Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:54:30.8568073Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:54:30.8568595Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-06-05T23:54:30.8569088Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-06-05T23:54:30.8569598Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:54:30.8570115Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:54:30.8570639Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:54:30.8571153Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:54:30.8571635Z -- -------------------------- 2025-06-05T23:54:30.8572220Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:54:30.8573163Z CMake Deprecation Warning at third-party/pybind11/CMakeLists.txt:13 (cmake_minimum_required): 2025-06-05T23:54:30.8574140Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:30.8574736Z CMake. 2025-06-05T23:54:30.8574902Z 2025-06-05T23:54:30.8575214Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:30.8576130Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:30.8576980Z to work with policies introduced by or earlier. 2025-06-05T23:54:30.8577348Z 2025-06-05T23:54:30.8577354Z 2025-06-05T23:54:30.8577506Z -- pybind11 v2.13.6 2025-06-05T23:54:30.8578270Z -- 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:30.8579455Z -- Found PythonLibs: /opt/conda/envs/py_3.10/lib/libpython3.10.so 2025-06-05T23:54:30.8580023Z -- Performing Test HAS_FLTO_THIN 2025-06-05T23:54:30.8580655Z -- Performing Test HAS_FLTO_THIN - Success 2025-06-05T23:54:30.8581377Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:54:30.8582368Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:30.8582946Z CMake. 2025-06-05T23:54:30.8583127Z 2025-06-05T23:54:30.8583445Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:40.1588248Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:40.1589292Z to work with policies introduced by or earlier. 2025-06-05T23:54:40.1589662Z 2025-06-05T23:54:40.1589668Z 2025-06-05T23:54:40.1589913Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:54:40.1590562Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:54:40.1591115Z -- Setting Clang compiler options 2025-06-05T23:54:40.1592106Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:54:40.1593425Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:54:40.1594423Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:40.1595002Z CMake. 2025-06-05T23:54:40.1595179Z 2025-06-05T23:54:40.1595495Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:40.1596254Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:40.1596940Z to work with policies introduced by or earlier. 2025-06-05T23:54:40.1597296Z 2025-06-05T23:54:40.1597301Z 2025-06-05T23:54:40.1597841Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:54:40.1598817Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:40.1599410Z CMake. 2025-06-05T23:54:40.1599578Z 2025-06-05T23:54:40.1599895Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:40.1600658Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:40.1601313Z to work with policies introduced by or earlier. 2025-06-05T23:54:40.1601667Z 2025-06-05T23:54:40.1601672Z 2025-06-05T23:54:40.1601857Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-05T23:54:40.1602383Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-06-05T23:54:40.1602884Z -- Found Threads: TRUE 2025-06-05T23:54:40.1603658Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:54:40.1604665Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:40.1605232Z CMake. 2025-06-05T23:54:40.1605407Z 2025-06-05T23:54:40.1605779Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:40.1606523Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:40.1607196Z to work with policies introduced by or earlier. 2025-06-05T23:54:40.1607566Z 2025-06-05T23:54:40.1607570Z 2025-06-05T23:54:40.1607720Z -- Resolved buck2 as buck2. 2025-06-05T23:54:40.1608127Z -- Killing buck2 daemon 2025-06-05T23:54:40.1608488Z 'buck2 killall' 2025-06-05T23:54:40.1608851Z -- executorch: Generating source lists 2025-06-05T23:54:40.1609778Z -- executorch: Generating source file list /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/executorch_srcs.cmake 2025-06-05T23:54:40.1611135Z -- executorch: Using sources file /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/executorch_srcs.cmake 2025-06-05T23:54:40.1612483Z '/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:40.1614364Z -- Generating operator lib: 2025-06-05T23:54:40.1614805Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:54:40.1615387Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:54:40.1616150Z -- ROOT_OPS: 2025-06-05T23:54:40.1616493Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:40.1618211Z 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:40.1620029Z -- Generating kernel bindings: 2025-06-05T23:54:40.1620455Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:54:40.1621017Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:54:40.1621597Z -- CUSTOM_OPS_YAML: 2025-06-05T23:54:40.1621985Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:54:40.1624518Z 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:40.1627047Z -- Generating operator lib: 2025-06-05T23:54:40.1627459Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:54:40.1627877Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:54:40.1628311Z -- DEPS: executorch_core 2025-06-05T23:54:40.1628705Z -- Generating operator lib: 2025-06-05T23:54:40.1629103Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:54:40.1629680Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:54:40.1630258Z -- ROOT_OPS: 2025-06-05T23:54:40.1630592Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:40.1632347Z 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:40.1634157Z -- Generating kernel bindings: 2025-06-05T23:54:40.1634572Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:54:40.1635163Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:54:40.1635750Z -- CUSTOM_OPS_YAML: 2025-06-05T23:54:40.1636135Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:54:40.1638696Z 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:40.1641282Z -- Generating operator lib: 2025-06-05T23:54:40.1641708Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:54:40.1642131Z -- KERNEL_LIBS: optimized_kernels 2025-06-05T23:54:40.1642581Z -- DEPS: executorch_core 2025-06-05T23:54:40.1642973Z -- Merging kernel yaml files: 2025-06-05T23:54:40.1643632Z -- FUNCTIONS_YAML: /pytorch/executorch/configurations/../kernels/optimized/optimized.yaml 2025-06-05T23:54:40.1644589Z -- FALLBACK_YAML: /pytorch/executorch/configurations/../kernels/portable/functions.yaml 2025-06-05T23:54:40.1645565Z -- OUTPUT_DIR: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations 2025-06-05T23:54:40.1646312Z -- Generating operator lib: 2025-06-05T23:54:40.1646735Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:54:40.1647580Z -- OPS_SCHEMA_YAML: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/merged.yaml 2025-06-05T23:54:40.1648377Z -- ROOT_OPS: 2025-06-05T23:54:40.1648883Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:40.1650864Z 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:40.1653005Z -- Generating kernel bindings: 2025-06-05T23:54:40.1653453Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:54:40.1654419Z -- FUNCTIONS_YAML: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/merged.yaml 2025-06-05T23:54:40.1655260Z -- CUSTOM_OPS_YAML: 2025-06-05T23:54:40.1655632Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:54:40.1658323Z 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:40.1661018Z -- Generating operator lib: 2025-06-05T23:54:40.1661456Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:54:40.1662013Z -- KERNEL_LIBS: optimized_kernels;optimized_portable_kernels 2025-06-05T23:54:40.1662555Z -- DEPS: executorch_core 2025-06-05T23:54:40.1663208Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:54:40.1664082Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:40.1664650Z CMake. 2025-06-05T23:54:40.1664831Z 2025-06-05T23:54:40.1665142Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:40.1665886Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:40.1666556Z to work with policies introduced by or earlier. 2025-06-05T23:54:40.1666901Z 2025-06-05T23:54:40.1666911Z 2025-06-05T23:54:40.1667075Z -- Looking for C++ include unistd.h 2025-06-05T23:54:40.1667540Z -- Looking for C++ include unistd.h - found 2025-06-05T23:54:40.1667999Z -- Looking for C++ include stdint.h 2025-06-05T23:54:40.1668456Z -- Looking for C++ include stdint.h - found 2025-06-05T23:54:40.1668917Z -- Looking for C++ include inttypes.h 2025-06-05T23:54:40.1669391Z -- Looking for C++ include inttypes.h - found 2025-06-05T23:54:40.1669863Z -- Looking for C++ include sys/types.h 2025-06-05T23:54:40.1670339Z -- Looking for C++ include sys/types.h - found 2025-06-05T23:54:40.1670804Z -- Looking for C++ include sys/stat.h 2025-06-05T23:54:40.1671376Z -- Looking for C++ include sys/stat.h - found 2025-06-05T23:54:40.1671873Z -- Looking for C++ include fnmatch.h 2025-06-05T23:54:40.1672329Z -- Looking for C++ include fnmatch.h - found 2025-06-05T23:54:40.1672797Z -- Looking for C++ include stddef.h 2025-06-05T23:54:40.1673239Z -- Looking for C++ include stddef.h - found 2025-06-05T23:54:40.1673708Z -- Check size of uint32_t 2025-06-05T23:54:40.1674094Z -- Check size of uint32_t - done 2025-06-05T23:54:40.1674510Z -- Looking for strtoll 2025-06-05T23:54:40.1674882Z -- Looking for strtoll - found 2025-06-05T23:54:40.1675441Z -- The ASM compiler identification is Clang with GNU-like command-line 2025-06-05T23:54:40.1676036Z -- Found assembler: /opt/cache/bin/cc 2025-06-05T23:54:40.1676526Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-06-05T23:54:40.1677339Z -- Found Python: /opt/conda/envs/py_3.10/bin/python3.10 (found version "3.10.16") found components: Interpreter 2025-06-05T23:54:40.1678132Z -- Generating microkernels.cmake 2025-06-05T23:54:40.1679024Z No microkernel found in src/reference/binary-elementwise.cc 2025-06-05T23:54:40.1679898Z No microkernel found in src/reference/packing.cc 2025-06-05T23:54:40.1680476Z No microkernel found in src/reference/unary-elementwise.cc 2025-06-05T23:54:41.0581590Z '/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:41.0583884Z -- MKL_ARCH: None, set to ` intel64` by default 2025-06-05T23:54:41.0584711Z -- MKL_ROOT /opt/conda/envs/py_3.10 2025-06-05T23:54:41.0585444Z -- MKL_LINK: None, set to ` dynamic` by default 2025-06-05T23:54:41.0586825Z -- MKL_INTERFACE_FULL: None, set to ` intel_ilp64` by default 2025-06-05T23:54:41.0587791Z -- MKL_THREADING: None, set to ` intel_thread` by default 2025-06-05T23:54:41.0588700Z -- MKL_MPI: None, set to ` intelmpi` by default 2025-06-05T23:54:41.0590513Z 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:41.0592183Z static library kineto_LIBRARY-NOTFOUND not found. 2025-06-05T23:54:41.0593096Z Call Stack (most recent call first): 2025-06-05T23:54:41.0594721Z /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:41.0596462Z tools/cmake/Utils.cmake:267 (find_package) 2025-06-05T23:54:41.0597253Z CMakeLists.txt:610 (find_package_torch) 2025-06-05T23:54:41.0597586Z 2025-06-05T23:54:41.0597592Z 2025-06-05T23:54:41.0597995Z -- Found Torch: /opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/lib/libtorch.so 2025-06-05T23:54:41.0599403Z -- 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:41.0600518Z -- Generating operator lib: 2025-06-05T23:54:41.0600920Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:54:41.0601500Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:54:41.0602075Z -- ROOT_OPS: 2025-06-05T23:54:41.0602434Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:41.0604167Z 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:41.0606027Z -- Generating kernel bindings: 2025-06-05T23:54:41.0606442Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:54:41.0606864Z -- FUNCTIONS_YAML: 2025-06-05T23:54:41.0607385Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:54:41.0608004Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:54:41.0612861Z 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:41.0617814Z -- Generating operator lib: 2025-06-05T23:54:41.0618248Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:54:41.0618668Z -- OPS_SCHEMA_YAML: 2025-06-05T23:54:41.0622349Z -- 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:41.0625799Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:41.0630442Z 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:41.0638130Z -- Generating kernel bindings: 2025-06-05T23:54:41.0639485Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:54:41.0640337Z -- FUNCTIONS_YAML: 2025-06-05T23:54:41.0641452Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:54:41.0642525Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:54:41.0643244Z -- Generating custom ops aot lib: 2025-06-05T23:54:41.0644388Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:54:41.0645747Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/embeddingxb.cpp 2025-06-05T23:54:41.0648080Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_add.cpp 2025-06-05T23:54:41.0651420Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_choose_qparams.cpp 2025-06-05T23:54:41.0653907Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_dequantize.cpp 2025-06-05T23:54:41.0656113Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding.cpp 2025-06-05T23:54:41.0658312Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding2b.cpp 2025-06-05T23:54:41.0660728Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding4b.cpp 2025-06-05T23:54:41.0663109Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_mixed_linear.cpp 2025-06-05T23:54:41.0666657Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_mixed_mm.cpp 2025-06-05T23:54:41.0669497Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_quantize.cpp 2025-06-05T23:54:41.0671695Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/portable/cpu/util/reduce_util.cpp 2025-06-05T23:54:41.0674825Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../runtime/core/exec_aten/util/tensor_util_aten.cpp 2025-06-05T23:54:41.0676598Z -- Generating operator lib: 2025-06-05T23:54:41.0677298Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:54:41.0679085Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:54:41.0680103Z -- ROOT_OPS: 2025-06-05T23:54:41.0680657Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:41.0684647Z 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:41.0687572Z -- Generating kernel bindings: 2025-06-05T23:54:41.0688321Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:54:41.0688781Z -- FUNCTIONS_YAML: 2025-06-05T23:54:41.0689301Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:54:41.0690062Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:54:41.0690495Z -- Generating operator lib: 2025-06-05T23:54:41.0690926Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:54:41.0691399Z -- KERNEL_LIBS: quantized_pybind_kernels_lib 2025-06-05T23:54:41.0691874Z -- DEPS: portable_lib 2025-06-05T23:54:41.0692254Z -- Generating operator lib: 2025-06-05T23:54:41.0692664Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:54:41.0693079Z -- KERNEL_LIBS: quantized_kernels 2025-06-05T23:54:41.0693695Z -- DEPS: executorch_core 2025-06-05T23:54:41.0694262Z -- Configuring done (10.5s) 2025-06-05T23:54:41.0694878Z -- Generating done (0.5s) 2025-06-05T23:54:41.0696113Z -- Build files have been written to: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:54:41.0699055Z 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:41.0701706Z [ 0%] Creating directories for 'flatcc_external_project' 2025-06-05T23:54:41.0703518Z [ 0%] Creating directories for 'flatbuffers_external_project' 2025-06-05T23:54:41.0705748Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-06-05T23:54:41.0708927Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-06-05T23:54:41.0711350Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-06-05T23:54:41.0713784Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-06-05T23:54:41.0716098Z [ 0%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/single.cpp.o 2025-06-05T23:54:41.0717583Z [ 0%] No download step for 'flatcc_external_project' 2025-06-05T23:54:41.0718974Z [ 0%] No download step for 'flatbuffers_external_project' 2025-06-05T23:54:41.0719956Z [ 0%] No update step for 'flatbuffers_external_project' 2025-06-05T23:54:41.0721437Z [ 0%] No update step for 'flatcc_external_project' 2025-06-05T23:54:41.0723693Z [ 0%] No patch step for 'flatbuffers_external_project' 2025-06-05T23:54:41.0725031Z [ 0%] No patch step for 'flatcc_external_project' 2025-06-05T23:54:42.2007606Z [ 0%] Performing configure step for 'flatcc_external_project' 2025-06-05T23:54:42.2008819Z [ 1%] Performing configure step for 'flatbuffers_external_project' 2025-06-05T23:54:42.2009713Z CMake Warning: 2025-06-05T23:54:42.2010451Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:54:42.2011127Z 2025-06-05T23:54:42.2011137Z 2025-06-05T23:54:42.2011363Z CMake Warning: 2025-06-05T23:54:42.2012055Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:54:42.2012714Z 2025-06-05T23:54:42.2012723Z 2025-06-05T23:54:42.2013296Z CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:54:42.2014738Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:42.2015755Z CMake. 2025-06-05T23:54:42.2016034Z 2025-06-05T23:54:42.2016597Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:42.2018189Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:42.2019450Z to work with policies introduced by or earlier. 2025-06-05T23:54:42.2020082Z 2025-06-05T23:54:42.2020092Z 2025-06-05T23:54:42.2020425Z fatal: No names found, cannot describe anything. 2025-06-05T23:54:42.2021365Z CMake Warning at CMake/Version.cmake:32 (message): 2025-06-05T23:54:42.2022621Z git describe failed with exit code: 128 2025-06-05T23:54:42.2023125Z 2025-06-05T23:54:42.2023486Z Make sure you cloned with tags or run 'git fetch --tags'. 2025-06-05T23:54:42.2024319Z Call Stack (most recent call first): 2025-06-05T23:54:42.2025211Z CMakeLists.txt:5 (include) 2025-06-05T23:54:42.2025687Z 2025-06-05T23:54:42.2025696Z 2025-06-05T23:54:42.2025988Z -- Proceeding with version: 24.3.25.0 2025-06-05T23:54:42.2027415Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/double.cpp.o 2025-06-05T23:54:42.2029423Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-06-05T23:54:42.2031453Z [ 2%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-06-05T23:54:42.2033697Z [ 2%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o 2025-06-05T23:54:42.2035307Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:54:42.2036201Z -- Detecting C compiler ABI info 2025-06-05T23:54:42.2037325Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-06-05T23:54:42.2038994Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-06-05T23:54:42.2040293Z [ 2%] Linking C static library libpthreadpool.a 2025-06-05T23:54:42.2041147Z [ 2%] Built target pthreadpool 2025-06-05T23:54:42.2042405Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o 2025-06-05T23:54:42.2044511Z [ 2%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-06-05T23:54:42.2046067Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:54:42.2047562Z [ 2%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-06-05T23:54:42.2049032Z -- Detecting CXX compiler ABI info 2025-06-05T23:54:42.2050393Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o 2025-06-05T23:54:42.2051742Z -- Detecting C compiler ABI info - done 2025-06-05T23:54:42.2053312Z [ 2%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_single.cpp.o 2025-06-05T23:54:42.2056171Z [ 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:42.2058938Z [ 2%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-06-05T23:54:42.2060698Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:54:42.2061684Z -- Detecting C compile features 2025-06-05T23:54:42.2062439Z -- Detecting C compile features - done 2025-06-05T23:54:42.2063414Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:54:42.2064572Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:54:42.2065584Z -- Setting Clang compiler options 2025-06-05T23:54:42.2067344Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:54:42.2069108Z -- Configuring done (0.4s) 2025-06-05T23:54:42.2069805Z [ 2%] Built target indirection 2025-06-05T23:54:42.2071189Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o 2025-06-05T23:54:42.2073181Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o 2025-06-05T23:54:42.2074589Z -- Generating done (0.0s) 2025-06-05T23:54:42.2076671Z -- 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:42.2082006Z [ 2%] Performing build step for 'flatcc_external_project' 2025-06-05T23:54:42.2083732Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-06-05T23:54:42.2100444Z [ 3%] Building C object src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:54:42.2102088Z [ 6%] Building C object src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:54:42.2103745Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o 2025-06-05T23:54:42.2106340Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9x-minmax-f16c-c8.c.o 2025-06-05T23:54:42.2108998Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-06-05T23:54:42.2111246Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-06-05T23:54:42.2113370Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o 2025-06-05T23:54:42.2115048Z [ 9%] Building C object src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:54:42.2116151Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:54:42.2117529Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-06-05T23:54:42.2118997Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:54:42.2119963Z -- Detecting CXX compile features 2025-06-05T23:54:42.2120803Z -- Detecting CXX compile features - done 2025-06-05T23:54:42.2121879Z [ 12%] Building C object src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:54:42.2122978Z -- Looking for strtof_l 2025-06-05T23:54:42.2124305Z [ 3%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_double.cpp.o 2025-06-05T23:54:42.2125862Z [ 15%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:54:42.2127230Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o 2025-06-05T23:54:42.2129479Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-fma3-acc2.c.o 2025-06-05T23:54:42.2131710Z [ 18%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:54:42.2132824Z [ 3%] Built target logging 2025-06-05T23:54:42.2134199Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o 2025-06-05T23:54:42.2136441Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-06-05T23:54:42.2138660Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-06-05T23:54:42.2140482Z [ 21%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:54:42.2142301Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:54:42.2143786Z [ 21%] Built target flatccrt 2025-06-05T23:54:42.2144454Z [ 3%] Built target normalization 2025-06-05T23:54:42.2145592Z [ 24%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/str_set.c.o 2025-06-05T23:54:42.2147409Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:54:42.2148865Z [ 3%] Built target microparams-init 2025-06-05T23:54:42.2150658Z [ 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:42.2153617Z [ 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:42.2155800Z -- Looking for strtof_l - found 2025-06-05T23:54:42.2156476Z -- Looking for strtoull_l 2025-06-05T23:54:42.2157809Z [ 3%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-06-05T23:54:42.2159987Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o 2025-06-05T23:54:42.2161820Z [ 3%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/xerbla.cpp.o 2025-06-05T23:54:42.2163358Z [ 27%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/ptr_set.c.o 2025-06-05T23:54:42.2165109Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:54:42.2166365Z [ 4%] Built target packing 2025-06-05T23:54:42.2167708Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-06-05T23:54:42.2169721Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-06-05T23:54:42.2170903Z [ 30%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/symbol_table.c.o 2025-06-05T23:54:42.2172737Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-fma3.c.o 2025-06-05T23:54:42.2174256Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotm.c.o 2025-06-05T23:54:42.2175364Z [ 33%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/scope_table.c.o 2025-06-05T23:54:42.2176373Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-06-05T23:54:43.3097112Z -- Looking for strtoull_l - found 2025-06-05T23:54:43.3097961Z -- Looking for realpath 2025-06-05T23:54:43.3099213Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-06-05T23:54:43.3100961Z [ 36%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/name_table.c.o 2025-06-05T23:54:43.3102866Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotmg.c.o 2025-06-05T23:54:43.3104958Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-06-05T23:54:43.3106808Z [ 39%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/schema_table.c.o 2025-06-05T23:54:43.3108558Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotm.c.o 2025-06-05T23:54:43.3110021Z [ 4%] Built target allocator 2025-06-05T23:54:43.3111151Z [ 42%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/value_set.c.o 2025-06-05T23:54:43.3113539Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-u16.c.o 2025-06-05T23:54:43.3116120Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-06-05T23:54:43.3117532Z [ 4%] Linking C static library libcpuinfo.a 2025-06-05T23:54:43.3118542Z [ 45%] Building C object src/compiler/CMakeFiles/flatcc.dir/fileio.c.o 2025-06-05T23:54:43.3119530Z [ 4%] Built target cpuinfo 2025-06-05T23:54:43.3120942Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotmg.c.o 2025-06-05T23:54:43.3123072Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-06-05T23:54:43.3124501Z [ 4%] Built target cache 2025-06-05T23:54:43.3125846Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/lsame.c.o 2025-06-05T23:54:43.3128359Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx512skx-u16.c.o 2025-06-05T23:54:43.3130862Z [ 48%] Building C object src/compiler/CMakeFiles/flatcc.dir/parser.c.o 2025-06-05T23:54:43.3133065Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-f16c-u16.c.o 2025-06-05T23:54:43.3135673Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-06-05T23:54:43.3137089Z [ 4%] Built target datatype 2025-06-05T23:54:43.3138890Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u1.c.o 2025-06-05T23:54:43.3141464Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dspmv.c.o 2025-06-05T23:54:43.3142974Z -- Looking for realpath - found 2025-06-05T23:54:43.3143854Z -- CMAKE_CXX_FLAGS: "-DFLATBUFFERS_MAX_ALIGNMENT=1024" 2025-06-05T23:54:43.3145080Z [ 51%] Building C object src/compiler/CMakeFiles/flatcc.dir/semantics.c.o 2025-06-05T23:54:43.3146190Z -- Configuring done (1.4s) 2025-06-05T23:54:43.3146832Z -- Generating done (0.0s) 2025-06-05T23:54:43.3148886Z -- 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:43.3151479Z [ 4%] Performing build step for 'flatbuffers_external_project' 2025-06-05T23:54:43.3152411Z [ 4%] Built target memory 2025-06-05T23:54:43.3153288Z [ 54%] Building C object src/compiler/CMakeFiles/flatcc.dir/coerce.c.o 2025-06-05T23:54:43.3155429Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u4.c.o 2025-06-05T23:54:43.3157622Z [ 2%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o 2025-06-05T23:54:43.3159307Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ssbmv.c.o 2025-06-05T23:54:43.3161320Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chbmv.c.o 2025-06-05T23:54:43.3163677Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-06-05T23:54:43.3165666Z [ 57%] Building C object src/compiler/CMakeFiles/flatcc.dir/flatcc.c.o 2025-06-05T23:54:43.3167396Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/sspmv.c.o 2025-06-05T23:54:43.3169987Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-u32.c.o 2025-06-05T23:54:43.3172269Z [ 60%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c.c.o 2025-06-05T23:54:43.3174506Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-u16.c.o 2025-06-05T23:54:43.3176375Z [ 6%] Built target microkernel-utils 2025-06-05T23:54:43.3177468Z [ 63%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_reader.c.o 2025-06-05T23:54:43.3179360Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-06-05T23:54:43.3181236Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhbmv.c.o 2025-06-05T23:54:43.3183199Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chpmv.c.o 2025-06-05T23:54:43.3185129Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dsbmv.c.o 2025-06-05T23:54:43.3187841Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-gemm/gen/f16-f32acc-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:54:43.3190174Z [ 66%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sort.c.o 2025-06-05T23:54:43.3193200Z [ 69%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_builder.c.o 2025-06-05T23:54:43.3194335Z [ 7%] Built target mutex 2025-06-05T23:54:43.3195809Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhpmv.c.o 2025-06-05T23:54:43.3197993Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dtbmv.c.o 2025-06-05T23:54:43.3200432Z [ 7%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-06-05T23:54:43.3202348Z [ 5%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o 2025-06-05T23:54:43.3203568Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o 2025-06-05T23:54:43.3205102Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/stbmv.c.o 2025-06-05T23:54:43.3206804Z [ 72%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_verifier.c.o 2025-06-05T23:54:43.3208249Z [ 75%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sorter.c.o 2025-06-05T23:54:43.3210077Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-gemm/gen/f16-f32acc-gemm-4x16-minmax-avx2-broadcast.c.o 2025-06-05T23:54:43.3213331Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-igemm/gen/f16-f32acc-igemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:54:43.3216636Z [ 7%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-06-05T23:54:43.3219007Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ctbmv.c.o 2025-06-05T23:54:43.3220734Z [ 78%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_parser.c.o 2025-06-05T23:54:43.3222459Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ztbmv.c.o 2025-06-05T23:54:43.3223970Z [ 10%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o 2025-06-05T23:54:43.3225111Z [ 13%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_binary.cpp.o 2025-06-05T23:54:43.3226495Z [ 81%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_printer.c.o 2025-06-05T23:54:43.3228343Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/complexdots.c.o 2025-06-05T23:54:43.3230737Z [ 84%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/builder.c.o 2025-06-05T23:54:43.3231950Z [ 7%] Built target reference-ukernels 2025-06-05T23:54:43.3233147Z [ 87%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/emitter.c.o 2025-06-05T23:54:43.3234592Z [ 90%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/refmap.c.o 2025-06-05T23:54:43.3237152Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-igemm/gen/f16-f32acc-igemm-4x16-minmax-avx2-broadcast.c.o 2025-06-05T23:54:43.3239287Z [ 7%] Linking CXX static library libeigen_blas.a 2025-06-05T23:54:43.3241338Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-avx512skx-c64.c.o 2025-06-05T23:54:43.3244491Z [ 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:43.3247625Z [ 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:43.3249600Z [ 7%] Built target eigen_blas 2025-06-05T23:54:43.3251451Z [ 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:43.3254110Z [ 93%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatcc.a 2025-06-05T23:54:43.3255455Z [ 15%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o 2025-06-05T23:54:43.6736084Z [ 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:43.6738042Z [ 93%] Built target flatcc 2025-06-05T23:54:43.6739058Z [ 96%] Building C object src/cli/CMakeFiles/flatcc_cli.dir/flatcc_cli.c.o 2025-06-05T23:54:43.6741348Z [ 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:43.6744569Z [ 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:43.6747520Z [ 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:43.6749978Z [100%] Linking C executable /pytorch/executorch/third-party/flatcc/bin/flatcc 2025-06-05T23:54:43.6752317Z [ 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:43.6756357Z [ 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:43.6759061Z [ 18%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_csharp.cpp.o 2025-06-05T23:54:43.6760411Z [ 21%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o 2025-06-05T23:54:43.6761478Z [100%] Built target flatcc_cli 2025-06-05T23:54:43.6762477Z [ 23%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin.cpp.o 2025-06-05T23:54:43.6763909Z [ 26%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin_kmp.cpp.o 2025-06-05T23:54:43.6765221Z [ 8%] Performing install step for 'flatcc_external_project' 2025-06-05T23:54:43.6767176Z [ 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:43.6768822Z [ 21%] Built target flatccrt 2025-06-05T23:54:43.6770599Z [ 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:43.6772495Z [ 93%] Built target flatcc 2025-06-05T23:54:43.6773208Z [100%] Built target flatcc_cli 2025-06-05T23:54:43.6774038Z Install the project... 2025-06-05T23:54:43.6774734Z -- Install configuration: "" 2025-06-05T23:54:43.6776434Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc 2025-06-05T23:54:43.6779530Z -- 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:43.6783213Z -- 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:43.6786616Z -- 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:43.6789758Z -- 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:43.6792785Z -- 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:43.6795959Z -- 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:43.6799529Z -- 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:43.6802785Z -- 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:43.6806250Z -- 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:43.6809554Z -- 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:43.6812754Z -- 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:43.6816475Z -- 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:43.6819780Z -- 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:43.6823072Z -- 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:43.6826321Z -- 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:43.6829410Z -- 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:43.6832625Z -- 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:43.6835762Z -- 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:43.6838967Z -- 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:43.6842678Z -- 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:43.6846082Z -- 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:43.6849241Z -- 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:43.6852358Z -- 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:43.6855657Z -- 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:43.6858965Z -- 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:43.6862322Z -- 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:43.6865684Z -- 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:43.6869009Z -- 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:43.6872294Z -- 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:43.6876232Z -- 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:43.6880040Z -- 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:43.6883467Z -- 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:43.6886948Z -- 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:43.6890484Z -- 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:43.6894105Z -- 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:43.6897625Z -- 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:43.6901416Z -- 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:43.6913150Z -- 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:43.6916508Z -- 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:44.0767299Z -- 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:44.0770316Z -- 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:44.0773662Z -- 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:44.0776887Z -- 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:44.0780306Z -- 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:44.0783587Z -- 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:44.0786399Z -- 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:44.0788690Z -- 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:44.0791005Z -- 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:44.0793311Z -- 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:44.0796105Z -- 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:44.0799315Z -- 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:44.0802119Z -- 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:44.0804985Z -- 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:44.0807647Z -- 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:44.0810266Z -- 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:44.0812941Z -- 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:44.0815902Z -- 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:44.0818678Z -- 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:44.0821348Z -- 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:44.0824045Z -- 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:44.0827251Z -- 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:44.0830516Z -- 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:44.0833635Z -- 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:44.0836819Z -- 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:44.0839985Z -- 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:44.0843367Z -- 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:44.0847026Z -- 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:44.0850716Z -- 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:44.0854458Z -- 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:44.0857970Z -- 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:44.0861296Z -- 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:44.0864126Z -- 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:44.0867396Z -- 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:44.0872694Z -- 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:44.0876112Z -- 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:44.0879518Z -- 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:44.0882584Z -- 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:44.0885191Z -- 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:44.0887984Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/bin/flatcc 2025-06-05T23:54:44.0890800Z [ 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:44.0892847Z [ 8%] Completed 'flatcc_external_project' 2025-06-05T23:54:44.0893810Z [ 8%] Built target flatcc_external_project 2025-06-05T23:54:44.0895877Z [ 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:44.0898920Z [ 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:44.0901893Z [ 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:44.0904836Z [ 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:44.0907713Z [ 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:44.0909819Z [ 28%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o 2025-06-05T23:54:44.0911057Z [ 31%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_java.cpp.o 2025-06-05T23:54:44.0914088Z [ 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:44.0916629Z [ 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:44.0919531Z [ 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:44.0921561Z [ 34%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_ts.cpp.o 2025-06-05T23:54:44.0923231Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-06-05T23:54:44.0925106Z [ 36%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o 2025-06-05T23:54:44.0927182Z [ 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:45.6884660Z [ 8%] Built target operator-utils 2025-06-05T23:54:45.6885829Z [ 39%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o 2025-06-05T23:54:45.6887952Z [ 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:45.6890560Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-06-05T23:54:45.6893635Z [ 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:45.6895536Z [ 8%] Built target operator-run 2025-06-05T23:54:45.6896760Z [ 42%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o 2025-06-05T23:54:45.6898117Z [ 44%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o 2025-06-05T23:54:45.6899397Z [ 47%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o 2025-06-05T23:54:45.6900708Z [ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o 2025-06-05T23:54:45.6902078Z [ 52%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o 2025-06-05T23:54:45.6904316Z [ 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:45.6906458Z [ 55%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_swift.cpp.o 2025-06-05T23:54:45.6908649Z [ 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:45.6911652Z [ 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:45.6914038Z [ 57%] Building CXX object CMakeFiles/flatc.dir/src/file_name_saving_file_manager.cpp.o 2025-06-05T23:54:45.6915450Z [ 60%] Building CXX object CMakeFiles/flatc.dir/src/file_binary_writer.cpp.o 2025-06-05T23:54:45.6916718Z [ 63%] Building CXX object CMakeFiles/flatc.dir/src/file_writer.cpp.o 2025-06-05T23:54:45.6918201Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:54:45.6920430Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-06-05T23:54:45.6922917Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-06-05T23:54:45.6925469Z [ 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:45.6927919Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:54:45.6929267Z [ 9%] Built target hardware-config 2025-06-05T23:54:45.6931194Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-f16c-u16.c.o 2025-06-05T23:54:45.6933180Z [ 65%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o 2025-06-05T23:54:45.6934496Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:54:45.6936234Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:54:45.6938037Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:54:45.6940335Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-06-05T23:54:45.6943147Z [ 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:45.6945929Z [ 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:45.6948757Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-06-05T23:54:45.6951486Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-06-05T23:54:45.6953679Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:54:45.6956241Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-06-05T23:54:45.6958828Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-06-05T23:54:45.6960967Z [ 68%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o 2025-06-05T23:54:45.6962324Z [ 71%] Building CXX object CMakeFiles/flatc.dir/src/binary_annotator.cpp.o 2025-06-05T23:54:45.6963820Z [ 73%] Building CXX object CMakeFiles/flatc.dir/src/annotated_binary_text_gen.cpp.o 2025-06-05T23:54:45.6966145Z [ 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:45.6968328Z [ 76%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_lua.cpp.o 2025-06-05T23:54:45.6969692Z [ 11%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:54:45.6971795Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-06-05T23:54:45.6973476Z [ 12%] Built target flatccrt 2025-06-05T23:54:45.6975208Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-06-05T23:54:45.6977174Z [ 78%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_nim.cpp.o 2025-06-05T23:54:45.6979563Z [ 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:45.6982523Z [ 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:45.6985282Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-06-05T23:54:45.6987657Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-06-05T23:54:45.6989609Z [ 81%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o 2025-06-05T23:54:45.6991128Z [ 84%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o 2025-06-05T23:54:45.6993356Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-06-05T23:54:45.6996298Z [ 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:45.6999194Z [ 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:45.7002044Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-06-05T23:54:45.7004655Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-06-05T23:54:45.7007100Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-06-05T23:54:45.7008975Z [ 86%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o 2025-06-05T23:54:45.7011267Z [ 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:45.7013668Z [ 89%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o 2025-06-05T23:54:45.7015344Z [ 92%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/python_generator.cc.o 2025-06-05T23:54:45.7016930Z [ 94%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/swift_generator.cc.o 2025-06-05T23:54:45.7018958Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-06-05T23:54:45.7021952Z [ 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:45.7024960Z [ 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:45.7028074Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-06-05T23:54:45.7030661Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-06-05T23:54:45.7033220Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-06-05T23:54:45.7035830Z [ 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:45.7037986Z [ 97%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/ts_generator.cc.o 2025-06-05T23:54:45.7040267Z [ 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:45.7042902Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-06-05T23:54:45.7045235Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-06-05T23:54:45.7047580Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-06-05T23:54:46.8623946Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-06-05T23:54:46.8625617Z [ 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:46.8627154Z [ 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:46.8628616Z [ 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:46.8630021Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-06-05T23:54:46.8631465Z [ 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:46.8633128Z [ 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:46.8634211Z [100%] Linking CXX executable flatc 2025-06-05T23:54:46.8634650Z [ 14%] Built target operators 2025-06-05T23:54:46.8636237Z [ 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:46.8638634Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-06-05T23:54:46.8641382Z [ 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:46.8644695Z [ 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:46.8647666Z [ 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:46.8650427Z [ 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:46.8652642Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-06-05T23:54:46.8655293Z [ 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:46.8658179Z [ 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:46.8661330Z [ 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:46.8663768Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-06-05T23:54:46.8665835Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-06-05T23:54:46.8668539Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-06-05T23:54:46.8671674Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-sse2-c4.c.o 2025-06-05T23:54:46.8674571Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-06-05T23:54:46.8677157Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-06-05T23:54:46.8679861Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-06-05T23:54:46.8682151Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-06-05T23:54:46.8684764Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-06-05T23:54:46.8687648Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-sse2-c4.c.o 2025-06-05T23:54:46.8690248Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-06-05T23:54:46.8692923Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:54:46.8695672Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-06-05T23:54:46.8697915Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-06-05T23:54:46.8700159Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-06-05T23:54:46.8702794Z [ 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:46.8705795Z [ 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:46.8708406Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-06-05T23:54:46.8710979Z [ 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:46.8713683Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-06-05T23:54:46.8715972Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-06-05T23:54:46.8718147Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-06-05T23:54:46.8721203Z [ 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:46.8723728Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-06-05T23:54:46.8726360Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.o 2025-06-05T23:54:46.8728811Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx512f.c.o 2025-06-05T23:54:46.8730892Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-06-05T23:54:46.8733017Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o 2025-06-05T23:54:46.8735442Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-06-05T23:54:46.8737665Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o 2025-06-05T23:54:46.8740117Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-06-05T23:54:46.8742451Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-06-05T23:54:46.8744650Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-06-05T23:54:46.8747015Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-avx.c.o 2025-06-05T23:54:46.8749577Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-fma3.c.o 2025-06-05T23:54:46.8751732Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-06-05T23:54:46.8753602Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-06-05T23:54:46.8755678Z [ 17%] 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:46.8758201Z [ 17%] 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:46.8760571Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-06-05T23:54:46.8762762Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-06-05T23:54:46.8765293Z [ 17%] 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:46.8767938Z [ 17%] 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:47.3471523Z [ 18%] 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:47.3474788Z [ 18%] 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:47.3477743Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-06-05T23:54:47.3480174Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-06-05T23:54:47.3483438Z [ 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:47.3486300Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-06-05T23:54:47.3489046Z [ 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:47.3492124Z [ 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:47.3495412Z [ 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:47.3498662Z [ 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:47.3501933Z [ 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:47.3504720Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-06-05T23:54:47.3507063Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-06-05T23:54:47.3509891Z [ 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:47.3513105Z [ 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:47.3515720Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-06-05T23:54:47.3517144Z [100%] Built target flatc 2025-06-05T23:54:47.3519267Z [ 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:47.3521673Z [ 19%] Performing install step for 'flatbuffers_external_project' 2025-06-05T23:54:47.3523847Z [ 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:47.3526975Z [ 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:47.3530349Z [ 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:47.3533817Z [ 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:47.3535831Z [100%] Built target flatc 2025-06-05T23:54:47.3536546Z [ 19%] Built target subgraph 2025-06-05T23:54:47.3538504Z [ 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:47.3540622Z Install the project... 2025-06-05T23:54:47.3541328Z -- Install configuration: "" 2025-06-05T23:54:47.3543219Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers 2025-06-05T23:54:47.3546419Z -- 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:47.3549322Z -- 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:47.3552809Z -- 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:47.3556029Z -- 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:47.3559535Z -- 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:47.3562945Z -- 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:47.3566387Z -- 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:47.3569871Z -- 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:47.3573322Z -- 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:47.3577125Z -- 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:47.3580870Z -- 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:47.3584421Z -- 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:47.3587807Z -- 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:47.3591165Z -- 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:47.3594588Z -- 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:47.3597856Z -- 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:47.3601086Z -- 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:47.3604387Z -- 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:47.3607802Z -- 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:47.3611156Z -- 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:47.3614549Z -- 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:47.3617926Z -- 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:47.3621344Z -- 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:47.3624863Z -- 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:47.3628426Z -- 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:47.3631850Z -- 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:47.3635377Z -- 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:47.3638584Z -- 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:47.3641657Z -- 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:48.3476225Z -- 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:48.3480137Z -- 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:48.3482987Z -- 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:48.3485935Z -- 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:48.3488876Z -- 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:48.3492199Z -- 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:48.3495802Z -- 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:48.3498807Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/bin/flatc 2025-06-05T23:54:48.3501675Z -- 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:48.3505015Z -- 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:48.3508476Z [ 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:48.3510541Z [ 20%] Completed 'flatbuffers_external_project' 2025-06-05T23:54:48.3511483Z [ 20%] Built target flatbuffers_external_project 2025-06-05T23:54:48.3513528Z [ 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:48.3516641Z [ 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:48.3518606Z [ 20%] Generating common_schema headers 2025-06-05T23:54:48.3520505Z [ 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:48.3522431Z [ 20%] Built target common_schema 2025-06-05T23:54:48.3523206Z [ 22%] Generating xnnpack_schema headers 2025-06-05T23:54:48.3524012Z [ 22%] Built target xnnpack_schema 2025-06-05T23:54:48.3526547Z [ 22%] 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:48.3528899Z [ 22%] Generating program_schema headers 2025-06-05T23:54:48.3529674Z [ 22%] Built target program_schema 2025-06-05T23:54:48.3531944Z [ 22%] 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:48.3535423Z [ 22%] 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:48.3537942Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-06-05T23:54:48.3540472Z [ 22%] 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:48.3542934Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-06-05T23:54:48.3545426Z [ 22%] 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:48.3548277Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-06-05T23:54:48.3551060Z [ 22%] 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:48.3553712Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-06-05T23:54:48.3556451Z [ 22%] 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:48.3559994Z [ 22%] 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:48.3562765Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-06-05T23:54:48.3565458Z [ 22%] 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:48.3568009Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-06-05T23:54:48.3570420Z [ 22%] 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:48.3572949Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-06-05T23:54:48.3574654Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-06-05T23:54:48.3576268Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-06-05T23:54:48.3577861Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-06-05T23:54:48.3580843Z [ 22%] 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:48.3583593Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-06-05T23:54:48.3585407Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-06-05T23:54:48.3588217Z [ 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:48.3590844Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-06-05T23:54:48.3592948Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-06-05T23:54:48.3595508Z [ 24%] 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:48.3598271Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-06-05T23:54:48.3600545Z [ 24%] 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:48.3603707Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx512skx-u16.c.o 2025-06-05T23:54:48.3606148Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-06-05T23:54:48.3608494Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-f16c-u16.c.o 2025-06-05T23:54:48.3610669Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-06-05T23:54:48.3612185Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-06-05T23:54:48.3613794Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-06-05T23:54:48.3615184Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-06-05T23:54:48.3616722Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.o 2025-06-05T23:54:48.3619076Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u4.c.o 2025-06-05T23:54:48.3622031Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u2.c.o 2025-06-05T23:54:48.3624971Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-u16.c.o 2025-06-05T23:54:48.3627676Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-u8.c.o 2025-06-05T23:54:48.3630440Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:54:48.3633461Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:54:50.2542678Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:54:50.2545005Z [ 24%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:54:50.2547296Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:54:50.2549445Z [ 24%] Built target executorch_core 2025-06-05T23:54:50.2551420Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:54:50.2553855Z [ 24%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-06-05T23:54:50.2556109Z [ 24%] 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:50.2558370Z [ 25%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-06-05T23:54:50.2560644Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o 2025-06-05T23:54:50.2563316Z [ 25%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-06-05T23:54:50.2565194Z [ 25%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr.cpp.o 2025-06-05T23:54:50.2567704Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-sse-load1.c.o 2025-06-05T23:54:50.2570681Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-06-05T23:54:50.2572911Z [ 25%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-06-05T23:54:50.2575140Z [ 25%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-06-05T23:54:50.2577334Z [ 25%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/file_data_loader.cpp.o 2025-06-05T23:54:50.2579678Z [ 25%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-06-05T23:54:50.2582326Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-06-05T23:54:50.2585138Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o 2025-06-05T23:54:50.2587174Z [ 27%] Linking CXX static library libexecutorch.a 2025-06-05T23:54:50.2588631Z [ 27%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr_maker.cpp.o 2025-06-05T23:54:50.2590701Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-06-05T23:54:50.2592225Z [ 27%] Built target executorch 2025-06-05T23:54:50.2593748Z [ 27%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-06-05T23:54:50.2595874Z [ 27%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/mmap_data_loader.cpp.o 2025-06-05T23:54:50.2598496Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o 2025-06-05T23:54:50.2601192Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o 2025-06-05T23:54:50.2603168Z [ 27%] Linking CXX static library libextension_threadpool.a 2025-06-05T23:54:50.2604836Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-06-05T23:54:50.2606346Z [ 27%] Built target extension_threadpool 2025-06-05T23:54:50.2607823Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-06-05T23:54:50.2609572Z [ 28%] Linking CXX static library libextension_data_loader.a 2025-06-05T23:54:50.2611278Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-06-05T23:54:50.2614271Z [ 28%] 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:50.2616821Z [ 28%] Built target extension_data_loader 2025-06-05T23:54:50.2618092Z [ 28%] Generating bundled_program headers 2025-06-05T23:54:50.2619225Z [ 28%] Linking CXX static library libextension_tensor.a 2025-06-05T23:54:50.2621299Z [ 28%] Building CXX object devtools/bundled_program/CMakeFiles/bundled_program.dir/bundled_program.cpp.o 2025-06-05T23:54:50.2624045Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:54:50.2626127Z [ 28%] Built target extension_tensor 2025-06-05T23:54:50.2628224Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:54:50.2630951Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-06-05T23:54:50.2634072Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-06-05T23:54:50.2637305Z [ 29%] 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:50.2641112Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-06-05T23:54:50.2644067Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-06-05T23:54:50.2646091Z [ 29%] Linking CXX static library libbundled_program.a 2025-06-05T23:54:50.2647338Z [ 29%] Built target bundled_program 2025-06-05T23:54:50.2649418Z [ 29%] 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:50.2651706Z [ 29%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/BlasKernel.cpp.o 2025-06-05T23:54:50.2653707Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:54:50.2655606Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:54:50.2658203Z [ 29%] 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:50.2660921Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-06-05T23:54:50.2663269Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-06-05T23:54:50.2665950Z [ 29%] 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:50.2668932Z [ 29%] 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:50.2671819Z [ 29%] 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:50.2674296Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:54:50.2676217Z [ 29%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/CPUBlas.cpp.o 2025-06-05T23:54:50.2677479Z [ 29%] Generating etdump headers 2025-06-05T23:54:50.2681021Z [ 29%] 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:50.2683425Z [ 29%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/etdump_flatcc.cpp.o 2025-06-05T23:54:50.2685223Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:54:50.2687903Z [ 29%] 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:50.2690561Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-06-05T23:54:50.2692681Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:54:50.2694953Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:54:50.2697681Z [ 29%] 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:50.2699778Z [ 30%] Linking CXX static library libcpublas.a 2025-06-05T23:54:50.2700938Z [ 30%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/emitter.cpp.o 2025-06-05T23:54:50.2702032Z [ 30%] Built target cpublas 2025-06-05T23:54:50.2703724Z [ 30%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/buffer_data_sink.cpp.o 2025-06-05T23:54:50.2705774Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-06-05T23:54:50.2708129Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:54:50.2710305Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-06-05T23:54:50.2713122Z [ 30%] 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:50.2715763Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:54:52.6259891Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-06-05T23:54:52.6262291Z [ 30%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/file_data_sink.cpp.o 2025-06-05T23:54:52.6264613Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-06-05T23:54:52.6267049Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:54:52.6270003Z [ 30%] 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:52.6273061Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:54:52.6276471Z [ 30%] 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:52.6279738Z [ 32%] 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:52.6282152Z [ 32%] Building CXX object CMakeFiles/util.dir/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:54:52.6283489Z [ 32%] Linking CXX static library libetdump.a 2025-06-05T23:54:52.6284525Z [ 32%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:54:52.6285464Z [ 32%] Built target etdump 2025-06-05T23:54:52.6286888Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:54:52.6288453Z [ 32%] Built target kernels_util_all_deps 2025-06-05T23:54:52.6289725Z [ 32%] Building CXX object CMakeFiles/util.dir/extension/aten_util/aten_bridge.cpp.o 2025-06-05T23:54:52.6292173Z [ 32%] 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:52.6294859Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/binary_ops.cpp.o 2025-06-05T23:54:52.6296976Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:54:52.6311414Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:54:52.6313818Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:54:52.6316688Z [ 32%] 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:52.6320081Z [ 32%] 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:52.6322703Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:54:52.6325792Z [ 32%] 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:52.6328521Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:54:52.6331470Z [ 32%] 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:52.6334447Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:54:52.6337123Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o 2025-06-05T23:54:52.6339796Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:54:52.6341964Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:54:52.6344617Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o 2025-06-05T23:54:52.6347673Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o 2025-06-05T23:54:52.6350785Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-sse-load1.c.o 2025-06-05T23:54:52.6353995Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o 2025-06-05T23:54:52.6357123Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2025-06-05T23:54:52.6359750Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:54:52.6362307Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o 2025-06-05T23:54:52.6365542Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:54:52.6367755Z [ 33%] Linking CXX static library libutil.a 2025-06-05T23:54:52.6368587Z [ 33%] Built target util 2025-06-05T23:54:52.6370453Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2025-06-05T23:54:52.6373177Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:54:52.6375874Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-06-05T23:54:52.6379154Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2c4-minmax-sse.c.o 2025-06-05T23:54:52.6381887Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:54:52.6383971Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:54:52.6385856Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:54:52.6387628Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:54:52.6389765Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2025-06-05T23:54:52.6392766Z [ 34%] 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:52.6394247Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:54:52.6395636Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:54:52.6396893Z [ 34%] 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:52.6398336Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:54:52.6399735Z [ 34%] 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:52.6401139Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:54:52.6402561Z [ 34%] 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:52.6403928Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_c2r.cpp.o 2025-06-05T23:54:52.6405105Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_r2c.cpp.o 2025-06-05T23:54:52.6407524Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-fma3-broadcast-prfm.c.o 2025-06-05T23:54:52.6409803Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:54:52.6411969Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-7x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:54:52.6414179Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:54:52.6415676Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:54:52.6417151Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_linear.cpp.o 2025-06-05T23:54:52.6418861Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:54:52.6421180Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:54:52.6423757Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-sse-c4.c.o 2025-06-05T23:54:52.6426496Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:54:57.5401952Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:54:57.5404234Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:54:57.5406485Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:54:57.5409187Z [ 34%] 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:57.5412467Z [ 34%] 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:57.5415809Z [ 34%] 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:57.5418317Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:54:57.5420319Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:54:57.5423498Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:54:57.5427100Z [ 35%] 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:57.5429978Z [ 35%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:54:57.5432037Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:54:57.5434928Z [ 37%] 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:57.5437798Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:54:57.5440577Z [ 37%] 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:57.5443952Z [ 37%] 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:57.5446592Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:54:57.5448715Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:54:57.5451682Z [ 37%] 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:57.5454676Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:54:57.5457623Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-avx2-broadcast.c.o 2025-06-05T23:54:57.5461214Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-fma3-broadcast.c.o 2025-06-05T23:54:57.5464263Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:54:57.5466564Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:54:57.5469308Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:54:57.5472688Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-sse41-dup.c.o 2025-06-05T23:54:57.5475445Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:54:57.5477580Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:54:57.5485324Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:54:57.5489082Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-7x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:54:57.5492010Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:54:57.5494283Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:54:57.5497192Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:54:57.5500253Z [ 38%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:54:57.5502391Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:54:57.5506108Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:54:57.5509661Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:54:57.5512354Z [ 38%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:54:57.5514357Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:54:57.5517266Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:54:57.5520748Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:54:57.5523374Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:54:57.5526063Z [ 39%] 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:57.5529398Z [ 39%] 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:57.5532661Z [ 39%] 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:57.5535546Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:54:57.5538430Z [ 39%] 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:57.5541265Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:54:57.5544013Z [ 39%] 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:57.5546815Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:54:57.5549605Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-fma3-broadcast.c.o 2025-06-05T23:54:57.5552422Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:54:57.5555309Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-7x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:54:57.5557909Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:54:57.5560453Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-u32.c.o 2025-06-05T23:54:57.5562838Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:54:57.5565174Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-u64.c.o 2025-06-05T23:54:57.5567382Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:54:57.5569517Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-u128.c.o 2025-06-05T23:54:57.5571415Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:54:57.5573500Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u1.c.o 2025-06-05T23:55:01.1942549Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:55:01.1945715Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:55:01.1948582Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:55:01.1951875Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-u32.c.o 2025-06-05T23:55:01.1954644Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:55:01.1957347Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-u32.c.o 2025-06-05T23:55:01.1960625Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-u32.c.o 2025-06-05T23:55:01.1963656Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-u64.c.o 2025-06-05T23:55:01.1966502Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:55:01.1969470Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-u128.c.o 2025-06-05T23:55:01.1972248Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:55:01.1975119Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u1.c.o 2025-06-05T23:55:01.1978624Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:55:01.1981872Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:55:01.1985255Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:55:01.1989285Z [ 41%] 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:55:01.1991809Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:55:01.1995017Z [ 41%] 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:55:01.1998105Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:55:01.2001247Z [ 41%] 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:55:01.2005204Z [ 41%] 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:55:01.2008525Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:55:01.2012164Z [ 41%] 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:55:01.2015917Z [ 41%] 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:55:01.2018630Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:55:01.2021271Z [ 41%] 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:55:01.2024458Z [ 41%] 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:55:01.2026926Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:55:01.2029504Z [ 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:55:01.2032460Z [ 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:55:01.2034893Z [ 41%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:55:01.2036759Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:55:01.2039356Z [ 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:55:01.2042087Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:55:01.2044597Z [ 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:55:01.2047519Z [ 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:55:01.2050474Z [ 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:55:01.2053654Z [ 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:55:01.2056151Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:55:01.2058251Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:55:01.2060863Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc4.c.o 2025-06-05T23:55:01.2063931Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-sse-u16-acc4.c.o 2025-06-05T23:55:01.2066529Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:55:01.2069010Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-avx-u32-acc4.c.o 2025-06-05T23:55:01.2071484Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:55:01.2073550Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:55:01.2076009Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-avx512f-u64-acc4.c.o 2025-06-05T23:55:01.2079467Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2025-06-05T23:55:01.2081976Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:55:01.2084551Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-sse-u16-acc4.c.o 2025-06-05T23:55:01.2087039Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:55:01.2089227Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:55:01.2091833Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-sse.c.o 2025-06-05T23:55:01.2094852Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o 2025-06-05T23:55:01.2097824Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o 2025-06-05T23:55:01.2100627Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:55:01.2102952Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:55:01.2105510Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o 2025-06-05T23:55:01.2108091Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:55:01.2111112Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:55:01.2113803Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-avx-u16.c.o 2025-06-05T23:55:03.4941239Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:55:03.4942656Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-avx512f-u32.c.o 2025-06-05T23:55:03.4944191Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-scalar-u8.c.o 2025-06-05T23:55:03.4945669Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-sse-u8.c.o 2025-06-05T23:55:03.4946992Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:55:03.4948315Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-avx-u16.c.o 2025-06-05T23:55:03.4950418Z [ 45%] 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:55:03.4952914Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:55:03.4955120Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:55:03.4957110Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:55:03.4958478Z [ 45%] 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:55:03.4959988Z [ 45%] 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:55:03.4961907Z [ 45%] 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:55:03.4963242Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:55:03.4964688Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-avx512f-u32.c.o 2025-06-05T23:55:03.4966444Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:55:03.4967523Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:55:03.4968828Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u2.c.o 2025-06-05T23:55:03.4970317Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-sse-u8.c.o 2025-06-05T23:55:03.4971814Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-avx-u16.c.o 2025-06-05T23:55:03.4973131Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:55:03.4974578Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-avx512f-u32.c.o 2025-06-05T23:55:03.4975947Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:55:03.4977314Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:55:03.4980538Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u2.c.o 2025-06-05T23:55:03.4981874Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:55:03.4983189Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-sse-u8.c.o 2025-06-05T23:55:03.4984588Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:55:03.4985948Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:55:03.4987385Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-avx-u16.c.o 2025-06-05T23:55:03.4988706Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:55:03.4990028Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-avx512f-u32.c.o 2025-06-05T23:55:03.4991350Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:55:03.4992427Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:55:03.4993539Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:55:03.4994847Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-scalar-u8.c.o 2025-06-05T23:55:03.4996347Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-sse-u8.c.o 2025-06-05T23:55:03.4997600Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:55:03.4998668Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:55:03.5000115Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-avx-u16.c.o 2025-06-05T23:55:03.5001760Z [ 48%] 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:55:03.5003325Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:55:03.5005767Z [ 48%] 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:55:03.5008301Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:55:03.5010835Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-sse-u8.c.o 2025-06-05T23:55:03.5013398Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:55:03.5015720Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:55:03.5018222Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-avx-u16.c.o 2025-06-05T23:55:03.5020965Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-avx512f-u32.c.o 2025-06-05T23:55:03.5023657Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2025-06-05T23:55:03.5026311Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-sse-u8.c.o 2025-06-05T23:55:03.5028962Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-avx-u16.c.o 2025-06-05T23:55:03.5031397Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:55:03.5033769Z [ 49%] 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:55:03.5036459Z [ 49%] 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:55:03.5039067Z [ 49%] 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:55:03.5041685Z [ 49%] 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:55:03.5043468Z [ 49%] 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:55:03.5045571Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:55:03.5047062Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:55:03.5048898Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-scalar-u8.c.o 2025-06-05T23:55:03.5050709Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:55:03.5052583Z [ 50%] 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:55:03.5054763Z [ 50%] 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:55:05.4088302Z [ 50%] 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:55:05.4091589Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u8.c.o 2025-06-05T23:55:05.4094461Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:55:05.4096613Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:55:05.4098899Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:55:05.4101456Z [ 50%] 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:55:05.4104371Z [ 50%] 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:55:05.4107316Z [ 50%] 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:55:05.4110287Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u8.c.o 2025-06-05T23:55:05.4112933Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:55:05.4115234Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:55:05.4117438Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:55:05.4119526Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:55:05.4121595Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:55:05.4124073Z [ 50%] 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:55:05.4126445Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:55:05.4129014Z [ 50%] 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:55:05.4132031Z [ 50%] 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:55:05.4134800Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:55:05.4137143Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:55:05.4139530Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:55:05.4142177Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u8.c.o 2025-06-05T23:55:05.4144871Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:55:05.4147533Z [ 51%] 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:55:05.4150091Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:55:05.4152644Z [ 51%] 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:55:05.4155629Z [ 53%] 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:55:05.4158434Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:55:05.4160645Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:55:05.4163355Z [ 53%] 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:55:05.4166073Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:55:05.4168763Z [ 53%] 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:55:05.4171768Z [ 53%] 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:55:05.4174942Z [ 53%] 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:55:05.4178088Z [ 53%] 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:55:05.4182435Z [ 53%] 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:55:05.4185146Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:55:05.4187521Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:55:05.4189923Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:55:05.4192500Z [ 53%] 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:55:05.4195061Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:55:05.4197630Z [ 53%] 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:55:05.4200684Z [ 53%] 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:55:05.4203675Z [ 53%] 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:55:05.4206636Z [ 53%] 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:55:05.4209207Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:55:05.4211846Z [ 53%] 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:55:05.4214539Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:55:05.4216713Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:55:05.4219338Z [ 53%] 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:55:05.4222378Z [ 53%] 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:55:05.4225407Z [ 53%] 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:55:05.4228067Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:55:05.4230983Z [ 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:55:05.4234144Z [ 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:55:05.4236934Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:55:05.4239156Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:55:05.4241422Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:55:05.4243700Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:55:05.4246383Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-sse-u8.c.o 2025-06-05T23:55:05.4249356Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-avx-u16.c.o 2025-06-05T23:55:05.4251953Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:55:05.4254183Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:55:05.4255786Z [ 55%] Linking CXX static library liboptimized_kernels.a 2025-06-05T23:55:07.1475730Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-avx512f-u32.c.o 2025-06-05T23:55:07.1478220Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:55:07.1480928Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-scalar-u8.c.o 2025-06-05T23:55:07.1483465Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:55:07.1485997Z [ 55%] 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:55:07.1488514Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:55:07.1490070Z [ 55%] Built target optimized_kernels 2025-06-05T23:55:07.1491576Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:55:07.1494286Z [ 55%] 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:55:07.1497270Z [ 55%] 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:55:07.1500261Z [ 55%] 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:55:07.1503210Z [ 55%] 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:55:07.1505811Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:55:07.1507935Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:55:07.1510402Z [ 55%] 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:55:07.1513361Z [ 55%] 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:55:07.1516590Z [ 55%] 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:55:07.1519301Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:55:07.1522205Z [ 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:55:07.1524741Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:55:07.1527269Z [ 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:55:07.1529914Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:55:07.1532128Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:55:07.1534746Z [ 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:55:07.1537229Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:55:07.1539758Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2025-06-05T23:55:07.1542677Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-sse-u8.c.o 2025-06-05T23:55:07.1545166Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:55:07.1547295Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:55:07.1549412Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:55:07.1551542Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:55:07.1553680Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:55:07.1556286Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx.c.o 2025-06-05T23:55:07.1559349Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx512f.c.o 2025-06-05T23:55:07.1561982Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:55:07.1564211Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:55:07.1567337Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-06-05T23:55:07.1570445Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-sse2.c.o 2025-06-05T23:55:07.1572958Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:55:07.1575475Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx.c.o 2025-06-05T23:55:07.1578031Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:55:07.1580381Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:55:07.1583052Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx512f.c.o 2025-06-05T23:55:07.1585995Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:55:07.1588732Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-06-05T23:55:07.1591601Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:55:07.1594243Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-sse2.c.o 2025-06-05T23:55:07.1597210Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx.c.o 2025-06-05T23:55:07.1599925Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:55:07.1602744Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx512f.c.o 2025-06-05T23:55:07.1605538Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:55:07.1607817Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:55:07.1610050Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:55:07.1612822Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-06-05T23:55:07.1616003Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-sse2.c.o 2025-06-05T23:55:07.1618661Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:55:07.1620837Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:55:07.1622969Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:55:07.1625690Z [ 59%] 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:55:07.1628670Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:55:07.1631445Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:55:07.1634565Z [ 60%] 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:55:07.1637470Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:55:07.1640028Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:55:07.1642881Z [ 60%] 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:55:08.4793707Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:55:08.4796048Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:55:08.4798252Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:55:08.4800513Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:55:08.4803315Z [ 60%] 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:55:08.4805895Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:55:08.4808243Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:55:08.4810767Z [ 60%] 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:55:08.4813726Z [ 60%] 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:55:08.4816156Z [ 60%] 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:55:08.4818150Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:55:08.4820299Z [ 60%] 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:55:08.4822941Z [ 60%] 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:55:08.4825602Z [ 60%] 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:55:08.4827776Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:55:08.4830210Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-06-05T23:55:08.4832710Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:55:08.4835194Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-sse2-rational-12-10-div.c.o 2025-06-05T23:55:08.4837954Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-avx-u16.c.o 2025-06-05T23:55:08.4840608Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-avx512f-u16.c.o 2025-06-05T23:55:08.4843080Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:55:08.4845045Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:55:08.4847435Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-fma3-u16.c.o 2025-06-05T23:55:08.4849230Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:55:08.4850603Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u4.c.o 2025-06-05T23:55:08.4852630Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-sse-u8.c.o 2025-06-05T23:55:08.4855237Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:55:08.4857465Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:55:08.4860121Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-avx2-rational-3-3-div.c.o 2025-06-05T23:55:08.4863350Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-avx512f-rational-3-3-div.c.o 2025-06-05T23:55:08.4866454Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-fma3-rational-3-3-div.c.o 2025-06-05T23:55:08.4868573Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-scalar-rational-3-3-div.c.o 2025-06-05T23:55:08.4869996Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:55:08.4871187Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:55:08.4873157Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-sse2-rational-3-3-div.c.o 2025-06-05T23:55:08.4875784Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-avx-u16.c.o 2025-06-05T23:55:08.4878085Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-avx512f-u16.c.o 2025-06-05T23:55:08.4883246Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2025-06-05T23:55:08.4885771Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-sse-u8.c.o 2025-06-05T23:55:08.4888144Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-sse41-u8.c.o 2025-06-05T23:55:08.4890853Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2025-06-05T23:55:08.4893746Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-sse-2x.c.o 2025-06-05T23:55:08.4896409Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u8.c.o 2025-06-05T23:55:08.4898817Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-avx-u16.c.o 2025-06-05T23:55:08.4899896Z [ 62%] Linking CXX static library liboptimized_portable_kernels.a 2025-06-05T23:55:08.4900976Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-avx512f-u16.c.o 2025-06-05T23:55:08.4902516Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u1.c.o 2025-06-05T23:55:08.4904073Z [ 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:55:08.4905597Z [ 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:55:08.4907073Z [ 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:55:08.4908530Z [ 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:55:08.4910019Z [ 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:55:08.4911877Z [ 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:55:08.4913832Z [ 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:55:08.4915539Z [ 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:55:08.4917132Z [ 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:55:08.4918599Z [ 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:55:08.4920077Z [ 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:55:08.4921587Z [ 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:55:08.4922613Z [ 64%] Built target optimized_portable_kernels 2025-06-05T23:55:09.7098657Z [ 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:55:09.7102983Z [ 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:55:09.7106141Z [ 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:55:09.7109070Z [ 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:55:09.7111878Z [ 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:55:09.7113671Z [ 65%] Merging kernel yaml files 2025-06-05T23:55:09.7115597Z [ 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:55:09.7119071Z [ 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:55:09.7122130Z [ 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:55:09.7125222Z [ 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:55:09.7128546Z [ 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:55:09.7133016Z [ 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:55:09.7136123Z [ 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:55:09.7140450Z [ 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:55:09.7143275Z [ 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:55:09.7146112Z [ 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:55:09.7148124Z [ 65%] Generating selected_operators.yaml for optimized_native_cpu_ops_lib 2025-06-05T23:55:09.7150370Z [ 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:55:09.7153698Z [ 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:55:09.7157411Z [ 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:55:09.7161245Z [ 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:55:09.7164924Z [ 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:55:09.7168385Z [ 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:55:09.7171569Z [ 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:55:09.7174737Z [ 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:55:09.7179564Z [ 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:55:09.7182658Z [ 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:55:09.7185744Z [ 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:55:09.7188908Z [ 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:55:09.7192767Z [ 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:55:09.7195019Z [ 66%] Generating code for kernel registration 2025-06-05T23:55:09.7197052Z [ 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:55:09.7200241Z [ 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:55:09.7203488Z [ 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:55:09.7206503Z [ 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:55:09.7209360Z [ 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:55:09.7212238Z [ 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:55:09.7215560Z [ 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:55:09.7218434Z [ 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:55:09.7221270Z [ 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:55:09.7224176Z [ 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:55:09.7227021Z [ 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:55:09.7229858Z [ 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:55:09.7232920Z [ 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:55:09.7236166Z [ 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:55:09.7239542Z [ 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:55:09.7242762Z [ 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:55:09.7245949Z [ 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:55:09.7249561Z [ 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:55:09.7253419Z [ 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:55:09.7257716Z [ 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:55:09.7261277Z [ 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:55:09.7264878Z [ 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:55:09.7268493Z [ 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:55:09.7272105Z [ 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:55:09.7275785Z [ 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:55:09.7279576Z [ 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:55:10.9691485Z [ 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:55:10.9695318Z [ 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:55:10.9698978Z [ 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:55:10.9702604Z [ 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:55:10.9706222Z [ 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:55:10.9709739Z [ 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:55:10.9713319Z [ 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:55:10.9717309Z [ 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:55:10.9721085Z [ 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:55:10.9725121Z [ 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:55:10.9729013Z [ 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:55:10.9732692Z [ 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:55:10.9736385Z [ 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:55:10.9740057Z [ 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:55:10.9743865Z [ 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:55:10.9747504Z [ 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:55:10.9751130Z [ 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:55:10.9754817Z [ 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:55:10.9758763Z [ 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:55:10.9762652Z [ 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:55:10.9766557Z [ 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:55:10.9770408Z [ 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:55:10.9774449Z [ 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:55:10.9778284Z [ 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:55:10.9782203Z [ 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:55:10.9785712Z [ 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:55:10.9789300Z [ 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:55:10.9792967Z [ 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:55:10.9796827Z [ 71%] 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:55:10.9800634Z [ 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:55:10.9804340Z [ 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:55:10.9807922Z [ 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:55:10.9811578Z [ 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:55:10.9815253Z [ 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:55:10.9818911Z [ 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:55:10.9822780Z [ 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:55:10.9826656Z [ 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:55:10.9830532Z [ 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:55:10.9834271Z [ 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:55:10.9837863Z [ 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:55:10.9841528Z [ 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:55:10.9845240Z [ 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:55:10.9848905Z [ 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:55:10.9852485Z [ 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:55:10.9856130Z [ 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:55:10.9859779Z [ 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:55:10.9863504Z [ 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:10.9867158Z [ 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:11.9006251Z [ 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:11.9009328Z [ 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:11.9011533Z [ 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:11.9013623Z [ 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:11.9016359Z [ 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:11.9019164Z [ 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:11.9022581Z [ 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:11.9026099Z [ 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:11.9029583Z [ 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:11.9033136Z [ 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:11.9036583Z [ 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:11.9039930Z [ 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:11.9043212Z [ 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:11.9046526Z [ 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:11.9049987Z [ 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:11.9053699Z [ 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:11.9057346Z [ 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:11.9060579Z [ 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:11.9063446Z [ 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:11.9066430Z [ 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:11.9069424Z [ 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:11.9072447Z [ 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:11.9075507Z [ 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:11.9078838Z [ 74%] Building CXX object configurations/CMakeFiles/optimized_native_cpu_ops_lib.dir/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:55:11.9082073Z [ 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:11.9084932Z [ 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:11.9087831Z [ 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:11.9090766Z [ 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:11.9094085Z [ 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:11.9097142Z [ 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:11.9099097Z [ 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:11.9101058Z [ 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:11.9103016Z [ 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:11.9104994Z [ 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:11.9107185Z [ 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:11.9109115Z [ 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:11.9111069Z [ 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:11.9113246Z [ 75%] Linking CXX static library liboptimized_native_cpu_ops_lib.a 2025-06-05T23:55:11.9115664Z [ 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:11.9117993Z [ 75%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:55:11.9120254Z [ 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:11.9123942Z [ 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:11.9127541Z [ 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:11.9131175Z [ 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:11.9135103Z [ 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:11.9138716Z [ 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:11.9142504Z [ 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:11.9145797Z [ 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:11.9148789Z [ 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:11.9152325Z [ 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:11.9154656Z [ 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:12.8829714Z [ 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:12.8833615Z [ 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:12.8837336Z [ 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:12.8841058Z [ 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:12.8844836Z [ 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:12.8848509Z [ 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:12.8852135Z [ 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:12.8855808Z [ 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:12.8859451Z [ 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:12.8863098Z [ 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:12.8866609Z [ 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:12.8870172Z [ 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:12.8873808Z [ 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:12.8877505Z [ 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:12.8881676Z [ 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:12.8885249Z [ 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:12.8888984Z [ 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:12.8903943Z [ 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:12.8907930Z [ 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:12.8911743Z [ 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:12.8915543Z [ 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:12.8919373Z [ 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:12.8923139Z [ 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:12.8926889Z [ 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:12.8930541Z [ 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:12.8934237Z [ 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:12.8937803Z [ 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:12.8941404Z [ 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:12.8945127Z [ 79%] 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:12.8948849Z [ 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:12.8952599Z [ 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:12.8956306Z [ 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:12.8959941Z [ 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:12.8963572Z [ 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:12.8967377Z [ 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:12.8971255Z [ 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:12.8974811Z [ 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:12.8978580Z [ 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:12.8982060Z [ 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:12.8985386Z [ 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:12.8988629Z [ 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:12.8991711Z [ 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:12.8994901Z [ 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:12.8997929Z [ 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:12.9000918Z [ 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:12.9004076Z [ 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:12.9007432Z [ 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:12.9010880Z [ 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:12.9014295Z [ 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:12.9017399Z [ 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:13.7357443Z [ 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:13.7360827Z [ 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:13.7364185Z [ 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:13.7367421Z [ 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:13.7370903Z [ 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:13.7374330Z [ 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:13.7377504Z [ 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:13.7382097Z [ 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:13.7385786Z [ 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:13.7389046Z [ 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:13.7391828Z [ 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:13.7394745Z [ 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:13.7397582Z [ 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:13.7400503Z [ 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:13.7403426Z [ 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:13.7406346Z [ 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:13.7409298Z [ 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:13.7412291Z [ 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:13.7415493Z [ 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:13.7418708Z [ 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:13.7421822Z [ 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:13.7424824Z [ 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:13.7427844Z [ 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:13.7431059Z [ 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:13.7434325Z [ 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:13.7437696Z [ 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:13.7441210Z [ 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:13.7444797Z [ 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:13.7448222Z [ 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:13.7451576Z [ 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:13.7455228Z [ 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:13.7459034Z [ 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:13.7462508Z [ 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:13.7466117Z [ 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:13.7469570Z [ 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:13.7473025Z [ 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:13.7476575Z [ 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:13.7480328Z [ 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:13.7483928Z [ 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:13.7487576Z [ 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:13.7491230Z [ 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:13.7494862Z [ 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:13.7498454Z [ 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:13.7501994Z [ 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:13.7505961Z [ 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:13.7509487Z [ 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:13.7513096Z [ 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:13.7516716Z [ 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:13.7520163Z [ 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:13.7523768Z [ 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:13.7527275Z [ 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:13.7530530Z [ 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:13.7533648Z [ 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:14.7381826Z [ 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:14.7385801Z [ 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:14.7388912Z [ 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:14.7392627Z [ 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:14.7396323Z [ 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:14.7400137Z [ 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:14.7403996Z [ 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:14.7407449Z [ 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:14.7411518Z [ 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:14.7415080Z [ 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:14.7418903Z [ 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:14.7422434Z [ 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:14.7426222Z [ 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:14.7430402Z [ 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:14.7433993Z [ 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:14.7438197Z [ 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:14.7441541Z [ 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:14.7445156Z [ 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:14.7449248Z [ 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:14.7452792Z [ 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:14.7457357Z [ 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:14.7461166Z [ 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:14.7464821Z [ 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:14.7468476Z [ 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:14.7472142Z [ 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:14.7475954Z [ 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:14.7479619Z [ 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:14.7482692Z [ 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:14.7485949Z [ 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:14.7490081Z [ 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:14.7493725Z [ 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:14.7496820Z [ 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:14.7500606Z [ 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:14.7503571Z [ 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:14.7506492Z [ 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:14.7508909Z [ 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:14.7511248Z [ 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:14.7513647Z [ 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:14.7516171Z [ 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:14.7519571Z [ 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:14.7522518Z [ 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:14.7525539Z [ 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:14.7528017Z [ 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:14.7530846Z [ 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:14.7533622Z [ 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:14.7537072Z [ 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:14.7539089Z [ 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:14.7540997Z [ 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:14.7542883Z [ 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:14.7545073Z [ 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:14.7546875Z [ 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:14.7548615Z [ 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:14.7550217Z [ 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:15.6298970Z [ 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:15.6301979Z [ 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:15.6304892Z [ 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:15.6307835Z [ 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:15.6310734Z [ 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:15.6313640Z [ 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:15.6316578Z [ 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:15.6319486Z [ 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:15.6322609Z [ 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:15.6325820Z [ 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:15.6328916Z [ 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:15.6331890Z [ 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:15.6334949Z [ 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:15.6338135Z [ 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:15.6341426Z [ 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:15.6345082Z [ 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:15.6348575Z [ 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:15.6352247Z [ 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:15.6355608Z [ 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:15.6358988Z [ 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:15.6362509Z [ 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:15.6365751Z [ 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:15.6368757Z [ 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:15.6371780Z [ 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:15.6374941Z [ 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:15.6378019Z [ 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:15.6381357Z [ 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:15.6384518Z [ 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:15.6387756Z [ 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:15.6390921Z [ 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:15.6393978Z [ 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:15.6396910Z [ 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:15.6399845Z [ 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:15.6402715Z [ 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:15.6405584Z [ 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:15.6408595Z [ 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:15.6411694Z [ 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:15.6414841Z [ 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:15.6417856Z [ 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:15.6421199Z [ 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:15.6424544Z [ 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:15.6427497Z [ 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:15.6430219Z [ 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:15.6433006Z [ 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:15.6435917Z [ 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:15.6438858Z [ 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:15.6442316Z [ 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:15.6445468Z [ 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:15.6448870Z [ 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:15.6452330Z [ 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:15.6455868Z [ 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:15.6459314Z [ 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:15.6462701Z [ 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:15.6465860Z [ 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:15.6468885Z [ 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:15.6472110Z [ 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:17.0092110Z [ 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:17.0095495Z [ 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:17.0098703Z [ 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:17.0101988Z [ 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:17.0104955Z [ 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:17.0108049Z [ 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:17.0111570Z [ 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:17.0114643Z [ 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:17.0117630Z [ 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:17.0120325Z [ 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:17.0122972Z [ 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:17.0125500Z [ 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:17.0127989Z [ 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:17.0130521Z [ 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:17.0132988Z [ 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:17.0135733Z [ 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:17.0138411Z [ 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:17.0141126Z [ 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:17.0144184Z [ 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:17.0147431Z [ 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:17.0150628Z [ 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:17.0153567Z [ 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:17.0156268Z [ 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:17.0159065Z [ 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:17.0161945Z [ 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:17.0164712Z [ 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:17.0167311Z [ 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:17.0170134Z [ 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:17.0173066Z [ 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:17.0176042Z [ 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:17.0179424Z [ 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:17.0182489Z [ 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:17.0185975Z [ 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:17.0188850Z [ 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:17.0191631Z [ 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:17.0194156Z [ 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:17.0196596Z [ 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:17.0199155Z [ 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:17.0201606Z [ 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:17.0203314Z [ 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:17.0204681Z [ 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:17.0206053Z [ 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:17.0207466Z [ 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:17.0208923Z [ 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:17.0210331Z [ 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:17.0211749Z [ 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:17.0213173Z [ 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:17.0214813Z [ 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:17.0216334Z [ 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:17.0217842Z [ 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:17.0220100Z [ 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:17.0222354Z [ 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:17.0224680Z [ 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:17.0226163Z [ 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:17.0227592Z [ 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:17.0229165Z [ 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:17.0230510Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-06-05T23:55:17.0231484Z [ 97%] Linking C static library libmicrokernels-prod.a 2025-06-05T23:55:17.0232004Z [ 97%] Built target microkernels-prod 2025-06-05T23:55:17.0232444Z [ 97%] Generating build_identifier.c 2025-06-05T23:55:17.0233280Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-06-05T23:55:26.9569839Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-06-05T23:55:26.9572404Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-06-05T23:55:26.9574950Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-06-05T23:55:26.9576639Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-06-05T23:55:26.9577925Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-06-05T23:55:26.9579960Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-06-05T23:55:26.9581261Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-06-05T23:55:26.9583149Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-06-05T23:55:26.9585164Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-06-05T23:55:26.9586488Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-06-05T23:55:26.9587785Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-06-05T23:55:26.9589045Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-06-05T23:55:26.9590314Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-06-05T23:55:26.9592520Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-06-05T23:55:26.9595009Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-06-05T23:55:26.9597495Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-06-05T23:55:26.9599759Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-06-05T23:55:26.9601870Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-06-05T23:55:26.9604097Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-06-05T23:55:26.9606493Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-06-05T23:55:26.9608708Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-06-05T23:55:26.9611039Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-06-05T23:55:26.9613373Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-06-05T23:55:26.9616159Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-06-05T23:55:26.9618466Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-06-05T23:55:26.9620956Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-06-05T23:55:26.9622936Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-06-05T23:55:26.9624360Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-06-05T23:55:26.9625421Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-06-05T23:55:26.9626238Z [100%] Linking CXX static library libXNNPACK.a 2025-06-05T23:55:26.9626699Z [100%] Built target XNNPACK 2025-06-05T23:55:26.9627420Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNExecutor.cpp.o 2025-06-05T23:55:26.9628490Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNCompiler.cpp.o 2025-06-05T23:55:26.9629591Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNWeightsCache.cpp.o 2025-06-05T23:55:26.9630669Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNHeader.cpp.o 2025-06-05T23:55:26.9631752Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNPACKBackend.cpp.o 2025-06-05T23:55:26.9632893Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/profiling/XNNProfiler.cpp.o 2025-06-05T23:55:26.9633776Z [100%] Linking CXX static library libxnnpack_backend.a 2025-06-05T23:55:26.9634279Z [100%] Built target xnnpack_backend 2025-06-05T23:55:26.9634975Z [100%] Building CXX object CMakeFiles/portable_lib.dir/extension/pybindings/pybindings.cpp.o 2025-06-05T23:55:26.9635853Z [100%] Linking CXX shared library _portable_lib.cpython-310-x86_64-linux-gnu.so 2025-06-05T23:55:26.9636478Z [100%] Built target portable_lib 2025-06-05T23:55:26.9637203Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_util.dir/runtime/util/json_util.cpp.o 2025-06-05T23:55:26.9638432Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/inmemory_filesystem.cpp.o 2025-06-05T23:55:26.9639734Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/memory_stream.cpp.o 2025-06-05T23:55:26.9641060Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/reversed_memory_stream.cpp.o 2025-06-05T23:55:26.9642378Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/memory_buffer.cpp.o 2025-06-05T23:55:26.9643270Z Linking CXX static library libcoreml_util.a 2025-06-05T23:55:26.9643727Z Built target coreml_util 2025-06-05T23:55:26.9644177Z Linking CXX static library libcoreml_inmemoryfs.a 2025-06-05T23:55:26.9644671Z Built target coreml_inmemoryfs 2025-06-05T23:55:26.9645572Z Building CXX object backends/apple/coreml/CMakeFiles/executorchcoreml.dir/runtime/inmemoryfs/inmemory_filesystem_py.cpp.o 2025-06-05T23:55:26.9646998Z Building CXX object backends/apple/coreml/CMakeFiles/executorchcoreml.dir/runtime/inmemoryfs/inmemory_filesystem_utils.cpp.o 2025-06-05T23:55:26.9648138Z Linking CXX shared library executorchcoreml.cpython-310-x86_64-linux-gnu.so 2025-06-05T23:55:26.9648769Z Built target executorchcoreml 2025-06-05T23:55:26.9649217Z [ 1%] Built target flatbuffers_external_project 2025-06-05T23:55:26.9649704Z [ 1%] Built target flatcc_external_project 2025-06-05T23:55:26.9650164Z [ 2%] Built target pthreadpool 2025-06-05T23:55:26.9650567Z [ 2%] Built target common_schema 2025-06-05T23:55:26.9650993Z [ 4%] Built target xnnpack_schema 2025-06-05T23:55:26.9651402Z [ 4%] Built target cpuinfo 2025-06-05T23:55:26.9651796Z [ 6%] Built target flatccrt 2025-06-05T23:55:26.9652317Z [ 7%] Built target logging 2025-06-05T23:55:26.9652723Z [ 8%] Built target eigen_blas 2025-06-05T23:55:26.9653118Z [ 8%] Built target indirection 2025-06-05T23:55:26.9653892Z [ 8%] Built target microparams-init 2025-06-05T23:55:26.9654517Z [ 8%] Built target normalization 2025-06-05T23:55:26.9654970Z [ 8%] Built target datatype 2025-06-05T23:55:26.9655528Z [ 8%] Built target reference-ukernels 2025-06-05T23:55:26.9656130Z [ 8%] Built target program_schema 2025-06-05T23:55:26.9656839Z [ 8%] Built target operator-run 2025-06-05T23:55:26.9657482Z [ 8%] Built target operator-utils 2025-06-05T23:55:26.9658036Z [ 8%] Built target hardware-config 2025-06-05T23:55:26.9658760Z [ 8%] Built target packing 2025-06-05T23:55:26.9659348Z [ 8%] Built target allocator 2025-06-05T23:55:26.9659790Z [ 8%] Built target cache 2025-06-05T23:55:26.9660384Z [ 8%] Built target microkernel-utils 2025-06-05T23:55:26.9660829Z [ 8%] Built target memory 2025-06-05T23:55:26.9661423Z [ 8%] Built target mutex 2025-06-05T23:55:26.9662002Z [ 11%] Built target operators 2025-06-05T23:55:26.9662714Z [ 12%] Built target executorch_core 2025-06-05T23:55:26.9663402Z [ 14%] Built target subgraph 2025-06-05T23:55:26.9664036Z [ 14%] Built target extension_data_loader 2025-06-05T23:55:26.9664786Z [ 14%] Built target extension_threadpool 2025-06-05T23:55:26.9665385Z [ 14%] Built target extension_tensor 2025-06-05T23:55:26.9665825Z [ 16%] Built target executorch 2025-06-05T23:55:26.9666233Z [ 16%] Built target bundled_program 2025-06-05T23:55:26.9666671Z [ 17%] Built target cpublas 2025-06-05T23:55:26.9667056Z [ 17%] Built target etdump 2025-06-05T23:55:26.9667476Z [ 18%] Built target kernels_util_all_deps 2025-06-05T23:55:26.9667913Z [ 18%] Built target util 2025-06-05T23:55:26.9668312Z [ 19%] Built target optimized_kernels 2025-06-05T23:55:26.9668773Z [ 34%] Built target optimized_portable_kernels 2025-06-05T23:55:26.9669297Z [ 34%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:55:26.9669778Z [ 97%] Built target microkernels-prod 2025-06-05T23:55:26.9670215Z [100%] Built target XNNPACK 2025-06-05T23:55:26.9670618Z [100%] Built target xnnpack_backend 2025-06-05T23:55:26.9671052Z [100%] Built target portable_lib 2025-06-05T23:55:26.9671784Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fallback.cpp.o 2025-06-05T23:55:26.9672944Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fast_hadamard_transform.cpp.o 2025-06-05T23:55:26.9674057Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_sdpa.cpp.o 2025-06-05T23:55:26.9675124Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_update_cache.cpp.o 2025-06-05T23:55:26.9676305Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/spinquant/fast_hadamard_transform.cpp.o 2025-06-05T23:55:26.9677590Z [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:26.9678936Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_sdpa_aot.cpp.o 2025-06-05T23:55:26.9680121Z [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:26.9681287Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_tile_crop.cpp.o 2025-06-05T23:55:34.8664228Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_tile_crop_aot.cpp.o 2025-06-05T23:55:34.8665635Z [100%] Linking CXX shared library libcustom_ops_aot_lib.so 2025-06-05T23:55:34.8666178Z [100%] Built target custom_ops_aot_lib 2025-06-05T23:55:34.8666655Z [ 1%] Built target flatbuffers_external_project 2025-06-05T23:55:34.8667176Z [ 1%] Built target flatcc_external_project 2025-06-05T23:55:34.8668100Z [ 2%] Built target pthreadpool 2025-06-05T23:55:34.8668562Z [ 3%] Built target cpuinfo 2025-06-05T23:55:34.8668955Z [ 3%] Built target common_schema 2025-06-05T23:55:34.8669520Z [ 4%] Built target xnnpack_schema 2025-06-05T23:55:34.8669933Z [ 6%] Built target eigen_blas 2025-06-05T23:55:34.8670401Z [ 7%] Built target flatccrt 2025-06-05T23:55:34.8670909Z [ 8%] Built target logging 2025-06-05T23:55:34.8671438Z [ 8%] Built target indirection 2025-06-05T23:55:34.8671863Z [ 8%] Built target microparams-init 2025-06-05T23:55:34.8672310Z [ 8%] Built target normalization 2025-06-05T23:55:34.8672724Z [ 8%] Built target datatype 2025-06-05T23:55:34.8673208Z [ 8%] Built target reference-ukernels 2025-06-05T23:55:34.8673704Z [ 8%] Built target program_schema 2025-06-05T23:55:34.8674176Z [ 8%] Built target hardware-config 2025-06-05T23:55:34.8674607Z [ 8%] Built target packing 2025-06-05T23:55:34.8674992Z [ 8%] Built target allocator 2025-06-05T23:55:34.8675406Z [ 8%] Built target cache 2025-06-05T23:55:34.8675789Z [ 8%] Built target microkernel-utils 2025-06-05T23:55:34.8676245Z [ 8%] Built target memory 2025-06-05T23:55:34.8676764Z [ 8%] Built target mutex 2025-06-05T23:55:34.8677298Z [ 8%] Built target operator-run 2025-06-05T23:55:34.8677716Z [ 8%] Built target operator-utils 2025-06-05T23:55:34.8678150Z [ 9%] Built target executorch_core 2025-06-05T23:55:34.8678852Z [ 12%] Built target operators 2025-06-05T23:55:34.8679281Z [ 12%] Built target extension_data_loader 2025-06-05T23:55:34.8679799Z [ 12%] Built target extension_tensor 2025-06-05T23:55:34.8680353Z [ 13%] Built target executorch 2025-06-05T23:55:34.8680814Z [ 13%] Built target extension_threadpool 2025-06-05T23:55:34.8681273Z [ 15%] Built target subgraph 2025-06-05T23:55:34.8681679Z [ 16%] Built target kernels_util_all_deps 2025-06-05T23:55:34.8682120Z [ 16%] Built target bundled_program 2025-06-05T23:55:34.8682543Z [ 16%] Built target etdump 2025-06-05T23:55:34.8683039Z [ 18%] Built target cpublas 2025-06-05T23:55:34.8683445Z [ 19%] Built target optimized_kernels 2025-06-05T23:55:34.8684044Z [ 19%] Built target util 2025-06-05T23:55:34.8684483Z [ 33%] Built target optimized_portable_kernels 2025-06-05T23:55:34.8684978Z [ 33%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:55:34.8685484Z [ 95%] Built target microkernels-prod 2025-06-05T23:55:34.8686051Z [ 97%] Built target XNNPACK 2025-06-05T23:55:34.8686511Z [ 97%] Built target xnnpack_backend 2025-06-05T23:55:34.8686995Z [ 97%] Built target portable_lib 2025-06-05T23:55:34.8687778Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:55:34.8688930Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_add.cpp.o 2025-06-05T23:55:34.8690095Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:55:34.8691315Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:55:34.8692799Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding.cpp.o 2025-06-05T23:55:34.8694126Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:55:34.8695693Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:55:34.8696915Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:55:34.8698084Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:55:34.8699490Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_quantize.cpp.o 2025-06-05T23:55:34.8700880Z [ 98%] Linking CXX static library libquantized_pybind_kernels_lib.a 2025-06-05T23:55:34.8701519Z [ 98%] Built target quantized_pybind_kernels_lib 2025-06-05T23:55:34.8702502Z [ 98%] Generating selected_operators.yaml for quantized_ops_pybind_lib 2025-06-05T23:55:34.8703127Z [ 98%] Generating code for kernel registration 2025-06-05T23:55:34.8704268Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_pybind_lib.dir/quantized_ops_pybind_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:55:34.8705834Z [ 98%] Linking CXX static library libquantized_ops_pybind_lib.a 2025-06-05T23:55:34.8706390Z [ 98%] Built target quantized_ops_pybind_lib 2025-06-05T23:55:34.8707029Z [ 98%] Generating selected_operators.yaml for quantized_ops_aot_lib 2025-06-05T23:55:34.8711052Z 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:34.8714689Z [ 98%] Generating code for kernel registration 2025-06-05T23:55:34.8715741Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/quantized_ops_aot_lib/RegisterSchema.cpp.o 2025-06-05T23:55:34.8717376Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/quantized_ops_aot_lib/RegisterCPUCustomOps.cpp.o 2025-06-05T23:55:34.8718759Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_add.cpp.o 2025-06-05T23:55:34.8719882Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:55:34.8721137Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:55:34.8722554Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:55:34.8723672Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding.cpp.o 2025-06-05T23:55:34.8725016Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:55:34.8726146Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:55:34.8727384Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:55:34.8728773Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:55:34.8729876Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_quantize.cpp.o 2025-06-05T23:55:34.8731266Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/__/portable/cpu/util/reduce_util.cpp.o 2025-06-05T23:55:34.8732620Z [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:34.8734244Z [100%] Linking CXX shared library libquantized_ops_aot_lib.so 2025-06-05T23:55:34.8734865Z [100%] Built target quantized_ops_aot_lib 2025-06-05T23:55:34.8735306Z running build_py 2025-06-05T23:55:34.8735799Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:55:34.8736836Z copying src/executorch/codegen/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:55:34.8737933Z copying src/executorch/codegen/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:55:34.8739110Z copying src/executorch/codegen/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:55:34.8740377Z copying src/executorch/codegen/parse.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:55:34.8741536Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools 2025-06-05T23:55:34.8742438Z copying src/executorch/devtools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools 2025-06-05T23:55:34.8743467Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8744351Z copying src/executorch/exir/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8745337Z copying src/executorch/exir/_warnings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8746569Z copying src/executorch/exir/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8747837Z copying src/executorch/exir/control_flow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8748879Z copying src/executorch/exir/delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8750147Z copying src/executorch/exir/dim_order_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8751225Z copying src/executorch/exir/dynamic_shape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8752363Z copying src/executorch/exir/error.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8753594Z copying src/executorch/exir/graph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8754599Z copying src/executorch/exir/graph_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8755715Z copying src/executorch/exir/lowered_backend_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8756790Z copying src/executorch/exir/memory.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8757836Z copying src/executorch/exir/memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8759114Z copying src/executorch/exir/pass_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8760153Z copying src/executorch/exir/pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8893413Z copying src/executorch/exir/print_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8895058Z copying src/executorch/exir/scalar_type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8896231Z copying src/executorch/exir/schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8897321Z copying src/executorch/exir/sym_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8898354Z copying src/executorch/exir/tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8899344Z copying src/executorch/exir/tracer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8900411Z copying src/executorch/exir/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8901767Z copying src/executorch/exir/version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8902765Z copying src/executorch/exir/wrap.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:34.8903908Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime 2025-06-05T23:55:34.8904883Z copying src/executorch/runtime/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime 2025-06-05T23:55:34.8905788Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:55:34.8907782Z copying src/executorch/util/activation_memory_profiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:55:34.8908977Z copying src/executorch/util/collect_env.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:55:34.8910061Z copying src/executorch/util/python_profiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:55:34.8911329Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:34.8912338Z copying src/executorch/backends/arm/arm_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:34.8914001Z copying src/executorch/backends/arm/arm_vela.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:34.8915263Z copying src/executorch/backends/arm/ethosu_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:34.8916875Z copying src/executorch/backends/arm/ethosu_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:34.8918194Z copying src/executorch/backends/arm/process_node.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:34.8919483Z copying src/executorch/backends/arm/tosa_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:34.8921002Z copying src/executorch/backends/arm/tosa_mapping.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:34.8922323Z copying src/executorch/backends/arm/tosa_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:34.8923815Z copying src/executorch/backends/arm/tosa_quant_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:34.8925277Z copying src/executorch/backends/arm/tosa_specification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:34.8926678Z copying src/executorch/backends/arm/tosa_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:34.8927916Z copying src/executorch/backends/arm/vgf_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:34.8929380Z copying src/executorch/backends/arm/vgf_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:34.8930427Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:55:34.8931646Z copying src/executorch/backends/example/example_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:55:34.8933107Z copying src/executorch/backends/example/example_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:55:34.8934865Z copying src/executorch/backends/example/example_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:55:34.8936434Z copying src/executorch/backends/example/test_example_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:55:34.8937569Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:55:34.8938623Z copying src/executorch/backends/mediatek/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:55:34.8940267Z copying src/executorch/backends/mediatek/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:55:34.8941696Z copying src/executorch/backends/mediatek/preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:55:34.8943186Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:55:34.8944266Z copying src/executorch/backends/nxp/neutron_node_extraction.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:55:34.8945921Z copying src/executorch/backends/nxp/neutron_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:55:34.8947437Z copying src/executorch/backends/nxp/neutron_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:55:34.8948739Z copying src/executorch/backends/nxp/nxp_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:55:34.8949839Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:55:34.8950898Z copying src/executorch/backends/openvino/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:55:34.8952276Z copying src/executorch/backends/openvino/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:55:34.8953998Z copying src/executorch/backends/openvino/preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:55:34.8955129Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm 2025-06-05T23:55:34.8956516Z copying src/executorch/backends/qualcomm/qnn_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm 2025-06-05T23:55:34.8957618Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:34.8958703Z copying src/executorch/backends/transforms/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:34.8960130Z 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:34.8961921Z copying src/executorch/backends/transforms/convert_dtype_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:34.8963777Z copying src/executorch/backends/transforms/decompose_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:34.8965409Z 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:34.8967314Z 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:34.8969085Z 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:34.8970570Z copying src/executorch/backends/transforms/fuse_view_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:34.8972270Z 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:34.8973802Z 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:34.8975448Z copying src/executorch/backends/transforms/remove_clone_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:34.8976990Z copying src/executorch/backends/transforms/remove_getitem_op.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:34.8978939Z 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:34.8980414Z copying src/executorch/backends/transforms/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:34.8982042Z 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:34.8983232Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:34.8984325Z copying src/executorch/backends/vulkan/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:34.8985835Z copying src/executorch/backends/vulkan/custom_ops_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:34.8987412Z copying src/executorch/backends/vulkan/op_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:34.8988992Z copying src/executorch/backends/vulkan/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:34.8990360Z copying src/executorch/backends/vulkan/vulkan_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:34.9099075Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:55:34.9100531Z copying src/executorch/backends/xnnpack/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:55:34.9101905Z copying src/executorch/backends/xnnpack/xnnpack_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:55:34.9103245Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-06-05T23:55:34.9104359Z copying src/executorch/backends/apple/mps/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-06-05T23:55:34.9105908Z 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:34.9107134Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler 2025-06-05T23:55:34.9108477Z 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:34.9110375Z 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:34.9111785Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition 2025-06-05T23:55:34.9113180Z 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:34.9114910Z 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:34.9116429Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer 2025-06-05T23:55:34.9117845Z 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:34.9119864Z 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:34.9121258Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test 2025-06-05T23:55:34.9122743Z 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:34.9124590Z 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:34.9126115Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/runtime/test 2025-06-05T23:55:34.9127715Z 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:34.9129205Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:55:34.9130506Z 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:34.9132284Z 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:34.9134494Z 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:34.9136123Z 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:34.9138142Z 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:34.9139928Z 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:34.9141703Z 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:34.9143580Z 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:34.9145271Z 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:34.9147185Z 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:34.9148894Z 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:34.9150675Z 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:34.9152472Z 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:34.9154201Z 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:34.9156064Z 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:34.9157697Z 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:34.9159543Z 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:34.9161233Z 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:34.9163021Z 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:34.9164634Z 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:34.9166099Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition 2025-06-05T23:55:34.9167450Z 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:34.9169316Z 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:34.9170626Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization 2025-06-05T23:55:34.9172225Z 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:34.9174292Z 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:34.9175814Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:55:34.9177063Z 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:34.9179072Z 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:34.9180671Z 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:34.9182481Z 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:34.9184106Z 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:34.9185785Z 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:34.9187482Z 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:34.9188741Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils 2025-06-05T23:55:34.9189974Z 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:34.9191648Z 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:34.9192831Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:55:34.9194107Z copying src/executorch/backends/arm/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:55:34.9274582Z 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:34.9276405Z 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:34.9278129Z 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:34.9280568Z 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:34.9282110Z 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:34.9283563Z 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:34.9285000Z 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:34.9286653Z 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:34.9288355Z 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:34.9289982Z 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:34.9291827Z 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:34.9293851Z 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:34.9295685Z 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:34.9297464Z 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:34.9299080Z 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:34.9311417Z 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:34.9313377Z 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:34.9315189Z 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:34.9316731Z 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:34.9318543Z 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:34.9320114Z 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:34.9321873Z 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:34.9323677Z 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:34.9325348Z 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:34.9327270Z 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:34.9328842Z 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:34.9330601Z 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:34.9332068Z 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:34.9333861Z 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:34.9335327Z 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:34.9337077Z 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:34.9338632Z 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:34.9340440Z 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:34.9341915Z 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:34.9343514Z 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:34.9345350Z 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:34.9347032Z 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:34.9348753Z 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:34.9350277Z 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:34.9352033Z 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:34.9353568Z 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:34.9355260Z 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:34.9356725Z 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:34.9358364Z 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:34.9359858Z 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:34.9361454Z 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:34.9362940Z 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:34.9364713Z 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:34.9366289Z 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:34.9367925Z 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:34.9369458Z 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:34.9371253Z 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:34.9372545Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:55:34.9374139Z 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:34.9375798Z 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:34.9377568Z 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:34.9462432Z 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:34.9464306Z 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:34.9466212Z 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:34.9467941Z 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:34.9469986Z 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:34.9471799Z 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:34.9473478Z 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:34.9475389Z 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:34.9476753Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:34.9477989Z copying src/executorch/backends/arm/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:34.9479693Z 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:34.9481368Z 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:34.9482796Z 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:34.9484361Z 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:34.9485800Z 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:34.9487310Z 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:34.9488815Z 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:34.9490261Z 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:34.9491835Z 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:34.9493285Z 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:34.9494846Z 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:34.9496541Z 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:34.9498319Z 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:34.9499877Z 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:34.9501398Z 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:34.9503043Z 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:34.9504774Z 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:34.9506469Z 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:34.9508025Z 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:34.9509701Z 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:34.9511279Z 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:34.9513069Z 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:34.9514565Z 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:34.9516197Z 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:34.9517917Z 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:34.9519624Z 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:34.9521301Z 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:34.9522892Z 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:34.9524359Z 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:34.9526249Z 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:34.9527909Z 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:34.9529715Z 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:34.9531312Z 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:34.9532994Z 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:34.9534718Z 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:34.9536302Z 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:34.9537853Z 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:34.9539342Z 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:34.9540923Z 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:34.9542492Z 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:34.9544345Z 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:34.9546208Z 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:34.9548183Z 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:34.9550061Z 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:34.9551932Z 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:34.9553819Z 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:34.9555266Z 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:34.9556798Z 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:34.9558648Z 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:34.9670039Z 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:34.9672001Z 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:34.9673336Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:55:34.9674591Z copying src/executorch/backends/arm/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:55:34.9676071Z 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:34.9677899Z 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:34.9679903Z 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:34.9681666Z 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:34.9683012Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/scripts 2025-06-05T23:55:34.9684318Z 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:34.9685461Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:55:34.9686723Z copying src/executorch/backends/arm/test/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:55:34.9688081Z copying src/executorch/backends/arm/test/conftest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:55:34.9689710Z 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:34.9691069Z 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:34.9692165Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/util 2025-06-05T23:55:34.9693469Z 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:34.9694706Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:55:34.9696183Z 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:34.9698046Z 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:34.9699844Z 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:34.9701522Z 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:34.9703357Z 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:34.9704966Z 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:34.9706743Z 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:34.9708559Z 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:34.9710243Z 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:34.9712168Z 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:34.9713812Z 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:34.9715089Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:55:34.9716305Z 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:34.9717988Z 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:34.9719618Z 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:34.9721386Z 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:34.9722924Z 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:34.9724733Z 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:34.9726348Z 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:34.9728102Z 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:34.9729889Z 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:34.9731812Z 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:34.9733763Z 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:34.9735032Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:55:34.9736382Z 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:34.9738236Z 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:34.9739923Z 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:34.9741672Z 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:34.9743296Z 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:34.9744962Z 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:34.9746506Z 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:34.9748069Z 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:34.9749735Z 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:34.9751473Z 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:34.9753040Z 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:34.9754630Z 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:34.9756267Z 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:34.9757809Z 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:34.9759361Z 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:34.9761084Z 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:34.9762773Z 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:34.9764610Z 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:34.9766441Z 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:34.9830714Z 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:34.9832810Z 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:34.9834465Z 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:34.9836104Z 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:34.9837894Z 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:34.9839483Z 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:34.9841085Z 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:34.9842810Z 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:34.9844388Z 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:34.9846144Z 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:34.9847592Z 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:34.9849161Z 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:34.9850610Z 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:34.9852195Z 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:34.9853890Z 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:34.9855362Z 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:34.9856880Z 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:34.9858365Z 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:34.9859998Z 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:34.9861555Z 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:34.9863104Z 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:34.9864810Z 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:34.9866430Z 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:34.9868056Z 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:34.9869733Z 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:34.9871349Z 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:34.9873052Z 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:34.9874721Z 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:34.9876253Z 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:34.9877947Z 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:34.9879899Z 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:34.9881477Z 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:34.9883376Z 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:34.9885141Z 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:34.9886875Z 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:34.9888382Z 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:34.9890060Z 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:34.9891622Z 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:34.9893196Z 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:34.9895014Z 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:34.9896680Z 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:34.9898271Z 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:34.9899959Z 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:34.9901568Z 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:34.9903276Z 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:34.9904871Z 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:34.9906548Z 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:34.9908308Z 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:34.9909842Z 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:34.9911482Z 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:34.9913235Z 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:34.9914849Z 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:34.9916423Z 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:34.9918099Z 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:34.9919682Z 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:34.9921138Z 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:34.9922710Z 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:34.9924608Z 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:34.9926149Z 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:34.9927858Z 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:34.9984684Z 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:34.9986488Z 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:34.9987987Z 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:34.9989734Z 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:34.9991254Z 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:34.9993024Z 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:34.9994699Z 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:34.9996404Z 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:34.9997897Z 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:34.9999483Z 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:35.0001074Z 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:35.0002286Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:55:35.0003741Z 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:35.0005422Z 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:35.0007283Z 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:35.0009086Z 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:35.0011062Z 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:35.0013172Z 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:35.0015014Z 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:35.0017339Z 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:35.0019563Z 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:35.0021937Z 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:35.0024025Z 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:35.0026320Z 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:35.0028462Z 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:35.0030453Z 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:35.0032407Z 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:35.0034250Z 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:35.0036230Z 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:35.0038496Z 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:35.0040222Z 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:35.0042266Z 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:35.0043929Z 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:35.0045980Z 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:35.0047364Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/quantizer 2025-06-05T23:55:35.0048804Z 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:35.0050163Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-06-05T23:55:35.0051506Z 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:35.0053098Z 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:35.0055042Z 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:35.0056650Z 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:35.0058149Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tosautil 2025-06-05T23:55:35.0059342Z 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:35.0060826Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib 2025-06-05T23:55:35.0062375Z 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:35.0064437Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:55:35.0066310Z 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:35.0068981Z 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:35.0071012Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:55:35.0073033Z 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:35.0075581Z 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:35.0078309Z 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:35.0081248Z 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:35.0083769Z 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:35.0127690Z 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:35.0130350Z 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:35.0132720Z 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:35.0135409Z 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:35.0138035Z 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:35.0140656Z 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:35.0143575Z 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:35.0146141Z 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:35.0148773Z 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:35.0151582Z 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:35.0154273Z 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:35.0157025Z 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:35.0159352Z 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:35.0162027Z 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:35.0164748Z 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:35.0167386Z 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:35.0169846Z 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:35.0172232Z 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:35.0174959Z 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:35.0177278Z 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:35.0179824Z 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:35.0182095Z 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:35.0184374Z 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:35.0186641Z 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:35.0188960Z 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:35.0191379Z 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:35.0193706Z 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:35.0196273Z 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:35.0198666Z 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:35.0200372Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts 2025-06-05T23:55:35.0202441Z 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:35.0204344Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit 2025-06-05T23:55:35.0206462Z 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:35.0208340Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:55:35.0210272Z 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:35.0212255Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan 2025-06-05T23:55:35.0214347Z 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:35.0216769Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:55:35.0219069Z 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:35.0222077Z 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:35.0224425Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:55:35.0295332Z 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:35.0298270Z 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:35.0300521Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:55:35.0302834Z 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:35.0305050Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:55:35.0307554Z 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:35.0310825Z 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:35.0313764Z 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:35.0316854Z 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:35.0319617Z 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:35.0321682Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:55:35.0324043Z 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:35.0327182Z 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:35.0329868Z 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:35.0331981Z 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:35.0334420Z 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:35.0336967Z 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:35.0339465Z 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:35.0341840Z 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:35.0344154Z 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:35.0346405Z 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:35.0348969Z 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:35.0351513Z 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:35.0353824Z 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:35.0356249Z 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:35.0358482Z 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:35.0360908Z 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:35.0363144Z 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:35.0365376Z 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:35.0367617Z 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:35.0369820Z 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:35.0371995Z 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:35.0374279Z 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:35.0376447Z 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:35.0378983Z 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:35.0381154Z 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:35.0383329Z 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:35.0385472Z 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:35.0388444Z 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:35.0454766Z 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:35.0458201Z 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:35.0460845Z 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:35.0463288Z 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:35.0465806Z 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:35.0468054Z 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:35.0470591Z 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:35.0473037Z 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:35.0475322Z 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:35.0477659Z 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:35.0480495Z 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:35.0482990Z 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:35.0486473Z 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:35.0489339Z 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:35.0492306Z 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:35.0496277Z 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:35.0499947Z 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:35.0503937Z 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:35.0506876Z 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:35.0509717Z 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:35.0513211Z 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:35.0516737Z 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:35.0519207Z 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:35.0521896Z 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:35.0525609Z 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:35.0529131Z 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:35.0532798Z 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:35.0535587Z 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:35.0538513Z 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:35.0541769Z 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:35.0544554Z 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:35.0547450Z 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:35.0551269Z 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:35.0555098Z 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:35.0557929Z 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:35.0560742Z 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:35.0564361Z 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:35.0568048Z 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:35.0571612Z 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:35.0575759Z 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:35.0579602Z 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:35.0583375Z 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:35.0586934Z 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:35.0591000Z 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:35.0595485Z 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:35.0599118Z 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:35.0603549Z 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:35.0606907Z 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:35.0610316Z 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:35.0614091Z 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:35.0617566Z 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:35.0620939Z 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:35.0624559Z 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:35.0628989Z 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:35.0632450Z 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:35.0635813Z 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:35.0639290Z 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:35.0642138Z 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:35.0644988Z 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:35.0648680Z 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:35.0651570Z 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:35.0655346Z 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:35.0659805Z 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:35.0698046Z 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:35.0705716Z 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:35.0709897Z 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:35.0713774Z 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:35.0717503Z 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:35.0720301Z 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:35.0725498Z 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:35.0732870Z 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:35.0738494Z 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:35.0745197Z 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:35.0752391Z 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:35.0757050Z 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:35.0759544Z 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:35.0762527Z 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:35.0765512Z 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:35.0769535Z 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:35.0775284Z 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:35.0781460Z 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:35.0785545Z 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:35.0788571Z 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:35.0792089Z 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:35.0797029Z 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:35.0799642Z 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:35.0802225Z 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:35.0807923Z 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:35.0814473Z 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:35.0821250Z 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:35.0827884Z 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:35.0834003Z 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:35.0840408Z 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:35.0846711Z 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:35.0852838Z 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:35.0859439Z 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:35.0864217Z 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:35.0870217Z 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:35.0874759Z 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:35.0879622Z 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:35.0884385Z 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:35.0890543Z 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:35.0895739Z 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:35.0898003Z 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:35.0900442Z 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:35.0902816Z 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:35.0904993Z 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:35.0907878Z 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:35.0910773Z 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:35.0914613Z 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:35.0920135Z 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:35.0925569Z 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:35.0928872Z 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:35.0933035Z 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:35.0936238Z 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:35.0939573Z 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:35.0945793Z 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:35.0951858Z 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:35.0954963Z 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:35.0957136Z 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:35.0959388Z 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:35.0961709Z 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:35.0964717Z 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:35.0967808Z 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:35.0971009Z 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:35.0974256Z 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:35.0977372Z 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:35.0980651Z 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:35.0983689Z 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:35.0986752Z 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:35.0992007Z 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:35.0998160Z 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:35.1004179Z 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:35.1010144Z 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:35.1014514Z 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:35.1018057Z 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:35.1021886Z 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:35.1025548Z 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:35.1029197Z 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:35.1032874Z 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:35.1036260Z 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:35.1039274Z 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:35.1042848Z 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:35.1045521Z 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:35.1048273Z 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:35.1051572Z 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:35.1054427Z 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:35.1057243Z 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:35.1060838Z 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:35.1064920Z 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:35.1068764Z 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:35.1072688Z 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:35.1076305Z 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:35.1080192Z 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:35.1082938Z 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:35.1085775Z 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:35.1089348Z 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:35.1092909Z 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:35.1097950Z 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:35.1101301Z 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:35.1103967Z 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:35.1107358Z 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:35.1110620Z 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:35.1114347Z 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:35.1118886Z 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:35.1123040Z 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:35.1127113Z 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:35.1130893Z 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:35.1133479Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:35.1134767Z copying src/executorch/backends/cadence/aot/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:35.1136190Z copying src/executorch/backends/cadence/aot/compiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:35.1137874Z 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:35.1139765Z 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:35.1141349Z 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:35.1143085Z 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:35.1144954Z 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:35.1146465Z 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:35.1148341Z 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:35.1149966Z 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:35.1151599Z 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:35.1153259Z copying src/executorch/backends/cadence/aot/passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:35.1154732Z 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:35.1156326Z 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:35.1157761Z 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:35.1159247Z 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:35.1160887Z 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:35.1162614Z copying src/executorch/backends/cadence/aot/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:35.1164152Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:55:35.1165395Z copying src/executorch/backends/cadence/runtime/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:55:35.1167258Z copying src/executorch/backends/cadence/runtime/executor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:55:35.1169085Z copying src/executorch/backends/cadence/runtime/runtime.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:55:35.1170828Z copying src/executorch/backends/cadence/runtime/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:55:35.1172121Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:55:35.1173425Z 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:35.1175240Z 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:35.1176879Z 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:35.1178266Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-06-05T23:55:35.1180127Z 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:35.1182178Z 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:35.1184258Z 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:35.1186555Z 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:35.1187913Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:55:35.1189566Z 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:35.1191719Z 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:35.1193582Z 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:35.1195570Z 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:35.1197409Z 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:35.1199078Z 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:35.1234960Z 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:35.1237236Z 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:35.1239330Z 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:35.1240759Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO 2025-06-05T23:55:35.1242284Z 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:35.1243701Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:55:35.1245296Z 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:35.1247287Z 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:35.1248863Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:55:35.1250453Z 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:35.1252613Z 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:35.1254863Z 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:35.1256556Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto 2025-06-05T23:55:35.1257924Z 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:35.1259619Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-06-05T23:55:35.1261431Z 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:35.1263335Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:55:35.1265075Z 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:35.1267234Z 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:35.1269184Z 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:35.1271538Z 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:35.1273297Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:55:35.1275410Z 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:35.1277718Z 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:35.1280819Z 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:35.1282641Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:55:35.1284628Z 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:35.1287272Z 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:35.1289668Z 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:35.1292108Z 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:35.1294297Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:55:35.1296233Z 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:35.1298608Z 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:35.1300989Z 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:35.1303364Z 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:35.1305163Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:55:35.1306832Z 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:35.1309313Z 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:35.1311264Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:55:35.1313062Z 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:35.1315341Z 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:35.1317169Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:55:35.1318881Z 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:35.1321405Z 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:35.1323971Z 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:35.1326196Z 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:35.1328523Z 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:35.1330910Z 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:35.1333235Z 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:35.1335087Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:55:35.1371931Z 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:35.1376131Z 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:35.1380542Z 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:35.1384781Z 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:35.1388830Z 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:35.1392865Z 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:35.1396809Z 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:35.1401098Z 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:35.1405355Z 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:35.1409127Z 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:35.1412901Z 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:35.1417047Z 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:35.1420935Z 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:35.1444738Z 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:35.1448742Z 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:35.1451445Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops 2025-06-05T23:55:35.1453521Z 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:35.1455824Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-06-05T23:55:35.1458047Z 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:35.1460407Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test 2025-06-05T23:55:35.1462559Z 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:35.1465136Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:55:35.1468134Z 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:35.1472315Z 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:35.1475381Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:55:35.1478061Z 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:35.1481325Z 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:35.1484401Z 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:35.1487535Z 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:35.1491092Z 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:35.1494423Z 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:35.1497890Z 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:35.1500993Z 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:35.1504085Z 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:35.1507279Z 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:35.1509663Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes 2025-06-05T23:55:35.1511849Z copying src/executorch/backends/mediatek/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes 2025-06-05T23:55:35.1514799Z 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:35.1517274Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:55:35.1519470Z copying src/executorch/backends/mediatek/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:55:35.1522382Z copying src/executorch/backends/mediatek/quantizer/annotator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:55:35.1525447Z copying src/executorch/backends/mediatek/quantizer/qconfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:55:35.1528360Z copying src/executorch/backends/mediatek/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:55:35.1530653Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-06-05T23:55:35.1532972Z 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:35.1536227Z 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:35.1539338Z 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:35.1541615Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-06-05T23:55:35.1543701Z 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:35.1546493Z 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:35.1549334Z 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:35.1552267Z 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:35.1554473Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:55:35.1556720Z 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:35.1559910Z copying src/executorch/backends/nxp/quantizer/patterns.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:55:35.1562634Z copying src/executorch/backends/nxp/quantizer/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:55:35.1564965Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:55:35.1567033Z 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:35.1569634Z copying src/executorch/backends/nxp/tests/executors.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:55:35.1572238Z 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:35.1575108Z copying src/executorch/backends/nxp/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:55:35.1577680Z 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:35.1580624Z 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:35.1583429Z 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:35.1586256Z 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:35.1589161Z 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:35.1592105Z 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:35.1595011Z 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:35.1597267Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-06-05T23:55:35.1599714Z 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:35.1602936Z 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:35.1605992Z 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:35.1609029Z 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:35.1611573Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:55:35.1614347Z 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:35.1617355Z 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:35.1620287Z 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:35.1623515Z 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:35.1625942Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib 2025-06-05T23:55:35.1628482Z 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:35.1630880Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:55:35.1633786Z 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:35.1637282Z 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:35.1640061Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:55:35.1642752Z 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:35.1646166Z 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:35.1649824Z 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:35.1653402Z 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:35.1657142Z 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:35.1660784Z 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:35.1663581Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:55:35.1666359Z 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:35.1670186Z 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:35.1674159Z 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:35.1678104Z 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:35.1681491Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:55:35.1684344Z 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:35.1688258Z 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:35.1692206Z 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:35.1696177Z 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:35.1699253Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters 2025-06-05T23:55:35.1702639Z 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:35.1706098Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:55:35.1709618Z 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:35.1714338Z 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:35.1719216Z 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:35.1724104Z 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:35.1729253Z 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:35.1734371Z 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:35.1739220Z 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:35.1744063Z 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:35.1749134Z 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:35.1754131Z 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:35.1759048Z 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:35.1763908Z 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:35.1768868Z 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:35.1772506Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:55:35.1775913Z 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:35.1781145Z 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:35.1785797Z 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:35.1790407Z 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:35.1793642Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:55:35.1796301Z 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:35.1799746Z 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:35.1803333Z 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:35.1807000Z 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:35.1810415Z 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:35.1814072Z 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:35.1817577Z 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:35.1821190Z 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:35.1824976Z 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:35.1828722Z 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:35.1832681Z 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:35.1836807Z 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:35.1840670Z 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:35.1844305Z 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:35.1847960Z 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:35.1851588Z 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:35.1855421Z 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:35.1858873Z 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:35.1863298Z 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:35.1866906Z 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:35.1870505Z 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:35.1874009Z 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:35.1877439Z 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:35.1881257Z 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:35.1884939Z 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:35.1888660Z 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:35.1892273Z 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:35.1895942Z 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:35.1899406Z 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:35.1902893Z 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:35.1906587Z 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:35.1910259Z 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:35.1913827Z 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:35.1917410Z 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:35.1921219Z 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:35.1924923Z 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:35.1928530Z 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:35.1932396Z 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:35.1934187Z 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:35.1936071Z 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:35.1937881Z 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:35.1939782Z 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:35.1941384Z 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:35.1942976Z 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:35.1944688Z 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:35.1946354Z 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:35.1947954Z 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:35.1949582Z 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:35.1951256Z 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:35.1952997Z 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:35.1954981Z 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:35.1956651Z 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:35.1958253Z 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:35.1959882Z 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:35.1961569Z 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:35.1963212Z 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:35.1964897Z 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:35.1966627Z 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:35.1968637Z 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:35.1970286Z 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:35.1972166Z 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:35.1973841Z 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:35.1975415Z 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:35.1977027Z 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:35.1979176Z 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:35.1980913Z 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:35.1982501Z 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:35.1984099Z 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:35.1985715Z 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:35.1987416Z 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:35.1988965Z 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:35.1990936Z 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:35.1992627Z 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:35.1994300Z 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:35.1995986Z 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:35.1997637Z 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:35.1999323Z 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:35.2001069Z 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:35.2002792Z 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:35.2012284Z 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:35.2014114Z 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:35.2016001Z 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:35.2017470Z 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:35.2019049Z 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:35.2020600Z 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:35.2022479Z 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:35.2024355Z 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:35.2025991Z 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:35.2027628Z 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:35.2029125Z 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:35.2030769Z 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:35.2032371Z 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:35.2033937Z 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:35.2035553Z 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:35.2037074Z 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:35.2038740Z 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:35.2040293Z 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:35.2042027Z 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:35.2043802Z 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:35.2045469Z 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:35.2047068Z 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:35.2048880Z 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:35.2050647Z 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:35.2052206Z 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:35.2054055Z 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:35.2055791Z 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:35.2057516Z 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:35.2059211Z 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:35.2060810Z 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:35.2062578Z 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:35.2064424Z 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:35.2066190Z 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:35.2067880Z 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:35.2069475Z 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:35.2071211Z 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:35.2072804Z 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:35.2074416Z 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:35.2076094Z 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:35.2077778Z 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:35.2079659Z 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:35.2081261Z 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:35.2083276Z 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:35.2084890Z 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:35.2086747Z 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:35.2088352Z 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:35.2089983Z 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:35.2091607Z 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:35.2093223Z 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:35.2138258Z 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:35.2140247Z 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:35.2141957Z 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:35.2143710Z 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:35.2145454Z 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:35.2147081Z 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:35.2148740Z 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:35.2150354Z 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:35.2152161Z 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:35.2153776Z 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:35.2155670Z 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:35.2157528Z 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:35.2159524Z 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:35.2161433Z 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:35.2163676Z 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:35.2165666Z 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:35.2167860Z 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:35.2169490Z 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:35.2171092Z 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:35.2172801Z 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:35.2174684Z 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:35.2176406Z 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:35.2178217Z 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:35.2180238Z 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:35.2182127Z 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:35.2184082Z 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:35.2185861Z 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:35.2187633Z 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:35.2189376Z 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:35.2191199Z 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:35.2192942Z 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:35.2194569Z 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:35.2196101Z 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:35.2197638Z 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:35.2199162Z 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:35.2200965Z 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:35.2202757Z 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:35.2204348Z 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:35.2205974Z 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:35.2207739Z 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:35.2209385Z 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:35.2212979Z 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:35.2216635Z 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:35.2220513Z 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:35.2224566Z 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:35.2228262Z 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:35.2231996Z 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:35.2235910Z 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:35.2264542Z 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:35.2268753Z 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:35.2272591Z 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:35.2276221Z 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:35.2280031Z 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:35.2283500Z 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:35.2287035Z 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:35.2290457Z 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:35.2293553Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:55:35.2296933Z 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:35.2301473Z 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:35.2305813Z 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:35.2310188Z 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:35.2314549Z 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:35.2318937Z 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:35.2323389Z 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:35.2327912Z 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:35.2332570Z 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:35.2337605Z 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:35.2342324Z 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:35.2346768Z 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:35.2351246Z 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:35.2355714Z 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:35.2360252Z 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:35.2364568Z 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:35.2369219Z 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:35.2373810Z 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:35.2378871Z 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:35.2383234Z 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:35.2387677Z 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:35.2392016Z 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:35.2396363Z 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:35.2400708Z 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:35.2405198Z 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:35.2409525Z 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:35.2413890Z 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:35.2418107Z 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:35.2422456Z 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:35.2426918Z 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:35.2431376Z 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:35.2435781Z 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:35.2440181Z 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:35.2444899Z 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:35.2449258Z 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:35.2454059Z 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:35.2458492Z 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:35.2463004Z 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:35.2467357Z 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:35.2471760Z 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:35.2476111Z 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:35.2480883Z 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:35.2485126Z 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:35.2489531Z 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:35.2493927Z 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:35.2498286Z 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:35.2502683Z 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:35.2506990Z 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:35.2511282Z 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:35.2515663Z 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:35.2520208Z 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:35.2524431Z 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:35.2528979Z 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:35.2533263Z 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:35.2537653Z 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:35.2542021Z 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:35.2546559Z 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:35.2550906Z 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:35.2555326Z 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:35.2559880Z 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:35.2564480Z 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:35.2569203Z 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:35.2573573Z 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:35.2578175Z 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:35.2582714Z 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:35.2587345Z 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:35.2591438Z 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:35.2596106Z 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:35.2600583Z 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:35.2605385Z 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:35.2609680Z 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:35.2614194Z 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:35.2618773Z 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:35.2623344Z 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:35.2627841Z 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:35.2632257Z 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:35.2636572Z 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:35.2640884Z 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:35.2645254Z 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:35.2649719Z 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:35.2654537Z 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:35.2659425Z 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:35.2663085Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-06-05T23:55:35.2666446Z 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:35.2669731Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:55:35.2672788Z 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:35.2676509Z 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:35.2680568Z 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:35.2683578Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:55:35.2686776Z 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:35.2691165Z 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:35.2695862Z 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:35.2700929Z 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:35.2705894Z 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:35.2710389Z 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:35.2715064Z 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:35.2719642Z 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:35.2724102Z 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:35.2728878Z 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:35.2733562Z 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:35.2738179Z 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:35.2742759Z 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:35.2747341Z 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:35.2752310Z 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:35.2757427Z 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:35.2761068Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:55:35.2764186Z 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:35.2768398Z 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:35.2772574Z 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:35.2776857Z 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:35.2780975Z 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:35.2785139Z 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:35.2789244Z 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:35.2793334Z 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:35.2797474Z 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:35.2800349Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:55:35.2802590Z copying src/executorch/backends/openvino/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:55:35.2805557Z copying src/executorch/backends/openvino/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:55:35.2807834Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests 2025-06-05T23:55:35.2809990Z 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:35.2812262Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/models 2025-06-05T23:55:35.2814868Z 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:35.2817365Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:55:35.2819721Z 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:35.2823098Z 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:35.2826064Z 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:35.2829298Z 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:35.2832324Z 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:35.2835412Z 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:35.2838413Z 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:35.2841418Z 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:35.2844439Z 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:35.2847487Z 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:35.2850475Z 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:35.2852743Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:35.2855017Z copying src/executorch/backends/qualcomm/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:35.2857983Z 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:35.2861101Z 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:35.2864105Z 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:35.2867015Z 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:35.2869937Z 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:35.2872879Z 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:35.2875969Z 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:35.2879229Z 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:35.2882200Z 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:35.2885098Z 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:35.2888055Z 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:35.2891004Z 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:35.2894452Z 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:35.2897783Z 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:35.2900711Z 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:35.2903789Z 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:35.2906890Z 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:35.2909665Z 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:35.2912538Z 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:35.2915679Z 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:35.2918631Z 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:35.2921452Z 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:35.2924379Z 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:35.2927376Z 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:35.2930462Z 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:35.2933526Z 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:35.2936681Z 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:35.2939840Z 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:35.2942831Z 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:35.2945832Z 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:35.2948781Z 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:35.2951763Z 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:35.2954786Z 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:35.2957781Z 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:35.2960673Z 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:35.2963355Z copying src/executorch/backends/qualcomm/_passes/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:35.2965614Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:35.2967771Z copying src/executorch/backends/qualcomm/builders/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:35.2970643Z 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:35.2973531Z 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:35.2976608Z 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:35.2979977Z 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:35.2982744Z 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:35.2985525Z 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:35.2988353Z 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:35.2991210Z 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:35.2994049Z 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:35.2997113Z 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:35.2999942Z 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:35.3002726Z 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:35.3005390Z 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:35.3008175Z 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:35.3010994Z 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:35.3013932Z 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:35.3016720Z 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:35.3019602Z 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:35.3022518Z 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:35.3025394Z 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:35.3028489Z 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:35.3031435Z 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:35.3034627Z 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:35.3037318Z 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:35.3040179Z 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:35.3042980Z 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:35.3045996Z 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:35.3049033Z 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:35.3051882Z 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:35.3054665Z 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:35.3057475Z 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:35.3060324Z 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:35.3063179Z 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:35.3066140Z 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:35.3069107Z 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:35.3072009Z 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:35.3074912Z 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:35.3077888Z 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:35.3081218Z 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:35.3084094Z 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:35.3086869Z 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:35.3089649Z 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:35.3092529Z 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:35.3095663Z 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:35.3098755Z 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:35.3101545Z 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:35.3104643Z 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:35.3107482Z 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:35.3110349Z 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:35.3113138Z 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:35.3115825Z 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:35.3118581Z 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:35.3121363Z 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:35.3124139Z 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:35.3126915Z 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:35.3129688Z 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:35.3132546Z 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:35.3135541Z 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:35.3138385Z 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:35.3141241Z 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:35.3144275Z 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:35.3147271Z 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:35.3150273Z 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:35.3153241Z 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:35.3156316Z 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:35.3159370Z 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:35.3162161Z 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:35.3164924Z 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:35.3168014Z 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:35.3170920Z 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:35.3174196Z 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:35.3177093Z 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:35.3180302Z 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:35.3183279Z 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:35.3186157Z 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:35.3189066Z 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:35.3191945Z 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:35.3194829Z 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:35.3197700Z 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:35.3200461Z 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:35.3203355Z 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:35.3206317Z 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:35.3209177Z 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:35.3212084Z 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:35.3215239Z 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:35.3218379Z 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:35.3221382Z 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:35.3224255Z 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:35.3227148Z copying src/executorch/backends/qualcomm/builders/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:35.3229361Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/debugger 2025-06-05T23:55:35.3231512Z copying src/executorch/backends/qualcomm/debugger/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/debugger 2025-06-05T23:55:35.3233842Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:55:35.3236317Z 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:35.3239403Z 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:35.3242802Z copying src/executorch/backends/qualcomm/partition/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:55:35.3245140Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:55:35.3247524Z copying src/executorch/backends/qualcomm/quantizer/annotators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:55:35.3250740Z 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:35.3254051Z copying src/executorch/backends/qualcomm/quantizer/qconfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:55:35.3256716Z copying src/executorch/backends/qualcomm/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:55:35.3258941Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-06-05T23:55:35.3261281Z 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:35.3264571Z 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:35.3267096Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:55:35.3269405Z copying src/executorch/backends/qualcomm/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:55:35.3272361Z 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:35.3275291Z copying src/executorch/backends/qualcomm/tests/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:55:35.3277149Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:55:35.3279303Z copying src/executorch/backends/qualcomm/utils/constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:55:35.3281853Z copying src/executorch/backends/qualcomm/utils/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:55:35.3284069Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:55:35.3286842Z 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:35.3290610Z 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:35.3293334Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test 2025-06-05T23:55:35.3295872Z 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:35.3299248Z 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:35.3302419Z 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:35.3304726Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:55:35.3307202Z copying src/executorch/backends/vulkan/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:55:35.3310161Z 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:35.3313011Z 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:35.3315851Z 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:35.3318896Z 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:35.3322084Z 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:35.3325088Z 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:35.3327790Z 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:35.3330669Z 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:35.3332853Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/partitioner 2025-06-05T23:55:35.3335360Z 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:35.3337746Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/quantizer 2025-06-05T23:55:35.3340093Z 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:35.3342368Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime 2025-06-05T23:55:35.3344558Z 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:35.3346767Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:55:35.3349265Z 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:35.3352579Z 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:35.3355883Z 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:35.3358275Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-06-05T23:55:35.3360419Z 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:35.3363235Z 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:35.3366090Z 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:35.3368974Z 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:35.3371189Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests 2025-06-05T23:55:35.3373790Z 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:35.3377011Z 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:35.3380560Z 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:35.3383155Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:55:35.3385678Z 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:35.3388972Z 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:35.3392352Z 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:35.3395800Z 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:35.3399228Z 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:35.3402582Z 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:35.3404931Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/volk 2025-06-05T23:55:35.3407378Z 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:35.3410052Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:55:35.3413271Z 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:35.3417581Z 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:35.3421682Z 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:35.3425802Z 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:35.3429825Z 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:35.3435155Z 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:35.3439245Z 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:35.3442632Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-06-05T23:55:35.3446469Z 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:35.3450039Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-06-05T23:55:35.3454379Z 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:35.3457849Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:55:35.3459953Z copying src/executorch/backends/xnnpack/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:55:35.3462918Z 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:35.3466069Z 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:35.3468907Z 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:35.3471597Z 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:35.3474491Z 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:35.3477447Z 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:35.3480492Z 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:35.3483315Z 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:35.3486244Z 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:35.3489130Z 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:35.3492002Z 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:35.3494242Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:35.3496427Z copying src/executorch/backends/xnnpack/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:35.3499304Z 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:35.3502170Z 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:35.3504998Z 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:35.3507812Z 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:35.3510757Z 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:35.3513957Z 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:35.3516817Z 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:35.3519866Z 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:35.3522726Z 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:35.3525592Z 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:35.3528443Z 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:35.3531530Z 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:35.3534767Z 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:35.3537813Z 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:35.3540611Z 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:35.3543460Z 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:35.3546320Z 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:35.3549259Z 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:35.3552185Z 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:35.3555049Z 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:35.3557986Z 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:35.3560784Z 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:35.3563990Z 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:35.3566984Z 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:35.3569885Z 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:35.3572843Z 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:35.3575825Z 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:35.3578917Z 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:35.3580799Z 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:35.3595494Z 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:35.3597095Z 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:35.3598803Z 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:35.3600375Z 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:35.3601961Z 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:35.3617095Z 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:35.3618848Z 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:35.3620840Z 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:35.3622896Z 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:35.3624829Z 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:35.3626617Z 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:35.3628539Z 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:35.3630550Z 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:35.3632496Z 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:35.3634353Z 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:35.3636313Z 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:35.3638316Z 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:35.3640086Z 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:35.3642261Z 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:35.3643706Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-06-05T23:55:35.3645273Z copying src/executorch/backends/xnnpack/partition/configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-06-05T23:55:35.3647395Z 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:35.3649247Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer 2025-06-05T23:55:35.3650881Z 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:35.3653203Z 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:35.3654803Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:55:35.3656351Z 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:35.3658508Z 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:35.3660095Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test 2025-06-05T23:55:35.3661535Z 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:35.3663236Z 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:35.3664871Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party 2025-06-05T23:55:35.3666696Z 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:35.3668411Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:55:35.3670371Z copying src/executorch/backends/xnnpack/utils/configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:55:35.3673185Z 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:35.3675943Z copying src/executorch/backends/xnnpack/utils/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:55:35.3679065Z 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:35.3681444Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:55:35.3684026Z 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:35.3687416Z 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:35.3690993Z 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:35.3694687Z 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:35.3698201Z 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:35.3701792Z 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:35.3704466Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs 2025-06-05T23:55:35.3707148Z 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:35.3710492Z 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:35.3712984Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:55:35.3715719Z 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:35.3718809Z 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:35.3722088Z 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:35.3725327Z 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:35.3728537Z 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:35.3731752Z 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:35.3735178Z 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:35.3737748Z 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:35.3740971Z 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:35.3744101Z 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:35.3746924Z 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:35.3748734Z 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:35.3751786Z 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:35.3754101Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:55:35.3756626Z 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:35.3758267Z 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:35.3760004Z 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:35.3761906Z 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:35.3763851Z 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:35.3765737Z 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:35.3767399Z 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:35.3769373Z 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:35.3771266Z 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:35.3773129Z 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:35.3775333Z 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:35.3776987Z 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:35.3779088Z 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:35.3780757Z 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:35.3782414Z 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:35.3784181Z 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:35.3785959Z 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:35.3787570Z 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:35.3789160Z 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:35.3790753Z 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:35.3792536Z 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:35.3794330Z 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:35.3795983Z 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:35.3797791Z 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:35.3799593Z 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:35.3801166Z 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:35.3803006Z 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:35.3804822Z 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:35.3806437Z 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:35.3807994Z 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:35.3809546Z 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:35.3811071Z 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:35.3812785Z 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:35.3814752Z 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:35.3816291Z 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:35.3818041Z 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:35.3819816Z 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:35.3820749Z 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:35.3821471Z 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:35.3822188Z 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:35.3823015Z 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:35.3823991Z 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:35.3824690Z 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:35.3825074Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:55:35.3826075Z 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:35.3826907Z 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:35.3827804Z 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:35.3828850Z 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:35.3829701Z 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:35.3830515Z 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:35.3831329Z 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:35.3831739Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:55:35.3832594Z 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:35.3833444Z 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:35.3834297Z 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:35.3834708Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization 2025-06-05T23:55:35.3905322Z 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:35.3906719Z 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:35.3907235Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester 2025-06-05T23:55:35.3908240Z 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:35.3908982Z 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:35.3909392Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:55:35.3910203Z 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:35.3910633Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:55:35.3911454Z 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:35.3911898Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:55:35.3912729Z 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:35.3913195Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:55:35.3914098Z 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:35.3914605Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:55:35.3915549Z 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:35.3916464Z 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:35.3917396Z 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:35.3917898Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-06-05T23:55:35.3918839Z 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:35.3919327Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:55:35.3920272Z 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:35.3921259Z 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:35.3922320Z 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:35.3923287Z 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:35.3923882Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:35.3924904Z 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:35.3925984Z 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:35.3927007Z 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:35.3928068Z 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:35.3929112Z 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:35.3930134Z 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:35.3931096Z 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:35.3932137Z 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:35.3933138Z 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:35.3934252Z 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:35.3935232Z 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:35.3936292Z 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:35.3937294Z 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:35.3938394Z 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:35.3939413Z 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:35.3940398Z 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:35.3941385Z 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:35.3942366Z 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:35.3943449Z 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:35.3944486Z 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:35.3945601Z 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:35.3946634Z 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:35.3947621Z 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:35.3948528Z 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:35.4369300Z 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:35.4370667Z 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:35.4372416Z 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:35.4373304Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:55:35.4375426Z 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:35.4377505Z 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:35.4379753Z 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:35.4380692Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:55:35.4382564Z 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:35.4383070Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:55:35.4384056Z copying src/executorch/codegen/api/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:55:35.4385075Z copying src/executorch/codegen/api/custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:55:35.4386028Z copying src/executorch/codegen/api/et_cpp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:55:35.4387030Z copying src/executorch/codegen/api/unboxing.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:55:35.4387589Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:35.4388810Z 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:35.4389953Z copying src/executorch/codegen/test/test_executorch_gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:35.4391535Z copying src/executorch/codegen/test/test_executorch_signatures.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:35.4392739Z copying src/executorch/codegen/test/test_executorch_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:35.4394208Z copying src/executorch/codegen/test/test_executorch_unboxing.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:35.4395323Z copying src/executorch/codegen/test/test_selective_build.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:35.4395906Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:35.4396906Z copying src/executorch/codegen/tools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:35.4397977Z copying src/executorch/codegen/tools/gen_all_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:35.4399065Z copying src/executorch/codegen/tools/gen_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:35.4400087Z copying src/executorch/codegen/tools/gen_ops_def.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:35.4401326Z 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:35.4402367Z copying src/executorch/codegen/tools/merge_yaml.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:35.4403429Z copying src/executorch/codegen/tools/yaml_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:35.4404027Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:55:35.4405103Z copying src/executorch/codegen/api/types/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:55:35.4406335Z copying src/executorch/codegen/api/types/signatures.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:55:35.4407398Z copying src/executorch/codegen/api/types/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:55:35.4408038Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-06-05T23:55:35.4409276Z 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:35.4410517Z 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:35.4411829Z 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:35.4413204Z 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:35.4413971Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-06-05T23:55:35.4415167Z copying src/executorch/devtools/backend_debug/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-06-05T23:55:35.4416470Z 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:35.4417011Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:55:35.4418264Z copying src/executorch/devtools/bundled_program/config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:55:35.4419462Z copying src/executorch/devtools/bundled_program/core.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:55:35.4420758Z copying src/executorch/devtools/bundled_program/version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:55:35.4421616Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-06-05T23:55:35.4422779Z 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:35.4424127Z 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:35.4424691Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:55:35.4425877Z copying src/executorch/devtools/etdump/schema_flatcc.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:55:35.4426966Z copying src/executorch/devtools/etdump/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:55:35.4427543Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:55:35.4428671Z copying src/executorch/devtools/etrecord/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:55:35.4429785Z copying src/executorch/devtools/etrecord/_etrecord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:55:35.4430418Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:35.4431574Z copying src/executorch/devtools/inspector/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:35.4432725Z copying src/executorch/devtools/inspector/_inspector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:35.4433973Z copying src/executorch/devtools/inspector/_inspector_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:35.4435357Z copying src/executorch/devtools/inspector/_intermediate_output_capturer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:35.4436615Z copying src/executorch/devtools/inspector/inspector_cli.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:35.4437295Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/size_analysis_tool 2025-06-05T23:55:35.4438753Z 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:35.4440222Z 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:35.4440893Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:55:35.4442109Z copying src/executorch/devtools/visualization/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:55:35.4527621Z copying src/executorch/devtools/visualization/visualization_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:55:35.4529183Z copying src/executorch/devtools/visualization/visualization_utils_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:55:35.4529887Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug/tests 2025-06-05T23:55:35.4531409Z 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:35.4532152Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-06-05T23:55:35.4533143Z 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:35.4534111Z 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:35.4534836Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-06-05T23:55:35.4535616Z 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:35.4536147Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test 2025-06-05T23:55:35.4537050Z 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:35.4537780Z 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:35.4538675Z 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:35.4539071Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/util 2025-06-05T23:55:35.4539796Z 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:35.4540254Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/test 2025-06-05T23:55:35.4541306Z 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:35.4541758Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/test 2025-06-05T23:55:35.4542642Z 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:35.4543048Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/tests 2025-06-05T23:55:35.4543856Z 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:35.4544205Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/tests 2025-06-05T23:55:35.4544918Z 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:35.4545368Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:55:35.4546163Z 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:35.4546894Z 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:35.4547806Z 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:35.4548560Z 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:35.4549410Z 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:35.4549787Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:55:35.4550464Z 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:35.4551173Z 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:35.4552057Z 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:35.4552864Z 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:35.4553664Z 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:35.4554033Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:55:35.4554722Z copying src/executorch/examples/models/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:55:35.4555329Z copying src/executorch/examples/models/checkpoint.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:55:35.4555921Z copying src/executorch/examples/models/model_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:55:35.4556637Z copying src/executorch/examples/models/model_factory.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:55:35.4557044Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-06-05T23:55:35.4557767Z 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:35.4558553Z 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:35.4559411Z 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:35.4560113Z 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:35.4560807Z 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:35.4561289Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-06-05T23:55:35.4562125Z 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:35.4562887Z 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:35.4563869Z 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:35.4564638Z 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:35.4565441Z 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:35.4566013Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts 2025-06-05T23:55:35.4566807Z 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:35.4567532Z 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:35.4567890Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3 2025-06-05T23:55:35.4568570Z 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:35.4569417Z 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:35.4569904Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:55:35.4570523Z copying src/executorch/examples/models/edsr/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:55:35.4571306Z copying src/executorch/examples/models/edsr/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:55:35.4571758Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam 2025-06-05T23:55:35.4572477Z 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:35.4692043Z 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:35.4692614Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt 2025-06-05T23:55:35.4693360Z 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:35.4694174Z 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:35.4694579Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3 2025-06-05T23:55:35.4695432Z 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:35.4696293Z 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:35.4696661Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4 2025-06-05T23:55:35.4697547Z 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:35.4698381Z 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:35.4698817Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:35.4699563Z copying src/executorch/examples/models/llama/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:35.4700289Z copying src/executorch/examples/models/llama/attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:35.4700980Z 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:35.4701655Z 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:35.4702514Z 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:35.4703299Z 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:35.4703967Z copying src/executorch/examples/models/llama/fairseq2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:35.4704897Z 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:35.4705657Z 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:35.4706579Z 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:35.4707521Z copying src/executorch/examples/models/llama/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:35.4708186Z 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:35.4708919Z copying src/executorch/examples/models/llama/norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:35.4709730Z copying src/executorch/examples/models/llama/rope.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:35.4710502Z 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:35.4710905Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision 2025-06-05T23:55:35.4711914Z 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:35.4712272Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:55:35.4712898Z copying src/executorch/examples/models/llava/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:55:35.4713685Z 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:35.4714410Z copying src/executorch/examples/models/llava/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:55:35.4714736Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:55:35.4715349Z copying src/executorch/examples/models/lstm/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:55:35.4715962Z copying src/executorch/examples/models/lstm/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:55:35.4716382Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:55:35.4717239Z copying src/executorch/examples/models/mobilebert/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:55:35.4717923Z copying src/executorch/examples/models/mobilebert/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:55:35.4718428Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2 2025-06-05T23:55:35.4719270Z 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:35.4719994Z 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:35.4720428Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3 2025-06-05T23:55:35.4721226Z 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:35.4721930Z 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:35.4722328Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini-lora 2025-06-05T23:55:35.4723106Z 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:35.4723598Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:55:35.4724385Z 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:35.4725186Z 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:35.4726125Z 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:35.4726909Z 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:35.4727784Z 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:35.4728198Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini 2025-06-05T23:55:35.4728862Z 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:35.4729799Z 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:35.4730256Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5 2025-06-05T23:55:35.4730886Z 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:35.4731592Z 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:35.4731936Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-06-05T23:55:35.4732841Z copying src/executorch/examples/models/qwen3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-06-05T23:55:35.4733539Z 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:35.4733988Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:55:35.4734860Z copying src/executorch/examples/models/resnet/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:55:35.4735568Z copying src/executorch/examples/models/resnet/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:55:35.4735923Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-06-05T23:55:35.4827889Z copying src/executorch/examples/models/smollm2/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-06-05T23:55:35.4828838Z 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:35.4829261Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-06-05T23:55:35.4829912Z copying src/executorch/examples/models/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-06-05T23:55:35.4830690Z 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:35.4831102Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit 2025-06-05T23:55:35.4831902Z 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:35.4832750Z 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:35.4833178Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model 2025-06-05T23:55:35.4833913Z 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:35.4834853Z 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:35.4835257Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:55:35.4836205Z copying src/executorch/examples/models/wav2letter/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:55:35.4836975Z copying src/executorch/examples/models/wav2letter/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:55:35.4837492Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:55:35.4838583Z 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:35.4839672Z 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:35.4840705Z 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:35.4841883Z 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:35.4842883Z 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:35.4843926Z 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:35.4844327Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate 2025-06-05T23:55:35.4845188Z 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:35.4846111Z 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:35.4846684Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-06-05T23:55:35.4847553Z 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:35.4848663Z 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:35.4849565Z 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:35.4850407Z 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:35.4850790Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner 2025-06-05T23:55:35.4851507Z 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:35.4852264Z 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:35.4852990Z 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:35.4854011Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:55:35.4855111Z 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:35.4856282Z 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:35.4857375Z 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:35.4858390Z 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:35.4859506Z 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:35.4860483Z 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:35.4861446Z 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:35.4862669Z 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:35.4863711Z 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:35.4864803Z 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:35.4865774Z 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:35.4866667Z 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:35.4867586Z 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:35.4868813Z 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:35.4869983Z 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:35.4871183Z 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:35.4872436Z 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:35.4873755Z 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:35.4874163Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:55:35.4989042Z 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:35.4990146Z 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:35.4991149Z 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:35.4991931Z 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:35.4992938Z 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:35.4993779Z 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:35.4994731Z 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:35.4995124Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tokenizer 2025-06-05T23:55:35.4995961Z 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:35.4996643Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:55:35.4997589Z 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:35.4998813Z 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:35.4999677Z 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:35.5000715Z 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:35.5001160Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:55:35.5001969Z 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:35.5002800Z 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:35.5003634Z 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:35.5004568Z 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:35.5005213Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder 2025-06-05T23:55:35.5006203Z 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:35.5006867Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:55:35.5007785Z 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:35.5009027Z 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:35.5009717Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:55:35.5010781Z 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:35.5011998Z 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:35.5012726Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:55:35.5014176Z 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:35.5016013Z 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:35.5016702Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test 2025-06-05T23:55:35.5018013Z 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:35.5019397Z 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:35.5020036Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/moshi/mimi 2025-06-05T23:55:35.5021392Z 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:35.5021988Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:35.5022968Z copying src/executorch/exir/_serialize/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:35.5023989Z copying src/executorch/exir/_serialize/_cord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:35.5024985Z copying src/executorch/exir/_serialize/_dataclass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:35.5026032Z copying src/executorch/exir/_serialize/_flatbuffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:35.5027140Z copying src/executorch/exir/_serialize/_named_data_store.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:35.5028136Z copying src/executorch/exir/_serialize/_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:35.5029213Z copying src/executorch/exir/_serialize/_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:35.5030283Z copying src/executorch/exir/_serialize/data_serializer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:35.5031347Z copying src/executorch/exir/_serialize/padding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:35.5031903Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:35.5032926Z copying src/executorch/exir/backend/backend_api.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:35.5034066Z copying src/executorch/exir/backend/backend_details.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:35.5035153Z copying src/executorch/exir/backend/compile_spec_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:35.5036524Z copying src/executorch/exir/backend/operator_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:35.5037592Z copying src/executorch/exir/backend/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:35.5038729Z copying src/executorch/exir/backend/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:35.5039267Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:55:35.5040211Z copying src/executorch/exir/capture/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:55:35.5041220Z copying src/executorch/exir/capture/_capture.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:55:35.5042368Z copying src/executorch/exir/capture/_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:55:35.5043399Z copying src/executorch/exir/capture/_unlift.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:55:35.5043945Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:55:35.5044912Z copying src/executorch/exir/dialects/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:55:35.5045901Z copying src/executorch/exir/dialects/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:55:35.5046427Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:55:35.5160936Z copying src/executorch/exir/emit/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:55:35.5161535Z copying src/executorch/exir/emit/_emit_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:55:35.5162029Z copying src/executorch/exir/emit/_emitter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:55:35.5162377Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:55:35.5162930Z copying src/executorch/exir/operator/convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:55:35.5163570Z copying src/executorch/exir/operator/manip.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:55:35.5164111Z copying src/executorch/exir/operator/util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:55:35.5164464Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:35.5165068Z copying src/executorch/exir/passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:35.5165807Z 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:35.5166605Z copying src/executorch/exir/passes/const_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:35.5167274Z copying src/executorch/exir/passes/constant_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:35.5167977Z 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:35.5168654Z 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:35.5169333Z 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:35.5170110Z 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:35.5170731Z copying src/executorch/exir/passes/external_constants_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:35.5171535Z copying src/executorch/exir/passes/init_mutable_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:35.5172421Z 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:35.5173161Z 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:35.5173851Z copying src/executorch/exir/passes/memory_planning_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:35.5174620Z copying src/executorch/exir/passes/normalize_transpose_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:35.5175310Z 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:35.5175905Z copying src/executorch/exir/passes/pass_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:35.5176519Z 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:35.5177204Z copying src/executorch/exir/passes/quant_fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:35.5177926Z copying src/executorch/exir/passes/quantize_io_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:35.5178828Z 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:35.5179548Z 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:35.5180319Z copying src/executorch/exir/passes/remove_noop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:35.5181017Z 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:35.5181666Z 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:35.5182514Z 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:35.5183186Z 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:35.5183797Z 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:35.5184557Z 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:35.5185300Z 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:35.5185862Z copying src/executorch/exir/passes/spec_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:35.5186437Z 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:35.5187219Z 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:35.5187872Z 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:35.5188185Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:55:35.5188702Z copying src/executorch/exir/program/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:55:35.5189362Z copying src/executorch/exir/program/_fake_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:55:35.5190214Z copying src/executorch/exir/program/_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:55:35.5190505Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:35.5191106Z copying src/executorch/exir/serde/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:35.5191823Z copying src/executorch/exir/serde/export_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:35.5192367Z copying src/executorch/exir/serde/schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:35.5192881Z copying src/executorch/exir/serde/schema_check.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:35.5193395Z copying src/executorch/exir/serde/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:35.5193939Z copying src/executorch/exir/serde/union.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:35.5194244Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5194863Z copying src/executorch/exir/tests/asr_joiner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5195403Z copying src/executorch/exir/tests/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5196044Z copying src/executorch/exir/tests/control_flow_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5196868Z copying src/executorch/exir/tests/dynamic_shape_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5197371Z copying src/executorch/exir/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5197933Z copying src/executorch/exir/tests/test_arg_validator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5198449Z copying src/executorch/exir/tests/test_capture.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5199042Z copying src/executorch/exir/tests/test_common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5199746Z copying src/executorch/exir/tests/test_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5200310Z 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:35.5201003Z 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:35.5201585Z copying src/executorch/exir/tests/test_error.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5202203Z copying src/executorch/exir/tests/test_joint_graph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5202970Z 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:35.5203803Z 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:35.5204433Z 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:35.5318614Z copying src/executorch/exir/tests/test_memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5319191Z copying src/executorch/exir/tests/test_op_convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5319747Z copying src/executorch/exir/tests/test_pass_infra.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5320268Z copying src/executorch/exir/tests/test_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5321304Z copying src/executorch/exir/tests/test_print_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5322003Z 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:35.5323006Z 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:35.5323637Z copying src/executorch/exir/tests/test_quantization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5324292Z 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:35.5325012Z 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:35.5325654Z 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:35.5326237Z copying src/executorch/exir/tests/test_serde.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5326822Z copying src/executorch/exir/tests/test_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5327483Z copying src/executorch/exir/tests/test_tracer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5328069Z copying src/executorch/exir/tests/test_verification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5328679Z copying src/executorch/exir/tests/test_warnings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5329296Z copying src/executorch/exir/tests/transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:35.5329653Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:55:35.5330384Z copying src/executorch/exir/verification/arg_validator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:55:35.5331066Z copying src/executorch/exir/verification/dev_html.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:55:35.5331711Z copying src/executorch/exir/verification/interpreter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:55:35.5332369Z copying src/executorch/exir/verification/verifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:55:35.5332709Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:55:35.5333512Z copying src/executorch/exir/_serialize/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:55:35.5334296Z 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:35.5334991Z 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:35.5335835Z 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:35.5336512Z 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:35.5336950Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-06-05T23:55:35.5337958Z 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:35.5338898Z 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:35.5339949Z 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:35.5341137Z 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:35.5342139Z 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:35.5342476Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:55:35.5343442Z 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:35.5344317Z 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:35.5345230Z 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:35.5346121Z 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:35.5346841Z 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:35.5347838Z 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:35.5348506Z 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:35.5349418Z 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:35.5350231Z 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:35.5351083Z 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:35.5351804Z 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:35.5352740Z 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:35.5353460Z 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:35.5354250Z 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:35.5355070Z 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:35.5355839Z 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:35.5356489Z 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:35.5357101Z 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:35.5357798Z 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:35.5358382Z 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:35.5359047Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos 2025-06-05T23:55:35.5359989Z 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:35.5360977Z 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:35.5361518Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc 2025-06-05T23:55:35.5362355Z 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:35.5363485Z 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:35.5364215Z 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:35.5364558Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend 2025-06-05T23:55:35.5537124Z copying src/executorch/exir/dialects/backend/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend 2025-06-05T23:55:35.5537620Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:55:35.5538553Z copying src/executorch/exir/dialects/edge/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:55:35.5539082Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/test 2025-06-05T23:55:35.5540302Z 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:35.5540926Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend/test 2025-06-05T23:55:35.5542329Z 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:35.5542993Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg 2025-06-05T23:55:35.5544155Z 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:35.5545333Z 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:35.5545969Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype 2025-06-05T23:55:35.5547168Z 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:35.5548525Z 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:35.5549709Z 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:35.5550345Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op 2025-06-05T23:55:35.5551508Z 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:35.5552727Z 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:35.5553395Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec 2025-06-05T23:55:35.5554565Z 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:35.5556192Z 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:35.5556823Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/test 2025-06-05T23:55:35.5558159Z 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:35.5559707Z 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:35.5560403Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op/test 2025-06-05T23:55:35.5561715Z 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:35.5562266Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/test 2025-06-05T23:55:35.5563330Z 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:35.5563954Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/test 2025-06-05T23:55:35.5565149Z 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:35.5565787Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:55:35.5566833Z copying src/executorch/exir/program/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:55:35.5568026Z 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:35.5569223Z 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:35.5569850Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/test 2025-06-05T23:55:35.5571216Z 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:35.5571839Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:55:35.5572601Z copying src/executorch/extension/export_util/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:55:35.5573215Z copying src/executorch/extension/export_util/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:55:35.5573560Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor 2025-06-05T23:55:35.5574489Z copying src/executorch/extension/flat_tensor/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor 2025-06-05T23:55:35.5575051Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:55:35.5576246Z 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:35.5577371Z copying src/executorch/extension/gguf_util/converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:55:35.5578785Z 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:35.5579416Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:55:35.5580631Z copying src/executorch/extension/pybindings/portable_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:55:35.5581246Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree 2025-06-05T23:55:35.5582307Z copying src/executorch/extension/pytree/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree 2025-06-05T23:55:35.5582676Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training 2025-06-05T23:55:35.5583796Z copying src/executorch/extension/training/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training 2025-06-05T23:55:35.5584569Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-06-05T23:55:35.5586091Z 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:35.5587642Z 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:35.5589085Z 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:35.5589771Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/test 2025-06-05T23:55:35.5591157Z 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:35.5591917Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/converters 2025-06-05T23:55:35.5593436Z 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:35.5594106Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:55:35.5595337Z 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:35.5596626Z 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:35.5597952Z 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:35.5599318Z 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:35.5600723Z 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:35.5602207Z 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:35.5603084Z 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:35.5603820Z 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:35.5604546Z 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:35.5604890Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:55:35.5817274Z copying src/executorch/extension/llm/export/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:55:35.5817970Z copying src/executorch/extension/llm/export/builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:55:35.5818639Z 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:35.5819321Z 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:35.5819980Z 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:35.5820884Z 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:35.5821236Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:55:35.5822088Z copying src/executorch/extension/llm/modules/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:55:35.5823203Z 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:35.5824373Z copying src/executorch/extension/llm/modules/attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:55:35.5825484Z 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:35.5826134Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers 2025-06-05T23:55:35.5827440Z copying src/executorch/extension/llm/tokenizers/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers 2025-06-05T23:55:35.5828121Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant 2025-06-05T23:55:35.5829030Z 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:35.5829561Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:55:35.5830561Z 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:35.5831697Z 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:35.5832349Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test 2025-06-05T23:55:35.5833618Z 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:35.5834936Z 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:35.5835617Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-06-05T23:55:35.5836886Z 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:35.5838319Z 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:35.5839678Z 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:35.5841234Z 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:35.5842105Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:55:35.5843805Z 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:35.5845573Z 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:35.5847364Z 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:35.5849359Z 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:35.5851318Z 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:35.5852023Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test 2025-06-05T23:55:35.5853531Z 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:35.5854388Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-06-05T23:55:35.5855383Z 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:35.5855951Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:55:35.5857029Z 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:35.5858130Z 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:35.5858644Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:55:35.5859631Z 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:35.5860596Z 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:35.5861152Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:55:35.5862251Z 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:35.5862827Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:55:35.5863928Z 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:35.5865076Z 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:35.5865653Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-06-05T23:55:35.5866858Z 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:35.5867471Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-06-05T23:55:35.5868687Z 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:35.5869434Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-06-05T23:55:35.5870824Z 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:35.5872083Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:55:35.5975776Z 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:35.5976443Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-06-05T23:55:35.5978581Z 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:35.5979747Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-06-05T23:55:35.5981959Z 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:35.5982925Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:55:35.5984990Z 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:35.5987031Z 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:35.5989036Z 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:35.5991151Z 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:35.5992862Z 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:35.5994634Z 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:35.5996651Z 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:35.5998328Z 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:35.5998880Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-06-05T23:55:35.5999897Z 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:35.6000393Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:55:35.6001337Z 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:35.6002576Z 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:35.6004424Z 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:35.6005329Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:55:35.6007213Z 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:35.6009123Z 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:35.6010959Z 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:35.6012100Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-06-05T23:55:35.6014436Z 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:35.6015460Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-06-05T23:55:35.6017029Z 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:35.6018230Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:55:35.6020470Z 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:35.6022073Z 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:35.6023382Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:55:35.6025965Z 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:35.6028634Z 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:35.6031489Z 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:35.6033137Z 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:35.6034176Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:55:35.6036430Z 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:35.6038539Z 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:35.6040473Z 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:35.6041546Z 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:35.6042611Z 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:35.6043345Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools 2025-06-05T23:55:35.6045467Z 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:35.6046693Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:55:37.0612672Z 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:37.0615689Z 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:37.0617772Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/module/test/resources 2025-06-05T23:55:37.0619486Z 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:37.0620951Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-06-05T23:55:37.0622162Z 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:37.0623937Z 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:37.0625763Z 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:37.0627297Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/test 2025-06-05T23:55:37.0628679Z copying src/executorch/extension/pytree/test/test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/test 2025-06-05T23:55:37.0629923Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-06-05T23:55:37.0631412Z 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:37.0632740Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR 2025-06-05T23:55:37.0634221Z 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:37.0636191Z 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:37.0637822Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR/test 2025-06-05T23:55:37.0639565Z 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:37.0641360Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/test 2025-06-05T23:55:37.0642768Z 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:37.0644280Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:55:37.0645332Z copying src/executorch/kernels/quantized/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:55:37.0646535Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test 2025-06-05T23:55:37.0647792Z 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:37.0649639Z 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:37.0650848Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test 2025-06-05T23:55:37.0652260Z copying src/executorch/runtime/test/test_runtime.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test 2025-06-05T23:55:37.0653102Z running egg_info 2025-06-05T23:55:37.0653482Z creating executorch.egg-info 2025-06-05T23:55:37.0653982Z writing executorch.egg-info/PKG-INFO 2025-06-05T23:55:37.0654718Z writing dependency_links to executorch.egg-info/dependency_links.txt 2025-06-05T23:55:37.0655559Z writing entry points to executorch.egg-info/entry_points.txt 2025-06-05T23:55:37.0656216Z writing requirements to executorch.egg-info/requires.txt 2025-06-05T23:55:37.0656858Z writing top-level names to executorch.egg-info/top_level.txt 2025-06-05T23:55:37.0657629Z writing manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:55:37.0658362Z reading manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:55:37.0658891Z adding license file 'LICENSE' 2025-06-05T23:55:37.0659369Z writing manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:55:37.0660189Z copying src/executorch/exir/delegate.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:37.0661217Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:55:37.0662092Z copying src/executorch/schema/program.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:55:37.0663169Z copying src/executorch/schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:55:37.0664665Z copying src/executorch/backends/apple/coreml/executorchcoreml.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml 2025-06-05T23:55:37.0666393Z 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:37.0668028Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/schema 2025-06-05T23:55:37.0669802Z 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:37.0672364Z 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:37.0674761Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:55:37.0677310Z 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:37.0680892Z 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:37.0683807Z 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:37.0686219Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection 2025-06-05T23:55:37.0688805Z 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:37.0692269Z 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:37.0695909Z 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:37.0698414Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap 2025-06-05T23:55:37.0700879Z 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:37.0704590Z 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:37.0707526Z 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:37.0710698Z 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:37.0713615Z 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:37.0716592Z 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:37.0719593Z 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:37.0722489Z 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:37.0725620Z 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:37.0728774Z 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:37.0731891Z 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:37.0734992Z 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:37.0738129Z 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:37.0741640Z 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:37.0744754Z 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:37.0747681Z 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:37.0750728Z 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:37.0753745Z 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:37.0756640Z 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:37.0759458Z 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:37.0762318Z 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:37.0765289Z 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:37.0768567Z 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:37.0771705Z 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:37.0774474Z 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:37.0777270Z 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:37.0780318Z 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:37.0782853Z 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:37.0785510Z 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:37.0788594Z 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:37.0791746Z 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:37.0794935Z 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:37.0797331Z 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:37.0799871Z 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:37.0803198Z 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:37.0805894Z 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:37.0808509Z 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:37.0811786Z 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:37.0814466Z 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:37.0817296Z 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:37.0820137Z 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:37.0823226Z 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:37.0825977Z 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:37.0828535Z 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:37.0831988Z 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:37.0835665Z 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:37.0838399Z 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:37.0841042Z 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:37.0844755Z 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:37.0848814Z 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:37.0852066Z 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:37.0855230Z 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:37.0857841Z 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:37.0860591Z 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:37.0864149Z 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:37.0866866Z 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:37.0869960Z 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:37.0872522Z 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:37.0875217Z 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:37.0878008Z 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:37.0881188Z 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:37.0884768Z 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:37.0888422Z 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:37.0892323Z 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:37.0896110Z 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:37.0900280Z 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:37.0903301Z 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:37.0906873Z 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:37.0910991Z 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:37.0914663Z 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:37.0917327Z 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:37.0920088Z 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:37.0923408Z 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:37.0926691Z 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:37.0930018Z 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:37.0933331Z 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:37.0936893Z 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:37.0940221Z 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:37.0943831Z 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:37.0948060Z 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:37.0952155Z 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:37.0956129Z 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:37.0959715Z 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:37.0963206Z 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:37.0965610Z 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:37.0968271Z 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:37.0970821Z 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:37.0984343Z 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:37.0987653Z 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:37.0990160Z 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:37.0993126Z 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:37.0996228Z 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:37.0999238Z 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:37.1001697Z 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:37.1004133Z 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:37.1007491Z 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:37.1010010Z 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:37.1012640Z 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:37.1016063Z 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:37.1018779Z 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:37.1021682Z 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:37.1025820Z 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:37.1028952Z 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:37.1031956Z 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:37.1034853Z 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:37.1037575Z 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:37.1040314Z 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:37.1043070Z 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:37.1046680Z 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:37.1050263Z 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:37.1053089Z 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:37.1055684Z 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:37.1059200Z 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:37.1061578Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/schemas 2025-06-05T23:55:37.1062971Z 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:37.1064857Z 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:37.1066508Z copying src/executorch/backends/cadence/aot/functions.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:37.1068300Z 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:37.1070446Z 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:37.1072257Z 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:37.1074272Z 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:37.1075655Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/aot/ir 2025-06-05T23:55:37.1077168Z 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:37.1079420Z copying src/executorch/backends/vulkan/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:55:37.1081001Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:55:37.1082822Z 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:37.1085652Z 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:37.1088042Z 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:37.1090222Z 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:37.1092325Z 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:37.1094734Z 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:37.1097011Z 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:37.1099389Z 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:37.1101828Z 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:37.1104079Z 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:37.1106312Z 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:37.1108534Z 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:37.1110746Z 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:37.1112974Z 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:37.1115876Z 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:37.1118401Z 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:37.1120863Z 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:37.1123142Z 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:37.1125264Z 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:37.1127754Z 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:37.1130270Z 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:37.1133034Z 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:37.1135697Z 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:37.1138260Z 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:37.1140739Z 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:37.1143289Z 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:37.1145644Z 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:37.1147989Z 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:37.1150548Z 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:37.1152793Z 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:37.1155249Z 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:37.1157678Z 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:37.1160009Z 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:37.1162341Z 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:37.1164652Z 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:37.1167292Z 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:37.1169795Z 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:37.1172095Z 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:37.1174427Z 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:37.1176746Z 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:37.1179237Z 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:37.1181294Z 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:37.1183286Z 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:37.1185163Z 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:37.1187305Z 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:37.1189762Z 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:37.1192090Z 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:37.1194386Z 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:37.1196625Z 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:37.1198925Z 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:37.1201000Z 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:37.1203183Z 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:37.1205387Z 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:37.1207788Z 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:37.1210202Z 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:37.1212752Z 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:37.1215244Z 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:37.1217607Z 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:37.1219956Z 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:37.1222266Z 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:37.1224596Z 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:37.1226846Z 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:37.1229463Z 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:37.1231736Z 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:37.1233389Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl 2025-06-05T23:55:37.1234924Z 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:37.1236954Z 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:37.1239146Z 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:37.1240731Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:55:37.1242444Z 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:37.1244847Z 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:37.1247068Z 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:37.1249320Z 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:37.1251204Z 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:37.1253377Z 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:37.1255544Z 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:37.1257589Z copying src/executorch/backends/xnnpack/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:55:37.1259996Z 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:37.1262349Z 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:37.1264697Z 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:37.1266640Z 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:37.1268962Z 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:37.1271493Z 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:37.1274212Z 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:37.1276328Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:55:37.1278625Z 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:37.1280924Z 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:37.1283396Z 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:37.1285887Z 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:37.1288342Z 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:37.1290554Z 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:37.1292781Z 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:37.1295022Z 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:37.1297304Z 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:37.1299548Z 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:37.1301901Z 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:37.1304260Z 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:37.1306770Z 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:37.1309025Z 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:37.1311135Z 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:37.1313434Z 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:37.1315484Z 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:37.1317615Z 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:37.1319744Z 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:37.1321803Z 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:37.1323890Z 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:37.1325993Z 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:37.1328152Z 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:37.1330221Z 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:37.1332261Z 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:37.1334621Z 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:37.1336812Z 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:37.1338946Z 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:37.1341263Z 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:37.1343807Z 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:37.1346436Z 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:37.1348743Z 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:37.1350946Z 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:37.1353289Z 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:37.1355468Z 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:37.1357704Z 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:37.1359960Z 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:37.1362195Z 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:37.1364352Z 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:37.1366652Z 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:37.1368870Z 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:37.1371021Z 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:37.1373146Z 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:37.1375777Z 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:37.1378558Z 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:37.1381021Z 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:37.1383459Z 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:37.1386237Z 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:37.1388949Z 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:37.1391172Z 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:37.1393617Z 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:37.1396590Z 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:37.1399306Z 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:37.1401864Z 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:37.1404455Z 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:37.1407134Z 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:37.1409879Z 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:37.1412326Z 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:37.1414990Z 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:37.1417413Z 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:37.1419956Z 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:37.1422392Z 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:37.1424892Z 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:37.1427292Z 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:37.1429628Z 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:37.1432034Z 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:37.1434580Z 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:37.1436972Z 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:37.1439331Z 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:37.1441536Z 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:37.1444044Z 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:37.1446744Z 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:37.1448768Z 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:37.1450682Z 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:37.1452711Z 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:37.1454952Z 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:37.1457101Z 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:37.1459323Z 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:37.1461631Z 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:37.1463816Z 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:37.1465952Z 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:37.1468080Z 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:37.1470259Z 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:37.2504395Z 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:37.2507038Z 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:37.2509655Z 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:37.2512267Z 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:37.2514840Z 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:37.2517338Z 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:37.2520349Z 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:37.2523209Z 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:37.2525905Z 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:37.2528609Z 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:37.2531221Z 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:37.2533920Z 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:37.2536463Z 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:37.2539003Z 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:37.2541535Z 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:37.2544149Z 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:37.2546550Z 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:37.2549124Z 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:37.2551538Z 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:37.2553309Z copying src/executorch/devtools/etdump/etdump_schema_flatcc.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:55:37.2555004Z copying src/executorch/devtools/etdump/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:55:37.2556913Z 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:37.2559068Z 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:37.2560881Z 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:37.2562803Z 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:37.2564794Z 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:37.2566840Z 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:37.2568476Z 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:37.2570396Z copying src/executorch/exir/dialects/edge/edge.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:55:37.2572033Z copying src/executorch/extension/pybindings/pybindings.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:55:37.2573843Z 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:37.2575783Z 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:37.2578106Z 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:37.2581200Z 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:37.2583780Z 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:37.2585614Z copying src/executorch/kernels/quantized/quantized.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:55:37.2587432Z 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:37.2588703Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/kernel/test 2025-06-05T23:55:37.2590085Z copying src/executorch/runtime/kernel/test/functions.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/kernel/test 2025-06-05T23:55:37.2591381Z copying schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:37.2592850Z copying schema/program.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:37.2594463Z 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:37.2596542Z 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:37.2597872Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/share/cmake 2025-06-05T23:55:37.2599335Z 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:37.2601009Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2602194Z copying runtime/core/array_ref.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2603725Z copying runtime/core/data_loader.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2605307Z copying runtime/core/defines.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2606540Z copying runtime/core/error.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2607890Z copying runtime/core/evalue.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2609543Z copying runtime/core/event_tracer.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2632740Z copying runtime/core/event_tracer_hooks.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2634844Z 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:37.2636371Z copying runtime/core/freeable_buffer.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2637929Z copying runtime/core/function_ref.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2639633Z copying runtime/core/hierarchical_allocator.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2641223Z copying runtime/core/memory_allocator.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2642678Z copying runtime/core/named_data_map.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2644149Z copying runtime/core/result.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2645491Z copying runtime/core/span.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2646764Z copying runtime/core/tag.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2648185Z copying runtime/core/tensor_layout.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2649747Z copying runtime/core/tensor_shape_dynamism.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:37.2651122Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten 2025-06-05T23:55:37.2652490Z 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:37.2654222Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:55:37.2656010Z 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:37.2657944Z 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:37.2659558Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:55:37.2661097Z 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:37.2663069Z 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:37.2665008Z 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:37.2667026Z 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:37.2669025Z 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:37.2670462Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:55:37.2672652Z 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:37.2675823Z 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:37.2679212Z 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:37.2682094Z 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:37.2685030Z 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:37.2687932Z 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:37.2690886Z 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:37.2694002Z 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:37.2696986Z 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:37.2700013Z 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:37.2703028Z 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:37.2705714Z 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:37.2707286Z 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:37.2708893Z 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:37.2710351Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:55:37.2711971Z 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:37.2713876Z 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:37.2715450Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:55:37.2717059Z 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:37.2718958Z 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:37.2720869Z 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:37.2722708Z 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:37.2724542Z 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:37.2727090Z 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:37.2730637Z 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:37.2733463Z 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:37.2735673Z 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:37.2737724Z 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:37.2739883Z 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:37.2742014Z 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:37.2743555Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:37.2744805Z copying runtime/kernel/kernel_includes.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:37.3448066Z copying runtime/kernel/kernel_runtime_context.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:37.3450892Z copying runtime/kernel/operator_registry.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:37.3453782Z copying runtime/kernel/thread_parallel_interface.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:37.3456177Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/test 2025-06-05T23:55:37.3458499Z 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:37.3460822Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:37.3463000Z copying runtime/platform/abort.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:37.3465499Z copying runtime/platform/assert.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:37.3467997Z copying runtime/platform/clock.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:37.3470587Z copying runtime/platform/compat_unistd.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:37.3473171Z copying runtime/platform/compiler.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:37.3475661Z copying runtime/platform/log.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:37.3478142Z copying runtime/platform/platform.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:37.3480934Z copying runtime/platform/profiler.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:37.3483468Z copying runtime/platform/runtime.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:37.3486022Z copying runtime/platform/system.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:37.3488897Z copying runtime/platform/types.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:37.3491207Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-06-05T23:55:37.3493843Z 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:37.3496681Z 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:37.3499154Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-06-05T23:55:37.3501739Z 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:37.3504764Z 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:37.3507568Z 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:37.3509900Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:55:37.3512072Z copying extension/tensor/tensor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:55:37.3514660Z copying extension/tensor/tensor_accessor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:55:37.3517266Z copying extension/tensor/tensor_ptr.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:55:37.3519875Z copying extension/tensor/tensor_ptr_maker.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:55:37.3522215Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:55:37.3524620Z copying extension/threadpool/cpuinfo_utils.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:55:37.3527451Z copying extension/threadpool/threadpool.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:55:37.3530338Z copying extension/threadpool/threadpool_guard.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:55:37.3532170Z running build_ext 2025-06-05T23:55:37.3533273Z creating /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin 2025-06-05T23:55:37.3536477Z 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:37.3540065Z 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:37.3543391Z 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:37.3547807Z 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:37.3552603Z 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:37.3557232Z 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:37.3560273Z installing to pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:55:37.3561147Z running install 2025-06-05T23:55:37.3561710Z running install_lib 2025-06-05T23:55:37.3562527Z creating pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:55:37.3563500Z creating pip-out/bdist.linux-x86_64/wheel/executorch 2025-06-05T23:55:37.3564572Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen 2025-06-05T23:55:37.3566500Z 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:37.3569101Z 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:37.3571733Z 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:37.3574485Z 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:37.3576464Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/api 2025-06-05T23:55:37.3578732Z 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:37.3581614Z 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:37.3584482Z 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:37.3587356Z 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:37.3589562Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/api/types 2025-06-05T23:55:37.3591869Z 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:37.3595066Z 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:37.3598320Z 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:37.3600597Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/test 2025-06-05T23:55:37.3602923Z 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:37.3606182Z 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:37.3609498Z 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:37.3612802Z 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:37.3616265Z 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:37.3619527Z 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:37.3621831Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/tools 2025-06-05T23:55:37.3623952Z 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:37.3627297Z 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:37.3630377Z 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:37.3633660Z 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:37.3636826Z 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:37.3640036Z 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:37.3643062Z 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:37.3645319Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/tools/test 2025-06-05T23:55:37.3647780Z 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:37.3651238Z 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:37.3654823Z 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:37.3658426Z 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:37.3660919Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools 2025-06-05T23:55:37.3662908Z 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:37.3665013Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/backend_debug 2025-06-05T23:55:37.3667454Z 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:37.3670902Z 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:37.3673487Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/backend_debug/tests 2025-06-05T23:55:37.3676258Z 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:37.3679249Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program 2025-06-05T23:55:37.3681742Z 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:37.3685161Z 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:37.3688568Z 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:37.3691149Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/schema 2025-06-05T23:55:37.3693942Z 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:37.3698137Z 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:37.3701371Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/schema/test 2025-06-05T23:55:37.3704328Z 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:37.3708506Z 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:37.3712572Z 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:37.3715411Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/serialize 2025-06-05T23:55:37.3718264Z 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:37.3721167Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/serialize/test 2025-06-05T23:55:37.3724260Z 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:37.3728562Z 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:37.3732738Z 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:37.3735679Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/test 2025-06-05T23:55:37.3738440Z 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:37.3742210Z 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:37.3745986Z 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:37.3748721Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/util 2025-06-05T23:55:37.3751426Z 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:37.3754048Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/debug_format 2025-06-05T23:55:37.3756501Z 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:37.3759832Z 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:37.3762191Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etdump 2025-06-05T23:55:37.3764502Z 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:37.3767956Z 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:37.3770320Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etdump/tests 2025-06-05T23:55:37.3772846Z 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:37.3776634Z 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:37.3780258Z 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:37.3782610Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etrecord 2025-06-05T23:55:37.3784970Z 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:37.3788152Z 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:37.3790560Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etrecord/tests 2025-06-05T23:55:37.3793141Z 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:37.3795340Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/inspector 2025-06-05T23:55:37.3796567Z 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:37.3798249Z 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:37.3799976Z 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:37.3801804Z 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:37.3803637Z 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:37.3804919Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/inspector/tests 2025-06-05T23:55:37.3806296Z 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:37.3808204Z 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:37.3810140Z 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:37.3812102Z 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:37.3814292Z 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:37.3815793Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/size_analysis_tool 2025-06-05T23:55:37.3817190Z 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:37.3819436Z 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:37.3820942Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/visualization 2025-06-05T23:55:37.3822232Z 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:37.3824064Z 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:37.3826029Z 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:37.3827328Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir 2025-06-05T23:55:37.3828305Z 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:37.3829606Z 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:37.3830941Z 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:37.3832290Z 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:37.3833631Z 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:37.3834999Z 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:37.3836387Z 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:37.3837731Z 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:37.3839021Z 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:37.3840458Z 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:37.3842772Z 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:37.3845284Z 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:37.3847915Z 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:37.3850607Z 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:37.3853219Z 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:37.3855965Z 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:37.3858621Z 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:37.3861206Z 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:37.3863767Z 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:37.3866506Z 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:37.3869040Z 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:37.3871689Z 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:37.3874214Z 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:37.3876718Z 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:37.3878890Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/_serialize 2025-06-05T23:55:37.3881018Z 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:37.3884035Z 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:37.3887035Z 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:37.3890147Z 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:37.3893330Z 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:37.3896505Z 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:37.3899595Z 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:37.3902691Z 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:37.3905879Z 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:37.3908202Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/_serialize/test 2025-06-05T23:55:37.3910546Z 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:37.3913759Z 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:37.3917141Z 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:37.3920584Z 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:37.3924048Z 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:37.3927302Z 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:37.3930406Z 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:37.3932632Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend 2025-06-05T23:55:37.3935224Z 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:37.3938334Z 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:37.3941799Z 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:37.3944973Z 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:37.3948135Z 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:37.3951131Z 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:37.3953510Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/canonical_partitioners 2025-06-05T23:55:37.3956551Z 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:37.3960858Z 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:37.3965230Z 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:37.3969703Z 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:37.3974268Z 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:37.3977198Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test 2025-06-05T23:55:37.3979963Z 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:37.3983671Z 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:37.3987393Z 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:37.3991015Z 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:37.3994559Z 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:37.3998018Z 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:37.4001439Z 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:37.4004991Z 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:37.4008785Z 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:37.4012209Z 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:37.4016003Z 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:37.4019502Z 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:37.4022957Z 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:37.4026489Z 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:37.4030062Z 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:37.4033594Z 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:37.4037123Z 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:37.4040411Z 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:37.4043841Z 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:37.4047305Z 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:37.4049704Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test/demos 2025-06-05T23:55:37.4052360Z 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:37.4056261Z 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:37.4058973Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test/demos/rpc 2025-06-05T23:55:37.4061891Z 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:37.4066088Z 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:37.4070013Z 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:37.4072521Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/capture 2025-06-05T23:55:37.4074632Z 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:37.4077606Z 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:37.4081048Z 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:37.4083908Z 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:37.4086269Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects 2025-06-05T23:55:37.4088397Z 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:37.4091296Z 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:37.4093488Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/backend 2025-06-05T23:55:37.4095965Z 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:37.4098418Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/backend/test 2025-06-05T23:55:37.4101159Z 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:37.4103822Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge 2025-06-05T23:55:37.4106096Z 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:37.4108427Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/arg 2025-06-05T23:55:37.4110851Z 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:37.4114213Z 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:37.4116691Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/dtype 2025-06-05T23:55:37.4119272Z 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:37.4122861Z 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:37.4126464Z 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:37.4128968Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/op 2025-06-05T23:55:37.4131346Z 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:37.4134857Z 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:37.4137445Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/op/test 2025-06-05T23:55:37.4140050Z 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:37.4142645Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/spec 2025-06-05T23:55:37.4145104Z 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:37.4148519Z 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:37.4151214Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/test 2025-06-05T23:55:37.4153749Z 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:37.4157452Z 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:37.4160825Z 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:37.4163179Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/test 2025-06-05T23:55:37.4165678Z 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:37.4168099Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/emit 2025-06-05T23:55:37.4170104Z 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:37.4172922Z 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:37.4175828Z 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:37.4177891Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/emit/test 2025-06-05T23:55:37.4180276Z 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:37.4182476Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/operator 2025-06-05T23:55:37.4184669Z 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:37.4187645Z 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:37.4190606Z 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:37.4192774Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/operator/test 2025-06-05T23:55:37.4195191Z 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:37.4197532Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/passes 2025-06-05T23:55:37.4199603Z 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:37.4202734Z 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:37.4205981Z 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:37.4209071Z 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:37.4212275Z 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:37.4215605Z 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:37.4219180Z 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:37.4222507Z 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:37.4226091Z 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:37.4229267Z 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:37.4232549Z 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:37.4235869Z 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:37.4239125Z 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:37.4242345Z 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:37.4245815Z 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:37.4249030Z 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:37.4252194Z 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:37.4255530Z 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:37.4258609Z 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:37.4261832Z 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:37.4265125Z 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:37.4268350Z 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:37.4291860Z 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:37.4295726Z 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:37.4299216Z 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:37.4302774Z 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:37.4306123Z 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:37.4309464Z 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:37.4313098Z 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:37.4316292Z 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:37.4319617Z 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:37.4322715Z 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:37.4325933Z 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:37.4328223Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/program 2025-06-05T23:55:37.4330357Z 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:37.4333302Z 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:37.4336402Z 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:37.4338585Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/program/test 2025-06-05T23:55:37.4340874Z 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:37.4344164Z 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:37.4347527Z 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:37.4349867Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/serde 2025-06-05T23:55:37.4351876Z 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:37.4354812Z 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:37.4357769Z 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:37.4360692Z 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:37.4363595Z 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:37.4366463Z 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:37.4368529Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/tests 2025-06-05T23:55:37.4370553Z 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:37.4373365Z 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:37.4376441Z 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:37.4379813Z 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:37.4383061Z 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:37.4386032Z 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:37.4389227Z 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:37.4392161Z 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:37.4395111Z 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:37.4398150Z 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:37.4401391Z 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:37.4404534Z 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:37.4407491Z 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:37.4410621Z 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:37.4414062Z 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:37.4417370Z 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:37.4420623Z 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:37.4423673Z 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:37.4426664Z 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:37.4429618Z 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:37.4432592Z 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:37.4435826Z 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:37.4438990Z 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:37.4442150Z 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:37.4445228Z 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:37.4448470Z 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:37.4451754Z 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:37.4455050Z 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:37.4458127Z 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:37.4461026Z 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:37.4464013Z 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:37.4467044Z 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:37.4470059Z 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:37.4472293Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/verification 2025-06-05T23:55:37.4474685Z 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:37.4477968Z 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:37.4481476Z 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:37.4484728Z 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:37.4487142Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/verification/test 2025-06-05T23:55:37.4489719Z 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:37.4492852Z 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:37.4494911Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime 2025-06-05T23:55:37.4496822Z 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:37.4498814Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/test 2025-06-05T23:55:37.4500985Z 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:37.4503212Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/kernel 2025-06-05T23:55:37.4504627Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/kernel/test 2025-06-05T23:55:37.4507096Z 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:37.4509440Z creating pip-out/bdist.linux-x86_64/wheel/executorch/util 2025-06-05T23:55:37.4511526Z 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:37.4514319Z 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:37.4517027Z 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:37.4519013Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends 2025-06-05T23:55:37.4520308Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm 2025-06-05T23:55:37.4522901Z 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:37.4525919Z 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:37.4529164Z 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:37.4532356Z 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:37.4535611Z 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:37.4538699Z 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:37.4541732Z 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:37.4544808Z 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:37.4547946Z 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:37.4551089Z 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:37.4554209Z 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:37.4557204Z 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:37.4560259Z 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:37.4562598Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/_passes 2025-06-05T23:55:37.4564922Z 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:37.4568213Z 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:37.4571788Z 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:37.4575729Z 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:37.4579508Z 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:37.4582862Z 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:37.4586249Z 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:37.4589747Z 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:37.4593530Z 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:37.4596963Z 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:37.4600804Z 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:37.4604426Z 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:37.4608184Z 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:37.4611901Z 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:37.4615661Z 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:37.4619188Z 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:37.4622754Z 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:37.4626343Z 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:37.4629894Z 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:37.4633553Z 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:37.4637231Z 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:37.4640768Z 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:37.4644307Z 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:37.4647997Z 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:37.4651642Z 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:37.4655494Z 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:37.4659191Z 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:37.4662791Z 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:37.4666546Z 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:37.4670050Z 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:37.4673706Z 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:37.4677275Z 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:37.4681201Z 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:37.4684897Z 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:37.4688386Z 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:37.4691923Z 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:37.4695720Z 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:37.4699508Z 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:37.4703087Z 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:37.4706729Z 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:37.4710523Z 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:37.4714182Z 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:37.4717706Z 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:37.4721182Z 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:37.4724791Z 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:37.4728364Z 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:37.4731749Z 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:37.4735443Z 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:37.4739457Z 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:37.4743163Z 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:37.4747033Z 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:37.4750643Z 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:37.4754434Z 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:37.4757223Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/operator_support 2025-06-05T23:55:37.4759901Z 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:37.4763723Z 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:37.4767694Z 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:37.4771608Z 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:37.4775625Z 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:37.4779727Z 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:37.4783705Z 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:37.4787639Z 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:37.4791516Z 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:37.4795417Z 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:37.4799412Z 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:37.4802236Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/operators 2025-06-05T23:55:37.4804709Z 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:37.4808186Z 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:37.4812033Z 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:37.4815556Z 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:37.4819218Z 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:37.4822612Z 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:37.4826066Z 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:37.4829511Z 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:37.4832995Z 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:37.4836393Z 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:37.4839841Z 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:37.4843366Z 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:37.4846936Z 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:37.4850400Z 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:37.4853944Z 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:37.4857300Z 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:37.4860706Z 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:37.4864060Z 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:37.4867473Z 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:37.4870810Z 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:37.4874210Z 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:37.4877513Z 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:37.4881153Z 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:37.4884679Z 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:37.4888480Z 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:37.4892086Z 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:37.4895544Z 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:37.4899010Z 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:37.4902409Z 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:37.4905952Z 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:37.4909499Z 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:37.4913030Z 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:37.4916618Z 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:37.4920161Z 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:37.4923632Z 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:37.4927065Z 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:37.4930468Z 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:37.4933999Z 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:37.4937369Z 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:37.4940792Z 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:37.4944219Z 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:37.4947652Z 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:37.4951241Z 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:37.4954822Z 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:37.4958705Z 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:37.4962500Z 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:37.4966229Z 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:37.4969676Z 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:37.4973355Z 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:37.4977146Z 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:37.4980877Z 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:37.4984375Z 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:37.4986890Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/quantizer 2025-06-05T23:55:37.4989343Z 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:37.4992825Z 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:37.4996466Z 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:37.5000230Z 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:37.5004094Z 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:37.5006701Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/scripts 2025-06-05T23:55:37.5009212Z 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:37.5011703Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test 2025-06-05T23:55:37.5014168Z 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:37.5017360Z 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:37.5020622Z 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:37.5023873Z 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:37.5026269Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/misc 2025-06-05T23:55:37.5028875Z 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:37.5032918Z 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:37.5036592Z 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:37.5040501Z 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:37.5044157Z 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:37.5047852Z 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:37.5051623Z 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:37.5055478Z 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:37.5059279Z 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:37.5063295Z 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:37.5067139Z 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:37.5069748Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/models 2025-06-05T23:55:37.5072349Z 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:37.5076067Z 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:37.5079889Z 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:37.5083509Z 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:37.5087138Z 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:37.5090850Z 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:37.5094814Z 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:37.5098573Z 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:37.5102300Z 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:37.5106278Z 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:37.5110073Z 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:37.5112856Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/ops 2025-06-05T23:55:37.5115308Z 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:37.5118662Z 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:37.5122128Z 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:37.5125602Z 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:37.5129023Z 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:37.5132415Z 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:37.5135945Z 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:37.5139326Z 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:37.5142776Z 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:37.5146302Z 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:37.5149824Z 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:37.5153226Z 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:37.5156635Z 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:37.5160036Z 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:37.5163485Z 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:37.5167004Z 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:37.5170588Z 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:37.5174131Z 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:37.5177617Z 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:37.5181658Z 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:37.5185462Z 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:37.5189013Z 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:37.5192521Z 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:37.5196057Z 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:37.5199417Z 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:37.5202801Z 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:37.5206188Z 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:37.5209624Z 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:37.5213037Z 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:37.5216551Z 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:37.5219952Z 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:37.5223344Z 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:37.5226853Z 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:37.5230315Z 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:37.5233823Z 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:37.5237413Z 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:37.5240893Z 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:37.5244413Z 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:37.5247860Z 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:37.5251297Z 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:37.5255267Z 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:37.5259043Z 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:37.5262428Z 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:37.5265848Z 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:37.5269349Z 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:37.5272895Z 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:37.5276301Z 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:37.5279888Z 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:37.5283360Z 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:37.5286892Z 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:37.5290370Z 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:37.5294010Z 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:37.5297420Z 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:37.5300841Z 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:37.5304195Z 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:37.5307592Z 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:37.5310959Z 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:37.5314438Z 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:37.5317852Z 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:37.5321363Z 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:37.5324850Z 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:37.5328638Z 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:37.5332308Z 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:37.5335838Z 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:37.5339398Z 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:37.5342912Z 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:37.5346378Z 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:37.5349804Z 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:37.5353301Z 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:37.5356810Z 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:37.5360395Z 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:37.5363895Z 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:37.5367331Z 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:37.5370765Z 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:37.5374381Z 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:37.5377832Z 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:37.5381511Z 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:37.5384903Z 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:37.5388378Z 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:37.5391753Z 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:37.5395166Z 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:37.5398638Z 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:37.5402358Z 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:37.5406041Z 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:37.5409732Z 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:37.5413479Z 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:37.5417188Z 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:37.5420583Z 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:37.5424064Z 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:37.5427491Z 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:37.5430008Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/passes 2025-06-05T23:55:37.5432749Z 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:37.5436619Z 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:37.5440562Z 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:37.5444595Z 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:37.5448553Z 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:37.5452432Z 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:37.5456582Z 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:37.5460519Z 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:37.5464477Z 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:37.5468576Z 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:37.5472648Z 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:37.5476857Z 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:37.5481097Z 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:37.5484942Z 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:37.5488760Z 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:37.5492670Z 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:37.5496793Z 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:37.5500860Z 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:37.5504783Z 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:37.5508643Z 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:37.5512513Z 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:37.5516458Z 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:37.5519333Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/quantizer 2025-06-05T23:55:37.5522177Z 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:37.5525003Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/tester 2025-06-05T23:55:37.5527537Z 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:37.5531166Z 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:37.5534993Z 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:37.5538664Z 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:37.5541295Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/tosautil 2025-06-05T23:55:37.5543856Z 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:37.5546358Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/util 2025-06-05T23:55:37.5549093Z 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:37.5551631Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party 2025-06-05T23:55:37.5553605Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib 2025-06-05T23:55:37.5556793Z 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:37.5560064Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python 2025-06-05T23:55:37.5562372Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:55:37.5566207Z 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:37.5571573Z 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:37.5575547Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:55:37.5579778Z 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:37.5585175Z 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:37.5590316Z 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:37.5595521Z 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:37.5600757Z 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:37.5605976Z 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:37.5611163Z 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:37.5616423Z 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:37.5621420Z 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:37.5627106Z 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:37.5632478Z 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:37.5637877Z 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:37.5643041Z 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:37.5648049Z 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:37.5653048Z 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:37.5658397Z 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:37.5663559Z 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:37.5668799Z 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:37.5674039Z 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:37.5679488Z 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:37.5684542Z 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:37.5689698Z 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:37.5695055Z 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:37.5700285Z 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:37.5705448Z 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:37.5710958Z 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:37.5716206Z 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:37.5721340Z 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:37.5726441Z 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:37.5731631Z 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:37.5737164Z 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:37.5742354Z 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:37.5747499Z 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:37.5752560Z 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:37.5756080Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test 2025-06-05T23:55:37.5758301Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test/scripts 2025-06-05T23:55:37.5761996Z 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:37.5765771Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit 2025-06-05T23:55:37.5769626Z 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:37.5773445Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party 2025-06-05T23:55:37.5775966Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:55:37.5780256Z 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:37.5784419Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan 2025-06-05T23:55:37.5788957Z 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:37.5793527Z 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:37.5798310Z 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:37.5802936Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:55:37.5807423Z 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:37.5813488Z 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:37.5818100Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp 2025-06-05T23:55:37.5822652Z 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:37.5827256Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp 2025-06-05T23:55:37.5831893Z 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:37.5836501Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart 2025-06-05T23:55:37.5841066Z 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:37.5845633Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go 2025-06-05T23:55:37.5850138Z 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:37.5854764Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java 2025-06-05T23:55:37.5859336Z 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:37.5863951Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin 2025-06-05T23:55:37.5868815Z 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:37.5873643Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster 2025-06-05T23:55:37.5878299Z 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:37.5883119Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua 2025-06-05T23:55:37.5887662Z 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:37.5892220Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim 2025-06-05T23:55:37.5896872Z 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:37.5901414Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php 2025-06-05T23:55:37.5905965Z 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:37.5910562Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:55:37.5915020Z 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:37.5921103Z 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:37.5927158Z 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:37.5933201Z 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:37.5937852Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust 2025-06-05T23:55:37.5942418Z 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:37.5946994Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift 2025-06-05T23:55:37.5951964Z 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:37.5956725Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts 2025-06-05T23:55:37.5961228Z 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:37.5965784Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema 2025-06-05T23:55:37.5970291Z 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:37.5974954Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:55:37.5979412Z 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:37.5985403Z 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:37.5989878Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:55:37.5994580Z 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:37.6001038Z 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:37.6007539Z 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:37.6014178Z 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:37.6020669Z 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:37.6027195Z 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:37.6034106Z 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:37.6040873Z 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:37.6047332Z 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:37.6053888Z 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:37.6058738Z 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:37.6064066Z 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:37.6071348Z 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:37.6078648Z 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:37.6085658Z 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:37.6092747Z 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:37.6099932Z 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:37.6107026Z 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:37.6114437Z 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:37.6121525Z 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:37.6128905Z 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:37.6136201Z 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:37.6143262Z 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:37.6150249Z 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:37.6156626Z 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:37.6160966Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:55:37.6165379Z 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:37.6171351Z 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:37.6175807Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:55:37.6180533Z 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:37.6186651Z 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:37.6192822Z 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:37.6199187Z 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:37.6205267Z 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:37.6210076Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:55:37.6214618Z 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:37.6220726Z 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:37.6226612Z 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:37.6230982Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:55:37.6235699Z 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:37.6242111Z 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:37.6248338Z 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:37.6252944Z 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:37.6257936Z 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:37.6264463Z 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:37.6271225Z 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:37.6278170Z 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:37.6285533Z 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:37.6292511Z 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:37.6299294Z 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:37.6305894Z 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:37.6312547Z 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:37.6319236Z 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:37.6325909Z 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:37.6332537Z 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:37.6339194Z 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:37.6345807Z 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:37.6352861Z 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:37.6359699Z 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:37.6366519Z 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:37.6373421Z 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:37.6380815Z 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:37.6387478Z 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:37.6394009Z 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:37.6400715Z 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:37.6405808Z 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:37.6411100Z 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:37.6418363Z 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:37.6425675Z 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:37.6433032Z 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:37.6440482Z 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:37.6447933Z 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:37.6455563Z 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:37.6460940Z 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:37.6465791Z 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:37.6472404Z 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:37.6477278Z 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:37.6482578Z 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:37.6489490Z 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:37.6496479Z 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:37.6501425Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:55:37.6506004Z 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:37.6512294Z 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:37.6518652Z 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:37.6524857Z 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:37.6531004Z 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:37.6537649Z 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:37.6544031Z 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:37.6550252Z 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:37.6556401Z 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:37.6560957Z 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:37.6565596Z 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:37.6571893Z 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:37.6578342Z 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:37.6583292Z 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:37.6588009Z 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:37.6594523Z 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:37.6599222Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim 2025-06-05T23:55:37.6603602Z 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:37.6608213Z 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:37.6613155Z 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:37.6620339Z 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:37.6627179Z 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:37.6631863Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:55:37.6636387Z 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:37.6642632Z 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:37.6647402Z 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:37.6652591Z 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:37.6658033Z 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:37.6663267Z 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:37.6670418Z 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:37.6677550Z 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:37.6682800Z 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:37.6687575Z 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:37.6694432Z 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:37.6699782Z 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:37.6703000Z 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:37.6708522Z 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:37.6715725Z 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:37.6722920Z 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:37.6730077Z 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:37.6735551Z 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:37.6741283Z 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:37.6749181Z 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:37.6757071Z 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:37.6765017Z 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:37.6772758Z 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:37.6778337Z 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:37.6784058Z 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:37.6791222Z 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:37.6798050Z 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:37.6804790Z 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:37.6811176Z 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:37.6817328Z 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:37.6823313Z 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:37.6829350Z 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:37.6835375Z 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:37.6841341Z 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:37.6847315Z 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:37.6853276Z 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:37.6859349Z 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:37.6865549Z 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:37.6871494Z 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:37.6877706Z 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:37.6883934Z 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:37.6889995Z 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:37.6922473Z 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:37.6928863Z 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:37.6935202Z 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:37.6941285Z 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:37.6944045Z 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:37.6946913Z 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:37.6949938Z 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:37.6952885Z 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:37.6955727Z 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:37.6957404Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit 2025-06-05T23:55:37.6960360Z 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:37.6962120Z 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:37.6965225Z 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:37.6968374Z 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:37.6969819Z 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:37.6973005Z 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:37.6976313Z 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:37.6977757Z 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:37.6981110Z 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:37.6984198Z 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:37.6985664Z 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:37.6988898Z 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:37.6992168Z 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:37.6993520Z 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:37.6996910Z 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:37.6998329Z 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:37.7001644Z 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:37.7003057Z 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:37.7006234Z 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:37.7009397Z 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:37.7012580Z 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:37.7015879Z 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:37.7017369Z 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:37.7020799Z 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:37.7024255Z 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:37.7027670Z 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:37.7029094Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:55:37.7032175Z 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:37.7035493Z 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:37.7038640Z 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:37.7042027Z 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:37.7045174Z 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:37.7048358Z 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:37.7051513Z 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:37.7054759Z 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:37.7058022Z 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:37.7061283Z 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:37.7064486Z 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:37.7067719Z 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:37.7069133Z 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:37.7072249Z 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:37.7073577Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift 2025-06-05T23:55:37.7075152Z 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:37.7076775Z 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:37.7080752Z 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:37.7084437Z 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:37.7085942Z 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:37.7087613Z 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:37.7091365Z 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:37.7092605Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc 2025-06-05T23:55:37.7093968Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests 2025-06-05T23:55:37.7096873Z 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:37.7098229Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples 2025-06-05T23:55:37.7099678Z 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:37.7101175Z 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:37.7104559Z 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:37.7107899Z 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:37.7109525Z 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:37.7113138Z 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:37.7117024Z 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:37.7120740Z 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:37.7124354Z 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:37.7127354Z 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:37.7128673Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples 2025-06-05T23:55:37.7130087Z 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:37.7133253Z 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:37.7134626Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java 2025-06-05T23:55:37.7135880Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src 2025-06-05T23:55:37.7137208Z 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:37.7138596Z 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:37.7140048Z 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:37.7143549Z 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:37.7146938Z 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:37.7150199Z 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:37.7151769Z 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:37.7155443Z 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:37.7159010Z 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:37.7162713Z 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:37.7166372Z 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:37.7169983Z 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:37.7173539Z 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:37.7177097Z 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:37.7180850Z 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:37.7184372Z 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:37.7187934Z 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:37.7191442Z 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:37.7195225Z 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:37.7202619Z 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:37.7210307Z 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:37.7218445Z 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:37.7226132Z 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:37.7233433Z 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:37.7241064Z 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:37.7248777Z 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:37.7256292Z 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:37.7263519Z 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:37.7270914Z 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:37.7276555Z 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:37.7282920Z 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:37.7290821Z 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:37.7299275Z 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:37.7307320Z 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:37.7315575Z 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:37.7323714Z 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:37.7331613Z 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:37.7337401Z 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:37.7342721Z 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:37.7349989Z 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:37.7355301Z 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:37.7360641Z 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:37.7367865Z 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:37.7375518Z 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:37.7383002Z 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:37.7388262Z 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:37.7394071Z 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:37.7402066Z 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:37.7410017Z 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:37.7418133Z 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:37.7425903Z 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:37.7431372Z 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:37.7436518Z 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:37.7443580Z 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:37.7448821Z 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:37.7454738Z 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:37.7462215Z 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:37.7469765Z 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:37.7475096Z 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:37.7480553Z 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:37.7486961Z 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:37.7491106Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:55:37.7495573Z 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:37.7501559Z 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:37.7505922Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:55:37.7510390Z 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:37.7516490Z 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:37.7522576Z 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:37.7527113Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection 2025-06-05T23:55:37.7531654Z 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:37.7536231Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap 2025-06-05T23:55:37.7540788Z 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:37.7545317Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android 2025-06-05T23:55:37.7548152Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app 2025-06-05T23:55:37.7551066Z 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:37.7554111Z 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:37.7557270Z 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:37.7562256Z 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:37.7567105Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks 2025-06-05T23:55:37.7570050Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp 2025-06-05T23:55:37.7573140Z 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:37.7578553Z 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:37.7583483Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples 2025-06-05T23:55:37.7586392Z 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:37.7591047Z 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:37.7597296Z 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:37.7601511Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/schema 2025-06-05T23:55:37.7604912Z 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:37.7607982Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/tosa 2025-06-05T23:55:37.7609473Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/tosa/schemas 2025-06-05T23:55:37.7612026Z 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:37.7616056Z 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:37.7618591Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example 2025-06-05T23:55:37.7621158Z 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:37.7624581Z 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:37.7628017Z 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:37.7631440Z 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:37.7634274Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:55:37.7637741Z 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:37.7642626Z 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:37.7646088Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example/example_operators 2025-06-05T23:55:37.7649072Z 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:37.7653084Z 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:37.7657112Z 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:37.7661137Z 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:37.7665141Z 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:37.7669154Z 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:37.7673146Z 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:37.7677099Z 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:37.7681228Z 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:37.7685179Z 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:37.7687873Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek 2025-06-05T23:55:37.7690469Z 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:37.7693851Z 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:37.7697412Z 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:37.7699866Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek/_passes 2025-06-05T23:55:37.7702402Z 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:37.7706167Z 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:37.7709121Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek/quantizer 2025-06-05T23:55:37.7711763Z 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:37.7715496Z 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:37.7719278Z 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:37.7723040Z 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:37.7725628Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp 2025-06-05T23:55:37.7727965Z 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:37.7731595Z 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:37.7734945Z 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:37.7738105Z 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:37.7740395Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/aten_passes 2025-06-05T23:55:37.7743118Z 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:37.7747047Z 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:37.7750923Z 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:37.7753577Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend 2025-06-05T23:55:37.7756011Z 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:37.7759574Z 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:37.7763397Z 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:37.7767256Z 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:37.7769845Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir 2025-06-05T23:55:37.7772516Z 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:37.7776435Z 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:37.7780348Z 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:37.7783953Z 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:37.7786736Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:55:37.7789600Z 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:37.7793627Z 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:37.7797884Z 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:37.7802063Z 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:37.7805137Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:55:37.7808264Z 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:37.7812822Z 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:37.7817644Z 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:37.7822388Z 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:37.7825900Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:55:37.7829216Z 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:37.7833856Z 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:37.7838899Z 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:37.7843530Z 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:37.7847224Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters 2025-06-05T23:55:37.7850669Z 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:37.7854385Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:55:37.7858388Z 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:37.7863932Z 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:37.7869530Z 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:37.7875321Z 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:37.7881376Z 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:37.7887160Z 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:37.7892802Z 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:37.7898629Z 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:37.7904474Z 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:37.7910284Z 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:37.7916019Z 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:37.7922021Z 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:37.7927900Z 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:37.7931988Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:55:37.7935759Z 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:37.7940978Z 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:37.7946234Z 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:37.7951583Z 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:37.7955139Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/lib 2025-06-05T23:55:37.7957746Z 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:37.7960431Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:55:37.7963461Z 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:37.7967726Z 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:37.7972122Z 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:37.7976619Z 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:37.7981065Z 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:37.7985221Z 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:37.7989523Z 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:37.7993922Z 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:37.7998794Z 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:37.8003343Z 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:37.8008368Z 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:37.8013322Z 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:37.8018105Z 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:37.8022500Z 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:37.8026979Z 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:37.8031416Z 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:37.8035658Z 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:37.8039849Z 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:37.8044220Z 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:37.8048585Z 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:37.8052944Z 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:37.8057375Z 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:37.8061568Z 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:37.8065822Z 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:37.8070288Z 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:37.8074890Z 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:37.8079871Z 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:37.8084132Z 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:37.8088659Z 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:37.8092900Z 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:37.8097417Z 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:37.8101969Z 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:37.8106369Z 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:37.8110842Z 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:37.8115338Z 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:37.8119893Z 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:37.8124254Z 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:37.8128603Z 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:37.8132993Z 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:37.8137358Z 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:37.8141888Z 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:37.8146671Z 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:37.8151219Z 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:37.8155452Z 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:37.8160002Z 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:37.8164434Z 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:37.8168913Z 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:37.8173274Z 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:37.8177830Z 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:37.8182561Z 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:37.8187434Z 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:37.8192165Z 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:37.8196481Z 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:37.8200756Z 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:37.8205102Z 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:37.8209542Z 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:37.8214037Z 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:37.8218530Z 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:37.8223118Z 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:37.8227665Z 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:37.8232189Z 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:37.8236540Z 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:37.8241072Z 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:37.8245357Z 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:37.8250053Z 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:37.8254731Z 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:37.8259042Z 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:37.8263354Z 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:37.8267675Z 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:37.8272033Z 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:37.8276340Z 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:37.8281209Z 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:37.8285934Z 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:37.8290371Z 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:37.8294881Z 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:37.8299323Z 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:37.8303830Z 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:37.8308307Z 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:37.8312818Z 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:37.8317179Z 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:37.8321692Z 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:37.8326051Z 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:37.8330512Z 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:37.8334731Z 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:37.8338956Z 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:37.8343461Z 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:37.8348203Z 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:37.8352690Z 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:37.8356990Z 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:37.8361187Z 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:37.8365326Z 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:37.8369535Z 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:37.8373838Z 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:37.8378079Z 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:37.8382590Z 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:37.8386807Z 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:37.8391000Z 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:37.8395345Z 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:37.8399892Z 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:37.8404828Z 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:37.8409324Z 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:37.8413761Z 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:37.8417988Z 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:37.8422227Z 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:37.8426581Z 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:37.8431109Z 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:37.8435638Z 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:37.8440009Z 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:37.8444335Z 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:37.8448759Z 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:37.8453481Z 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:37.8458299Z 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:37.8462795Z 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:37.8467124Z 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:37.8471482Z 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:37.8475843Z 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:37.8480279Z 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:37.8484938Z 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:37.8489556Z 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:37.8494021Z 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:37.8498375Z 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:37.8502779Z 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:37.8507085Z 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:37.8511352Z 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:37.8515572Z 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:37.8519916Z 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:37.8524273Z 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:37.8528568Z 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:37.8533038Z 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:37.8537661Z 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:37.8542153Z 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:37.8546608Z 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:37.8551102Z 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:37.8555454Z 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:37.8559732Z 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:37.8564254Z 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:37.8568724Z 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:37.8573368Z 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:37.8578075Z 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:37.8583012Z 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:37.8587696Z 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:37.8592392Z 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:37.8597118Z 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:37.8601858Z 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:37.8606663Z 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:37.8611373Z 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:37.8616307Z 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:37.8621055Z 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:37.8625640Z 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:37.8630185Z 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:37.8634834Z 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:37.8639516Z 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:37.8644559Z 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:37.8649436Z 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:37.8654591Z 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:37.8659229Z 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:37.8663831Z 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:37.8668476Z 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:37.8673121Z 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:37.8677641Z 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:37.8682181Z 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:37.8686376Z 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:37.8690495Z 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:37.8694743Z 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:37.8698961Z 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:37.8703177Z 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:37.8707464Z 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:37.8711908Z 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:37.8716385Z 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:37.8720700Z 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:37.8724890Z 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:37.8729842Z 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:37.8734806Z 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:37.8739074Z 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:37.8743577Z 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:37.8748299Z 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:37.8753041Z 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:37.8757783Z 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:37.8762347Z 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:37.8766767Z 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:37.8771044Z 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:37.8775446Z 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:37.8779986Z 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:37.8784177Z 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:37.8787147Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:55:37.8790239Z 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:37.8794514Z 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:37.8797852Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:55:37.8801573Z 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:37.8806931Z 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:37.8812096Z 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:37.8817641Z 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:37.8822793Z 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:37.8827982Z 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:37.8833335Z 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:37.8838567Z 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:37.8844001Z 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:37.8849659Z 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:37.8855282Z 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:37.8860606Z 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:37.8865815Z 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:37.8871047Z 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:37.8876358Z 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:37.8881746Z 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:37.8887232Z 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:37.8892508Z 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:37.8898182Z 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:37.8903533Z 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:37.8908764Z 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:37.8913923Z 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:37.8919078Z 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:37.8924274Z 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:37.8929614Z 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:37.8935056Z 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:37.8940215Z 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:37.8945402Z 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:37.8950644Z 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:37.8955925Z 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:37.8961170Z 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:37.8966677Z 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:37.8971935Z 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:37.8977418Z 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:37.8982811Z 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:37.8988137Z 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:37.8993404Z 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:37.8998676Z 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:37.9003879Z 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:37.9009019Z 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:37.9014306Z 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:37.9019527Z 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:37.9024687Z 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:37.9029894Z 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:37.9035174Z 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:37.9040368Z 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:37.9045992Z 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:37.9051275Z 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:37.9056770Z 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:37.9061928Z 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:37.9067110Z 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:37.9072147Z 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:37.9077275Z 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:37.9082640Z 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:37.9087806Z 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:37.9092913Z 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:37.9098282Z 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:37.9103479Z 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:37.9108716Z 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:37.9113980Z 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:37.9119439Z 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:37.9124911Z 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:37.9130622Z 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:37.9136108Z 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:37.9141314Z 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:37.9146418Z 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:37.9151544Z 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:37.9156719Z 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:37.9161976Z 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:37.9167243Z 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:37.9172409Z 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:37.9177700Z 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:37.9183221Z 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:37.9188570Z 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:37.9193836Z 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:37.9198995Z 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:37.9204104Z 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:37.9209595Z 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:37.9215152Z 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:37.9220446Z 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:37.9225911Z 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:37.9231542Z 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:37.9235573Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-06-05T23:55:37.9239341Z 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:37.9243021Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:55:37.9246285Z 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:37.9250685Z 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:37.9255271Z 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:37.9258468Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:55:37.9261551Z 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:37.9265782Z 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:37.9270121Z 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:37.9274490Z 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:37.9279079Z 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:37.9283876Z 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:37.9287239Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:55:37.9291066Z 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:37.9296289Z 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:37.9301714Z 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:37.9307280Z 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:37.9312691Z 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:37.9318106Z 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:37.9323643Z 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:37.9328991Z 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:37.9334391Z 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:37.9339913Z 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:37.9345480Z 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:37.9350839Z 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:37.9356153Z 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:37.9361510Z 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:37.9367250Z 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:37.9373079Z 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:37.9376881Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/quantizer 2025-06-05T23:55:37.9379725Z 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:37.9383347Z 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:37.9386805Z 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:37.9389288Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests 2025-06-05T23:55:37.9391812Z 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:37.9395275Z 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:37.9398782Z 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:37.9402314Z 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:37.9405689Z 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:37.9409240Z 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:37.9412855Z 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:37.9416603Z 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:37.9420236Z 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:37.9423770Z 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:37.9427259Z 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:37.9429728Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir 2025-06-05T23:55:37.9431295Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir/converter 2025-06-05T23:55:37.9433183Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:55:37.9437003Z 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:37.9441972Z 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:37.9447065Z 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:37.9451869Z 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:37.9456867Z 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:37.9461776Z 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:37.9466675Z 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:37.9471528Z 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:37.9476412Z 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:37.9479806Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino 2025-06-05T23:55:37.9482061Z 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:37.9485324Z 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:37.9488664Z 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:37.9491155Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/quantizer 2025-06-05T23:55:37.9493885Z 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:37.9497620Z 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:37.9500345Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests 2025-06-05T23:55:37.9502900Z 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:37.9505532Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests/models 2025-06-05T23:55:37.9508411Z 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:37.9509107Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests/ops 2025-06-05T23:55:37.9511285Z 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:37.9512989Z 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:37.9514899Z 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:37.9516653Z 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:37.9518424Z 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:37.9520247Z 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:37.9521956Z 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:37.9523696Z 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:37.9525452Z 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:37.9527230Z 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:37.9528977Z 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:37.9529564Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm 2025-06-05T23:55:37.9531124Z 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:37.9531736Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/_passes 2025-06-05T23:55:37.9533342Z 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:37.9535290Z 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:37.9537041Z 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:37.9538746Z 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:37.9540361Z 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:37.9542027Z 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:37.9543774Z 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:37.9545805Z 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:37.9547699Z 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:37.9549358Z 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:37.9551057Z 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:37.9552795Z 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:37.9554517Z 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:37.9556359Z 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:37.9558043Z 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:37.9559695Z 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:37.9561577Z 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:37.9563328Z 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:37.9564932Z 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:37.9566692Z 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:37.9568512Z 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:37.9570149Z 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:37.9571799Z 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:37.9573537Z 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:37.9575376Z 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:37.9577237Z 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:37.9579516Z 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:37.9581352Z 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:37.9583250Z 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:37.9584982Z 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:37.9586669Z 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:37.9588415Z 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:37.9590147Z 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:37.9591936Z 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:37.9593621Z 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:37.9595248Z 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:37.9596855Z 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:37.9597504Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/builders 2025-06-05T23:55:37.9599269Z 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:37.9601354Z 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:37.9603103Z 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:37.9605082Z 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:37.9606937Z 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:37.9608736Z 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:37.9610519Z 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:37.9612338Z 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:37.9614412Z 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:37.9616436Z 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:37.9618498Z 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:37.9620256Z 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:37.9621969Z 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:37.9623906Z 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:37.9625631Z 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:37.9627450Z 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:37.9629199Z 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:37.9631067Z 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:37.9632975Z 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:37.9634803Z 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:37.9636518Z 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:37.9638242Z 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:37.9640251Z 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:37.9641985Z 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:37.9643762Z 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:37.9645512Z 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:37.9647331Z 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:37.9649200Z 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:37.9650977Z 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:37.9652942Z 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:37.9655097Z 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:37.9656895Z 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:37.9658619Z 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:37.9660511Z 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:37.9662292Z 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:37.9704373Z 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:37.9706101Z 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:37.9707854Z 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:37.9709647Z 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:37.9711396Z 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:37.9713059Z 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:37.9714780Z 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:37.9716477Z 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:37.9718222Z 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:37.9719979Z 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:37.9721620Z 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:37.9723350Z 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:37.9724973Z 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:37.9726676Z 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:37.9728729Z 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:37.9730637Z 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:37.9732269Z 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:37.9734019Z 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:37.9735692Z 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:37.9737375Z 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:37.9739026Z 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:37.9740610Z 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:37.9742310Z 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:37.9744027Z 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:37.9745690Z 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:37.9747386Z 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:37.9749153Z 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:37.9750841Z 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:37.9752520Z 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:37.9754219Z 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:37.9755988Z 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:37.9757713Z 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:37.9759387Z 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:37.9761029Z 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:37.9762981Z 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:37.9764702Z 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:37.9766528Z 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:37.9768274Z 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:37.9770058Z 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:37.9771763Z 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:37.9773463Z 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:37.9775227Z 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:37.9776892Z 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:37.9778843Z 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:37.9780507Z 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:37.9782121Z 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:37.9783779Z 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:37.9785525Z 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:37.9787181Z 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:37.9788900Z 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:37.9790716Z 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:37.9792544Z 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:37.9794213Z 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:37.9795945Z 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:37.9797898Z 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:37.9798604Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/debugger 2025-06-05T23:55:37.9800452Z 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:37.9801120Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/partition 2025-06-05T23:55:37.9802916Z 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:37.9804732Z 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:37.9806430Z 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:37.9807128Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/quantizer 2025-06-05T23:55:37.9808865Z 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:37.9810706Z 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:37.9812427Z 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:37.9814351Z 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:37.9815153Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:55:37.9817266Z 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:37.9819392Z 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:37.9820137Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/serialization 2025-06-05T23:55:37.9821963Z 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:37.9823910Z 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:37.9825832Z 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:37.9826466Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/tests 2025-06-05T23:55:37.9828044Z 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:37.9829751Z 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:37.9831580Z 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:37.9832237Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/utils 2025-06-05T23:55:37.9834024Z 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:37.9835639Z 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:37.9836239Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/aot 2025-06-05T23:55:37.9836887Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/aot/ir 2025-06-05T23:55:37.9838491Z 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:37.9839103Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/transforms 2025-06-05T23:55:37.9840609Z 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:37.9842250Z 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:37.9843895Z 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:37.9845465Z 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:37.9847210Z 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:37.9848914Z 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:37.9850557Z 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:37.9852132Z 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:37.9853824Z 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:37.9855424Z 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:37.9857017Z 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:37.9858652Z 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:37.9860365Z 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:37.9861903Z 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:37.9863656Z 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:37.9864508Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/transforms/test 2025-06-05T23:55:37.9866515Z 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:37.9868570Z 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:37.9870302Z 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:37.9870884Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan 2025-06-05T23:55:37.9872266Z 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:37.9873735Z 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:37.9875217Z 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:37.9876620Z 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:37.9878138Z 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:37.9878962Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/_passes 2025-06-05T23:55:37.9880491Z 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:37.9882173Z 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:37.9883899Z 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:37.9885654Z 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:37.9887259Z 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:37.9889078Z 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:37.9890776Z 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:37.9892561Z 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:37.9894352Z 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:37.9895037Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/partitioner 2025-06-05T23:55:37.9896875Z 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:37.9897847Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/quantizer 2025-06-05T23:55:37.9899612Z 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:37.9900431Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime 2025-06-05T23:55:37.9902020Z 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:37.9902714Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph 2025-06-05T23:55:37.9903479Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph/ops 2025-06-05T23:55:37.9904255Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:55:37.9906396Z 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:37.9908569Z 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:37.9910709Z 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:37.9912730Z 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:37.9914779Z 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:37.9916863Z 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:37.9918913Z 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:37.9921202Z 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:37.9923313Z 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:37.9925389Z 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:37.9927405Z 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:37.9929416Z 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:37.9931431Z 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:37.9933725Z 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:37.9935972Z 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:37.9938332Z 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:37.9940519Z 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:37.9942733Z 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:37.9944770Z 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:37.9946838Z 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:37.9948951Z 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:37.9951241Z 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:37.9953378Z 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:37.9955386Z 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:37.9957544Z 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:37.9959590Z 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:37.9961574Z 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:37.9963580Z 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:37.9965622Z 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:37.9967690Z 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:37.9969952Z 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:37.9972102Z 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:37.9974437Z 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:37.9976503Z 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:37.9978809Z 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:37.9980934Z 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:37.9983037Z 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:37.9985126Z 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:37.9987164Z 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:37.9989275Z 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:37.9991551Z 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:37.9993627Z 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:37.9995656Z 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:37.9997608Z 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:37.9999487Z 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:38.0001339Z 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:38.0002432Z 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:38.0003969Z 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:38.0006109Z 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:38.0007438Z 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:38.0009484Z 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:38.0011413Z 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:38.0013188Z 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:38.0015465Z 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:38.0016594Z 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:38.0018514Z 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:38.0019847Z 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:38.0020946Z 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:38.0021997Z 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:38.0023958Z 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:38.0025275Z 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:38.0027310Z 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:38.0028595Z 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:38.0030577Z 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:38.0031130Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/serialization 2025-06-05T23:55:38.0032607Z 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:38.0034676Z 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:38.0036526Z 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:38.0038436Z 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:38.0039037Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test 2025-06-05T23:55:38.0040717Z 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:38.0041966Z 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:38.0043365Z 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:38.0044908Z 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:38.0045295Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/op_tests 2025-06-05T23:55:38.0046303Z 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:38.0048166Z 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:38.0049708Z 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:38.0050515Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:55:38.0051981Z 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:38.0054030Z 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:38.0055420Z 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:38.0057253Z 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:38.0058412Z 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:38.0060273Z 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:38.0060740Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/glsl 2025-06-05T23:55:38.0061641Z 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:38.0062807Z 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:38.0064761Z 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:38.0065396Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party 2025-06-05T23:55:38.0066118Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/volk 2025-06-05T23:55:38.0067785Z 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:38.0068258Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers 2025-06-05T23:55:38.0069177Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:55:38.0071153Z 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:38.0073447Z 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:38.0075646Z 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:38.0077939Z 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:38.0080234Z 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:38.0081777Z 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:38.0083791Z 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:38.0084742Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-06-05T23:55:38.0086042Z 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:38.0086557Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator 2025-06-05T23:55:38.0087086Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools 2025-06-05T23:55:38.0087710Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-06-05T23:55:38.0089417Z 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:38.0090009Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools 2025-06-05T23:55:38.0091007Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools/gpuinfo 2025-06-05T23:55:38.0091564Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:55:38.0092761Z 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:38.0094827Z 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:38.0096469Z 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:38.0098246Z 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:38.0099528Z 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:38.0101416Z 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:38.0101755Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack 2025-06-05T23:55:38.0102501Z 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:38.0104012Z 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:38.0104657Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/_passes 2025-06-05T23:55:38.0105691Z 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:38.0107574Z 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:38.0108836Z 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:38.0110511Z 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:38.0111726Z 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:38.0113480Z 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:38.0114453Z 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:38.0116003Z 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:38.0117479Z 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:38.0119008Z 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:38.0120813Z 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:38.0122414Z 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:38.0123088Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/operators 2025-06-05T23:55:38.0124095Z 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:38.0125308Z 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:38.0126962Z 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:38.0127857Z 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:38.0129164Z 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:38.0130806Z 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:38.0131678Z 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:38.0132537Z 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:38.0133795Z 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:38.0135465Z 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:38.0136644Z 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:38.0138325Z 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:38.0139714Z 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:38.0141536Z 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:38.0142865Z 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:38.0144420Z 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:38.0146139Z 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:38.0147418Z 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:38.0149278Z 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:38.0150544Z 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:38.0152263Z 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:38.0153477Z 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:38.0155145Z 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:38.0156601Z 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:38.0158296Z 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:38.0159605Z 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:38.0161269Z 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:38.0162163Z 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:38.0163844Z 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:38.0165113Z 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:38.0167040Z 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:38.0168341Z 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:38.0169697Z 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:38.0171303Z 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:38.0172183Z 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:38.0173789Z 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:38.0175380Z 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:38.0176907Z 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:38.0178641Z 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:38.0179538Z 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:38.0181137Z 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:38.0182759Z 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:38.0184507Z 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:38.0185733Z 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:38.0187533Z 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:38.0189056Z 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:38.0190646Z 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:38.0191724Z 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:38.0193264Z 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:38.0193934Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition 2025-06-05T23:55:38.0195594Z 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:38.0197380Z 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:38.0198125Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition/config 2025-06-05T23:55:38.0199826Z 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:38.0201687Z 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:38.0203509Z 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:38.0205231Z 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:38.0206919Z 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:38.0208809Z 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:38.0209230Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition/graphs 2025-06-05T23:55:38.0210891Z 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:38.0212362Z 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:38.0212809Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/quantizer 2025-06-05T23:55:38.0214733Z 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:38.0216074Z 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:38.0216757Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/serialization 2025-06-05T23:55:38.0218511Z 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:38.0220498Z 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:38.0221988Z 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:38.0223797Z 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:38.0224397Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test 2025-06-05T23:55:38.0226057Z 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:38.0227620Z 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:38.0228341Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/models 2025-06-05T23:55:38.0229509Z 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:38.0230807Z 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:38.0232539Z 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:38.0233635Z 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:38.0235637Z 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:38.0236842Z 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:38.0238769Z 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:38.0240043Z 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:38.0241838Z 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:38.0242828Z 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:38.0244406Z 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:38.0245929Z 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:38.0247494Z 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:38.0248135Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/ops 2025-06-05T23:55:38.0249574Z 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:38.0251194Z 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:38.0252349Z 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:38.0254216Z 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:38.0255159Z 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:38.0256770Z 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:38.0258111Z 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:38.0259070Z 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:38.0259941Z 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:38.0260848Z 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:38.0262689Z 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:38.0263844Z 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:38.0265164Z 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:38.0266798Z 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:38.0267798Z 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:38.0268735Z 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:38.0269638Z 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:38.0270528Z 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:38.0271983Z 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:38.0273583Z 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:38.0274614Z 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:38.0276247Z 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:38.0277561Z 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:38.0278948Z 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:38.0280652Z 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:38.0281793Z 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:38.0282834Z 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:38.0283779Z 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:38.0285388Z 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:38.0286758Z 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:38.0287697Z 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:38.0289400Z 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:38.0290508Z 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:38.0291416Z 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:38.0292354Z 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:38.0293212Z 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:38.0294206Z 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:38.0295081Z 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:38.0295955Z 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:38.0296814Z 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:38.0297683Z 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:38.0298625Z 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:38.0299525Z 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:38.0299910Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/passes 2025-06-05T23:55:38.0300957Z 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:38.0301923Z 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:38.0302997Z 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:38.0304041Z 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:38.0305000Z 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:38.0305967Z 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:38.0307614Z 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:38.0308242Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:55:38.0310061Z 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:38.0312120Z 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:38.0314025Z 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:38.0314765Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/serialization 2025-06-05T23:55:38.0316452Z 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:38.0318395Z 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:38.0319089Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/tester 2025-06-05T23:55:38.0320730Z 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:38.0322435Z 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:38.0323116Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party 2025-06-05T23:55:38.0323861Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:55:38.0325687Z 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:38.0326547Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/include 2025-06-05T23:55:38.0327407Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:55:38.0328808Z 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:38.0330839Z 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:38.0332698Z 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:38.0333488Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/test 2025-06-05T23:55:38.0334180Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-06-05T23:55:38.0335326Z 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:38.0337091Z 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:38.0338065Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:55:38.0339939Z 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:38.0341766Z 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:38.0342584Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:55:38.0343827Z 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:38.0344540Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:55:38.0346677Z 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:38.0348932Z 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:38.0350729Z 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:38.0351605Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/deps 2025-06-05T23:55:38.0352399Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:55:38.0354591Z 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:38.0355832Z 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:38.0357717Z 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:38.0358501Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:55:38.0360145Z 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:38.0361872Z 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:38.0362302Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK 2025-06-05T23:55:38.0363083Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:55:38.0365090Z 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:38.0367059Z 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:38.0368883Z 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:38.0370722Z 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:38.0371574Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:38.0372866Z 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:38.0374974Z 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:38.0376890Z 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:38.0378964Z 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:38.0380730Z 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:38.0382594Z 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:38.0384943Z 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:38.0386589Z 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:38.0388555Z 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:38.0390309Z 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:38.0392224Z 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:38.0394391Z 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:38.0395859Z 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:38.0397912Z 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:38.0399667Z 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:38.0401750Z 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:38.0404043Z 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:38.0405852Z 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:38.0407894Z 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:38.0409858Z 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:38.0411447Z 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:38.0413783Z 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:38.0415812Z 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:38.0418023Z 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:38.0419828Z 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:38.0421179Z 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:38.0423318Z 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:38.0423794Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:55:38.0424915Z 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:38.0426535Z 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:38.0428310Z 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:38.0429679Z 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:38.0431705Z 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:38.0433236Z 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:38.0434522Z 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:38.0436613Z 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:38.0438008Z 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:38.0440041Z 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:38.0442120Z 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:38.0443556Z 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:38.0445547Z 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:38.0447016Z 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:38.0449092Z 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:38.0450535Z 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:38.0452484Z 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:38.0454721Z 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:38.0456616Z 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:38.0458344Z 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:38.0460504Z 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:38.0462224Z 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:38.0464364Z 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:38.0465748Z 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:38.0467753Z 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:38.0469176Z 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:38.0471175Z 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:38.0473330Z 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:38.0474732Z 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:38.0476853Z 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:38.0478595Z 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:38.0480507Z 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:38.0482624Z 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:38.0484460Z 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:38.0486563Z 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:38.0488624Z 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:38.0490403Z 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:38.0492680Z 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:38.0494815Z 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:38.0497171Z 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:38.0498598Z 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:38.0500669Z 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:38.0501910Z 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:38.0503981Z 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:38.0505740Z 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:38.0507472Z 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:38.0508918Z 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:38.0510958Z 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:38.0512684Z 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:38.0514474Z 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:38.0516687Z 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:38.0518404Z 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:38.0520572Z 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:38.0521960Z 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:38.0523335Z 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:38.0524584Z 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:38.0525851Z 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:38.0527157Z 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:38.0528316Z 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:38.0529484Z 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:38.0530772Z 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:38.0531915Z 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:38.0533103Z 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:38.0534361Z 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:38.0535514Z 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:38.0536772Z 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:38.0537923Z 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:38.0539142Z 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:38.0540186Z 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:38.0541260Z 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:38.0542554Z 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:38.0543632Z 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:38.0544739Z 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:38.0545955Z 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:38.0546959Z 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:38.0547311Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/utils 2025-06-05T23:55:38.0548242Z 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:38.0549089Z 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:38.0549898Z 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:38.0550945Z 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:38.0551250Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple 2025-06-05T23:55:38.0551572Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps 2025-06-05T23:55:38.0552337Z 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:38.0553153Z 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:38.0553547Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/operators 2025-06-05T23:55:38.0554503Z 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:38.0555457Z 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:38.0556380Z 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:38.0557437Z 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:38.0558358Z 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:38.0559360Z 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:38.0560351Z 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:38.0561399Z 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:38.0562492Z 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:38.0563545Z 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:38.0564464Z 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:38.0565431Z 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:38.0566369Z 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:38.0567305Z 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:38.0568308Z 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:38.0569232Z 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:38.0570188Z 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:38.0571142Z 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:38.0572050Z 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:38.0573112Z 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:38.0573487Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/partition 2025-06-05T23:55:38.0574445Z 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:38.0575394Z 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:38.0575791Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/serialization 2025-06-05T23:55:38.0576787Z 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:38.0577797Z 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:38.0579036Z 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:38.0579396Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/test 2025-06-05T23:55:38.0580508Z 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:38.0581399Z 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:38.0582437Z 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:38.0583434Z 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:38.0584306Z 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:38.0585176Z 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:38.0586152Z 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:38.0586502Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/utils 2025-06-05T23:55:38.0587346Z 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:38.0588329Z 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:38.0588666Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml 2025-06-05T23:55:38.0589048Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/compiler 2025-06-05T23:55:38.0589951Z 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:38.0590933Z 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:38.0591301Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/partition 2025-06-05T23:55:38.0592338Z 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:38.0593331Z 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:38.0593713Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/quantizer 2025-06-05T23:55:38.0594678Z 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:38.0595748Z 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:38.0596103Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/test 2025-06-05T23:55:38.0597063Z 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:38.0598204Z 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:38.0598586Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/runtime 2025-06-05T23:55:38.0599039Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/runtime/test 2025-06-05T23:55:38.0600189Z 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:38.0601141Z 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:38.0602190Z 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:38.0602509Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence 2025-06-05T23:55:38.0602874Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot 2025-06-05T23:55:38.0603712Z 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:38.0604515Z 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:38.0605369Z 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:38.0606323Z 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:38.0607146Z 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:38.0607932Z 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:38.0608877Z 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:38.0609740Z 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:38.0610575Z 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:38.0611567Z 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:38.0612371Z 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:38.0613157Z 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:38.0614230Z 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:38.0615045Z 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:38.0615861Z 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:38.0616760Z 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:38.0617804Z 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:38.0618590Z 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:38.0618969Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot/quantizer 2025-06-05T23:55:38.0619915Z 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:38.0620992Z 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:38.0622031Z 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:38.0623498Z 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:38.0623929Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot/tests 2025-06-05T23:55:38.0624899Z 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:38.0625835Z 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:38.0626767Z 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:38.0627817Z 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:38.0628735Z 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:38.0629837Z 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:38.0630799Z 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:38.0631835Z 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:38.0632970Z 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:38.0633795Z 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:38.0634665Z 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:38.0635777Z 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:38.0636123Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/runtime 2025-06-05T23:55:38.0637027Z 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:38.0637877Z 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:38.0638771Z 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:38.0639663Z 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:38.0639991Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils 2025-06-05T23:55:38.0640811Z 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:38.0641641Z 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:38.0642676Z 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:38.0643045Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO 2025-06-05T23:55:38.0643910Z 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:38.0644346Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:55:38.0645480Z 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:38.0646515Z 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:38.0646934Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:55:38.0647948Z 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:38.0649157Z 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:38.0650184Z 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:38.0650591Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto 2025-06-05T23:55:38.0651559Z 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:38.0652106Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-06-05T23:55:38.0653156Z 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:38.0653895Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:55:38.0655204Z 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:38.0656557Z 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:38.0657794Z 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:38.0658378Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:55:38.0659566Z 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:38.0660937Z 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:38.0662116Z 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:38.0663428Z 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:38.0663967Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:55:38.0665159Z 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:38.0666547Z 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:38.0667773Z 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:38.0669107Z 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:38.0669609Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:55:38.0670860Z 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:38.0672049Z 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:38.0672549Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:55:38.0673900Z 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:38.0675105Z 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:38.0675695Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:55:38.0677042Z 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:38.0678264Z 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:38.0679800Z 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:38.0681011Z 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:38.0682256Z 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:38.0683575Z 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:38.0684783Z 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:38.0685328Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:55:38.0686363Z 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:38.0687429Z 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:38.0688633Z 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:38.0689719Z 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:38.0690109Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/test 2025-06-05T23:55:38.0690667Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:55:38.0691855Z 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:38.0693021Z 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:38.0694626Z 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:38.0695890Z 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:38.0697064Z 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:38.0698253Z 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:38.0699429Z 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:38.0700675Z 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:38.0701798Z 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:38.0703010Z 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:38.0704148Z 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:38.0705467Z 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:38.0706616Z 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:38.0707857Z 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:38.0708983Z 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:38.0709306Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m 2025-06-05T23:55:38.0709624Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/ops 2025-06-05T23:55:38.0710594Z 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:38.0711420Z 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:38.0711765Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/passes 2025-06-05T23:55:38.0712675Z 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:38.0713093Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/test 2025-06-05T23:55:38.0714083Z 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:38.0714424Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples 2025-06-05T23:55:38.0714782Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/llm_pte_finetuning 2025-06-05T23:55:38.0715617Z 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:38.0716654Z 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:38.0717554Z 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:38.0718394Z 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:38.0719382Z 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:38.0720273Z 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:38.0721197Z 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:38.0722075Z 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:38.0722970Z 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:38.0723284Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models 2025-06-05T23:55:38.0724164Z 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:38.0724911Z 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:38.0725656Z 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:38.0726421Z 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:38.0726776Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/deeplab_v3 2025-06-05T23:55:38.0727620Z 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:38.0728444Z 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:38.0728768Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/edsr 2025-06-05T23:55:38.0729547Z 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:38.0730462Z 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:38.0730839Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/efficient_sam 2025-06-05T23:55:38.0731766Z 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:38.0732638Z 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:38.0733132Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:55:38.0734403Z 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:38.0735642Z 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:38.0736817Z 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:38.0737968Z 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:38.0739047Z 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:38.0740207Z 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:38.0740586Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/emformer_rnnt 2025-06-05T23:55:38.0741461Z 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:38.0742432Z 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:38.0742831Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/inception_v3 2025-06-05T23:55:38.0743696Z 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:38.0744557Z 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:38.0744928Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/inception_v4 2025-06-05T23:55:38.0745855Z 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:38.0746748Z 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:38.0747082Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama 2025-06-05T23:55:38.0747946Z 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:38.0748967Z 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:38.0750391Z 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:38.0751848Z 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:38.0753101Z 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:38.0754107Z 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:38.0754938Z 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:38.0755766Z 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:38.0756672Z 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:38.0757540Z 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:38.0758339Z 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:38.0759410Z 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:38.0760705Z 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:38.0762113Z 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:38.0763308Z 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:38.0763699Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/evaluate 2025-06-05T23:55:38.0764610Z 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:38.0765561Z 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:38.0765961Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/experimental 2025-06-05T23:55:38.0767112Z 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:38.0768199Z 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:38.0769309Z 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:38.0770638Z 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:38.0771157Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/runner 2025-06-05T23:55:38.0772028Z 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:38.0772953Z 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:38.0774069Z 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:38.0774544Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/source_transformation 2025-06-05T23:55:38.0775586Z 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:38.0776844Z 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:38.0777921Z 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:38.0779215Z 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:38.0780429Z 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:38.0781468Z 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:38.0782565Z 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:38.0783774Z 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:38.0784842Z 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:38.0786002Z 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:38.0787053Z 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:38.0788192Z 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:38.0789480Z 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:38.0790582Z 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:38.0791933Z 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:38.0793049Z 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:38.0794388Z 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:38.0795461Z 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:38.0795828Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/tests 2025-06-05T23:55:38.0796873Z 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:38.0797885Z 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:38.0798938Z 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:38.0799912Z 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:38.0800838Z 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:38.0801761Z 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:38.0802813Z 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:38.0803194Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/tokenizer 2025-06-05T23:55:38.0804139Z 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:38.0804517Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision 2025-06-05T23:55:38.0805597Z 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:38.0806041Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:55:38.0807056Z 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:38.0808301Z 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:38.0809379Z 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:38.0810546Z 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:38.0811117Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:55:38.0812094Z 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:38.0813090Z 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:38.0814224Z 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:38.0815292Z 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:38.0815759Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/text_decoder 2025-06-05T23:55:38.0816773Z 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:38.0817425Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:55:38.0818515Z 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:38.0819668Z 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:38.0820148Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:55:38.0821297Z 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:38.0822372Z 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:38.0823012Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:55:38.0824133Z 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:38.0825318Z 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:38.0825727Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llava 2025-06-05T23:55:38.0826660Z 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:38.0827493Z 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:38.0828510Z 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:38.0828874Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llava/test 2025-06-05T23:55:38.0829758Z 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:38.0830612Z 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:38.0830956Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/lstm 2025-06-05T23:55:38.0831854Z 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:38.0832635Z 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:38.0832992Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilebert 2025-06-05T23:55:38.0833837Z 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:38.0834860Z 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:38.0835237Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilenet_v2 2025-06-05T23:55:38.0836134Z 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:38.0837001Z 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:38.0837444Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilenet_v3 2025-06-05T23:55:38.0838323Z 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:38.0839179Z 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:38.0839567Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi-3-mini-lora 2025-06-05T23:55:38.0840676Z 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:38.0841027Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi-3-mini 2025-06-05T23:55:38.0841865Z 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:38.0842702Z 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:38.0843676Z 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:38.0844644Z 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:38.0845591Z 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:38.0845947Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi_4_mini 2025-06-05T23:55:38.0846939Z 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:38.0847834Z 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:38.0848180Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/qwen2_5 2025-06-05T23:55:38.0848973Z 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:38.0849957Z 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:38.0850291Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/qwen3 2025-06-05T23:55:38.0851087Z 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:38.0851941Z 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:38.0852317Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/resnet 2025-06-05T23:55:38.0853214Z 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:38.0854127Z 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:38.0854468Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/smollm2 2025-06-05T23:55:38.0855275Z 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:38.0856262Z 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:38.0856593Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/test 2025-06-05T23:55:38.0857373Z 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:38.0858286Z 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:38.0858714Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/torchvision_vit 2025-06-05T23:55:38.0859599Z 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:38.0860607Z 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:38.0860957Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/toy_model 2025-06-05T23:55:38.0861887Z 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:38.0862712Z 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:38.0863135Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/wav2letter 2025-06-05T23:55:38.0863985Z 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:38.0865013Z 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:38.0865347Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/moshi 2025-06-05T23:55:38.0865704Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/moshi/mimi 2025-06-05T23:55:38.0866560Z 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:38.0866866Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple 2025-06-05T23:55:38.0867195Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml 2025-06-05T23:55:38.0867552Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml/llama 2025-06-05T23:55:38.0868433Z 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:38.0869480Z 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:38.0870336Z 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:38.0871194Z 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:38.0872064Z 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:38.0872591Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml/scripts 2025-06-05T23:55:38.0873515Z 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:38.0874414Z 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:38.0875393Z 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:38.0876394Z 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:38.0877412Z 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:38.0877723Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/mps 2025-06-05T23:55:38.0878076Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/mps/scripts 2025-06-05T23:55:38.0879388Z 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:38.0880282Z 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:38.0880660Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension 2025-06-05T23:55:38.0880978Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/export_util 2025-06-05T23:55:38.0881758Z 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:38.0882540Z 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:38.0882871Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor 2025-06-05T23:55:38.0883654Z 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:38.0884023Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor/serialize 2025-06-05T23:55:38.0884911Z 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:38.0885858Z 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:38.0886776Z 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:38.0887756Z 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:38.0888798Z 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:38.0889156Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor/test 2025-06-05T23:55:38.0890038Z 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:38.0890362Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/gguf_util 2025-06-05T23:55:38.0891142Z 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:38.0891906Z 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:38.0892784Z 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:38.0893165Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/gguf_util/converters 2025-06-05T23:55:38.0894195Z 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:38.0894528Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pybindings 2025-06-05T23:55:38.0895341Z 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:38.0895936Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pybindings/test 2025-06-05T23:55:38.0896808Z 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:38.0897808Z 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:38.0898740Z 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:38.0899637Z 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:38.0900607Z 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:38.0900924Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pytree 2025-06-05T23:55:38.0901837Z 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:38.0902177Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pytree/test 2025-06-05T23:55:38.0902952Z 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:38.0903273Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training 2025-06-05T23:55:38.0904097Z 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:38.0904510Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/pybindings 2025-06-05T23:55:38.0905460Z 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:38.0905893Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/pybindings/test 2025-06-05T23:55:38.0906957Z 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:38.0907893Z 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:38.0908253Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples 2025-06-05T23:55:38.0908735Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples/XOR 2025-06-05T23:55:38.0909687Z 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:38.0910692Z 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:38.0911181Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples/XOR/test 2025-06-05T23:55:38.0912199Z 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:38.0912494Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm 2025-06-05T23:55:38.0912824Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops 2025-06-05T23:55:38.0913751Z 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:38.0914616Z 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:38.0915620Z 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:38.0916471Z 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:38.0917504Z 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:38.0918433Z 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:38.0919320Z 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:38.0920336Z 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:38.0921213Z 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:38.0921618Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant 2025-06-05T23:55:38.0922701Z 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:38.0923278Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant/third-party 2025-06-05T23:55:38.0923798Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:55:38.0924960Z 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:38.0926204Z 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:38.0927653Z 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:38.0928105Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/export 2025-06-05T23:55:38.0928894Z 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:38.0929698Z 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:38.0930534Z 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:38.0931546Z 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:38.0933083Z 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:38.0934768Z 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:38.0935542Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/export/test 2025-06-05T23:55:38.0937127Z 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:38.0938746Z 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:38.0939372Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/modules 2025-06-05T23:55:38.0940842Z 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:38.0942474Z 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:38.0944034Z 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:38.0945536Z 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:38.0946170Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/modules/test 2025-06-05T23:55:38.0947751Z 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:38.0949516Z 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:38.0951234Z 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:38.0953081Z 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:38.0953738Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers 2025-06-05T23:55:38.0955308Z 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:38.0956212Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:55:38.0958235Z 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:38.0960321Z 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:38.0962378Z 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:38.0964473Z 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:38.0966759Z 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:38.0967748Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-06-05T23:55:38.0970003Z 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:38.0971057Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:55:38.0973428Z 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:38.0975996Z 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:38.0976717Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/test 2025-06-05T23:55:38.0978734Z 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:38.0979507Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party 2025-06-05T23:55:38.0980421Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:55:38.0982602Z 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:38.0984793Z 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:38.0985818Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:55:38.0986866Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:55:38.0989267Z 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:38.0991749Z 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:38.0993954Z 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:38.0994659Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json 2025-06-05T23:55:38.0995156Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs 2025-06-05T23:55:38.0995962Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs 2025-06-05T23:55:38.0996935Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-06-05T23:55:38.0999419Z 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:38.1000133Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests 2025-06-05T23:55:38.1000825Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty 2025-06-05T23:55:38.1001432Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-06-05T23:55:38.1002790Z 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:38.1003442Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools 2025-06-05T23:55:38.1004143Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-06-05T23:55:38.1005512Z 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:38.1006318Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:55:38.1007679Z 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:38.1008476Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-06-05T23:55:38.1009885Z 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:38.1010715Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-06-05T23:55:38.1012061Z 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:38.1012668Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/pcre2 2025-06-05T23:55:38.1013278Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:55:38.1014613Z 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:38.1016206Z 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:38.1017400Z 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:38.1018612Z 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:38.1020284Z 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:38.1021459Z 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:38.1023046Z 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:38.1024290Z 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:38.1024898Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2 2025-06-05T23:55:38.1025568Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-06-05T23:55:38.1026721Z 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:38.1027416Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:55:38.1028514Z 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:38.1029633Z 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:38.1030746Z 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:38.1031289Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-06-05T23:55:38.1032566Z 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:38.1033035Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:55:38.1034175Z 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:38.1035312Z 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:38.1036388Z 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:38.1036893Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece 2025-06-05T23:55:38.1037446Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-06-05T23:55:38.1038693Z 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:38.1039279Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:55:38.1040749Z 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:38.1042203Z 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:38.1042772Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src 2025-06-05T23:55:38.1043439Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:55:38.1045412Z 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:38.1046905Z 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:38.1048504Z 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:38.1050455Z 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:38.1050827Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build 2025-06-05T23:55:38.1051368Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib 2025-06-05T23:55:38.1052035Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:55:38.1053226Z 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:38.1054659Z 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:38.1055931Z 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:38.1057257Z 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:38.1058768Z 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:38.1059343Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools 2025-06-05T23:55:38.1060929Z 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:38.1061551Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:55:38.1063161Z 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:38.1064762Z 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:38.1065079Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module 2025-06-05T23:55:38.1065415Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module/test 2025-06-05T23:55:38.1065868Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module/test/resources 2025-06-05T23:55:38.1066957Z 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:38.1067229Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels 2025-06-05T23:55:38.1067545Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels/quantized 2025-06-05T23:55:38.1068552Z 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:38.1068961Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels/quantized/test 2025-06-05T23:55:38.1069820Z 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:38.1070880Z 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:38.1071973Z 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:38.1072770Z 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:38.1073629Z 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:38.1073880Z creating pip-out/bdist.linux-x86_64/wheel/executorch/schema 2025-06-05T23:55:38.1074519Z 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:38.1075173Z 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:38.1075968Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch 2025-06-05T23:55:38.1076275Z creating pip-out/bdist.linux-x86_64/wheel/executorch/share 2025-06-05T23:55:38.1076561Z creating pip-out/bdist.linux-x86_64/wheel/executorch/share/cmake 2025-06-05T23:55:38.1077350Z 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:38.1077613Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include 2025-06-05T23:55:38.1077936Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch 2025-06-05T23:55:38.1078278Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime 2025-06-05T23:55:38.1079239Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core 2025-06-05T23:55:38.1080193Z 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:38.1081462Z 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:38.1082534Z 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:38.1083432Z 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:38.1084521Z 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:38.1085613Z 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:38.1086597Z 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:38.1087745Z 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:38.1088779Z 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:38.1089807Z 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:38.1090918Z 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:38.1091892Z 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:38.1093006Z 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:38.1094134Z 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:38.1095045Z 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:38.1096050Z 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:38.1097038Z 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:38.1098039Z 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:38.1098585Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten 2025-06-05T23:55:38.1099818Z 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:38.1100475Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:55:38.1101845Z 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:38.1103300Z 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:38.1103967Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:55:38.1105092Z 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:38.1106220Z 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:38.1107597Z 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:38.1108936Z 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:38.1110070Z 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:38.1110554Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:55:38.1111758Z 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:38.1113003Z 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:38.1114164Z 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:38.1115424Z 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:38.1117178Z 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:38.1119109Z 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:38.1121201Z 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:38.1123534Z 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:38.1125659Z 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:38.1127787Z 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:38.1129908Z 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:38.1132028Z 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:38.1134320Z 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:38.1136517Z 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:38.1137435Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10 2025-06-05T23:55:38.1138448Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10 2025-06-05T23:55:38.1139542Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:55:38.1141993Z 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:38.1143428Z 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:38.1144234Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:55:38.1146673Z 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:38.1149049Z 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:38.1151506Z 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:38.1153935Z 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:38.1156361Z 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:38.1159167Z 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:38.1161729Z 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:38.1163996Z 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:38.1165304Z 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:38.1166592Z 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:38.1167918Z 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:38.1169166Z 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:38.1169555Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:38.1170748Z 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:38.1172688Z 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:38.1174048Z 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:38.1176050Z 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:38.1176818Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/kernel/test 2025-06-05T23:55:38.1179069Z 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:38.1179746Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/platform 2025-06-05T23:55:38.1180734Z 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:38.1181722Z 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:38.1182679Z 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:38.1184070Z 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:38.1185191Z 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:38.1186143Z 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:38.1187145Z 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:38.1188135Z 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:38.1189106Z 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:38.1190080Z 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:38.1191044Z 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:38.1191492Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/platform/test 2025-06-05T23:55:38.1192523Z 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:38.1193743Z 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:38.1194301Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension 2025-06-05T23:55:38.1195035Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/kernel_util 2025-06-05T23:55:38.1197050Z 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:38.1198403Z 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:38.1200416Z 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:38.1201147Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/tensor 2025-06-05T23:55:38.1203052Z 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:38.1204331Z 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:38.1206256Z 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:38.1208394Z 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:38.1209177Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/threadpool 2025-06-05T23:55:38.1211111Z 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:38.1213168Z 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:38.1215241Z 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:38.1215636Z creating pip-out/bdist.linux-x86_64/wheel/executorch/data 2025-06-05T23:55:38.1216096Z creating pip-out/bdist.linux-x86_64/wheel/executorch/data/bin 2025-06-05T23:55:38.1217272Z 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:38.1218288Z 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:38.1218454Z running install_egg_info 2025-06-05T23:55:38.1219060Z 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:38.1219299Z running install_scripts 2025-06-05T23:55:38.1219996Z creating pip-out/bdist.linux-x86_64/wheel/executorch-0.7.0a0+bd57234.dist-info/WHEEL 2025-06-05T23:55:38.1221454Z creating '/tmp/pip-wheel-402o79oc/.tmp-fdpu28tr/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:38.1221673Z adding 'executorch/version.py' 2025-06-05T23:55:38.1222131Z adding 'executorch/backends/apple/coreml/executorchcoreml.cpython-310-x86_64-linux-gnu.so' 2025-06-05T23:55:38.1222453Z adding 'executorch/backends/apple/coreml/executorchcoreml.pyi' 2025-06-05T23:55:38.1222924Z adding 'executorch/backends/apple/coreml/compiler/__init__.py' 2025-06-05T23:55:38.1223537Z adding 'executorch/backends/apple/coreml/compiler/coreml_preprocess.py' 2025-06-05T23:55:38.1224071Z adding 'executorch/backends/apple/coreml/partition/__init__.py' 2025-06-05T23:55:38.1224698Z adding 'executorch/backends/apple/coreml/partition/coreml_partitioner.py' 2025-06-05T23:55:38.1225181Z adding 'executorch/backends/apple/coreml/quantizer/__init__.py' 2025-06-05T23:55:38.1225781Z adding 'executorch/backends/apple/coreml/quantizer/coreml_quantizer.py' 2025-06-05T23:55:38.1226482Z adding 'executorch/backends/apple/coreml/runtime/test/export_stateful_model.py' 2025-06-05T23:55:38.1243238Z adding 'executorch/backends/apple/coreml/test/test_coreml_partitioner.py' 2025-06-05T23:55:38.1244093Z adding 'executorch/backends/apple/coreml/test/test_coreml_quantizer.py' 2025-06-05T23:55:38.1244341Z adding 'executorch/backends/apple/mps/__init__.py' 2025-06-05T23:55:38.1244777Z adding 'executorch/backends/apple/mps/mps_preprocess.py' 2025-06-05T23:55:38.1245219Z adding 'executorch/backends/apple/mps/operators/__init__.py' 2025-06-05T23:55:38.1245781Z adding 'executorch/backends/apple/mps/operators/activation_ops.py' 2025-06-05T23:55:38.1246292Z adding 'executorch/backends/apple/mps/operators/binary_ops.py' 2025-06-05T23:55:38.1246778Z adding 'executorch/backends/apple/mps/operators/clamp_ops.py' 2025-06-05T23:55:38.1247272Z adding 'executorch/backends/apple/mps/operators/constant_ops.py' 2025-06-05T23:55:38.1247841Z adding 'executorch/backends/apple/mps/operators/convolution_ops.py' 2025-06-05T23:55:38.1248377Z adding 'executorch/backends/apple/mps/operators/indexing_ops.py' 2025-06-05T23:55:38.1249227Z adding 'executorch/backends/apple/mps/operators/linear_algebra_ops.py' 2025-06-05T23:55:38.1249736Z adding 'executorch/backends/apple/mps/operators/node_visitor.py' 2025-06-05T23:55:38.1250145Z adding 'executorch/backends/apple/mps/operators/normalization_ops.py' 2025-06-05T23:55:38.1250743Z adding 'executorch/backends/apple/mps/operators/op_clone.py' 2025-06-05T23:55:38.1251249Z adding 'executorch/backends/apple/mps/operators/op_getitem.py' 2025-06-05T23:55:38.1251803Z adding 'executorch/backends/apple/mps/operators/op_quant_dequant.py' 2025-06-05T23:55:38.1252504Z adding 'executorch/backends/apple/mps/operators/op_skip_ops.py' 2025-06-05T23:55:38.1252938Z adding 'executorch/backends/apple/mps/operators/pad_ops.py' 2025-06-05T23:55:38.1253422Z adding 'executorch/backends/apple/mps/operators/pooling_ops.py' 2025-06-05T23:55:38.1254009Z adding 'executorch/backends/apple/mps/operators/range_ops.py' 2025-06-05T23:55:38.1254512Z adding 'executorch/backends/apple/mps/operators/reduce_ops.py' 2025-06-05T23:55:38.1255011Z adding 'executorch/backends/apple/mps/operators/shape_ops.py' 2025-06-05T23:55:38.1255486Z adding 'executorch/backends/apple/mps/operators/unary_ops.py' 2025-06-05T23:55:38.1255906Z adding 'executorch/backends/apple/mps/partition/__init__.py' 2025-06-05T23:55:38.1256211Z adding 'executorch/backends/apple/mps/partition/mps_partitioner.py' 2025-06-05T23:55:38.1256555Z adding 'executorch/backends/apple/mps/serialization/mps_graph_schema.py' 2025-06-05T23:55:38.1256911Z adding 'executorch/backends/apple/mps/serialization/mps_graph_serialize.py' 2025-06-05T23:55:38.1257329Z adding 'executorch/backends/apple/mps/serialization/schema.fbs' 2025-06-05T23:55:38.1257724Z adding 'executorch/backends/apple/mps/test/test_mps.py' 2025-06-05T23:55:38.1258239Z adding 'executorch/backends/apple/mps/test/test_mps_binary_ops.py' 2025-06-05T23:55:38.1258819Z adding 'executorch/backends/apple/mps/test/test_mps_indexing_ops.py' 2025-06-05T23:55:38.1259315Z adding 'executorch/backends/apple/mps/test/test_mps_linear.py' 2025-06-05T23:55:38.1259764Z adding 'executorch/backends/apple/mps/test/test_mps_models.py' 2025-06-05T23:55:38.1260097Z adding 'executorch/backends/apple/mps/test/test_mps_unary_ops.py' 2025-06-05T23:55:38.1260556Z adding 'executorch/backends/apple/mps/test/test_mps_utils.py' 2025-06-05T23:55:38.1260988Z adding 'executorch/backends/apple/mps/utils/mps_utils.py' 2025-06-05T23:55:38.1261444Z adding 'executorch/backends/apple/mps/utils/quant_utils.py' 2025-06-05T23:55:38.1261799Z adding 'executorch/backends/arm/arm_backend.py' 2025-06-05T23:55:38.1262119Z adding 'executorch/backends/arm/arm_vela.py' 2025-06-05T23:55:38.1262486Z adding 'executorch/backends/arm/ethosu_backend.py' 2025-06-05T23:55:38.1262851Z adding 'executorch/backends/arm/ethosu_partitioner.py' 2025-06-05T23:55:38.1263196Z adding 'executorch/backends/arm/process_node.py' 2025-06-05T23:55:38.1263554Z adding 'executorch/backends/arm/tosa_backend.py' 2025-06-05T23:55:38.1263911Z adding 'executorch/backends/arm/tosa_mapping.py' 2025-06-05T23:55:38.1264325Z adding 'executorch/backends/arm/tosa_partitioner.py' 2025-06-05T23:55:38.1264696Z adding 'executorch/backends/arm/tosa_quant_utils.py' 2025-06-05T23:55:38.1265111Z adding 'executorch/backends/arm/tosa_specification.py' 2025-06-05T23:55:38.1265423Z adding 'executorch/backends/arm/tosa_utils.py' 2025-06-05T23:55:38.1265696Z adding 'executorch/backends/arm/vgf_backend.py' 2025-06-05T23:55:38.1265906Z adding 'executorch/backends/arm/vgf_partitioner.py' 2025-06-05T23:55:38.1266125Z adding 'executorch/backends/arm/_passes/__init__.py' 2025-06-05T23:55:38.1266373Z adding 'executorch/backends/arm/_passes/_debug_passes.py' 2025-06-05T23:55:38.1266753Z adding 'executorch/backends/arm/_passes/annotate_channels_last_dim_order_pass.py' 2025-06-05T23:55:38.1267057Z adding 'executorch/backends/arm/_passes/annotate_decomposed_matmul.py' 2025-06-05T23:55:38.1267274Z adding 'executorch/backends/arm/_passes/arm_pass.py' 2025-06-05T23:55:38.1267723Z adding 'executorch/backends/arm/_passes/arm_pass_manager.py' 2025-06-05T23:55:38.1267969Z adding 'executorch/backends/arm/_passes/arm_pass_utils.py' 2025-06-05T23:55:38.1268274Z adding 'executorch/backends/arm/_passes/broadcast_args_pass.py' 2025-06-05T23:55:38.1268809Z adding 'executorch/backends/arm/_passes/cast_int64_pass.py' 2025-06-05T23:55:38.1269282Z adding 'executorch/backends/arm/_passes/cast_to_int32_pass.py' 2025-06-05T23:55:38.1269798Z adding 'executorch/backends/arm/_passes/conv1d_unsqueeze_pass.py' 2025-06-05T23:55:38.1270424Z adding 'executorch/backends/arm/_passes/convert_any_default_dim_dims_pass.py' 2025-06-05T23:55:38.1271006Z adding 'executorch/backends/arm/_passes/convert_expand_copy_to_repeat.py' 2025-06-05T23:55:38.1271618Z adding 'executorch/backends/arm/_passes/convert_full_like_to_full_pass.py' 2025-06-05T23:55:38.1272141Z adding 'executorch/backends/arm/_passes/convert_int_pow_to_mul.py' 2025-06-05T23:55:38.1272663Z adding 'executorch/backends/arm/_passes/convert_minmax_pass.py' 2025-06-05T23:55:38.1273189Z adding 'executorch/backends/arm/_passes/convert_split_to_slice.py' 2025-06-05T23:55:38.1273671Z adding 'executorch/backends/arm/_passes/convert_squeezes_to_view.py' 2025-06-05T23:55:38.1273968Z adding 'executorch/backends/arm/_passes/convert_to_clamp.py' 2025-06-05T23:55:38.1274570Z adding 'executorch/backends/arm/_passes/decompose_cosine_similarity_pass.py' 2025-06-05T23:55:38.1275030Z adding 'executorch/backends/arm/_passes/decompose_div_pass.py' 2025-06-05T23:55:38.1275544Z adding 'executorch/backends/arm/_passes/decompose_gelu_pass.py' 2025-06-05T23:55:38.1276102Z adding 'executorch/backends/arm/_passes/decompose_groupnorm_pass.py' 2025-06-05T23:55:38.1276612Z adding 'executorch/backends/arm/_passes/decompose_layernorm_pass.py' 2025-06-05T23:55:38.1276920Z adding 'executorch/backends/arm/_passes/decompose_leaky_relu_pass.py' 2025-06-05T23:55:38.1277496Z adding 'executorch/backends/arm/_passes/decompose_linalg_vector_norm_pass.py' 2025-06-05T23:55:38.1278026Z adding 'executorch/backends/arm/_passes/decompose_linear_pass.py' 2025-06-05T23:55:38.1278862Z adding 'executorch/backends/arm/_passes/decompose_meandim_pass.py' 2025-06-05T23:55:38.1279332Z adding 'executorch/backends/arm/_passes/decompose_ne_pass.py' 2025-06-05T23:55:38.1279799Z adding 'executorch/backends/arm/_passes/decompose_select.py' 2025-06-05T23:55:38.1280198Z adding 'executorch/backends/arm/_passes/decompose_silu_pass.py' 2025-06-05T23:55:38.1280713Z adding 'executorch/backends/arm/_passes/decompose_softmax_pass.py' 2025-06-05T23:55:38.1281343Z adding 'executorch/backends/arm/_passes/decompose_softmax_unstable_pass.py' 2025-06-05T23:55:38.1281838Z adding 'executorch/backends/arm/_passes/decompose_sqrt_pass.py' 2025-06-05T23:55:38.1282326Z adding 'executorch/backends/arm/_passes/decompose_sum_pass.py' 2025-06-05T23:55:38.1282793Z adding 'executorch/backends/arm/_passes/decompose_var_pass.py' 2025-06-05T23:55:38.1283476Z adding 'executorch/backends/arm/_passes/fold_qdq_with_annotated_qparams_pass.py' 2025-06-05T23:55:38.1283992Z adding 'executorch/backends/arm/_passes/fuse_batchnorm2d_pass.py' 2025-06-05T23:55:38.1284544Z adding 'executorch/backends/arm/_passes/fuse_constant_ops_pass.py' 2025-06-05T23:55:38.1285153Z adding 'executorch/backends/arm/_passes/fuse_equal_placeholders_pass.py' 2025-06-05T23:55:38.1285741Z adding 'executorch/backends/arm/_passes/fuse_quantized_activation_pass.py' 2025-06-05T23:55:38.1286231Z adding 'executorch/backends/arm/_passes/insert_rescales_pass.py' 2025-06-05T23:55:38.1286709Z adding 'executorch/backends/arm/_passes/insert_table_ops.py' 2025-06-05T23:55:38.1287231Z adding 'executorch/backends/arm/_passes/match_arg_ranks_pass.py' 2025-06-05T23:55:38.1287842Z adding 'executorch/backends/arm/_passes/match_where_self_arg_dtype_pass.py' 2025-06-05T23:55:38.1288288Z adding 'executorch/backends/arm/_passes/mm_to_bmm_pass.py' 2025-06-05T23:55:38.1288744Z adding 'executorch/backends/arm/_passes/remove_clone_pass.py' 2025-06-05T23:55:38.1289680Z adding 'executorch/backends/arm/_passes/replace_inf_values_pass.py' 2025-06-05T23:55:38.1290313Z adding 'executorch/backends/arm/_passes/replace_scalar_with_tensor_pass.py' 2025-06-05T23:55:38.1291060Z adding 'executorch/backends/arm/_passes/scalars_to_attribute_pass.py' 2025-06-05T23:55:38.1291588Z adding 'executorch/backends/arm/_passes/size_adjust_conv2d_pass.py' 2025-06-05T23:55:38.1292197Z adding 'executorch/backends/arm/_passes/unsqueeze_before_repeat_pass.py' 2025-06-05T23:55:38.1292835Z adding 'executorch/backends/arm/_passes/unsqueeze_scalar_placeholders_pass.py' 2025-06-05T23:55:38.1293303Z adding 'executorch/backends/arm/operator_support/__init__.py' 2025-06-05T23:55:38.1294020Z adding 'executorch/backends/arm/operator_support/convolution_support.py' 2025-06-05T23:55:38.1294623Z adding 'executorch/backends/arm/operator_support/ethos_u55_support.py' 2025-06-05T23:55:38.1295175Z adding 'executorch/backends/arm/operator_support/minmax_support.py' 2025-06-05T23:55:38.1295729Z adding 'executorch/backends/arm/operator_support/pool_2d_support.py' 2025-06-05T23:55:38.1296301Z adding 'executorch/backends/arm/operator_support/reduce_sum_support.py' 2025-06-05T23:55:38.1296937Z adding 'executorch/backends/arm/operator_support/right_shift_support.py' 2025-06-05T23:55:38.1297502Z adding 'executorch/backends/arm/operator_support/sin_cos_support.py' 2025-06-05T23:55:38.1298082Z adding 'executorch/backends/arm/operator_support/slice_copy_support.py' 2025-06-05T23:55:38.1298631Z adding 'executorch/backends/arm/operator_support/to_copy_support.py' 2025-06-05T23:55:38.1299300Z adding 'executorch/backends/arm/operator_support/tosa_supported_operators.py' 2025-06-05T23:55:38.1299712Z adding 'executorch/backends/arm/operators/__init__.py' 2025-06-05T23:55:38.1300160Z adding 'executorch/backends/arm/operators/node_visitor.py' 2025-06-05T23:55:38.1300529Z adding 'executorch/backends/arm/operators/op_abs.py' 2025-06-05T23:55:38.1300901Z adding 'executorch/backends/arm/operators/op_add.py' 2025-06-05T23:55:38.1301296Z adding 'executorch/backends/arm/operators/op_amax.py' 2025-06-05T23:55:38.1301682Z adding 'executorch/backends/arm/operators/op_amin.py' 2025-06-05T23:55:38.1302093Z adding 'executorch/backends/arm/operators/op_any.py' 2025-06-05T23:55:38.1302535Z adding 'executorch/backends/arm/operators/op_avg_pool2d.py' 2025-06-05T23:55:38.1302914Z adding 'executorch/backends/arm/operators/op_bmm.py' 2025-06-05T23:55:38.1303252Z adding 'executorch/backends/arm/operators/op_cat.py' 2025-06-05T23:55:38.1303513Z adding 'executorch/backends/arm/operators/op_clamp.py' 2025-06-05T23:55:38.1303793Z adding 'executorch/backends/arm/operators/op_constant_pad_nd.py' 2025-06-05T23:55:38.1304034Z adding 'executorch/backends/arm/operators/op_conv2d.py' 2025-06-05T23:55:38.1304255Z adding 'executorch/backends/arm/operators/op_cos.py' 2025-06-05T23:55:38.1304471Z adding 'executorch/backends/arm/operators/op_eq.py' 2025-06-05T23:55:38.1304685Z adding 'executorch/backends/arm/operators/op_erf.py' 2025-06-05T23:55:38.1304903Z adding 'executorch/backends/arm/operators/op_exp.py' 2025-06-05T23:55:38.1305114Z adding 'executorch/backends/arm/operators/op_ge.py' 2025-06-05T23:55:38.1305331Z adding 'executorch/backends/arm/operators/op_gt.py' 2025-06-05T23:55:38.1305540Z adding 'executorch/backends/arm/operators/op_le.py' 2025-06-05T23:55:38.1305745Z adding 'executorch/backends/arm/operators/op_log.py' 2025-06-05T23:55:38.1305954Z adding 'executorch/backends/arm/operators/op_lt.py' 2025-06-05T23:55:38.1306209Z adding 'executorch/backends/arm/operators/op_max_pool2d.py' 2025-06-05T23:55:38.1306451Z adding 'executorch/backends/arm/operators/op_maximum.py' 2025-06-05T23:55:38.1306678Z adding 'executorch/backends/arm/operators/op_minimum.py' 2025-06-05T23:55:38.1306896Z adding 'executorch/backends/arm/operators/op_mul.py' 2025-06-05T23:55:38.1307113Z adding 'executorch/backends/arm/operators/op_neg.py' 2025-06-05T23:55:38.1307571Z adding 'executorch/backends/arm/operators/op_permute.py' 2025-06-05T23:55:38.1307779Z adding 'executorch/backends/arm/operators/op_pow.py' 2025-06-05T23:55:38.1308040Z adding 'executorch/backends/arm/operators/op_reciprocal.py' 2025-06-05T23:55:38.1308402Z adding 'executorch/backends/arm/operators/op_repeat.py' 2025-06-05T23:55:38.1308649Z adding 'executorch/backends/arm/operators/op_rescale.py' 2025-06-05T23:55:38.1308907Z adding 'executorch/backends/arm/operators/op_rshift_tensor.py' 2025-06-05T23:55:38.1309145Z adding 'executorch/backends/arm/operators/op_rsqrt.py' 2025-06-05T23:55:38.1309389Z adding 'executorch/backends/arm/operators/op_sigmoid.py' 2025-06-05T23:55:38.1309612Z adding 'executorch/backends/arm/operators/op_sin.py' 2025-06-05T23:55:38.1309831Z adding 'executorch/backends/arm/operators/op_slice.py' 2025-06-05T23:55:38.1310054Z adding 'executorch/backends/arm/operators/op_sub.py' 2025-06-05T23:55:38.1310277Z adding 'executorch/backends/arm/operators/op_sum.py' 2025-06-05T23:55:38.1310516Z adding 'executorch/backends/arm/operators/op_table.py' 2025-06-05T23:55:38.1310728Z adding 'executorch/backends/arm/operators/op_tanh.py' 2025-06-05T23:55:38.1310973Z adding 'executorch/backends/arm/operators/op_to_copy.py' 2025-06-05T23:55:38.1311275Z adding 'executorch/backends/arm/operators/op_to_dim_order_copy.py' 2025-06-05T23:55:38.1311526Z adding 'executorch/backends/arm/operators/op_transpose.py' 2025-06-05T23:55:38.1311841Z adding 'executorch/backends/arm/operators/op_upsample_bilinear2d.py' 2025-06-05T23:55:38.1312132Z adding 'executorch/backends/arm/operators/op_upsample_nearest2d.py' 2025-06-05T23:55:38.1312359Z adding 'executorch/backends/arm/operators/op_view.py' 2025-06-05T23:55:38.1312587Z adding 'executorch/backends/arm/operators/op_where.py' 2025-06-05T23:55:38.1312914Z adding 'executorch/backends/arm/operators/operator_validation_utils.py' 2025-06-05T23:55:38.1313141Z adding 'executorch/backends/arm/operators/ops_binary.py' 2025-06-05T23:55:38.1313396Z adding 'executorch/backends/arm/operators/ops_identity.py' 2025-06-05T23:55:38.1313636Z adding 'executorch/backends/arm/operators/ops_unary.py' 2025-06-05T23:55:38.1313865Z adding 'executorch/backends/arm/quantizer/__init__.py' 2025-06-05T23:55:38.1314109Z adding 'executorch/backends/arm/quantizer/arm_quantizer.py' 2025-06-05T23:55:38.1314397Z adding 'executorch/backends/arm/quantizer/arm_quantizer_utils.py' 2025-06-05T23:55:38.1314709Z adding 'executorch/backends/arm/quantizer/quantization_annotator.py' 2025-06-05T23:55:38.1314999Z adding 'executorch/backends/arm/quantizer/quantization_config.py' 2025-06-05T23:55:38.1315248Z adding 'executorch/backends/arm/scripts/parse_test_names.py' 2025-06-05T23:55:38.1315448Z adding 'executorch/backends/arm/test/common.py' 2025-06-05T23:55:38.1315655Z adding 'executorch/backends/arm/test/conftest.py' 2025-06-05T23:55:38.1315880Z adding 'executorch/backends/arm/test/runner_utils.py' 2025-06-05T23:55:38.1316079Z adding 'executorch/backends/arm/test/test_model.py' 2025-06-05T23:55:38.1316394Z adding 'executorch/backends/arm/test/misc/test_bn_relu_folding_qat.py' 2025-06-05T23:55:38.1316695Z adding 'executorch/backends/arm/test/misc/test_custom_partition.py' 2025-06-05T23:55:38.1316964Z adding 'executorch/backends/arm/test/misc/test_debug_feats.py' 2025-06-05T23:55:38.1317258Z adding 'executorch/backends/arm/test/misc/test_dim_order_guards.py' 2025-06-05T23:55:38.1317526Z adding 'executorch/backends/arm/test/misc/test_lifted_tensor.py' 2025-06-05T23:55:38.1317819Z adding 'executorch/backends/arm/test/misc/test_model_evaluator.py' 2025-06-05T23:55:38.1318131Z adding 'executorch/backends/arm/test/misc/test_multiple_delegates.py' 2025-06-05T23:55:38.1318426Z adding 'executorch/backends/arm/test/misc/test_multiple_outputs.py' 2025-06-05T23:55:38.1318748Z adding 'executorch/backends/arm/test/misc/test_non_persistent_buffers.py' 2025-06-05T23:55:38.1319152Z adding 'executorch/backends/arm/test/misc/test_partition_decomposed_quantized_ops.py' 2025-06-05T23:55:38.1319562Z adding 'executorch/backends/arm/test/misc/test_tosa_spec.py' 2025-06-05T23:55:38.1319962Z adding 'executorch/backends/arm/test/models/test_conformer.py' 2025-06-05T23:55:38.1320496Z adding 'executorch/backends/arm/test/models/test_deit_tiny_arm.py' 2025-06-05T23:55:38.1320900Z adding 'executorch/backends/arm/test/models/test_dl3_arm.py' 2025-06-05T23:55:38.1321278Z adding 'executorch/backends/arm/test/models/test_llama.py' 2025-06-05T23:55:38.1321752Z adding 'executorch/backends/arm/test/models/test_lstm_arm.py' 2025-06-05T23:55:38.1322264Z adding 'executorch/backends/arm/test/models/test_mobilenet_v2_arm.py' 2025-06-05T23:55:38.1322786Z adding 'executorch/backends/arm/test/models/test_mobilenet_v3_arm.py' 2025-06-05T23:55:38.1323210Z adding 'executorch/backends/arm/test/models/test_nn_functional.py' 2025-06-05T23:55:38.1323504Z adding 'executorch/backends/arm/test/models/test_nn_modules.py' 2025-06-05T23:55:38.1323811Z adding 'executorch/backends/arm/test/models/test_torch_functions.py' 2025-06-05T23:55:38.1324070Z adding 'executorch/backends/arm/test/models/test_w2l_arm.py' 2025-06-05T23:55:38.1324295Z adding 'executorch/backends/arm/test/ops/test_abs.py' 2025-06-05T23:55:38.1324523Z adding 'executorch/backends/arm/test/ops/test_add.py' 2025-06-05T23:55:38.1324783Z adding 'executorch/backends/arm/test/ops/test_alias_copy.py' 2025-06-05T23:55:38.1325046Z adding 'executorch/backends/arm/test/ops/test_amax.py' 2025-06-05T23:55:38.1325410Z adding 'executorch/backends/arm/test/ops/test_amin.py' 2025-06-05T23:55:38.1325773Z adding 'executorch/backends/arm/test/ops/test_any.py' 2025-06-05T23:55:38.1326195Z adding 'executorch/backends/arm/test/ops/test_arange.py' 2025-06-05T23:55:38.1326562Z adding 'executorch/backends/arm/test/ops/test_at.py' 2025-06-05T23:55:38.1327025Z adding 'executorch/backends/arm/test/ops/test_avg_pool2d.py' 2025-06-05T23:55:38.1327481Z adding 'executorch/backends/arm/test/ops/test_batch_norm.py' 2025-06-05T23:55:38.1327903Z adding 'executorch/backends/arm/test/ops/test_bitwise.py' 2025-06-05T23:55:38.1328263Z adding 'executorch/backends/arm/test/ops/test_bmm.py' 2025-06-05T23:55:38.1328649Z adding 'executorch/backends/arm/test/ops/test_cat.py' 2025-06-05T23:55:38.1329079Z adding 'executorch/backends/arm/test/ops/test_clamp.py' 2025-06-05T23:55:38.1329508Z adding 'executorch/backends/arm/test/ops/test_clone.py' 2025-06-05T23:55:38.1330011Z adding 'executorch/backends/arm/test/ops/test_constant_pad_nd.py' 2025-06-05T23:55:38.1330425Z adding 'executorch/backends/arm/test/ops/test_conv1d.py' 2025-06-05T23:55:38.1330840Z adding 'executorch/backends/arm/test/ops/test_conv2d.py' 2025-06-05T23:55:38.1331268Z adding 'executorch/backends/arm/test/ops/test_conv3d.py' 2025-06-05T23:55:38.1331745Z adding 'executorch/backends/arm/test/ops/test_conv_combos.py' 2025-06-05T23:55:38.1332330Z adding 'executorch/backends/arm/test/ops/test_conv_constant_pad_nd.py' 2025-06-05T23:55:38.1332727Z adding 'executorch/backends/arm/test/ops/test_cos.py' 2025-06-05T23:55:38.1333230Z adding 'executorch/backends/arm/test/ops/test_depthwise_conv.py' 2025-06-05T23:55:38.1333728Z adding 'executorch/backends/arm/test/ops/test_div.py' 2025-06-05T23:55:38.1334117Z adding 'executorch/backends/arm/test/ops/test_eq.py' 2025-06-05T23:55:38.1334511Z adding 'executorch/backends/arm/test/ops/test_erf.py' 2025-06-05T23:55:38.1334900Z adding 'executorch/backends/arm/test/ops/test_exp.py' 2025-06-05T23:55:38.1335333Z adding 'executorch/backends/arm/test/ops/test_expand.py' 2025-06-05T23:55:38.1335689Z adding 'executorch/backends/arm/test/ops/test_eye.py' 2025-06-05T23:55:38.1336083Z adding 'executorch/backends/arm/test/ops/test_full.py' 2025-06-05T23:55:38.1336464Z adding 'executorch/backends/arm/test/ops/test_ge.py' 2025-06-05T23:55:38.1336857Z adding 'executorch/backends/arm/test/ops/test_gelu.py' 2025-06-05T23:55:38.1337325Z adding 'executorch/backends/arm/test/ops/test_group_norm.py' 2025-06-05T23:55:38.1337718Z adding 'executorch/backends/arm/test/ops/test_gt.py' 2025-06-05T23:55:38.1338480Z adding 'executorch/backends/arm/test/ops/test_hardsigmoid.py' 2025-06-05T23:55:38.1338960Z adding 'executorch/backends/arm/test/ops/test_hardswish.py' 2025-06-05T23:55:38.1339518Z adding 'executorch/backends/arm/test/ops/test_hardtanh.py' 2025-06-05T23:55:38.1339999Z adding 'executorch/backends/arm/test/ops/test_layer_norm.py' 2025-06-05T23:55:38.1340377Z adding 'executorch/backends/arm/test/ops/test_le.py' 2025-06-05T23:55:38.1340840Z adding 'executorch/backends/arm/test/ops/test_leaky_relu.py' 2025-06-05T23:55:38.1341372Z adding 'executorch/backends/arm/test/ops/test_linalg_vector_norm.py' 2025-06-05T23:55:38.1341781Z adding 'executorch/backends/arm/test/ops/test_linear.py' 2025-06-05T23:55:38.1342182Z adding 'executorch/backends/arm/test/ops/test_log.py' 2025-06-05T23:55:38.1342629Z adding 'executorch/backends/arm/test/ops/test_logical.py' 2025-06-05T23:55:38.1343093Z adding 'executorch/backends/arm/test/ops/test_logsoftmax.py' 2025-06-05T23:55:38.1343493Z adding 'executorch/backends/arm/test/ops/test_lshift.py' 2025-06-05T23:55:38.1343761Z adding 'executorch/backends/arm/test/ops/test_lt.py' 2025-06-05T23:55:38.1344009Z adding 'executorch/backends/arm/test/ops/test_matmul.py' 2025-06-05T23:55:38.1344261Z adding 'executorch/backends/arm/test/ops/test_max_pool.py' 2025-06-05T23:55:38.1344492Z adding 'executorch/backends/arm/test/ops/test_maximum.py' 2025-06-05T23:55:38.1344741Z adding 'executorch/backends/arm/test/ops/test_mean_dim.py' 2025-06-05T23:55:38.1344984Z adding 'executorch/backends/arm/test/ops/test_minimum.py' 2025-06-05T23:55:38.1345201Z adding 'executorch/backends/arm/test/ops/test_mm.py' 2025-06-05T23:55:38.1345409Z adding 'executorch/backends/arm/test/ops/test_mul.py' 2025-06-05T23:55:38.1345624Z adding 'executorch/backends/arm/test/ops/test_ne.py' 2025-06-05T23:55:38.1345845Z adding 'executorch/backends/arm/test/ops/test_neg.py' 2025-06-05T23:55:38.1346074Z adding 'executorch/backends/arm/test/ops/test_ones.py' 2025-06-05T23:55:38.1346310Z adding 'executorch/backends/arm/test/ops/test_permute.py' 2025-06-05T23:55:38.1346530Z adding 'executorch/backends/arm/test/ops/test_pow.py' 2025-06-05T23:55:38.1346795Z adding 'executorch/backends/arm/test/ops/test_reciprocal.py' 2025-06-05T23:55:38.1347021Z adding 'executorch/backends/arm/test/ops/test_relu.py' 2025-06-05T23:55:38.1347247Z adding 'executorch/backends/arm/test/ops/test_repeat.py' 2025-06-05T23:55:38.1347485Z adding 'executorch/backends/arm/test/ops/test_rshift.py' 2025-06-05T23:55:38.1347722Z adding 'executorch/backends/arm/test/ops/test_rsqrt.py' 2025-06-05T23:55:38.1347998Z adding 'executorch/backends/arm/test/ops/test_scalar_tensor.py' 2025-06-05T23:55:38.1348241Z adding 'executorch/backends/arm/test/ops/test_scalars.py' 2025-06-05T23:55:38.1348457Z adding 'executorch/backends/arm/test/ops/test_sdpa.py' 2025-06-05T23:55:38.1348693Z adding 'executorch/backends/arm/test/ops/test_select.py' 2025-06-05T23:55:38.1348940Z adding 'executorch/backends/arm/test/ops/test_sigmoid.py' 2025-06-05T23:55:38.1349215Z adding 'executorch/backends/arm/test/ops/test_sigmoid_16bit.py' 2025-06-05T23:55:38.1349474Z adding 'executorch/backends/arm/test/ops/test_sigmoid_32bit.py' 2025-06-05T23:55:38.1349709Z adding 'executorch/backends/arm/test/ops/test_silu.py' 2025-06-05T23:55:38.1349932Z adding 'executorch/backends/arm/test/ops/test_sin.py' 2025-06-05T23:55:38.1350168Z adding 'executorch/backends/arm/test/ops/test_slice.py' 2025-06-05T23:55:38.1350403Z adding 'executorch/backends/arm/test/ops/test_softmax.py' 2025-06-05T23:55:38.1350646Z adding 'executorch/backends/arm/test/ops/test_split.py' 2025-06-05T23:55:38.1350877Z adding 'executorch/backends/arm/test/ops/test_sqrt.py' 2025-06-05T23:55:38.1351121Z adding 'executorch/backends/arm/test/ops/test_squeeze.py' 2025-06-05T23:55:38.1351329Z adding 'executorch/backends/arm/test/ops/test_sub.py' 2025-06-05T23:55:38.1351550Z adding 'executorch/backends/arm/test/ops/test_sum.py' 2025-06-05T23:55:38.1351992Z adding 'executorch/backends/arm/test/ops/test_tanh.py' 2025-06-05T23:55:38.1352258Z adding 'executorch/backends/arm/test/ops/test_to_copy.py' 2025-06-05T23:55:38.1352593Z adding 'executorch/backends/arm/test/ops/test_unary.py' 2025-06-05T23:55:38.1352848Z adding 'executorch/backends/arm/test/ops/test_unsqueeze.py' 2025-06-05T23:55:38.1353152Z adding 'executorch/backends/arm/test/ops/test_upsample_bilinear2d.py' 2025-06-05T23:55:38.1353494Z adding 'executorch/backends/arm/test/ops/test_upsample_nearest2d.py' 2025-06-05T23:55:38.1353807Z adding 'executorch/backends/arm/test/ops/test_var.py' 2025-06-05T23:55:38.1354159Z adding 'executorch/backends/arm/test/ops/test_view.py' 2025-06-05T23:55:38.1354519Z adding 'executorch/backends/arm/test/ops/test_where.py' 2025-06-05T23:55:38.1354889Z adding 'executorch/backends/arm/test/ops/test_zeros.py' 2025-06-05T23:55:38.1355487Z adding 'executorch/backends/arm/test/passes/test_broadcast_args_pass.py' 2025-06-05T23:55:38.1356036Z adding 'executorch/backends/arm/test/passes/test_cast_int64_pass.py' 2025-06-05T23:55:38.1356713Z adding 'executorch/backends/arm/test/passes/test_convert_expand_copy_to_repeat.py' 2025-06-05T23:55:38.1357093Z adding 'executorch/backends/arm/test/passes/test_convert_int_pow_to_muls.py' 2025-06-05T23:55:38.1357445Z adding 'executorch/backends/arm/test/passes/test_convert_split_to_slice.py' 2025-06-05T23:55:38.1357758Z adding 'executorch/backends/arm/test/passes/test_convert_to_clamp.py' 2025-06-05T23:55:38.1358170Z adding 'executorch/backends/arm/test/passes/test_decompose_cosine_similarity_pass.py' 2025-06-05T23:55:38.1358484Z adding 'executorch/backends/arm/test/passes/test_decompose_div_pass.py' 2025-06-05T23:55:38.1358848Z adding 'executorch/backends/arm/test/passes/test_decompose_layernorm_pass.py' 2025-06-05T23:55:38.1359260Z adding 'executorch/backends/arm/test/passes/test_decompose_linalg_vector_norm_pass.py' 2025-06-05T23:55:38.1359627Z adding 'executorch/backends/arm/test/passes/test_decompose_meandim_pass.py' 2025-06-05T23:55:38.1360128Z adding 'executorch/backends/arm/test/passes/test_decompose_softmax_pass.py' 2025-06-05T23:55:38.1360439Z adding 'executorch/backends/arm/test/passes/test_decompose_var_pass.py' 2025-06-05T23:55:38.1360741Z adding 'executorch/backends/arm/test/passes/test_fold_qdq_pass.py' 2025-06-05T23:55:38.1361073Z adding 'executorch/backends/arm/test/passes/test_fuse_batchnorm_pass.py' 2025-06-05T23:55:38.1361426Z adding 'executorch/backends/arm/test/passes/test_fuse_constant_ops_pass.py' 2025-06-05T23:55:38.1361823Z adding 'executorch/backends/arm/test/passes/test_fuse_equal_placeholders_ops_pass.py' 2025-06-05T23:55:38.1362165Z adding 'executorch/backends/arm/test/passes/test_insert_table_ops_pass.py' 2025-06-05T23:55:38.1362502Z adding 'executorch/backends/arm/test/passes/test_ioquantization_pass.py' 2025-06-05T23:55:38.1362821Z adding 'executorch/backends/arm/test/passes/test_remove_clone_pass.py' 2025-06-05T23:55:38.1363110Z adding 'executorch/backends/arm/test/passes/test_rescale_pass.py' 2025-06-05T23:55:38.1363495Z adding 'executorch/backends/arm/test/passes/test_unsqueeze_before_repeat_pass.py' 2025-06-05T23:55:38.1363850Z adding 'executorch/backends/arm/test/quantizer/test_generic_annotater.py' 2025-06-05T23:55:38.1364095Z adding 'executorch/backends/arm/test/tester/__init__.py' 2025-06-05T23:55:38.1364394Z adding 'executorch/backends/arm/test/tester/analyze_output_utils.py' 2025-06-05T23:55:38.1364647Z adding 'executorch/backends/arm/test/tester/arm_tester.py' 2025-06-05T23:55:38.1364919Z adding 'executorch/backends/arm/test/tester/test_pipeline.py' 2025-06-05T23:55:38.1365170Z adding 'executorch/backends/arm/test/tosautil/__init__.py' 2025-06-05T23:55:38.1365501Z adding 'executorch/backends/arm/third-party/serialization_lib/setup.py' 2025-06-05T23:55:38.1365941Z adding 'executorch/backends/arm/third-party/serialization_lib/python/serializer/__init__.py' 2025-06-05T23:55:38.1366658Z adding 'executorch/backends/arm/third-party/serialization_lib/python/serializer/tosa_serializer.py' 2025-06-05T23:55:38.1367230Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ArithmeticRightShiftAttribute.py' 2025-06-05T23:55:38.1367743Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Attribute.py' 2025-06-05T23:55:38.1368172Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/AxisAttribute.py' 2025-06-05T23:55:38.1368622Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ClampAttribute.py' 2025-06-05T23:55:38.1369080Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/CondIfAttribute.py' 2025-06-05T23:55:38.1369526Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ConvAttribute.py' 2025-06-05T23:55:38.1369988Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/CustomAttribute.py' 2025-06-05T23:55:38.1370374Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/DType.py' 2025-06-05T23:55:38.1370811Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/FFTAttribute.py' 2025-06-05T23:55:38.1371334Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/FullyConnectedAttribute.py' 2025-06-05T23:55:38.1371788Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/MatMulAttribute.py' 2025-06-05T23:55:38.1372208Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/MulAttribute.py' 2025-06-05T23:55:38.1372654Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/NegateAttribute.py' 2025-06-05T23:55:38.1373030Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Op.py' 2025-06-05T23:55:38.1373460Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/PadAttribute.py' 2025-06-05T23:55:38.1374051Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/PoolAttribute.py' 2025-06-05T23:55:38.1374488Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/RFFTAttribute.py' 2025-06-05T23:55:38.1374952Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/RescaleAttribute.py' 2025-06-05T23:55:38.1375417Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ReshapeAttribute.py' 2025-06-05T23:55:38.1375866Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeAttribute.py' 2025-06-05T23:55:38.1376276Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeMode.py' 2025-06-05T23:55:38.1376723Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/SliceAttribute.py' 2025-06-05T23:55:38.1377165Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TableAttribute.py' 2025-06-05T23:55:38.1377601Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TileAttribute.py' 2025-06-05T23:55:38.1378048Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaBasicBlock.py' 2025-06-05T23:55:38.1378711Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaGraph.py' 2025-06-05T23:55:38.1379157Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaOperator.py' 2025-06-05T23:55:38.1379584Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaRegion.py' 2025-06-05T23:55:38.1380005Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaTensor.py' 2025-06-05T23:55:38.1380472Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeAttribute.py' 2025-06-05T23:55:38.1380985Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeConvAttribute.py' 2025-06-05T23:55:38.1381390Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Version.py' 2025-06-05T23:55:38.1382157Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/WhileLoopAttribute.py' 2025-06-05T23:55:38.1382743Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/__init__.py' 2025-06-05T23:55:38.1383439Z adding 'executorch/backends/arm/third-party/serialization_lib/schema/tosa.fbs' 2025-06-05T23:55:38.1384151Z adding 'executorch/backends/arm/third-party/serialization_lib/test/scripts/test_npy_fileio.py' 2025-06-05T23:55:38.1384915Z adding 'executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit/xunit.py' 2025-06-05T23:55:38.1385770Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conanfile.py' 2025-06-05T23:55:38.1386480Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/pnpm-lock.yaml' 2025-06-05T23:55:38.1387117Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs/animal.fbs' 2025-06-05T23:55:38.1388059Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers/bench.fbs' 2025-06-05T23:55:38.1388946Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/build.py' 2025-06-05T23:55:38.1390090Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package/conanfile.py' 2025-06-05T23:55:38.1391119Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/analysis_options.yaml' 2025-06-05T23:55:38.1392126Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/pubspec.yaml' 2025-06-05T23:55:38.1393182Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/bool_structs.fbs' 2025-06-05T23:55:38.1394280Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/list_of_enums.fbs' 2025-06-05T23:55:38.1395364Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/monster_test.fbs' 2025-06-05T23:55:38.1396425Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/hero.fbs' 2025-06-05T23:55:38.1397522Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/net.fbs' 2025-06-05T23:55:38.1398618Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/generate_goldens.py' 2025-06-05T23:55:38.1399684Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/golden_utils.py' 2025-06-05T23:55:38.1400692Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp/generate.py' 2025-06-05T23:55:38.1401788Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp/generate.py' 2025-06-05T23:55:38.1402854Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart/generate.py' 2025-06-05T23:55:38.1403884Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go/generate.py' 2025-06-05T23:55:38.1404973Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java/generate.py' 2025-06-05T23:55:38.1406013Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin/generate.py' 2025-06-05T23:55:38.1407125Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster/generate.py' 2025-06-05T23:55:38.1408149Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua/generate.py' 2025-06-05T23:55:38.1409211Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim/generate.py' 2025-06-05T23:55:38.1410224Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php/generate.py' 2025-06-05T23:55:38.1411493Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Galaxy.py' 2025-06-05T23:55:38.1412524Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Universe.py' 2025-06-05T23:55:38.1413838Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/__init__.py' 2025-06-05T23:55:38.1414860Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/generate.py' 2025-06-05T23:55:38.1415858Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust/generate.py' 2025-06-05T23:55:38.1416932Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema/basic.fbs' 2025-06-05T23:55:38.1417973Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift/generate.py' 2025-06-05T23:55:38.1419050Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts/generate.py' 2025-06-05T23:55:38.1420121Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/greeter.fbs' 2025-06-05T23:55:38.1420810Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/client.py' 2025-06-05T23:55:38.1421960Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/server.py' 2025-06-05T23:55:38.1423351Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloReply.py' 2025-06-05T23:55:38.1424791Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloRequest.py' 2025-06-05T23:55:38.1426163Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/__init__.py' 2025-06-05T23:55:38.1427620Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/greeter_grpc_fb.py' 2025-06-05T23:55:38.1428773Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter/greeter.fbs' 2025-06-05T23:55:38.1429837Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests/grpctest.py' 2025-06-05T23:55:38.1431156Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.py' 2025-06-05T23:55:38.1432461Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/MonsterExtra.py' 2025-06-05T23:55:38.1433601Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/__init__.py' 2025-06-05T23:55:38.1434390Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.py' 2025-06-05T23:55:38.1435637Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.py' 2025-06-05T23:55:38.1437144Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.py' 2025-06-05T23:55:38.1438629Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.py' 2025-06-05T23:55:38.1439970Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayStruct.py' 2025-06-05T23:55:38.1441361Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayTable.py' 2025-06-05T23:55:38.1442518Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.py' 2025-06-05T23:55:38.1443226Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.py' 2025-06-05T23:55:38.1444005Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.py' 2025-06-05T23:55:38.1444718Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedStruct.py' 2025-06-05T23:55:38.1445375Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.py' 2025-06-05T23:55:38.1446079Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.py' 2025-06-05T23:55:38.1446738Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.py' 2025-06-05T23:55:38.1447487Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.py' 2025-06-05T23:55:38.1448296Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.py' 2025-06-05T23:55:38.1448950Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.py' 2025-06-05T23:55:38.1449641Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestEnum.py' 2025-06-05T23:55:38.1450450Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.py' 2025-06-05T23:55:38.1451167Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.py' 2025-06-05T23:55:38.1451815Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.py' 2025-06-05T23:55:38.1452509Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/__init__.py' 2025-06-05T23:55:38.1453281Z 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:38.1454149Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Any.py' 2025-06-05T23:55:38.1454904Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Color.py' 2025-06-05T23:55:38.1456176Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/NestedUnionTest.py' 2025-06-05T23:55:38.1457535Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Test.py' 2025-06-05T23:55:38.1458882Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py' 2025-06-05T23:55:38.1459642Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Vec3.py' 2025-06-05T23:55:38.1460417Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/__init__.py' 2025-06-05T23:55:38.1461305Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.py' 2025-06-05T23:55:38.1462912Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/__init__.py' 2025-06-05T23:55:38.1464255Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.py' 2025-06-05T23:55:38.1465777Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInC.py' 2025-06-05T23:55:38.1467104Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.py' 2025-06-05T23:55:38.1468402Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/__init__.py' 2025-06-05T23:55:38.1469909Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.py' 2025-06-05T23:55:38.1471468Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.py' 2025-06-05T23:55:38.1473036Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.py' 2025-06-05T23:55:38.1474570Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.py' 2025-06-05T23:55:38.1476019Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/__init__.py' 2025-06-05T23:55:38.1477307Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.py' 2025-06-05T23:55:38.1478819Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/__init__.py' 2025-06-05T23:55:38.1480205Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/OptionalByte.py' 2025-06-05T23:55:38.1481591Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/ScalarStuff.py' 2025-06-05T23:55:38.1482952Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/__init__.py' 2025-06-05T23:55:38.1484268Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector/union_vector.fbs' 2025-06-05T23:55:38.1484817Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/__init__.py' 2025-06-05T23:55:38.1485330Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/py.typed' 2025-06-05T23:55:38.1485860Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/setup.py' 2025-06-05T23:55:38.1486940Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/__init__.py' 2025-06-05T23:55:38.1488068Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/_version.py' 2025-06-05T23:55:38.1488880Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/builder.py' 2025-06-05T23:55:38.1489644Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/compat.py' 2025-06-05T23:55:38.1490698Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/encode.py' 2025-06-05T23:55:38.1491888Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/flexbuffers.py' 2025-06-05T23:55:38.1493026Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/number_types.py' 2025-06-05T23:55:38.1494643Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/packer.py' 2025-06-05T23:55:38.1495745Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/table.py' 2025-06-05T23:55:38.1497053Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/util.py' 2025-06-05T23:55:38.1497959Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/AdvancedFeatures.py' 2025-06-05T23:55:38.1498966Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/BaseType.py' 2025-06-05T23:55:38.1500203Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Enum.py' 2025-06-05T23:55:38.1501457Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/EnumVal.py' 2025-06-05T23:55:38.1502715Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Field.py' 2025-06-05T23:55:38.1503717Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/KeyValue.py' 2025-06-05T23:55:38.1504855Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Object.py' 2025-06-05T23:55:38.1506133Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/RPCCall.py' 2025-06-05T23:55:38.1506990Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Schema.py' 2025-06-05T23:55:38.1507832Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/SchemaFile.py' 2025-06-05T23:55:38.1508574Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Service.py' 2025-06-05T23:55:38.1509237Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Type.py' 2025-06-05T23:55:38.1509942Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/__init__.py' 2025-06-05T23:55:38.1510566Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection/reflection.fbs' 2025-06-05T23:55:38.1511171Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/monster.fbs' 2025-06-05T23:55:38.1511788Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/sample_binary.py' 2025-06-05T23:55:38.1512506Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check-grpc-generated-code.py' 2025-06-05T23:55:38.1513152Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check_generate_code.py' 2025-06-05T23:55:38.1513717Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_code.py' 2025-06-05T23:55:38.1514401Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_grpc_examples.py' 2025-06-05T23:55:38.1514966Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/util.py' 2025-06-05T23:55:38.1515559Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap/snapcraft.yaml' 2025-06-05T23:55:38.1516105Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MutatingBool.fbs' 2025-06-05T23:55:38.1516772Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/alignment_test.fbs' 2025-06-05T23:55:38.1517537Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/arrays_test.fbs' 2025-06-05T23:55:38.1518180Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/dictionary_lookup.fbs' 2025-06-05T23:55:38.1518893Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/included_test.fbs' 2025-06-05T23:55:38.1519518Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/includer_test.fbs' 2025-06-05T23:55:38.1520088Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/keyword_test.fbs' 2025-06-05T23:55:38.1520656Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_extra.fbs' 2025-06-05T23:55:38.1521268Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test.fbs' 2025-06-05T23:55:38.1521945Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test_generated.py' 2025-06-05T23:55:38.1522550Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/more_defaults.fbs' 2025-06-05T23:55:38.1523094Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nan_inf_test.fbs' 2025-06-05T23:55:38.1523764Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_inline_table_test.fbs' 2025-06-05T23:55:38.1524398Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_type_test.fbs' 2025-06-05T23:55:38.1524968Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_union_test.fbs' 2025-06-05T23:55:38.1525570Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars.fbs' 2025-06-05T23:55:38.1526208Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/private_annotation_test.fbs' 2025-06-05T23:55:38.1586203Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_flexbuffers_test.py' 2025-06-05T23:55:38.1587095Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_test.py' 2025-06-05T23:55:38.1587881Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/required_strings.fbs' 2025-06-05T23:55:38.1588445Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/rust_namer_test.fbs' 2025-06-05T23:55:38.1588941Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/test.fbs' 2025-06-05T23:55:38.1589795Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/type_field_collsion.fbs' 2025-06-05T23:55:38.1590495Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_underlying_type_test.fbs' 2025-06-05T23:55:38.1591101Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_value_collision.fbs' 2025-06-05T23:55:38.1591775Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/vector_has_test.fbs' 2025-06-05T23:55:38.1592443Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/test_64bit.fbs' 2025-06-05T23:55:38.1593009Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v1.fbs' 2025-06-05T23:55:38.1593584Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v2.fbs' 2025-06-05T23:55:38.1594399Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/InParentNamespace.py' 2025-06-05T23:55:38.1595293Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/MonsterExtra.py' 2025-06-05T23:55:38.1595853Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/__init__.py' 2025-06-05T23:55:38.1596584Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Ability.py' 2025-06-05T23:55:38.1597162Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Any.py' 2025-06-05T23:55:38.1597854Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.py' 2025-06-05T23:55:38.1598654Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.py' 2025-06-05T23:55:38.1599427Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayStruct.py' 2025-06-05T23:55:38.1600038Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayTable.py' 2025-06-05T23:55:38.1600620Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Color.py' 2025-06-05T23:55:38.1601231Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/LongEnum.py' 2025-06-05T23:55:38.1602021Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Monster.py' 2025-06-05T23:55:38.1602731Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedStruct.py' 2025-06-05T23:55:38.1603298Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Race.py' 2025-06-05T23:55:38.1603915Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Referrable.py' 2025-06-05T23:55:38.1604501Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Stat.py' 2025-06-05T23:55:38.1605398Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.py' 2025-06-05T23:55:38.1606137Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.py' 2025-06-05T23:55:38.1606704Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Test.py' 2025-06-05T23:55:38.1607307Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestEnum.py' 2025-06-05T23:55:38.1608254Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.py' 2025-06-05T23:55:38.1608898Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.py' 2025-06-05T23:55:38.1609461Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Vec3.py' 2025-06-05T23:55:38.1610067Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/__init__.py' 2025-06-05T23:55:38.1610947Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/monster_test_grpc_fb.py' 2025-06-05T23:55:38.1611651Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Any.py' 2025-06-05T23:55:38.1612316Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Color.py' 2025-06-05T23:55:38.1613091Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/NestedUnionTest.py' 2025-06-05T23:55:38.1614198Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Test.py' 2025-06-05T23:55:38.1615009Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py' 2025-06-05T23:55:38.1615745Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Vec3.py' 2025-06-05T23:55:38.1616660Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/__init__.py' 2025-06-05T23:55:38.1617293Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/Monster.py' 2025-06-05T23:55:38.1617907Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/__init__.py' 2025-06-05T23:55:38.1618583Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary.fbs' 2025-06-05T23:55:38.1619525Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary_old.fbs' 2025-06-05T23:55:38.1620232Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/generate_annotations.py' 2025-06-05T23:55:38.1620851Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v1.fbs' 2025-06-05T23:55:38.1621481Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v2.fbs' 2025-06-05T23:55:38.1622105Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/enum_val_attributes.fbs' 2025-06-05T23:55:38.1622696Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_cpp_tests.py' 2025-06-05T23:55:38.1623396Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_kotlin_tests.py' 2025-06-05T23:55:38.1624162Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_schema_tests.py' 2025-06-05T23:55:38.1624777Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_test.py' 2025-06-05T23:55:38.1625359Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_ts_tests.py' 2025-06-05T23:55:38.1625884Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo.fbs' 2025-06-05T23:55:38.1626639Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo_with_ns.fbs' 2025-06-05T23:55:38.1627221Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/main.py' 2025-06-05T23:55:38.1627777Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar.fbs' 2025-06-05T23:55:38.1628390Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_foo.fbs' 2025-06-05T23:55:38.1628986Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_ns.fbs' 2025-06-05T23:55:38.1629719Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz.fbs' 2025-06-05T23:55:38.1630425Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz_with_ns.fbs' 2025-06-05T23:55:38.1631050Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/include_test1.fbs' 2025-06-05T23:55:38.1868388Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/order.fbs' 2025-06-05T23:55:38.1869730Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/include_test2.fbs' 2025-06-05T23:55:38.1870604Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/no_namespace.fbs' 2025-06-05T23:55:38.1871224Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field/key_field_sample.fbs' 2025-06-05T23:55:38.1871821Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums/enums.fbs' 2025-06-05T23:55:38.1872473Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test1.fbs' 2025-06-05T23:55:38.1873125Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test2.fbs' 2025-06-05T23:55:38.1873763Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test1.fbs' 2025-06-05T23:55:38.1874391Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test2.fbs' 2025-06-05T23:55:38.1875064Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test1.fbs' 2025-06-05T23:55:38.1875768Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test2.fbs' 2025-06-05T23:55:38.1876504Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.py' 2025-06-05T23:55:38.1877253Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInC.py' 2025-06-05T23:55:38.1878175Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.py' 2025-06-05T23:55:38.1879114Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/__init__.py' 2025-06-05T23:55:38.1879911Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.py' 2025-06-05T23:55:38.1880714Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.py' 2025-06-05T23:55:38.1881511Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.py' 2025-06-05T23:55:38.1882287Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.py' 2025-06-05T23:55:38.1883042Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/__init__.py' 2025-06-05T23:55:38.1883726Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.py' 2025-06-05T23:55:38.1884409Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/__init__.py' 2025-06-05T23:55:38.1885159Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test1.fbs' 2025-06-05T23:55:38.1885885Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test2.fbs' 2025-06-05T23:55:38.1886624Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test3.fbs' 2025-06-05T23:55:38.1887301Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim/testnim.py' 2025-06-05T23:55:38.1887951Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/OptionalByte.py' 2025-06-05T23:55:38.1888685Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/ScalarStuff.py' 2025-06-05T23:55:38.1889298Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/__init__.py' 2025-06-05T23:55:38.1889969Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test.golden.fbs' 2025-06-05T23:55:38.1890655Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_id.golden.fbs' 2025-06-05T23:55:38.1891310Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include.golden.fbs' 2025-06-05T23:55:38.1891983Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include_id.golden.fbs' 2025-06-05T23:55:38.1892614Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix.golden.fbs' 2025-06-05T23:55:38.1893278Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix_id.golden.fbs' 2025-06-05T23:55:38.1894016Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union.golden.fbs' 2025-06-05T23:55:38.1894672Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_id.golden.fbs' 2025-06-05T23:55:38.1895365Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include.golden.fbs' 2025-06-05T23:55:38.1896063Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include_id.golden.fbs' 2025-06-05T23:55:38.1896745Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix.golden.fbs' 2025-06-05T23:55:38.1897450Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix_id.golden.fbs' 2025-06-05T23:55:38.1898205Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_import.fbs' 2025-06-05T23:55:38.1898983Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_no_include.fbs' 2025-06-05T23:55:38.1899718Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers/fuzzer.fbs' 2025-06-05T23:55:38.1900290Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/TypeScriptTest.py' 2025-06-05T23:55:38.1900900Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/typescript_keywords.fbs' 2025-06-05T23:55:38.1901627Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex/arrays_test_complex.fbs' 2025-06-05T23:55:38.1902296Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/one.fbs' 2025-06-05T23:55:38.1902994Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/pnpm-lock.yaml' 2025-06-05T23:55:38.1903654Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/two.fbs' 2025-06-05T23:55:38.1904304Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_include.fbs' 2025-06-05T23:55:38.1905209Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_transitive_include.fbs' 2025-06-05T23:55:38.1905830Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector/union_vector.fbs' 2025-06-05T23:55:38.1906147Z adding 'executorch/backends/arm/tosa/schemas/tosa_0.80.fbs' 2025-06-05T23:55:38.1906395Z adding 'executorch/backends/arm/tosa/schemas/tosa_1.0.fbs' 2025-06-05T23:55:38.1906660Z adding 'executorch/backends/arm/util/arm_model_evaluator.py' 2025-06-05T23:55:38.1906879Z adding 'executorch/backends/cadence/aot/__init__.py' 2025-06-05T23:55:38.1907088Z adding 'executorch/backends/cadence/aot/compiler.py' 2025-06-05T23:55:38.1907337Z adding 'executorch/backends/cadence/aot/compiler_utils.py' 2025-06-05T23:55:38.1907585Z adding 'executorch/backends/cadence/aot/decompose_ops.py' 2025-06-05T23:55:38.1907834Z adding 'executorch/backends/cadence/aot/export_example.py' 2025-06-05T23:55:38.1908068Z adding 'executorch/backends/cadence/aot/functions.yaml' 2025-06-05T23:55:38.1908368Z adding 'executorch/backends/cadence/aot/functions_fusion_g3.yaml' 2025-06-05T23:55:38.1908628Z adding 'executorch/backends/cadence/aot/functions_hifi.yaml' 2025-06-05T23:55:38.1908853Z adding 'executorch/backends/cadence/aot/fuse_ops.py' 2025-06-05T23:55:38.1909089Z adding 'executorch/backends/cadence/aot/graph_builder.py' 2025-06-05T23:55:38.1909363Z adding 'executorch/backends/cadence/aot/memory_constraints.py' 2025-06-05T23:55:38.1909618Z adding 'executorch/backends/cadence/aot/memory_planning.py' 2025-06-05T23:55:38.1909891Z adding 'executorch/backends/cadence/aot/ops_registrations.py' 2025-06-05T23:55:38.1910125Z adding 'executorch/backends/cadence/aot/pass_utils.py' 2025-06-05T23:55:38.1910330Z adding 'executorch/backends/cadence/aot/passes.py' 2025-06-05T23:55:38.2331913Z adding 'executorch/backends/cadence/aot/ref_implementations.py' 2025-06-05T23:55:38.2332851Z adding 'executorch/backends/cadence/aot/remove_ops.py' 2025-06-05T23:55:38.2333486Z adding 'executorch/backends/cadence/aot/reorder_ops.py' 2025-06-05T23:55:38.2334166Z adding 'executorch/backends/cadence/aot/replace_ops.py' 2025-06-05T23:55:38.2334811Z adding 'executorch/backends/cadence/aot/simplify_ops.py' 2025-06-05T23:55:38.2335475Z adding 'executorch/backends/cadence/aot/utils.py' 2025-06-05T23:55:38.2336192Z adding 'executorch/backends/cadence/aot/quantizer/fusion_pass.py' 2025-06-05T23:55:38.2336978Z adding 'executorch/backends/cadence/aot/quantizer/patterns.py' 2025-06-05T23:55:38.2337776Z adding 'executorch/backends/cadence/aot/quantizer/quantizer.py' 2025-06-05T23:55:38.2338626Z adding 'executorch/backends/cadence/aot/quantizer/utils.py' 2025-06-05T23:55:38.2339386Z adding 'executorch/backends/cadence/aot/tests/test_decompose_ops_passes.py' 2025-06-05T23:55:38.2340206Z adding 'executorch/backends/cadence/aot/tests/test_fusion_ops_passes.py' 2025-06-05T23:55:38.2340998Z adding 'executorch/backends/cadence/aot/tests/test_graph_builder.py' 2025-06-05T23:55:38.2341756Z adding 'executorch/backends/cadence/aot/tests/test_memory_passes.py' 2025-06-05T23:55:38.2342537Z adding 'executorch/backends/cadence/aot/tests/test_pass_filter.py' 2025-06-05T23:55:38.2343437Z adding 'executorch/backends/cadence/aot/tests/test_remove_ops_passes.py' 2025-06-05T23:55:38.2344255Z adding 'executorch/backends/cadence/aot/tests/test_reorder_ops_passes.py' 2025-06-05T23:55:38.2345069Z adding 'executorch/backends/cadence/aot/tests/test_replace_ops_passes.py' 2025-06-05T23:55:38.2346138Z adding 'executorch/backends/cadence/aot/tests/test_simplify_ops_passes.py' 2025-06-05T23:55:38.2346921Z adding 'executorch/backends/cadence/runtime/__init__.py' 2025-06-05T23:55:38.2347549Z adding 'executorch/backends/cadence/runtime/executor.py' 2025-06-05T23:55:38.2348204Z adding 'executorch/backends/cadence/runtime/runtime.py' 2025-06-05T23:55:38.2348813Z adding 'executorch/backends/cadence/runtime/utils.py' 2025-06-05T23:55:38.2349777Z adding 'executorch/backends/cadence/utils/facto_util.py' 2025-06-05T23:55:38.2350472Z adding 'executorch/backends/cadence/utils/gen_header.py' 2025-06-05T23:55:38.2351109Z adding 'executorch/backends/cadence/utils/post_compilation.py' 2025-06-05T23:55:38.2351919Z adding 'executorch/backends/cadence/utils/FACTO/setup.py' 2025-06-05T23:55:38.2352615Z adding 'executorch/backends/cadence/utils/FACTO/calibrator/__init__.py' 2025-06-05T23:55:38.2353515Z adding 'executorch/backends/cadence/utils/FACTO/calibrator/runner.py' 2025-06-05T23:55:38.2354327Z adding 'executorch/backends/cadence/utils/FACTO/examples/example.py' 2025-06-05T23:55:38.2355136Z adding 'executorch/backends/cadence/utils/FACTO/examples/minimal_example.py' 2025-06-05T23:55:38.2356065Z adding 'executorch/backends/cadence/utils/FACTO/examples/random_seed.py' 2025-06-05T23:55:38.2356919Z adding 'executorch/backends/cadence/utils/FACTO/facto/__init__.py' 2025-06-05T23:55:38.2357691Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/__init__.py' 2025-06-05T23:55:38.2358776Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/__init__.py' 2025-06-05T23:55:38.2359711Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/engine.py' 2025-06-05T23:55:38.2360629Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/gen.py' 2025-06-05T23:55:38.2361531Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/__init__.py' 2025-06-05T23:55:38.2362577Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/engine.py' 2025-06-05T23:55:38.2363539Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/gen.py' 2025-06-05T23:55:38.2364431Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/type.py' 2025-06-05T23:55:38.2365356Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/__init__.py' 2025-06-05T23:55:38.2366311Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/engine.py' 2025-06-05T23:55:38.2367239Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/model.py' 2025-06-05T23:55:38.2368175Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/solve.py' 2025-06-05T23:55:38.2369286Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/__init__.py' 2025-06-05T23:55:38.2370187Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/model.py' 2025-06-05T23:55:38.2371066Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/__init__.py' 2025-06-05T23:55:38.2372187Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/random_manager.py' 2025-06-05T23:55:38.2373149Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/__init__.py' 2025-06-05T23:55:38.2374319Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/constants.py' 2025-06-05T23:55:38.2375333Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/gen.py' 2025-06-05T23:55:38.2376246Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/solve.py' 2025-06-05T23:55:38.2377160Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/space.py' 2025-06-05T23:55:38.2378169Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/type.py' 2025-06-05T23:55:38.2379354Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/utils.py' 2025-06-05T23:55:38.2380197Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/db.py' 2025-06-05T23:55:38.2380964Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/default.py' 2025-06-05T23:55:38.2381772Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/dtypes.py' 2025-06-05T23:55:38.2382570Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/function.py' 2025-06-05T23:55:38.2383467Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_engine.py' 2025-06-05T23:55:38.2384695Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_generator.py' 2025-06-05T23:55:38.2385726Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_attributes.py' 2025-06-05T23:55:38.2386849Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_generator.py' 2025-06-05T23:55:38.2387833Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_types.py' 2025-06-05T23:55:38.2388794Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_engine.py' 2025-06-05T23:55:38.2389781Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_solver.py' 2025-06-05T23:55:38.2390725Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_constraints.py' 2025-06-05T23:55:38.2391681Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_meta_arg_engine.py' 2025-06-05T23:55:38.2392579Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_specs.py' 2025-06-05T23:55:38.2393510Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_structural_engine.py' 2025-06-05T23:55:38.2394512Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_generation.py' 2025-06-05T23:55:38.2395522Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_solving.py' 2025-06-05T23:55:38.2396479Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_space.py' 2025-06-05T23:55:38.2397445Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_types.py' 2025-06-05T23:55:38.2398220Z adding 'executorch/backends/cortex_m/ops/operators.py' 2025-06-05T23:55:38.2398834Z adding 'executorch/backends/cortex_m/ops/operators.yaml' 2025-06-05T23:55:38.2399527Z adding 'executorch/backends/cortex_m/passes/replace_quant_nodes_pass.py' 2025-06-05T23:55:38.2400318Z adding 'executorch/backends/cortex_m/test/test_replace_quant_nodes.py' 2025-06-05T23:55:38.2401008Z adding 'executorch/backends/example/example_backend.py' 2025-06-05T23:55:38.2401727Z adding 'executorch/backends/example/example_partitioner.py' 2025-06-05T23:55:38.2402469Z adding 'executorch/backends/example/example_quantizer.py' 2025-06-05T23:55:38.2403125Z adding 'executorch/backends/example/test_example_delegate.py' 2025-06-05T23:55:38.2403962Z adding 'executorch/backends/example/example_backend_delegate_passes/merge_to_dim_pass.py' 2025-06-05T23:55:38.2405011Z adding 'executorch/backends/example/example_backend_delegate_passes/permute_memory_formats_pass.py' 2025-06-05T23:55:38.2405987Z adding 'executorch/backends/example/example_operators/adaptive_avg_pool2d.py' 2025-06-05T23:55:38.2406766Z adding 'executorch/backends/example/example_operators/add.py' 2025-06-05T23:55:38.2407457Z adding 'executorch/backends/example/example_operators/conv2d.py' 2025-06-05T23:55:38.2408251Z adding 'executorch/backends/example/example_operators/conv_relu.py' 2025-06-05T23:55:38.2409101Z adding 'executorch/backends/example/example_operators/dropout.py' 2025-06-05T23:55:38.2409838Z adding 'executorch/backends/example/example_operators/flatten.py' 2025-06-05T23:55:38.2410596Z adding 'executorch/backends/example/example_operators/linear.py' 2025-06-05T23:55:38.2411458Z adding 'executorch/backends/example/example_operators/op_base.py' 2025-06-05T23:55:38.2412148Z adding 'executorch/backends/example/example_operators/ops.py' 2025-06-05T23:55:38.2412844Z adding 'executorch/backends/example/example_operators/utils.py' 2025-06-05T23:55:38.2413455Z adding 'executorch/backends/mediatek/__init__.py' 2025-06-05T23:55:38.2414243Z adding 'executorch/backends/mediatek/partitioner.py' 2025-06-05T23:55:38.2414881Z adding 'executorch/backends/mediatek/preprocess.py' 2025-06-05T23:55:38.2415478Z adding 'executorch/backends/mediatek/_passes/__init__.py' 2025-06-05T23:55:38.2416249Z adding 'executorch/backends/mediatek/_passes/decompose_scaled_dot_product_attention.py' 2025-06-05T23:55:38.2417195Z adding 'executorch/backends/mediatek/quantizer/__init__.py' 2025-06-05T23:55:38.2417837Z adding 'executorch/backends/mediatek/quantizer/annotator.py' 2025-06-05T23:55:38.2418592Z adding 'executorch/backends/mediatek/quantizer/qconfig.py' 2025-06-05T23:55:38.2419401Z adding 'executorch/backends/mediatek/quantizer/quantizer.py' 2025-06-05T23:55:38.2420053Z adding 'executorch/backends/nxp/neutron_node_extraction.py' 2025-06-05T23:55:38.2420673Z adding 'executorch/backends/nxp/neutron_partitioner.py' 2025-06-05T23:55:38.2421303Z adding 'executorch/backends/nxp/neutron_pass_manager.py' 2025-06-05T23:55:38.2421875Z adding 'executorch/backends/nxp/nxp_backend.py' 2025-06-05T23:55:38.2422570Z adding 'executorch/backends/nxp/aten_passes/fuse_batch_norm_with_conv_pass.py' 2025-06-05T23:55:38.2423424Z adding 'executorch/backends/nxp/aten_passes/fuse_batch_norm_with_linear_pass.py' 2025-06-05T23:55:38.2424274Z adding 'executorch/backends/nxp/aten_passes/neutron_aten_pass_manager.py' 2025-06-05T23:55:38.2672265Z adding 'executorch/backends/nxp/backend/edge_helper.py' 2025-06-05T23:55:38.2673398Z adding 'executorch/backends/nxp/backend/edge_program_converter.py' 2025-06-05T23:55:38.2674396Z adding 'executorch/backends/nxp/backend/neutron_converter_manager.py' 2025-06-05T23:55:38.2675245Z adding 'executorch/backends/nxp/backend/node_format_inference.py' 2025-06-05T23:55:38.2675965Z adding 'executorch/backends/nxp/backend/ir/conversion_config.py' 2025-06-05T23:55:38.2676824Z adding 'executorch/backends/nxp/backend/ir/conversion_context.py' 2025-06-05T23:55:38.2677537Z adding 'executorch/backends/nxp/backend/ir/logger.py' 2025-06-05T23:55:38.2678201Z adding 'executorch/backends/nxp/backend/ir/tensor_formatting.py' 2025-06-05T23:55:38.2679215Z adding 'executorch/backends/nxp/backend/ir/converter/__init__.py' 2025-06-05T23:55:38.2680045Z adding 'executorch/backends/nxp/backend/ir/converter/node_converter.py' 2025-06-05T23:55:38.2680928Z adding 'executorch/backends/nxp/backend/ir/converter/quantization_utils.py' 2025-06-05T23:55:38.2681937Z adding 'executorch/backends/nxp/backend/ir/converter/tensor_utils.py' 2025-06-05T23:55:38.2682745Z adding 'executorch/backends/nxp/backend/ir/converter/builder/__init__.py' 2025-06-05T23:55:38.2683686Z adding 'executorch/backends/nxp/backend/ir/converter/builder/aten_model_builder_director.py' 2025-06-05T23:55:38.2684782Z adding 'executorch/backends/nxp/backend/ir/converter/builder/model_builder.py' 2025-06-05T23:55:38.2685816Z adding 'executorch/backends/nxp/backend/ir/converter/builder/quantization_verification.py' 2025-06-05T23:55:38.2686930Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/__init__.py' 2025-06-05T23:55:38.2687947Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/aten_translator.py' 2025-06-05T23:55:38.2688849Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/common.py' 2025-06-05T23:55:38.2689692Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/translator.py' 2025-06-05T23:55:38.2690600Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/__init__.py' 2025-06-05T23:55:38.2691773Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/__init__.py' 2025-06-05T23:55:38.2692992Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/addmm_converter.py' 2025-06-05T23:55:38.2694360Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/avg_pool_2d_converter.py' 2025-06-05T23:55:38.2695858Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/constant_pad_nd_converter.py' 2025-06-05T23:55:38.2697271Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/convolution_converter.py' 2025-06-05T23:55:38.2698754Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/max_pool_2d_converter.py' 2025-06-05T23:55:38.2700517Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/mm_converter.py' 2025-06-05T23:55:38.2701874Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/permute_copy_converter.py' 2025-06-05T23:55:38.2703317Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_dequantize_converter.py' 2025-06-05T23:55:38.2704651Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_quantize_converter.py' 2025-06-05T23:55:38.2706020Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/relu_converter.py' 2025-06-05T23:55:38.2707391Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/softmax_converter.py' 2025-06-05T23:55:38.2708675Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/view_copy_converter.py' 2025-06-05T23:55:38.2709795Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/__init__.py' 2025-06-05T23:55:38.2710943Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/recurrent_utils.py' 2025-06-05T23:55:38.2712204Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/reduce_utils.py' 2025-06-05T23:55:38.2713459Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/reshape_transposition.py' 2025-06-05T23:55:38.2714489Z adding 'executorch/backends/nxp/backend/ir/lib/__init__.py' 2025-06-05T23:55:38.2715249Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ATan2Options.py' 2025-06-05T23:55:38.2716031Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AbsOptions.py' 2025-06-05T23:55:38.2716870Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ActivationFunctionType.py' 2025-06-05T23:55:38.2717947Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AddNOptions.py' 2025-06-05T23:55:38.2718700Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AddOptions.py' 2025-06-05T23:55:38.2719700Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ArgMaxOptions.py' 2025-06-05T23:55:38.2720492Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ArgMinOptions.py' 2025-06-05T23:55:38.2721564Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AssignVariableOptions.py' 2025-06-05T23:55:38.2722468Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BatchMatMulOptions.py' 2025-06-05T23:55:38.2723452Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BatchToSpaceNDOptions.py' 2025-06-05T23:55:38.2724610Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceLSTMOptions.py' 2025-06-05T23:55:38.2725904Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceRNNOptions.py' 2025-06-05T23:55:38.2726838Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BitcastOptions.py' 2025-06-05T23:55:38.2727784Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BitwiseXorOptions.py' 2025-06-05T23:55:38.2728825Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BroadcastToOptions.py' 2025-06-05T23:55:38.2729809Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BucketizeOptions.py' 2025-06-05T23:55:38.2730683Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Buffer.py' 2025-06-05T23:55:38.2731681Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOperator.py' 2025-06-05T23:55:38.2732585Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions.py' 2025-06-05T23:55:38.2733577Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions2.py' 2025-06-05T23:55:38.2734668Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CallOnceOptions.py' 2025-06-05T23:55:38.2735790Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CallOptions.py' 2025-06-05T23:55:38.2736667Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CastOptions.py' 2025-06-05T23:55:38.2737657Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CombinerType.py' 2025-06-05T23:55:38.2738952Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ConcatEmbeddingsOptions.py' 2025-06-05T23:55:38.2739893Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ConcatenationOptions.py' 2025-06-05T23:55:38.2740737Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Conv2DOptions.py' 2025-06-05T23:55:38.2741837Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Conv3DOptions.py' 2025-06-05T23:55:38.2742695Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CosOptions.py' 2025-06-05T23:55:38.2743474Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CumsumOptions.py' 2025-06-05T23:55:38.2744424Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CustomOptionsFormat.py' 2025-06-05T23:55:38.2745389Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CustomQuantization.py' 2025-06-05T23:55:38.2746351Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DensifyOptions.py' 2025-06-05T23:55:38.2747322Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DepthToSpaceOptions.py' 2025-06-05T23:55:38.2748580Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DepthwiseConv2DOptions.py' 2025-06-05T23:55:38.2749582Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DequantizeOptions.py' 2025-06-05T23:55:38.2750561Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DilateOptions.py' 2025-06-05T23:55:38.2751489Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DimensionMetadata.py' 2025-06-05T23:55:38.2752304Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DimensionType.py' 2025-06-05T23:55:38.2753090Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DivOptions.py' 2025-06-05T23:55:38.2754097Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DynamicUpdateSliceOptions.py' 2025-06-05T23:55:38.2755230Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/EmbeddingLookupSparseOptions.py' 2025-06-05T23:55:38.2756353Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/EqualOptions.py' 2025-06-05T23:55:38.2757280Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ExpOptions.py' 2025-06-05T23:55:38.2758573Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ExpandDimsOptions.py' 2025-06-05T23:55:38.2760039Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FakeQuantOptions.py' 2025-06-05T23:55:38.2761445Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FillOptions.py' 2025-06-05T23:55:38.2762934Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FloorDivOptions.py' 2025-06-05T23:55:38.2764414Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FloorModOptions.py' 2025-06-05T23:55:38.2766038Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptions.py' 2025-06-05T23:55:38.2767930Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptionsWeightsFormat.py' 2025-06-05T23:55:38.2769755Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GatherNdOptions.py' 2025-06-05T23:55:38.2771233Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GatherOptions.py' 2025-06-05T23:55:38.2772724Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GeluOptions.py' 2025-06-05T23:55:38.2774249Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GreaterEqualOptions.py' 2025-06-05T23:55:38.2775824Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GreaterOptions.py' 2025-06-05T23:55:38.2777333Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HardSwishOptions.py' 2025-06-05T23:55:38.2779119Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableFindOptions.py' 2025-06-05T23:55:38.2780808Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableImportOptions.py' 2025-06-05T23:55:38.2782386Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableOptions.py' 2025-06-05T23:55:38.2783994Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableSizeOptions.py' 2025-06-05T23:55:38.2965558Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/IfOptions.py' 2025-06-05T23:55:38.2966667Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Int32Vector.py' 2025-06-05T23:55:38.2968641Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/L2NormOptions.py' 2025-06-05T23:55:38.2970314Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionOptions.py' 2025-06-05T23:55:38.2972069Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionType.py' 2025-06-05T23:55:38.2973748Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSTMKernelType.py' 2025-06-05T23:55:38.2975104Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSTMOptions.py' 2025-06-05T23:55:38.2976625Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LeakyReluOptions.py' 2025-06-05T23:55:38.2978170Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LessEqualOptions.py' 2025-06-05T23:55:38.2979932Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LessOptions.py' 2025-06-05T23:55:38.2981504Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LocalResponseNormalizationOptions.py' 2025-06-05T23:55:38.2983384Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogSoftmaxOptions.py' 2025-06-05T23:55:38.2985028Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalAndOptions.py' 2025-06-05T23:55:38.2986609Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalNotOptions.py' 2025-06-05T23:55:38.2988219Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalOrOptions.py' 2025-06-05T23:55:38.2989855Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MatrixDiagOptions.py' 2025-06-05T23:55:38.2991468Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MatrixSetDiagOptions.py' 2025-06-05T23:55:38.2993201Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MaximumMinimumOptions.py' 2025-06-05T23:55:38.2994561Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Metadata.py' 2025-06-05T23:55:38.2996011Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadMode.py' 2025-06-05T23:55:38.2997163Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadOptions.py' 2025-06-05T23:55:38.2998641Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Model.py' 2025-06-05T23:55:38.2999928Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MulOptions.py' 2025-06-05T23:55:38.3001349Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NegOptions.py' 2025-06-05T23:55:38.3002738Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV4Options.py' 2025-06-05T23:55:38.3004606Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV5Options.py' 2025-06-05T23:55:38.3006204Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NotEqualOptions.py' 2025-06-05T23:55:38.3007716Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/OneHotOptions.py' 2025-06-05T23:55:38.3009162Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Operator.py' 2025-06-05T23:55:38.3010554Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/OperatorCode.py' 2025-06-05T23:55:38.3011990Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PackOptions.py' 2025-06-05T23:55:38.3012956Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PadOptions.py' 2025-06-05T23:55:38.3013839Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PadV2Options.py' 2025-06-05T23:55:38.3014612Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Padding.py' 2025-06-05T23:55:38.3015362Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Pool2DOptions.py' 2025-06-05T23:55:38.3016145Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PowOptions.py' 2025-06-05T23:55:38.3016949Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizationDetails.py' 2025-06-05T23:55:38.3017861Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizationParameters.py' 2025-06-05T23:55:38.3018738Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizeOptions.py' 2025-06-05T23:55:38.3019761Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RNNOptions.py' 2025-06-05T23:55:38.3021118Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RandomOptions.py' 2025-06-05T23:55:38.3022695Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RangeOptions.py' 2025-06-05T23:55:38.3023722Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RankOptions.py' 2025-06-05T23:55:38.3025479Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReadVariableOptions.py' 2025-06-05T23:55:38.3027099Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowFunction.py' 2025-06-05T23:55:38.3028787Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowOptions.py' 2025-06-05T23:55:38.3030419Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReducerOptions.py' 2025-06-05T23:55:38.3031936Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReshapeOptions.py' 2025-06-05T23:55:38.3033538Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ResizeBilinearOptions.py' 2025-06-05T23:55:38.3035387Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ResizeNearestNeighborOptions.py' 2025-06-05T23:55:38.3037213Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReverseSequenceOptions.py' 2025-06-05T23:55:38.3038875Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReverseV2Options.py' 2025-06-05T23:55:38.3040220Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Rfft2dOptions.py' 2025-06-05T23:55:38.3041817Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RightShiftOptions.py' 2025-06-05T23:55:38.3043211Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RngAlgorithm.py' 2025-06-05T23:55:38.3044671Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SVDFOptions.py' 2025-06-05T23:55:38.3045971Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ScatterNdOptions.py' 2025-06-05T23:55:38.3047529Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SegmentSumOptions.py' 2025-06-05T23:55:38.3048831Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SelectOptions.py' 2025-06-05T23:55:38.3050390Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SelectV2Options.py' 2025-06-05T23:55:38.3051984Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SequenceRNNOptions.py' 2025-06-05T23:55:38.3053537Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ShapeOptions.py' 2025-06-05T23:55:38.3055100Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SignOptions.py' 2025-06-05T23:55:38.3056532Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SignatureDef.py' 2025-06-05T23:55:38.3058042Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SkipGramOptions.py' 2025-06-05T23:55:38.3059479Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SliceOptions.py' 2025-06-05T23:55:38.3060923Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SoftmaxOptions.py' 2025-06-05T23:55:38.3062432Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SpaceToBatchNDOptions.py' 2025-06-05T23:55:38.3063941Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SpaceToDepthOptions.py' 2025-06-05T23:55:38.3065575Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparseIndexVector.py' 2025-06-05T23:55:38.3067065Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparseToDenseOptions.py' 2025-06-05T23:55:38.3068737Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparsityParameters.py' 2025-06-05T23:55:38.3070271Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SplitOptions.py' 2025-06-05T23:55:38.3071770Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SplitVOptions.py' 2025-06-05T23:55:38.3072927Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SquareOptions.py' 2025-06-05T23:55:38.3074568Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SquaredDifferenceOptions.py' 2025-06-05T23:55:38.3076158Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SqueezeOptions.py' 2025-06-05T23:55:38.3077835Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloBroadcastInDimOptions.py' 2025-06-05T23:55:38.3079980Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloCompareOptions.py' 2025-06-05T23:55:38.3082037Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonDirection.py' 2025-06-05T23:55:38.3083893Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonType.py' 2025-06-05T23:55:38.3085739Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloConcatenateOptions.py' 2025-06-05T23:55:38.3088022Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloConvolutionOptions.py' 2025-06-05T23:55:38.3089677Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloCustomCallOptions.py' 2025-06-05T23:55:38.3091556Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloDotGeneralOptions.py' 2025-06-05T23:55:38.3093478Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloDynamicSliceOptions.py' 2025-06-05T23:55:38.3095452Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloGatherOptions.py' 2025-06-05T23:55:38.3097189Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloIotaOptions.py' 2025-06-05T23:55:38.3119548Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloPadOptions.py' 2025-06-05T23:55:38.3121645Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloPrecisionConfig.py' 2025-06-05T23:55:38.3123474Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceOptions.py' 2025-06-05T23:55:38.3125363Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceWindowOptions.py' 2025-06-05T23:55:38.3127364Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloRngBitGeneratorOptions.py' 2025-06-05T23:55:38.3129270Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloScatterOptions.py' 2025-06-05T23:55:38.3131054Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloSliceOptions.py' 2025-06-05T23:55:38.3132783Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloSortOptions.py' 2025-06-05T23:55:38.3134718Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloTransposeOptions.py' 2025-06-05T23:55:38.3136530Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloWhileOptions.py' 2025-06-05T23:55:38.3138235Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StridedSliceOptions.py' 2025-06-05T23:55:38.3139767Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SubGraph.py' 2025-06-05T23:55:38.3141165Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SubOptions.py' 2025-06-05T23:55:38.3142541Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Tensor.py' 2025-06-05T23:55:38.3143878Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TensorMap.py' 2025-06-05T23:55:38.3145277Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TensorType.py' 2025-06-05T23:55:38.3146709Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TileOptions.py' 2025-06-05T23:55:38.3191064Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TopKV2Options.py' 2025-06-05T23:55:38.3192848Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TransposeConvOptions.py' 2025-06-05T23:55:38.3194573Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TransposeOptions.py' 2025-06-05T23:55:38.3196111Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Uint16Vector.py' 2025-06-05T23:55:38.3197570Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Uint8Vector.py' 2025-06-05T23:55:38.3199334Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnidirectionalSequenceLSTMOptions.py' 2025-06-05T23:55:38.3201145Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UniqueOptions.py' 2025-06-05T23:55:38.3202695Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnpackOptions.py' 2025-06-05T23:55:38.3204342Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMaxOptions.py' 2025-06-05T23:55:38.3206192Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMinOptions.py' 2025-06-05T23:55:38.3208039Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentProdOptions.py' 2025-06-05T23:55:38.3209917Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentSumOptions.py' 2025-06-05T23:55:38.3212050Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/VarHandleOptions.py' 2025-06-05T23:55:38.3213735Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/VariantSubType.py' 2025-06-05T23:55:38.3215491Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/WhereOptions.py' 2025-06-05T23:55:38.3216934Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/WhileOptions.py' 2025-06-05T23:55:38.3218432Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ZerosLikeOptions.py' 2025-06-05T23:55:38.3219918Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/__init__.py' 2025-06-05T23:55:38.3221305Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/__init__.py' 2025-06-05T23:55:38.3222855Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/tflite_model.py' 2025-06-05T23:55:38.3224584Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/__init__.py' 2025-06-05T23:55:38.3226501Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/abs_options.py' 2025-06-05T23:55:38.3228462Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_n_options.py' 2025-06-05T23:55:38.3230390Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_options.py' 2025-06-05T23:55:38.3231631Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_max_options.py' 2025-06-05T23:55:38.3233538Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_min_options.py' 2025-06-05T23:55:38.3235180Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/average_pool_2d_options.py' 2025-06-05T23:55:38.3237351Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/batch_mat_mul_options.py' 2025-06-05T23:55:38.3239680Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_lstm_options.py' 2025-06-05T23:55:38.3241727Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_rnn_options.py' 2025-06-05T23:55:38.3243631Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bitwise_xor_options.py' 2025-06-05T23:55:38.3245748Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/broadcast_to_options.py' 2025-06-05T23:55:38.3247195Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cast_options.py' 2025-06-05T23:55:38.3248842Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/concatenation_options.py' 2025-06-05T23:55:38.3250815Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_2d_options.py' 2025-06-05T23:55:38.3251904Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_3d_options.py' 2025-06-05T23:55:38.3252953Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cum_sum_options.py' 2025-06-05T23:55:38.3254213Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depth_to_space_options.py' 2025-06-05T23:55:38.3255372Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depthwise_conv_2d_options.py' 2025-06-05T23:55:38.3256526Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/dequantize_options.py' 2025-06-05T23:55:38.3257584Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/div_options.py' 2025-06-05T23:55:38.3259054Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/equal_options.py' 2025-06-05T23:55:38.3260928Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/exp_options.py' 2025-06-05T23:55:38.3261990Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/floor_mod_options.py' 2025-06-05T23:55:38.3263127Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/fully_connected_options.py' 2025-06-05T23:55:38.3264620Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_nd_options.py' 2025-06-05T23:55:38.3266626Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_options.py' 2025-06-05T23:55:38.3268500Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gelu_options.py' 2025-06-05T23:55:38.3270531Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_equal_options.py' 2025-06-05T23:55:38.3272523Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_options.py' 2025-06-05T23:55:38.3273674Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/hard_swish_options.py' 2025-06-05T23:55:38.3275731Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/leaky_relu_options.py' 2025-06-05T23:55:38.3277567Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_equal_options.py' 2025-06-05T23:55:38.3279776Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_options.py' 2025-06-05T23:55:38.3280892Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/log_softmax_options.py' 2025-06-05T23:55:38.3282964Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_and_options.py' 2025-06-05T23:55:38.3284802Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_not_options.py' 2025-06-05T23:55:38.3286793Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_or_options.py' 2025-06-05T23:55:38.3288600Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lrn_options.py' 2025-06-05T23:55:38.3290538Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lstm_options.py' 2025-06-05T23:55:38.3292474Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/max_pool_2d_options.py' 2025-06-05T23:55:38.3294303Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/maximum_options.py' 2025-06-05T23:55:38.3296107Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mean_options.py' 2025-06-05T23:55:38.3297511Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/minimum_options.py' 2025-06-05T23:55:38.3299546Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mirror_pad_options.py' 2025-06-05T23:55:38.3301052Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mul_options.py' 2025-06-05T23:55:38.3303037Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/multinomial_options.py' 2025-06-05T23:55:38.3304109Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/neg_options.py' 2025-06-05T23:55:38.3305353Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/not_equal_options.py' 2025-06-05T23:55:38.3307377Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/one_hot_options.py' 2025-06-05T23:55:38.3308751Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_options.py' 2025-06-05T23:55:38.3310723Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_v2_options.py' 2025-06-05T23:55:38.3311969Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pow_options.py' 2025-06-05T23:55:38.3313962Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/quantize_options.py' 2025-06-05T23:55:38.3315981Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/range_options.py' 2025-06-05T23:55:38.3317663Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_max_options.py' 2025-06-05T23:55:38.3318826Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_min_options.py' 2025-06-05T23:55:38.3321302Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_prod_options.py' 2025-06-05T23:55:38.3322546Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reshape_options.py' 2025-06-05T23:55:38.3324508Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_bilinear_options.py' 2025-06-05T23:55:38.3326294Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_nearest_neighbor_options.py' 2025-06-05T23:55:38.3328057Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reverse_sequence_options.py' 2025-06-05T23:55:38.3329876Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/scatter_nd_options.py' 2025-06-05T23:55:38.3331398Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/select_v2_options.py' 2025-06-05T23:55:38.3333275Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/shape_options.py' 2025-06-05T23:55:38.3334893Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sign_options.py' 2025-06-05T23:55:38.3502378Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/slice_options.py' 2025-06-05T23:55:38.3504188Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/softmax_options.py' 2025-06-05T23:55:38.3506185Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/space_to_depth_options.py' 2025-06-05T23:55:38.3508369Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_options.py' 2025-06-05T23:55:38.3510370Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_v_options.py' 2025-06-05T23:55:38.3511833Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/square_options.py' 2025-06-05T23:55:38.3513726Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squared_difference_options.py' 2025-06-05T23:55:38.3515530Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squeeze_options.py' 2025-06-05T23:55:38.3517614Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/strided_slice_options.py' 2025-06-05T23:55:38.3518936Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sub_options.py' 2025-06-05T23:55:38.3520241Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sum_options.py' 2025-06-05T23:55:38.3522128Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/tile_options.py' 2025-06-05T23:55:38.3523505Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_conv_options.py' 2025-06-05T23:55:38.3525597Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_options.py' 2025-06-05T23:55:38.3527360Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_lstm_options.py' 2025-06-05T23:55:38.3529654Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_rnn_options.py' 2025-06-05T23:55:38.3530916Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/custom_options/flex_transpose_options.py' 2025-06-05T23:55:38.3531996Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/__init__.py' 2025-06-05T23:55:38.3533515Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/meta.py' 2025-06-05T23:55:38.3535017Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/types.py' 2025-06-05T23:55:38.3535841Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/__init__.py' 2025-06-05T23:55:38.3536925Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/graph_utils.py' 2025-06-05T23:55:38.3538500Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/operator_rules.py' 2025-06-05T23:55:38.3539919Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizer.py' 2025-06-05T23:55:38.3541060Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/pattern_matcher.py' 2025-06-05T23:55:38.3542690Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/tensor_rules.py' 2025-06-05T23:55:38.3544665Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/__init__.py' 2025-06-05T23:55:38.3546217Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/base_optimization.py' 2025-06-05T23:55:38.3548247Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/combine_hard_sigmoid_and_mul_to_hard_swish.py' 2025-06-05T23:55:38.3550645Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/eliminate_dead_branches.py' 2025-06-05T23:55:38.3552770Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_activation_functions.py' 2025-06-05T23:55:38.3554848Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_fully_connected_and_add_operators.py' 2025-06-05T23:55:38.3557255Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_quanitze_into_preceding_ops.py' 2025-06-05T23:55:38.3559557Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/keep_one_empty_buffer.py' 2025-06-05T23:55:38.3561622Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/move_relu_before_concat.py' 2025-06-05T23:55:38.3564111Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/permute_fully_connected_weights_after_reshape.py' 2025-06-05T23:55:38.3566557Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_cast_operators.py' 2025-06-05T23:55:38.3568198Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_quantize_operators.py' 2025-06-05T23:55:38.3570210Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_reshape_operators.py' 2025-06-05T23:55:38.3571804Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_transpose_operators.py' 2025-06-05T23:55:38.3574156Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/remove_unused_tensors_and_buffers.py' 2025-06-05T23:55:38.3575860Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/replace_average_pool_before_fully_connected_with_sum.py' 2025-06-05T23:55:38.3577922Z adding 'executorch/backends/nxp/quantizer/neutron_quantizer.py' 2025-06-05T23:55:38.3579222Z adding 'executorch/backends/nxp/quantizer/patterns.py' 2025-06-05T23:55:38.3579830Z adding 'executorch/backends/nxp/quantizer/utils.py' 2025-06-05T23:55:38.3580447Z adding 'executorch/backends/nxp/tests/executorch_pipeline.py' 2025-06-05T23:55:38.3581080Z adding 'executorch/backends/nxp/tests/executors.py' 2025-06-05T23:55:38.3581739Z adding 'executorch/backends/nxp/tests/exported_program_vizualize.py' 2025-06-05T23:55:38.3582407Z adding 'executorch/backends/nxp/tests/models.py' 2025-06-05T23:55:38.3583041Z adding 'executorch/backends/nxp/tests/test_batch_norm_fusion.py' 2025-06-05T23:55:38.3583888Z adding 'executorch/backends/nxp/tests/test_neutron_backend.py' 2025-06-05T23:55:38.3585164Z adding 'executorch/backends/nxp/tests/test_neutron_converter_manager.py' 2025-06-05T23:55:38.3586551Z adding 'executorch/backends/nxp/tests/test_node_format_inference.py' 2025-06-05T23:55:38.3587914Z adding 'executorch/backends/nxp/tests/test_operator_selector.py' 2025-06-05T23:55:38.3589176Z adding 'executorch/backends/nxp/tests/test_qdq_clustering_conv.py' 2025-06-05T23:55:38.3590074Z adding 'executorch/backends/nxp/tests/test_quantizer.py' 2025-06-05T23:55:38.3591636Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_avg_pool2d_converter.py' 2025-06-05T23:55:38.3593672Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_constant_pad_nd_converter.py' 2025-06-05T23:55:38.3595851Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_conv_converter.py' 2025-06-05T23:55:38.3597765Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_linear_converter.py' 2025-06-05T23:55:38.3599762Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_max_pool_2d_converter.py' 2025-06-05T23:55:38.3602103Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_permute_copy_converter.py' 2025-06-05T23:55:38.3603896Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_relu_converter.py' 2025-06-05T23:55:38.3605729Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_softmax_converter.py' 2025-06-05T23:55:38.3606849Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_view_copy_converter.py' 2025-06-05T23:55:38.3608341Z adding 'executorch/backends/openvino/__init__.py' 2025-06-05T23:55:38.3609344Z adding 'executorch/backends/openvino/partitioner.py' 2025-06-05T23:55:38.3609971Z adding 'executorch/backends/openvino/preprocess.py' 2025-06-05T23:55:38.3610802Z adding 'executorch/backends/openvino/quantizer/__init__.py' 2025-06-05T23:55:38.3611998Z adding 'executorch/backends/openvino/quantizer/quantizer.py' 2025-06-05T23:55:38.3613187Z adding 'executorch/backends/openvino/tests/test_runner.py' 2025-06-05T23:55:38.3614657Z adding 'executorch/backends/openvino/tests/models/test_classification.py' 2025-06-05T23:55:38.3615952Z adding 'executorch/backends/openvino/tests/ops/base_openvino_op_test.py' 2025-06-05T23:55:38.3617171Z adding 'executorch/backends/openvino/tests/ops/test_add.py' 2025-06-05T23:55:38.3618398Z adding 'executorch/backends/openvino/tests/ops/test_addmm.py' 2025-06-05T23:55:38.3619614Z adding 'executorch/backends/openvino/tests/ops/test_arange.py' 2025-06-05T23:55:38.3620960Z adding 'executorch/backends/openvino/tests/ops/test_batch_norm.py' 2025-06-05T23:55:38.3622026Z adding 'executorch/backends/openvino/tests/ops/test_convolution.py' 2025-06-05T23:55:38.3623408Z adding 'executorch/backends/openvino/tests/ops/test_mean.py' 2025-06-05T23:55:38.3624427Z adding 'executorch/backends/openvino/tests/ops/test_permute.py' 2025-06-05T23:55:38.3625226Z adding 'executorch/backends/openvino/tests/ops/test_pooling.py' 2025-06-05T23:55:38.3626131Z adding 'executorch/backends/openvino/tests/ops/test_unary_ops.py' 2025-06-05T23:55:38.3627406Z adding 'executorch/backends/openvino/tests/ops/test_view.py' 2025-06-05T23:55:38.3628566Z adding 'executorch/backends/qualcomm/qnn_preprocess.py' 2025-06-05T23:55:38.3629709Z adding 'executorch/backends/qualcomm/_passes/__init__.py' 2025-06-05T23:55:38.3630994Z adding 'executorch/backends/qualcomm/_passes/annotate_adaptive_avg_pool1d.py' 2025-06-05T23:55:38.3632307Z adding 'executorch/backends/qualcomm/_passes/annotate_quant_attrs.py' 2025-06-05T23:55:38.3633657Z adding 'executorch/backends/qualcomm/_passes/annotate_stack.py' 2025-06-05T23:55:38.3634602Z adding 'executorch/backends/qualcomm/_passes/annotate_unbind.py' 2025-06-05T23:55:38.3635914Z adding 'executorch/backends/qualcomm/_passes/build_quant_io.py' 2025-06-05T23:55:38.3637055Z adding 'executorch/backends/qualcomm/_passes/convert_bmm_to_matmul.py' 2025-06-05T23:55:38.3638579Z adding 'executorch/backends/qualcomm/_passes/convert_conv1d_to_conv2d.py' 2025-06-05T23:55:38.3639839Z adding 'executorch/backends/qualcomm/_passes/convert_square_to_pow.py' 2025-06-05T23:55:38.3641176Z adding 'executorch/backends/qualcomm/_passes/decompose_any.py' 2025-06-05T23:55:38.3642383Z adding 'executorch/backends/qualcomm/_passes/decompose_cdist.py' 2025-06-05T23:55:38.3643618Z adding 'executorch/backends/qualcomm/_passes/decompose_einsum.py' 2025-06-05T23:55:38.3644921Z adding 'executorch/backends/qualcomm/_passes/decompose_expm1.py' 2025-06-05T23:55:38.3645959Z adding 'executorch/backends/qualcomm/_passes/decompose_linalg_vector_norm.py' 2025-06-05T23:55:38.3892995Z adding 'executorch/backends/qualcomm/_passes/decompose_roll.py' 2025-06-05T23:55:38.3894328Z adding 'executorch/backends/qualcomm/_passes/decompose_silu.py' 2025-06-05T23:55:38.3894709Z adding 'executorch/backends/qualcomm/_passes/expand_broadcast_tensor_shape.py' 2025-06-05T23:55:38.3895036Z adding 'executorch/backends/qualcomm/_passes/fixed_linear_keep_dim.py' 2025-06-05T23:55:38.3895413Z adding 'executorch/backends/qualcomm/_passes/fold_qdq.py' 2025-06-05T23:55:38.3895733Z adding 'executorch/backends/qualcomm/_passes/fuse_consecutive_cast.py' 2025-06-05T23:55:38.3896086Z adding 'executorch/backends/qualcomm/_passes/fuse_consecutive_transpose.py' 2025-06-05T23:55:38.3896349Z adding 'executorch/backends/qualcomm/_passes/i64_to_i32.py' 2025-06-05T23:55:38.3896608Z adding 'executorch/backends/qualcomm/_passes/insert_io_qdq.py' 2025-06-05T23:55:38.3896963Z adding 'executorch/backends/qualcomm/_passes/insert_requantize.py' 2025-06-05T23:55:38.3897266Z adding 'executorch/backends/qualcomm/_passes/layout_transform.py' 2025-06-05T23:55:38.3897629Z adding 'executorch/backends/qualcomm/_passes/lift_constant_scalar_operands.py' 2025-06-05T23:55:38.3897929Z adding 'executorch/backends/qualcomm/_passes/qnn_pass_manager.py' 2025-06-05T23:55:38.3898258Z adding 'executorch/backends/qualcomm/_passes/recompose_pixel_unshuffle.py' 2025-06-05T23:55:38.3898569Z adding 'executorch/backends/qualcomm/_passes/recompose_rms_norm.py' 2025-06-05T23:55:38.3898889Z adding 'executorch/backends/qualcomm/_passes/reduce_dynamic_range.py' 2025-06-05T23:55:38.3899181Z adding 'executorch/backends/qualcomm/_passes/remove_0d_tensor.py' 2025-06-05T23:55:38.3899480Z adding 'executorch/backends/qualcomm/_passes/remove_redundancy.py' 2025-06-05T23:55:38.3899772Z adding 'executorch/backends/qualcomm/_passes/replace_arange_args.py' 2025-06-05T23:55:38.3900104Z adding 'executorch/backends/qualcomm/_passes/replace_index_put_input.py' 2025-06-05T23:55:38.3900405Z adding 'executorch/backends/qualcomm/_passes/replace_inf_values.py' 2025-06-05T23:55:38.3900668Z adding 'executorch/backends/qualcomm/_passes/tag_quant_io.py' 2025-06-05T23:55:38.3900895Z adding 'executorch/backends/qualcomm/_passes/utils.py' 2025-06-05T23:55:38.3901131Z adding 'executorch/backends/qualcomm/aot/ir/qcir.fbs' 2025-06-05T23:55:38.3901386Z adding 'executorch/backends/qualcomm/builders/__init__.py' 2025-06-05T23:55:38.3901669Z adding 'executorch/backends/qualcomm/builders/node_visitor.py' 2025-06-05T23:55:38.3901902Z adding 'executorch/backends/qualcomm/builders/op_abs.py' 2025-06-05T23:55:38.3902328Z adding 'executorch/backends/qualcomm/builders/op_adaptive_avg_pool2d.py' 2025-06-05T23:55:38.3902660Z adding 'executorch/backends/qualcomm/builders/op_add.py' 2025-06-05T23:55:38.3902998Z adding 'executorch/backends/qualcomm/builders/op_amax.py' 2025-06-05T23:55:38.3903282Z adding 'executorch/backends/qualcomm/builders/op_and.py' 2025-06-05T23:55:38.3903545Z adding 'executorch/backends/qualcomm/builders/op_arange.py' 2025-06-05T23:55:38.3903804Z adding 'executorch/backends/qualcomm/builders/op_argmin.py' 2025-06-05T23:55:38.3904100Z adding 'executorch/backends/qualcomm/builders/op_avg_pool2d.py' 2025-06-05T23:55:38.3904380Z adding 'executorch/backends/qualcomm/builders/op_batch_norm.py' 2025-06-05T23:55:38.3904609Z adding 'executorch/backends/qualcomm/builders/op_bmm.py' 2025-06-05T23:55:38.3904860Z adding 'executorch/backends/qualcomm/builders/op_cat.py' 2025-06-05T23:55:38.3905118Z adding 'executorch/backends/qualcomm/builders/op_ceil.py' 2025-06-05T23:55:38.3905374Z adding 'executorch/backends/qualcomm/builders/op_clamp.py' 2025-06-05T23:55:38.3905615Z adding 'executorch/backends/qualcomm/builders/op_conv2d.py' 2025-06-05T23:55:38.3905857Z adding 'executorch/backends/qualcomm/builders/op_cos.py' 2025-06-05T23:55:38.3906116Z adding 'executorch/backends/qualcomm/builders/op_cum_sum.py' 2025-06-05T23:55:38.3906421Z adding 'executorch/backends/qualcomm/builders/op_depth_to_space.py' 2025-06-05T23:55:38.3906689Z adding 'executorch/backends/qualcomm/builders/op_dequantize.py' 2025-06-05T23:55:38.3906934Z adding 'executorch/backends/qualcomm/builders/op_div.py' 2025-06-05T23:55:38.3907312Z adding 'executorch/backends/qualcomm/builders/op_elu.py' 2025-06-05T23:55:38.3907589Z adding 'executorch/backends/qualcomm/builders/op_embedding.py' 2025-06-05T23:55:38.3907894Z adding 'executorch/backends/qualcomm/builders/op_eq.py' 2025-06-05T23:55:38.3908137Z adding 'executorch/backends/qualcomm/builders/op_exp.py' 2025-06-05T23:55:38.3908395Z adding 'executorch/backends/qualcomm/builders/op_expand.py' 2025-06-05T23:55:38.3908649Z adding 'executorch/backends/qualcomm/builders/op_full.py' 2025-06-05T23:55:38.3908906Z adding 'executorch/backends/qualcomm/builders/op_full_like.py' 2025-06-05T23:55:38.3909160Z adding 'executorch/backends/qualcomm/builders/op_gather.py' 2025-06-05T23:55:38.3909403Z adding 'executorch/backends/qualcomm/builders/op_ge.py' 2025-06-05T23:55:38.3909649Z adding 'executorch/backends/qualcomm/builders/op_gelu.py' 2025-06-05T23:55:38.3909926Z adding 'executorch/backends/qualcomm/builders/op_group_norm.py' 2025-06-05T23:55:38.3910156Z adding 'executorch/backends/qualcomm/builders/op_gt.py' 2025-06-05T23:55:38.3910447Z adding 'executorch/backends/qualcomm/builders/op_hardsigmoid.py' 2025-06-05T23:55:38.3910724Z adding 'executorch/backends/qualcomm/builders/op_hardswish.py' 2025-06-05T23:55:38.3910992Z adding 'executorch/backends/qualcomm/builders/op_hardtanh.py' 2025-06-05T23:55:38.3911229Z adding 'executorch/backends/qualcomm/builders/op_index.py' 2025-06-05T23:55:38.3911500Z adding 'executorch/backends/qualcomm/builders/op_index_put.py' 2025-06-05T23:55:38.3911797Z adding 'executorch/backends/qualcomm/builders/op_instance_norm.py' 2025-06-05T23:55:38.3912069Z adding 'executorch/backends/qualcomm/builders/op_layer_norm.py' 2025-06-05T23:55:38.3912295Z adding 'executorch/backends/qualcomm/builders/op_le.py' 2025-06-05T23:55:38.3912548Z adding 'executorch/backends/qualcomm/builders/op_linear.py' 2025-06-05T23:55:38.3912786Z adding 'executorch/backends/qualcomm/builders/op_log.py' 2025-06-05T23:55:38.3913075Z adding 'executorch/backends/qualcomm/builders/op_log_softmax.py' 2025-06-05T23:55:38.3913345Z adding 'executorch/backends/qualcomm/builders/op_logical_not.py' 2025-06-05T23:55:38.3913587Z adding 'executorch/backends/qualcomm/builders/op_lt.py' 2025-06-05T23:55:38.3913841Z adding 'executorch/backends/qualcomm/builders/op_matmul.py' 2025-06-05T23:55:38.3914079Z adding 'executorch/backends/qualcomm/builders/op_max.py' 2025-06-05T23:55:38.3914344Z adding 'executorch/backends/qualcomm/builders/op_max_pool2d.py' 2025-06-05T23:55:38.3914605Z adding 'executorch/backends/qualcomm/builders/op_mean_dim.py' 2025-06-05T23:55:38.3914848Z adding 'executorch/backends/qualcomm/builders/op_min.py' 2025-06-05T23:55:38.3915090Z adding 'executorch/backends/qualcomm/builders/op_mul.py' 2025-06-05T23:55:38.3915325Z adding 'executorch/backends/qualcomm/builders/op_ne.py' 2025-06-05T23:55:38.3915553Z adding 'executorch/backends/qualcomm/builders/op_neg.py' 2025-06-05T23:55:38.3915793Z adding 'executorch/backends/qualcomm/builders/op_or.py' 2025-06-05T23:55:38.3916037Z adding 'executorch/backends/qualcomm/builders/op_pad.py' 2025-06-05T23:55:38.3916277Z adding 'executorch/backends/qualcomm/builders/op_pow.py' 2025-06-05T23:55:38.3916521Z adding 'executorch/backends/qualcomm/builders/op_prelu.py' 2025-06-05T23:55:38.3916790Z adding 'executorch/backends/qualcomm/builders/op_quantize.py' 2025-06-05T23:55:38.3917037Z adding 'executorch/backends/qualcomm/builders/op_relu.py' 2025-06-05T23:55:38.3917292Z adding 'executorch/backends/qualcomm/builders/op_repeat.py' 2025-06-05T23:55:38.3917541Z adding 'executorch/backends/qualcomm/builders/op_reshape.py' 2025-06-05T23:55:38.3917793Z adding 'executorch/backends/qualcomm/builders/op_resize.py' 2025-06-05T23:55:38.3918052Z adding 'executorch/backends/qualcomm/builders/op_rms_norm.py' 2025-06-05T23:55:38.3918304Z adding 'executorch/backends/qualcomm/builders/op_rsqrt.py' 2025-06-05T23:55:38.3918583Z adding 'executorch/backends/qualcomm/builders/op_scalar_tensor.py' 2025-06-05T23:55:38.3919000Z adding 'executorch/backends/qualcomm/builders/op_select_copy.py' 2025-06-05T23:55:38.3919267Z adding 'executorch/backends/qualcomm/builders/op_sigmoid.py' 2025-06-05T23:55:38.3919588Z adding 'executorch/backends/qualcomm/builders/op_sin.py' 2025-06-05T23:55:38.3919841Z adding 'executorch/backends/qualcomm/builders/op_skip_ops.py' 2025-06-05T23:55:38.3920120Z adding 'executorch/backends/qualcomm/builders/op_slice_copy.py' 2025-06-05T23:55:38.3920384Z adding 'executorch/backends/qualcomm/builders/op_softmax.py' 2025-06-05T23:55:38.3920689Z adding 'executorch/backends/qualcomm/builders/op_space_to_depth.py' 2025-06-05T23:55:38.3921003Z adding 'executorch/backends/qualcomm/builders/op_split_with_sizes.py' 2025-06-05T23:55:38.3921238Z adding 'executorch/backends/qualcomm/builders/op_sqrt.py' 2025-06-05T23:55:38.3921500Z adding 'executorch/backends/qualcomm/builders/op_squeeze.py' 2025-06-05T23:55:38.3921755Z adding 'executorch/backends/qualcomm/builders/op_stack.py' 2025-06-05T23:55:38.3922000Z adding 'executorch/backends/qualcomm/builders/op_sub.py' 2025-06-05T23:55:38.3922277Z adding 'executorch/backends/qualcomm/builders/op_sum_int_list.py' 2025-06-05T23:55:38.3922527Z adding 'executorch/backends/qualcomm/builders/op_tanh.py' 2025-06-05T23:55:38.3922764Z adding 'executorch/backends/qualcomm/builders/op_to.py' 2025-06-05T23:55:38.3923007Z adding 'executorch/backends/qualcomm/builders/op_topk.py' 2025-06-05T23:55:38.3923266Z adding 'executorch/backends/qualcomm/builders/op_transpose.py' 2025-06-05T23:55:38.3923520Z adding 'executorch/backends/qualcomm/builders/op_unbind.py' 2025-06-05T23:55:38.3923791Z adding 'executorch/backends/qualcomm/builders/op_unsqueeze.py' 2025-06-05T23:55:38.3924128Z adding 'executorch/backends/qualcomm/builders/op_upsample_bilinear2d.py' 2025-06-05T23:55:38.3924442Z adding 'executorch/backends/qualcomm/builders/op_upsample_nearest2d.py' 2025-06-05T23:55:38.3924695Z adding 'executorch/backends/qualcomm/builders/op_where.py' 2025-06-05T23:55:38.3924979Z adding 'executorch/backends/qualcomm/builders/qnn_constants.py' 2025-06-05T23:55:38.3925216Z adding 'executorch/backends/qualcomm/builders/utils.py' 2025-06-05T23:55:38.3925457Z adding 'executorch/backends/qualcomm/debugger/utils.py' 2025-06-05T23:55:38.3925719Z adding 'executorch/backends/qualcomm/partition/common_defs.py' 2025-06-05T23:55:38.3926021Z adding 'executorch/backends/qualcomm/partition/qnn_partitioner.py' 2025-06-05T23:55:38.3926266Z adding 'executorch/backends/qualcomm/partition/utils.py' 2025-06-05T23:55:38.3926535Z adding 'executorch/backends/qualcomm/quantizer/annotators.py' 2025-06-05T23:55:38.3926833Z adding 'executorch/backends/qualcomm/quantizer/custom_annotation.py' 2025-06-05T23:55:38.3927083Z adding 'executorch/backends/qualcomm/quantizer/qconfig.py' 2025-06-05T23:55:38.3927343Z adding 'executorch/backends/qualcomm/quantizer/quantizer.py' 2025-06-05T23:55:38.3927764Z adding 'executorch/backends/qualcomm/quantizer/observers/per_block_param_observer.py' 2025-06-05T23:55:38.3928176Z adding 'executorch/backends/qualcomm/quantizer/observers/per_channel_param_observer.py' 2025-06-05T23:55:38.3928513Z adding 'executorch/backends/qualcomm/serialization/qc_compiler_spec.fbs' 2025-06-05T23:55:38.3928807Z adding 'executorch/backends/qualcomm/serialization/qc_schema.py' 2025-06-05T23:55:38.4303575Z adding 'executorch/backends/qualcomm/serialization/qc_schema_serialize.py' 2025-06-05T23:55:38.4304051Z adding 'executorch/backends/qualcomm/tests/models.py' 2025-06-05T23:55:38.4304512Z adding 'executorch/backends/qualcomm/tests/test_qnn_delegate.py' 2025-06-05T23:55:38.4304738Z adding 'executorch/backends/qualcomm/tests/utils.py' 2025-06-05T23:55:38.4304983Z adding 'executorch/backends/qualcomm/utils/constants.py' 2025-06-05T23:55:38.4305208Z adding 'executorch/backends/qualcomm/utils/utils.py' 2025-06-05T23:55:38.4305414Z adding 'executorch/backends/transforms/__init__.py' 2025-06-05T23:55:38.4305971Z adding 'executorch/backends/transforms/addmm_mm_to_linear.py' 2025-06-05T23:55:38.4306250Z adding 'executorch/backends/transforms/convert_dtype_pass.py' 2025-06-05T23:55:38.4306507Z adding 'executorch/backends/transforms/decompose_sdpa.py' 2025-06-05T23:55:38.4306968Z adding 'executorch/backends/transforms/duplicate_dynamic_quant_chain.py' 2025-06-05T23:55:38.4307278Z adding 'executorch/backends/transforms/fuse_batch_norm_with_conv.py' 2025-06-05T23:55:38.4307559Z adding 'executorch/backends/transforms/fuse_conv_with_clamp.py' 2025-06-05T23:55:38.4307813Z adding 'executorch/backends/transforms/fuse_view_copy.py' 2025-06-05T23:55:38.4308105Z adding 'executorch/backends/transforms/mean_to_sum_div.py' 2025-06-05T23:55:38.4308363Z adding 'executorch/backends/transforms/rank_0_to_rank_1.py' 2025-06-05T23:55:38.4308602Z adding 'executorch/backends/transforms/remove_clone_ops.py' 2025-06-05T23:55:38.4308866Z adding 'executorch/backends/transforms/remove_getitem_op.py' 2025-06-05T23:55:38.4309191Z adding 'executorch/backends/transforms/replace_scalar_with_tensor.py' 2025-06-05T23:55:38.4309403Z adding 'executorch/backends/transforms/utils.py' 2025-06-05T23:55:38.4309728Z adding 'executorch/backends/transforms/view_copy_to_squeeze_unsqueeze.py' 2025-06-05T23:55:38.4310164Z adding 'executorch/backends/transforms/test/test_create_delete_constant_placeholder.py' 2025-06-05T23:55:38.4310553Z adding 'executorch/backends/transforms/test/test_duplicate_dynamic_quant_chain.py' 2025-06-05T23:55:38.4310869Z adding 'executorch/backends/transforms/test/test_rank_0_to_rank_1.py' 2025-06-05T23:55:38.4311061Z adding 'executorch/backends/vulkan/__init__.py' 2025-06-05T23:55:38.4311295Z adding 'executorch/backends/vulkan/custom_ops_lib.py' 2025-06-05T23:55:38.4311514Z adding 'executorch/backends/vulkan/op_registry.py' 2025-06-05T23:55:38.4311712Z adding 'executorch/backends/vulkan/utils.py' 2025-06-05T23:55:38.4311946Z adding 'executorch/backends/vulkan/vulkan_preprocess.py' 2025-06-05T23:55:38.4312189Z adding 'executorch/backends/vulkan/_passes/__init__.py' 2025-06-05T23:55:38.4312482Z adding 'executorch/backends/vulkan/_passes/fuse_quantized_ops.py' 2025-06-05T23:55:38.4312787Z adding 'executorch/backends/vulkan/_passes/insert_prepack_nodes.py' 2025-06-05T23:55:38.4313116Z adding 'executorch/backends/vulkan/_passes/int4_weight_only_quantizer.py' 2025-06-05T23:55:38.4313391Z adding 'executorch/backends/vulkan/_passes/remove_asserts.py' 2025-06-05T23:55:38.4313742Z adding 'executorch/backends/vulkan/_passes/remove_local_scalar_dense_ops.py' 2025-06-05T23:55:38.4314039Z adding 'executorch/backends/vulkan/_passes/remove_redundant_ops.py' 2025-06-05T23:55:38.4314371Z adding 'executorch/backends/vulkan/_passes/squeeze_unsqueeze_inputs.py' 2025-06-05T23:55:38.4314658Z adding 'executorch/backends/vulkan/_passes/tag_memory_meta_pass.py' 2025-06-05T23:55:38.4314982Z adding 'executorch/backends/vulkan/partitioner/vulkan_partitioner.py' 2025-06-05T23:55:38.4315284Z adding 'executorch/backends/vulkan/quantizer/vulkan_quantizer.py' 2025-06-05T23:55:38.4315635Z adding 'executorch/backends/vulkan/runtime/gen_vulkan_spv.py' 2025-06-05T23:55:38.4316072Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_buffer.yaml' 2025-06-05T23:55:38.4316508Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_texture3d.yaml' 2025-06-05T23:55:38.4316887Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_optimized.yaml' 2025-06-05T23:55:38.4317208Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/arange.yaml' 2025-06-05T23:55:38.4317543Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/avg_pool2d.yaml' 2025-06-05T23:55:38.4317894Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/batchnorm.yaml' 2025-06-05T23:55:38.4318234Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/binary_op.yaml' 2025-06-05T23:55:38.4318735Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/bitw8_image_to_nchw_nobitw8buffer.yaml' 2025-06-05T23:55:38.4319216Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_buffer.yaml' 2025-06-05T23:55:38.4319614Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_nchw.yaml' 2025-06-05T23:55:38.4320142Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/clone.yaml' 2025-06-05T23:55:38.4320463Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv1d.yaml' 2025-06-05T23:55:38.4320786Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d.yaml' 2025-06-05T23:55:38.4321111Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw.yaml' 2025-06-05T23:55:38.4321523Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_output_tile.yaml' 2025-06-05T23:55:38.4321968Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_prepack_weights.yaml' 2025-06-05T23:55:38.4322408Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_sned_output_tile.yaml' 2025-06-05T23:55:38.4322884Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_prepack_weights.yaml' 2025-06-05T23:55:38.4323272Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw.yaml' 2025-06-05T23:55:38.4323647Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw_s1p0.yaml' 2025-06-05T23:55:38.4324035Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d.yaml' 2025-06-05T23:55:38.4324526Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d_prepack_weights.yaml' 2025-06-05T23:55:38.4324915Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_channel_offset.yaml' 2025-06-05T23:55:38.4325272Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_offset.yaml' 2025-06-05T23:55:38.4325707Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_packed_dim_offset.yaml' 2025-06-05T23:55:38.4326230Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/embedding.yaml' 2025-06-05T23:55:38.4326535Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/flip.yaml' 2025-06-05T23:55:38.4326886Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/full.yaml' 2025-06-05T23:55:38.4327256Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/grid_priors.yaml' 2025-06-05T23:55:38.4327621Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/image_to_nchw.yaml' 2025-06-05T23:55:38.4328114Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/index_select.yaml' 2025-06-05T23:55:38.4328511Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/index_select_channel.yaml' 2025-06-05T23:55:38.4328964Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/kv_cache_update.yaml' 2025-06-05T23:55:38.4329317Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw.yaml' 2025-06-05T23:55:38.4329704Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_coop.yaml' 2025-06-05T23:55:38.4330266Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_tiled.yaml' 2025-06-05T23:55:38.4330676Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_coop.yaml' 2025-06-05T23:55:38.4331122Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_tiled.yaml' 2025-06-05T23:55:38.4331478Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/max_pool2d.yaml' 2025-06-05T23:55:38.4331850Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/native_layer_norm.yaml' 2025-06-05T23:55:38.4332337Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_bitw8_image_nobitw8buffer.yaml' 2025-06-05T23:55:38.4332703Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_buffer.yaml' 2025-06-05T23:55:38.4333062Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_image.yaml' 2025-06-05T23:55:38.4333374Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/no_op.yaml' 2025-06-05T23:55:38.4334192Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pack_int4_linear_weight_transposed_interleaved.yaml' 2025-06-05T23:55:38.4334555Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pad_channel.yaml' 2025-06-05T23:55:38.4334940Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pad_height_width.yaml' 2025-06-05T23:55:38.4335371Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/permute.yaml' 2025-06-05T23:55:38.4335677Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/reduce.yaml' 2025-06-05T23:55:38.4335996Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat.yaml' 2025-06-05T23:55:38.4336364Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_channel.yaml' 2025-06-05T23:55:38.4336757Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_interleave.yaml' 2025-06-05T23:55:38.4337141Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/rotary_embedding.yaml' 2025-06-05T23:55:38.4337599Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_attn_weight_scale_and_mask.yaml' 2025-06-05T23:55:38.4337939Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/softmax.yaml' 2025-06-05T23:55:38.4338240Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/tan.yaml' 2025-06-05T23:55:38.4338619Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_buffer.yaml' 2025-06-05T23:55:38.4338985Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_texture.yaml' 2025-06-05T23:55:38.4339320Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/unary_op.yaml' 2025-06-05T23:55:38.4339671Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/upsample_2d.yaml' 2025-06-05T23:55:38.4340014Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/var_buffer.yaml' 2025-06-05T23:55:38.4340359Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/var_texture3d.yaml' 2025-06-05T23:55:38.4340668Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/view.yaml' 2025-06-05T23:55:38.4340976Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/where.yaml' 2025-06-05T23:55:38.4341246Z adding 'executorch/backends/vulkan/serialization/schema.fbs' 2025-06-05T23:55:38.4341587Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_builder.py' 2025-06-05T23:55:38.4341913Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_schema.py' 2025-06-05T23:55:38.4342266Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_serialize.py' 2025-06-05T23:55:38.4813028Z adding 'executorch/backends/vulkan/test/test_serialization.py' 2025-06-05T23:55:38.4813519Z adding 'executorch/backends/vulkan/test/test_vulkan_delegate.py' 2025-06-05T23:55:38.4814153Z adding 'executorch/backends/vulkan/test/test_vulkan_delegate_header.py' 2025-06-05T23:55:38.4814863Z adding 'executorch/backends/vulkan/test/test_vulkan_passes.py' 2025-06-05T23:55:38.4815376Z adding 'executorch/backends/vulkan/test/glsl/all_shaders.yaml' 2025-06-05T23:55:38.4815976Z adding 'executorch/backends/vulkan/test/glsl/dynamic_dispatch_test.yaml' 2025-06-05T23:55:38.4816369Z adding 'executorch/backends/vulkan/test/glsl/reference_matmul_common.yaml' 2025-06-05T23:55:38.4816680Z adding 'executorch/backends/vulkan/test/op_tests/cases.py' 2025-06-05T23:55:38.4817058Z adding 'executorch/backends/vulkan/test/op_tests/generate_op_benchmarks.py' 2025-06-05T23:55:38.4817455Z adding 'executorch/backends/vulkan/test/op_tests/generate_op_correctness_tests.py' 2025-06-05T23:55:38.4817830Z adding 'executorch/backends/vulkan/test/op_tests/utils/aten_types.py' 2025-06-05T23:55:38.4818215Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_benchmark_vk.py' 2025-06-05T23:55:38.4818664Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_computegraph.py' 2025-06-05T23:55:38.4819037Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_correctness_base.py' 2025-06-05T23:55:38.4819392Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_correctness_vk.py' 2025-06-05T23:55:38.4819695Z adding 'executorch/backends/vulkan/test/op_tests/utils/test_suite.py' 2025-06-05T23:55:38.4820539Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/apiconventions.py' 2025-06-05T23:55:38.4820958Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/cgenerator.py' 2025-06-05T23:55:38.4821560Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/conventions.py' 2025-06-05T23:55:38.4821964Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/generator.py' 2025-06-05T23:55:38.4822351Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/genvk.py' 2025-06-05T23:55:38.4822703Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/reg.py' 2025-06-05T23:55:38.4823184Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/vkconventions.py' 2025-06-05T23:55:38.4823618Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools/util.py' 2025-06-05T23:55:38.4824254Z adding 'executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis/GpuMemDumpVis.py' 2025-06-05T23:55:38.4824535Z adding 'executorch/backends/vulkan/third-party/volk/generate.py' 2025-06-05T23:55:38.4824884Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/buf_bandwidth.yaml' 2025-06-05T23:55:38.4825247Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/buf_cacheline_size.yaml' 2025-06-05T23:55:38.4825558Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/reg_count.yaml' 2025-06-05T23:55:38.4825942Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/tex_bandwidth.yaml' 2025-06-05T23:55:38.4826317Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/tex_cacheline_concurr.yaml' 2025-06-05T23:55:38.4826664Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/warp_size.yaml' 2025-06-05T23:55:38.4826883Z adding 'executorch/backends/xnnpack/__init__.py' 2025-06-05T23:55:38.4827144Z adding 'executorch/backends/xnnpack/xnnpack_preprocess.py' 2025-06-05T23:55:38.4827382Z adding 'executorch/backends/xnnpack/_passes/__init__.py' 2025-06-05T23:55:38.4827759Z adding 'executorch/backends/xnnpack/_passes/channels_last_tagged_reshape_pass.py' 2025-06-05T23:55:38.4828075Z adding 'executorch/backends/xnnpack/_passes/conv1d_unsqueeze_pass.py' 2025-06-05T23:55:38.4828370Z adding 'executorch/backends/xnnpack/_passes/convert_to_linear.py' 2025-06-05T23:55:38.4828636Z adding 'executorch/backends/xnnpack/_passes/convert_to_sdpa.py' 2025-06-05T23:55:38.4829040Z adding 'executorch/backends/xnnpack/_passes/convert_to_upsample_bilinear2d.py' 2025-06-05T23:55:38.4829446Z adding 'executorch/backends/xnnpack/_passes/decompose_cat.py' 2025-06-05T23:55:38.4829826Z adding 'executorch/backends/xnnpack/_passes/fuse_activation_pass.py' 2025-06-05T23:55:38.4830159Z adding 'executorch/backends/xnnpack/_passes/fuse_batch_norm_with_conv.py' 2025-06-05T23:55:38.4830439Z adding 'executorch/backends/xnnpack/_passes/prelu_reshape_pass.py' 2025-06-05T23:55:38.4830749Z adding 'executorch/backends/xnnpack/_passes/tag_implicit_q_dq_pass.py' 2025-06-05T23:55:38.4831013Z adding 'executorch/backends/xnnpack/_passes/xnnpack_pass.py' 2025-06-05T23:55:38.4831265Z adding 'executorch/backends/xnnpack/operators/__init__.py' 2025-06-05T23:55:38.4831691Z adding 'executorch/backends/xnnpack/operators/node_visitor.py' 2025-06-05T23:55:38.4831946Z adding 'executorch/backends/xnnpack/operators/op_abs.py' 2025-06-05T23:55:38.4832253Z adding 'executorch/backends/xnnpack/operators/op_add.py' 2025-06-05T23:55:38.4832503Z adding 'executorch/backends/xnnpack/operators/op_addmm.py' 2025-06-05T23:55:38.4832787Z adding 'executorch/backends/xnnpack/operators/op_avg_pooling2d.py' 2025-06-05T23:55:38.4833031Z adding 'executorch/backends/xnnpack/operators/op_bmm.py' 2025-06-05T23:55:38.4833274Z adding 'executorch/backends/xnnpack/operators/op_cat.py' 2025-06-05T23:55:38.4833537Z adding 'executorch/backends/xnnpack/operators/op_ceiling.py' 2025-06-05T23:55:38.4833773Z adding 'executorch/backends/xnnpack/operators/op_clamp.py' 2025-06-05T23:55:38.4834330Z adding 'executorch/backends/xnnpack/operators/op_conv2d.py' 2025-06-05T23:55:38.4834613Z adding 'executorch/backends/xnnpack/operators/op_div.py' 2025-06-05T23:55:38.4835079Z adding 'executorch/backends/xnnpack/operators/op_dynamic_dequantize_ops.py' 2025-06-05T23:55:38.4835406Z adding 'executorch/backends/xnnpack/operators/op_dynamic_quantize_ops.py' 2025-06-05T23:55:38.4835647Z adding 'executorch/backends/xnnpack/operators/op_elu.py' 2025-06-05T23:55:38.4835892Z adding 'executorch/backends/xnnpack/operators/op_exp.py' 2025-06-05T23:55:38.4836142Z adding 'executorch/backends/xnnpack/operators/op_floor.py' 2025-06-05T23:55:38.4836392Z adding 'executorch/backends/xnnpack/operators/op_gelu.py' 2025-06-05T23:55:38.4836660Z adding 'executorch/backends/xnnpack/operators/op_hardswish.py' 2025-06-05T23:55:38.4836931Z adding 'executorch/backends/xnnpack/operators/op_hardtanh.py' 2025-06-05T23:55:38.4837209Z adding 'executorch/backends/xnnpack/operators/op_leaky_relu.py' 2025-06-05T23:55:38.4837573Z adding 'executorch/backends/xnnpack/operators/op_linear.py' 2025-06-05T23:55:38.4837869Z adding 'executorch/backends/xnnpack/operators/op_log.py' 2025-06-05T23:55:38.4838296Z adding 'executorch/backends/xnnpack/operators/op_matrix_multiplication.py' 2025-06-05T23:55:38.4838559Z adding 'executorch/backends/xnnpack/operators/op_max_dim.py' 2025-06-05T23:55:38.4838840Z adding 'executorch/backends/xnnpack/operators/op_max_pool2d.py' 2025-06-05T23:55:38.4839091Z adding 'executorch/backends/xnnpack/operators/op_maximum.py' 2025-06-05T23:55:38.4839356Z adding 'executorch/backends/xnnpack/operators/op_mean_dim.py' 2025-06-05T23:55:38.4839620Z adding 'executorch/backends/xnnpack/operators/op_minimum.py' 2025-06-05T23:55:38.4839893Z adding 'executorch/backends/xnnpack/operators/op_multiply.py' 2025-06-05T23:55:38.4840133Z adding 'executorch/backends/xnnpack/operators/op_negate.py' 2025-06-05T23:55:38.4840474Z adding 'executorch/backends/xnnpack/operators/op_permute.py' 2025-06-05T23:55:38.4840825Z adding 'executorch/backends/xnnpack/operators/op_prelu.py' 2025-06-05T23:55:38.4841188Z adding 'executorch/backends/xnnpack/operators/op_quant_dequant.py' 2025-06-05T23:55:38.4841446Z adding 'executorch/backends/xnnpack/operators/op_relu.py' 2025-06-05T23:55:38.4841682Z adding 'executorch/backends/xnnpack/operators/op_rsqrt.py' 2025-06-05T23:55:38.4841933Z adding 'executorch/backends/xnnpack/operators/op_sdpa.py' 2025-06-05T23:55:38.4842196Z adding 'executorch/backends/xnnpack/operators/op_sigmoid.py' 2025-06-05T23:55:38.4842465Z adding 'executorch/backends/xnnpack/operators/op_skip_ops.py' 2025-06-05T23:55:38.4842733Z adding 'executorch/backends/xnnpack/operators/op_slice_copy.py' 2025-06-05T23:55:38.4843029Z adding 'executorch/backends/xnnpack/operators/op_softmax.py' 2025-06-05T23:55:38.4843412Z adding 'executorch/backends/xnnpack/operators/op_square.py' 2025-06-05T23:55:38.4843716Z adding 'executorch/backends/xnnpack/operators/op_square_root.py' 2025-06-05T23:55:38.4844023Z adding 'executorch/backends/xnnpack/operators/op_squeeze.py' 2025-06-05T23:55:38.4844362Z adding 'executorch/backends/xnnpack/operators/op_static_constant_pad.py' 2025-06-05T23:55:38.4844734Z adding 'executorch/backends/xnnpack/operators/op_static_resize_bilinear_2d.py' 2025-06-05T23:55:38.4844983Z adding 'executorch/backends/xnnpack/operators/op_sub.py' 2025-06-05T23:55:38.4845231Z adding 'executorch/backends/xnnpack/operators/op_to_copy.py' 2025-06-05T23:55:38.4845510Z adding 'executorch/backends/xnnpack/operators/quant_params.py' 2025-06-05T23:55:38.4845766Z adding 'executorch/backends/xnnpack/partition/configs.py' 2025-06-05T23:55:38.4846208Z adding 'executorch/backends/xnnpack/partition/xnnpack_partitioner.py' 2025-06-05T23:55:38.4846538Z adding 'executorch/backends/xnnpack/partition/config/__init__.py' 2025-06-05T23:55:38.4846920Z adding 'executorch/backends/xnnpack/partition/config/gemm_configs.py' 2025-06-05T23:55:38.4847395Z adding 'executorch/backends/xnnpack/partition/config/generic_node_configs.py' 2025-06-05T23:55:38.4847713Z adding 'executorch/backends/xnnpack/partition/config/node_configs.py' 2025-06-05T23:55:38.4848076Z adding 'executorch/backends/xnnpack/partition/config/quant_affine_configs.py' 2025-06-05T23:55:38.4848500Z adding 'executorch/backends/xnnpack/partition/config/xnnpack_config.py' 2025-06-05T23:55:38.4848961Z adding 'executorch/backends/xnnpack/partition/graphs/bilinear_2d.py' 2025-06-05T23:55:38.4849275Z adding 'executorch/backends/xnnpack/partition/graphs/sdpa.py' 2025-06-05T23:55:38.4849602Z adding 'executorch/backends/xnnpack/quantizer/xnnpack_quantizer.py' 2025-06-05T23:55:38.4849930Z adding 'executorch/backends/xnnpack/quantizer/xnnpack_quantizer_utils.py' 2025-06-05T23:55:38.4850248Z adding 'executorch/backends/xnnpack/serialization/runtime_schema.fbs' 2025-06-05T23:55:38.4850519Z adding 'executorch/backends/xnnpack/serialization/schema.fbs' 2025-06-05T23:55:38.4850872Z adding 'executorch/backends/xnnpack/serialization/xnnpack_graph_schema.py' 2025-06-05T23:55:38.4851225Z adding 'executorch/backends/xnnpack/serialization/xnnpack_graph_serialize.py' 2025-06-05T23:55:38.4851504Z adding 'executorch/backends/xnnpack/test/test_xnnpack_utils.py' 2025-06-05T23:55:38.4851917Z adding 'executorch/backends/xnnpack/test/test_xnnpack_utils_classes.py' 2025-06-05T23:55:38.4852274Z adding 'executorch/backends/xnnpack/test/models/deeplab_v3.py' 2025-06-05T23:55:38.4852569Z adding 'executorch/backends/xnnpack/test/models/edsr.py' 2025-06-05T23:55:38.4852850Z adding 'executorch/backends/xnnpack/test/models/emformer_rnnt.py' 2025-06-05T23:55:38.4853137Z adding 'executorch/backends/xnnpack/test/models/inception_v3.py' 2025-06-05T23:55:38.5162247Z adding 'executorch/backends/xnnpack/test/models/inception_v4.py' 2025-06-05T23:55:38.5162911Z adding 'executorch/backends/xnnpack/test/models/llama2_et_example.py' 2025-06-05T23:55:38.5163286Z adding 'executorch/backends/xnnpack/test/models/mobilebert.py' 2025-06-05T23:55:38.5163608Z adding 'executorch/backends/xnnpack/test/models/mobilenet_v2.py' 2025-06-05T23:55:38.5164053Z adding 'executorch/backends/xnnpack/test/models/mobilenet_v3.py' 2025-06-05T23:55:38.5164392Z adding 'executorch/backends/xnnpack/test/models/resnet.py' 2025-06-05T23:55:38.5164770Z adding 'executorch/backends/xnnpack/test/models/torchvision_vit.py' 2025-06-05T23:55:38.5165069Z adding 'executorch/backends/xnnpack/test/models/very_big_model.py' 2025-06-05T23:55:38.5165297Z adding 'executorch/backends/xnnpack/test/models/w2l.py' 2025-06-05T23:55:38.5165549Z adding 'executorch/backends/xnnpack/test/ops/test_abs.py' 2025-06-05T23:55:38.5165802Z adding 'executorch/backends/xnnpack/test/ops/test_add.py' 2025-06-05T23:55:38.5166087Z adding 'executorch/backends/xnnpack/test/ops/test_avgpool2d.py' 2025-06-05T23:55:38.5166360Z adding 'executorch/backends/xnnpack/test/ops/test_bilinear2d.py' 2025-06-05T23:55:38.5166608Z adding 'executorch/backends/xnnpack/test/ops/test_bmm.py' 2025-06-05T23:55:38.5166862Z adding 'executorch/backends/xnnpack/test/ops/test_cat.py' 2025-06-05T23:55:38.5167115Z adding 'executorch/backends/xnnpack/test/ops/test_ceil.py' 2025-06-05T23:55:38.5167439Z adding 'executorch/backends/xnnpack/test/ops/test_check_quant_params.py' 2025-06-05T23:55:38.5167698Z adding 'executorch/backends/xnnpack/test/ops/test_clamp.py' 2025-06-05T23:55:38.5167960Z adding 'executorch/backends/xnnpack/test/ops/test_conv1d.py' 2025-06-05T23:55:38.5168270Z adding 'executorch/backends/xnnpack/test/ops/test_conv2d.py' 2025-06-05T23:55:38.5168628Z adding 'executorch/backends/xnnpack/test/ops/test_div.py' 2025-06-05T23:55:38.5168887Z adding 'executorch/backends/xnnpack/test/ops/test_elu.py' 2025-06-05T23:55:38.5169180Z adding 'executorch/backends/xnnpack/test/ops/test_exp.py' 2025-06-05T23:55:38.5169435Z adding 'executorch/backends/xnnpack/test/ops/test_floor.py' 2025-06-05T23:55:38.5169670Z adding 'executorch/backends/xnnpack/test/ops/test_gelu.py' 2025-06-05T23:55:38.5170218Z adding 'executorch/backends/xnnpack/test/ops/test_hardswish.py' 2025-06-05T23:55:38.5170496Z adding 'executorch/backends/xnnpack/test/ops/test_hardtanh.py' 2025-06-05T23:55:38.5170786Z adding 'executorch/backends/xnnpack/test/ops/test_leaky_relu.py' 2025-06-05T23:55:38.5171199Z adding 'executorch/backends/xnnpack/test/ops/test_linear.py' 2025-06-05T23:55:38.5171533Z adding 'executorch/backends/xnnpack/test/ops/test_log.py' 2025-06-05T23:55:38.5171866Z adding 'executorch/backends/xnnpack/test/ops/test_lstm.py' 2025-06-05T23:55:38.5172195Z adding 'executorch/backends/xnnpack/test/ops/test_max_dim.py' 2025-06-05T23:55:38.5172470Z adding 'executorch/backends/xnnpack/test/ops/test_maximum.py' 2025-06-05T23:55:38.5172739Z adding 'executorch/backends/xnnpack/test/ops/test_maxpool2d.py' 2025-06-05T23:55:38.5173010Z adding 'executorch/backends/xnnpack/test/ops/test_mean_dim.py' 2025-06-05T23:55:38.5173278Z adding 'executorch/backends/xnnpack/test/ops/test_minimum.py' 2025-06-05T23:55:38.5173556Z adding 'executorch/backends/xnnpack/test/ops/test_multiply.py' 2025-06-05T23:55:38.5173910Z adding 'executorch/backends/xnnpack/test/ops/test_negate.py' 2025-06-05T23:55:38.5174261Z adding 'executorch/backends/xnnpack/test/ops/test_permute.py' 2025-06-05T23:55:38.5174612Z adding 'executorch/backends/xnnpack/test/ops/test_pow.py' 2025-06-05T23:55:38.5174930Z adding 'executorch/backends/xnnpack/test/ops/test_prelu.py' 2025-06-05T23:55:38.5175260Z adding 'executorch/backends/xnnpack/test/ops/test_quantize_per_tensor.py' 2025-06-05T23:55:38.5175512Z adding 'executorch/backends/xnnpack/test/ops/test_relu.py' 2025-06-05T23:55:38.5175763Z adding 'executorch/backends/xnnpack/test/ops/test_rsqrt.py' 2025-06-05T23:55:38.5176009Z adding 'executorch/backends/xnnpack/test/ops/test_sdpa.py' 2025-06-05T23:55:38.5176261Z adding 'executorch/backends/xnnpack/test/ops/test_sigmoid.py' 2025-06-05T23:55:38.5176547Z adding 'executorch/backends/xnnpack/test/ops/test_slice_copy.py' 2025-06-05T23:55:38.5176925Z adding 'executorch/backends/xnnpack/test/ops/test_softmax.py' 2025-06-05T23:55:38.5177239Z adding 'executorch/backends/xnnpack/test/ops/test_sqrt.py' 2025-06-05T23:55:38.5177572Z adding 'executorch/backends/xnnpack/test/ops/test_square.py' 2025-06-05T23:55:38.5177904Z adding 'executorch/backends/xnnpack/test/ops/test_static_constant_pad.py' 2025-06-05T23:55:38.5178150Z adding 'executorch/backends/xnnpack/test/ops/test_sub.py' 2025-06-05T23:55:38.5178723Z adding 'executorch/backends/xnnpack/test/passes/test_activation_fusion.py' 2025-06-05T23:55:38.5179076Z adding 'executorch/backends/xnnpack/test/passes/test_batch_norm_fusion.py' 2025-06-05T23:55:38.5179616Z adding 'executorch/backends/xnnpack/test/passes/test_channels_last_tagged_reshape.py' 2025-06-05T23:55:38.5180025Z adding 'executorch/backends/xnnpack/test/passes/test_convert_to_linear.py' 2025-06-05T23:55:38.5180412Z adding 'executorch/backends/xnnpack/test/passes/test_decompose_cat_pass.py' 2025-06-05T23:55:38.5180777Z adding 'executorch/backends/xnnpack/test/passes/test_remove_get_item_pass.py' 2025-06-05T23:55:38.5181134Z adding 'executorch/backends/xnnpack/test/passes/test_tag_implicit_q_dq_pass.py' 2025-06-05T23:55:38.5181506Z adding 'executorch/backends/xnnpack/test/quantizer/test_pt2e_quantization.py' 2025-06-05T23:55:38.5181853Z adding 'executorch/backends/xnnpack/test/quantizer/test_representation.py' 2025-06-05T23:55:38.5182214Z adding 'executorch/backends/xnnpack/test/quantizer/test_xnnpack_quantizer.py' 2025-06-05T23:55:38.5182637Z adding 'executorch/backends/xnnpack/test/serialization/test_serialization.py' 2025-06-05T23:55:38.5183085Z adding 'executorch/backends/xnnpack/test/serialization/test_xnnheader.py' 2025-06-05T23:55:38.5183416Z adding 'executorch/backends/xnnpack/test/tester/__init__.py' 2025-06-05T23:55:38.5183668Z adding 'executorch/backends/xnnpack/test/tester/tester.py' 2025-06-05T23:55:38.5184048Z adding 'executorch/backends/xnnpack/third-party/generate-cpuinfo-wrappers.py' 2025-06-05T23:55:38.5184578Z adding 'executorch/backends/xnnpack/third-party/FP16/configure.py' 2025-06-05T23:55:38.5184894Z adding 'executorch/backends/xnnpack/third-party/FP16/confu.yaml' 2025-06-05T23:55:38.5185503Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/__init__.py' 2025-06-05T23:55:38.5185913Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/avx.py' 2025-06-05T23:55:38.5186239Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/avx2.py' 2025-06-05T23:55:38.5186586Z adding 'executorch/backends/xnnpack/third-party/FP16/test/peachpy/stubs.py' 2025-06-05T23:55:38.5186893Z adding 'executorch/backends/xnnpack/third-party/FXdiv/configure.py' 2025-06-05T23:55:38.5187185Z adding 'executorch/backends/xnnpack/third-party/FXdiv/confu.yaml' 2025-06-05T23:55:38.5187742Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_config.py' 2025-06-05T23:55:38.5188216Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_files_changed.py' 2025-06-05T23:55:38.5188693Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/generate-build-identifier.py' 2025-06-05T23:55:38.5189088Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/sort-filenames.py' 2025-06-05T23:55:38.5189485Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/bf16-gemm-minmax.yaml' 2025-06-05T23:55:38.5189858Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-conv-hwc2chw.yaml' 2025-06-05T23:55:38.5190350Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-dwconv2d-chw.yaml' 2025-06-05T23:55:38.5190884Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-gemm-minmax.yaml' 2025-06-05T23:55:38.5191364Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-igemm-minmax.yaml' 2025-06-05T23:55:38.5191746Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rdsum.yaml' 2025-06-05T23:55:38.5192142Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rsum.yaml' 2025-06-05T23:55:38.5192557Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-gemm-minmax.yaml' 2025-06-05T23:55:38.5193105Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear-chw.yaml' 2025-06-05T23:55:38.5193566Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear.yaml' 2025-06-05T23:55:38.5193946Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-igemm-minmax.yaml' 2025-06-05T23:55:38.5194397Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-raddstoreexpminusmax.yaml' 2025-06-05T23:55:38.5194745Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmax.yaml' 2025-06-05T23:55:38.5195088Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmin.yaml' 2025-06-05T23:55:38.5195531Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rminmax.yaml' 2025-06-05T23:55:38.5195955Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rsum.yaml' 2025-06-05T23:55:38.5196420Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-spmm-minmax.yaml' 2025-06-05T23:55:38.5196844Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-vmulcaddc-minmax.yaml' 2025-06-05T23:55:38.5197234Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-argmaxpool.yaml' 2025-06-05T23:55:38.5197588Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc.yaml' 2025-06-05T23:55:38.5197978Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc2chw.yaml' 2025-06-05T23:55:38.5198389Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-dwconv2d-chw.yaml' 2025-06-05T23:55:38.5198803Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-goi-minmax.yaml' 2025-06-05T23:55:38.5199176Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-minmax.yaml' 2025-06-05T23:55:38.5199850Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-relu.yaml' 2025-06-05T23:55:38.5200287Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm.yaml' 2025-06-05T23:55:38.5200697Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemminc-minmax.yaml' 2025-06-05T23:55:38.5201169Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear-chw.yaml' 2025-06-05T23:55:38.5201535Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear.yaml' 2025-06-05T23:55:38.5201994Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-minmax.yaml' 2025-06-05T23:55:38.5202483Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-relu.yaml' 2025-06-05T23:55:38.5202909Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm.yaml' 2025-06-05T23:55:38.5568475Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ppmm-minmax.yaml' 2025-06-05T23:55:38.5568927Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:55:38.5569431Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-minmax.yaml' 2025-06-05T23:55:38.5569847Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-relu.yaml' 2025-06-05T23:55:38.5570364Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm.yaml' 2025-06-05T23:55:38.5570840Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddexpminusmax.yaml' 2025-06-05T23:55:38.5571217Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddextexp.yaml' 2025-06-05T23:55:38.5571744Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddstoreexpminusmax.yaml' 2025-06-05T23:55:38.5572105Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rdsum.yaml' 2025-06-05T23:55:38.5572573Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmax.yaml' 2025-06-05T23:55:38.5572905Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmin.yaml' 2025-06-05T23:55:38.5573272Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rminmax.yaml' 2025-06-05T23:55:38.5573713Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rsum.yaml' 2025-06-05T23:55:38.5574115Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-spmm-minmax.yaml' 2025-06-05T23:55:38.5574536Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vmulcaddc-minmax.yaml' 2025-06-05T23:55:38.5574995Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleexpminusmax.yaml' 2025-06-05T23:55:38.5575398Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleextexp.yaml' 2025-06-05T23:55:38.5575975Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qb4w-gemm-minmax.yaml' 2025-06-05T23:55:38.5576415Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc4w-gemm-minmax.yaml' 2025-06-05T23:55:38.5576844Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-gemm-minmax.yaml' 2025-06-05T23:55:38.5577297Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-igemm-minmax.yaml' 2025-06-05T23:55:38.5577739Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qb4w-gemm-minmax.yaml' 2025-06-05T23:55:38.5578174Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:55:38.5578817Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-gemm-minmax.yaml' 2025-06-05T23:55:38.5579294Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-igemm-minmax.yaml' 2025-06-05T23:55:38.5579753Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qb4w-gemm-minmax.yaml' 2025-06-05T23:55:38.5580394Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:55:38.5580849Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-gemm-minmax-fp32.yaml' 2025-06-05T23:55:38.5581543Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-igemm-minmax-fp32.yaml' 2025-06-05T23:55:38.5581995Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rdsum-minmax-fp32.yaml' 2025-06-05T23:55:38.5582606Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rsum.yaml' 2025-06-05T23:55:38.5583096Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-fp32.yaml' 2025-06-05T23:55:38.5583523Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-rndnu.yaml' 2025-06-05T23:55:38.5583934Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-fp32.yaml' 2025-06-05T23:55:38.5584368Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-rndnu.yaml' 2025-06-05T23:55:38.5584724Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rdsum.yaml' 2025-06-05T23:55:38.5585077Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rsum.yaml' 2025-06-05T23:55:38.5585433Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/s8-ibilinear.yaml' 2025-06-05T23:55:38.5585803Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-ibilinear.yaml' 2025-06-05T23:55:38.5586223Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-lut32norm.yaml' 2025-06-05T23:55:38.5586579Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-rmax.yaml' 2025-06-05T23:55:38.5586965Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/x8-lut.yaml' 2025-06-05T23:55:38.5587466Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-argmaxpool-test.py' 2025-06-05T23:55:38.5587897Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc-test.py' 2025-06-05T23:55:38.5588423Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc2chw-test.py' 2025-06-05T23:55:38.5589064Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-multipass-test.py' 2025-06-05T23:55:38.5589524Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-unipass-test.py' 2025-06-05T23:55:38.5589984Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv2d-chw-test.py' 2025-06-05T23:55:38.5590387Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-gemm-test.py' 2025-06-05T23:55:38.5590849Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-chw-test.py' 2025-06-05T23:55:38.5591272Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-test.py' 2025-06-05T23:55:38.5591697Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-norm-test.py' 2025-06-05T23:55:38.5592095Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-test.py' 2025-06-05T23:55:38.5592572Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddexpminusmax-test.py' 2025-06-05T23:55:38.5593018Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddextexp-test.py' 2025-06-05T23:55:38.5593535Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddstoreexpminusmax-test.py' 2025-06-05T23:55:38.5593980Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-benchmark.py' 2025-06-05T23:55:38.5594387Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-test.py' 2025-06-05T23:55:38.5594799Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-test.py' 2025-06-05T23:55:38.5595188Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-spmm-test.py' 2025-06-05T23:55:38.5595608Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vbinary-test.py' 2025-06-05T23:55:38.5596045Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vmulcaddc-test.py' 2025-06-05T23:55:38.5596713Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleexpminusmax-test.py' 2025-06-05T23:55:38.5597179Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleextexp-test.py' 2025-06-05T23:55:38.5597687Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vunary-test.py' 2025-06-05T23:55:38.5598032Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/primes.py' 2025-06-05T23:55:38.5598445Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/update-microkernels.py' 2025-06-05T23:55:38.5598776Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/xngen.py' 2025-06-05T23:55:38.5599118Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/xnncommon.py' 2025-06-05T23:55:38.5599437Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/configure.py' 2025-06-05T23:55:38.5599743Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/confu.yaml' 2025-06-05T23:55:38.5600124Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/configure.py' 2025-06-05T23:55:38.5600484Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/confu.yaml' 2025-06-05T23:55:38.5600892Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/android-device-dump.py' 2025-06-05T23:55:38.5601361Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/arm-linux-filesystem-dump.py' 2025-06-05T23:55:38.5601788Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/parse-x86-cpuid-dump.py' 2025-06-05T23:55:38.5602131Z adding 'executorch/backends/xnnpack/third-party/pthreadpool/configure.py' 2025-06-05T23:55:38.5602449Z adding 'executorch/backends/xnnpack/third-party/pthreadpool/confu.yaml' 2025-06-05T23:55:38.5602680Z adding 'executorch/backends/xnnpack/utils/configs.py' 2025-06-05T23:55:38.5602927Z adding 'executorch/backends/xnnpack/utils/quant_utils.py' 2025-06-05T23:55:38.5603142Z adding 'executorch/backends/xnnpack/utils/utils.py' 2025-06-05T23:55:38.5603414Z adding 'executorch/backends/xnnpack/utils/xnnpack_constants.py' 2025-06-05T23:55:38.5603588Z adding 'executorch/codegen/__init__.py' 2025-06-05T23:55:38.5603750Z adding 'executorch/codegen/gen.py' 2025-06-05T23:55:38.5603922Z adding 'executorch/codegen/model.py' 2025-06-05T23:55:38.5604076Z adding 'executorch/codegen/parse.py' 2025-06-05T23:55:38.5604262Z adding 'executorch/codegen/api/__init__.py' 2025-06-05T23:55:38.5604457Z adding 'executorch/codegen/api/custom_ops.py' 2025-06-05T23:55:38.5604636Z adding 'executorch/codegen/api/et_cpp.py' 2025-06-05T23:55:38.5604811Z adding 'executorch/codegen/api/unboxing.py' 2025-06-05T23:55:38.5605018Z adding 'executorch/codegen/api/types/__init__.py' 2025-06-05T23:55:38.5605234Z adding 'executorch/codegen/api/types/signatures.py' 2025-06-05T23:55:38.5605432Z adding 'executorch/codegen/api/types/types.py' 2025-06-05T23:55:38.5605689Z adding 'executorch/codegen/test/test_executorch_custom_ops.py' 2025-06-05T23:55:38.5605927Z adding 'executorch/codegen/test/test_executorch_gen.py' 2025-06-05T23:55:38.5606202Z adding 'executorch/codegen/test/test_executorch_signatures.py' 2025-06-05T23:55:38.5606447Z adding 'executorch/codegen/test/test_executorch_types.py' 2025-06-05T23:55:38.5606710Z adding 'executorch/codegen/test/test_executorch_unboxing.py' 2025-06-05T23:55:38.5606937Z adding 'executorch/codegen/test/test_selective_build.py' 2025-06-05T23:55:38.5607128Z adding 'executorch/codegen/tools/__init__.py' 2025-06-05T23:55:38.5607340Z adding 'executorch/codegen/tools/gen_all_oplist.py' 2025-06-05T23:55:38.5607537Z adding 'executorch/codegen/tools/gen_oplist.py' 2025-06-05T23:55:38.5607725Z adding 'executorch/codegen/tools/gen_ops_def.py' 2025-06-05T23:55:38.9435002Z adding 'executorch/codegen/tools/gen_selected_op_variants.py' 2025-06-05T23:55:38.9436102Z adding 'executorch/codegen/tools/merge_yaml.py' 2025-06-05T23:55:38.9437018Z adding 'executorch/codegen/tools/yaml_util.py' 2025-06-05T23:55:38.9438011Z adding 'executorch/codegen/tools/test/test_gen_all_oplist.py' 2025-06-05T23:55:38.9439579Z adding 'executorch/codegen/tools/test/test_gen_oplist.py' 2025-06-05T23:55:38.9440708Z adding 'executorch/codegen/tools/test/test_gen_oplist_real_model.py' 2025-06-05T23:55:38.9442258Z adding 'executorch/codegen/tools/test/test_gen_selected_op_variants.py' 2025-06-05T23:55:38.9443393Z adding 'executorch/data/bin/__init__.py' 2025-06-05T23:55:38.9443990Z adding 'executorch/data/bin/flatc' 2025-06-05T23:55:38.9444455Z adding 'executorch/devtools/__init__.py' 2025-06-05T23:55:38.9444990Z adding 'executorch/devtools/backend_debug/__init__.py' 2025-06-05T23:55:38.9445628Z adding 'executorch/devtools/backend_debug/delegation_info.py' 2025-06-05T23:55:38.9446359Z adding 'executorch/devtools/backend_debug/tests/test_delegation_info.py' 2025-06-05T23:55:38.9447075Z adding 'executorch/devtools/bundled_program/config.py' 2025-06-05T23:55:38.9447663Z adding 'executorch/devtools/bundled_program/core.py' 2025-06-05T23:55:38.9448283Z adding 'executorch/devtools/bundled_program/version.py' 2025-06-05T23:55:38.9448928Z adding 'executorch/devtools/bundled_program/schema/__init__.py' 2025-06-05T23:55:38.9449695Z adding 'executorch/devtools/bundled_program/schema/bundled_program_schema.fbs' 2025-06-05T23:55:38.9450559Z adding 'executorch/devtools/bundled_program/schema/bundled_program_schema.py' 2025-06-05T23:55:38.9451572Z adding 'executorch/devtools/bundled_program/schema/scalar_type.fbs' 2025-06-05T23:55:38.9452859Z adding 'executorch/devtools/bundled_program/schema/test/test_schema.py' 2025-06-05T23:55:38.9454333Z adding 'executorch/devtools/bundled_program/serialize/__init__.py' 2025-06-05T23:55:38.9455812Z adding 'executorch/devtools/bundled_program/serialize/bundled_program_schema.fbs' 2025-06-05T23:55:38.9457373Z adding 'executorch/devtools/bundled_program/serialize/scalar_type.fbs' 2025-06-05T23:55:38.9458894Z adding 'executorch/devtools/bundled_program/serialize/test/test_serialize.py' 2025-06-05T23:55:38.9460017Z adding 'executorch/devtools/bundled_program/test/test_bundle_data.py' 2025-06-05T23:55:38.9460757Z adding 'executorch/devtools/bundled_program/test/test_config.py' 2025-06-05T23:55:38.9461482Z adding 'executorch/devtools/bundled_program/test/test_end2end.py' 2025-06-05T23:55:38.9462498Z adding 'executorch/devtools/bundled_program/util/test_util.py' 2025-06-05T23:55:38.9463671Z adding 'executorch/devtools/debug_format/base_schema.py' 2025-06-05T23:55:38.9464619Z adding 'executorch/devtools/debug_format/et_schema.py' 2025-06-05T23:55:38.9465604Z adding 'executorch/devtools/etdump/etdump_schema_flatcc.fbs' 2025-06-05T23:55:38.9466712Z adding 'executorch/devtools/etdump/scalar_type.fbs' 2025-06-05T23:55:38.9467604Z adding 'executorch/devtools/etdump/schema_flatcc.py' 2025-06-05T23:55:38.9468167Z adding 'executorch/devtools/etdump/serialize.py' 2025-06-05T23:55:38.9468782Z adding 'executorch/devtools/etdump/tests/serialize_test.py' 2025-06-05T23:55:38.9469506Z adding 'executorch/devtools/etrecord/__init__.py' 2025-06-05T23:55:38.9470474Z adding 'executorch/devtools/etrecord/_etrecord.py' 2025-06-05T23:55:38.9471559Z adding 'executorch/devtools/etrecord/tests/etrecord_test.py' 2025-06-05T23:55:38.9472418Z adding 'executorch/devtools/inspector/__init__.py' 2025-06-05T23:55:38.9473401Z adding 'executorch/devtools/inspector/_inspector.py' 2025-06-05T23:55:38.9474497Z adding 'executorch/devtools/inspector/_inspector_utils.py' 2025-06-05T23:55:38.9475536Z adding 'executorch/devtools/inspector/_intermediate_output_capturer.py' 2025-06-05T23:55:38.9476342Z adding 'executorch/devtools/inspector/inspector_cli.py' 2025-06-05T23:55:38.9477094Z adding 'executorch/devtools/inspector/tests/event_blocks_test.py' 2025-06-05T23:55:38.9477794Z adding 'executorch/devtools/inspector/tests/inspector_test.py' 2025-06-05T23:55:38.9478792Z adding 'executorch/devtools/inspector/tests/inspector_test_utils.py' 2025-06-05T23:55:38.9479541Z adding 'executorch/devtools/inspector/tests/inspector_utils_test.py' 2025-06-05T23:55:38.9480784Z adding 'executorch/devtools/inspector/tests/intermediate_output_capturer_test.py' 2025-06-05T23:55:38.9481933Z adding 'executorch/devtools/size_analysis_tool/size_analysis_tool.py' 2025-06-05T23:55:38.9483360Z adding 'executorch/devtools/size_analysis_tool/size_analysis_tool_test.py' 2025-06-05T23:55:38.9484563Z adding 'executorch/devtools/visualization/__init__.py' 2025-06-05T23:55:38.9485769Z adding 'executorch/devtools/visualization/visualization_utils.py' 2025-06-05T23:55:38.9487171Z adding 'executorch/devtools/visualization/visualization_utils_test.py' 2025-06-05T23:55:38.9488457Z adding 'executorch/examples/apple/coreml/llama/export.py' 2025-06-05T23:55:38.9489747Z adding 'executorch/examples/apple/coreml/llama/llama_transformer.py' 2025-06-05T23:55:38.9490766Z adding 'executorch/examples/apple/coreml/llama/run.py' 2025-06-05T23:55:38.9491517Z adding 'executorch/examples/apple/coreml/llama/test.py' 2025-06-05T23:55:38.9492164Z adding 'executorch/examples/apple/coreml/llama/utils.py' 2025-06-05T23:55:38.9492871Z adding 'executorch/examples/apple/coreml/scripts/debugger_cli.py' 2025-06-05T23:55:38.9493556Z adding 'executorch/examples/apple/coreml/scripts/export.py' 2025-06-05T23:55:38.9494434Z adding 'executorch/examples/apple/coreml/scripts/extract_coreml_models.py' 2025-06-05T23:55:38.9495322Z adding 'executorch/examples/apple/coreml/scripts/inspector_cli.py' 2025-06-05T23:55:38.9496107Z adding 'executorch/examples/apple/coreml/scripts/inspector_utils.py' 2025-06-05T23:55:38.9496819Z adding 'executorch/examples/apple/mps/scripts/bench_utils.py' 2025-06-05T23:55:38.9497509Z adding 'executorch/examples/apple/mps/scripts/mps_example.py' 2025-06-05T23:55:38.9498163Z adding 'executorch/examples/llm_pte_finetuning/__init__.py' 2025-06-05T23:55:38.9498865Z adding 'executorch/examples/llm_pte_finetuning/llama3_config.yaml' 2025-06-05T23:55:38.9499680Z adding 'executorch/examples/llm_pte_finetuning/model_exporter.py' 2025-06-05T23:55:38.9500432Z adding 'executorch/examples/llm_pte_finetuning/model_loading_lib.py' 2025-06-05T23:55:38.9501215Z adding 'executorch/examples/llm_pte_finetuning/phi3_alpaca_code_config.yaml' 2025-06-05T23:55:38.9502010Z adding 'executorch/examples/llm_pte_finetuning/phi3_config.yaml' 2025-06-05T23:55:38.9502736Z adding 'executorch/examples/llm_pte_finetuning/qwen_05b_config.yaml' 2025-06-05T23:55:38.9503438Z adding 'executorch/examples/llm_pte_finetuning/runner.py' 2025-06-05T23:55:38.9504200Z adding 'executorch/examples/llm_pte_finetuning/training_lib.py' 2025-06-05T23:55:38.9504828Z adding 'executorch/examples/models/__init__.py' 2025-06-05T23:55:38.9505367Z adding 'executorch/examples/models/checkpoint.py' 2025-06-05T23:55:38.9505909Z adding 'executorch/examples/models/model_base.py' 2025-06-05T23:55:38.9506478Z adding 'executorch/examples/models/model_factory.py' 2025-06-05T23:55:38.9507159Z adding 'executorch/examples/models/deeplab_v3/__init__.py' 2025-06-05T23:55:38.9507790Z adding 'executorch/examples/models/deeplab_v3/model.py' 2025-06-05T23:55:38.9508380Z adding 'executorch/examples/models/edsr/__init__.py' 2025-06-05T23:55:38.9508944Z adding 'executorch/examples/models/edsr/model.py' 2025-06-05T23:55:38.9509543Z adding 'executorch/examples/models/efficient_sam/__init__.py' 2025-06-05T23:55:38.9510285Z adding 'executorch/examples/models/efficient_sam/model.py' 2025-06-05T23:55:38.9511270Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/build_efficient_sam.py' 2025-06-05T23:55:38.9512253Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam.py' 2025-06-05T23:55:38.9513240Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_decoder.py' 2025-06-05T23:55:38.9514286Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_encoder.py' 2025-06-05T23:55:38.9515297Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/mlp.py' 2025-06-05T23:55:38.9516571Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/two_way_transformer.py' 2025-06-05T23:55:38.9517488Z adding 'executorch/examples/models/emformer_rnnt/__init__.py' 2025-06-05T23:55:38.9518283Z adding 'executorch/examples/models/emformer_rnnt/model.py' 2025-06-05T23:55:38.9519078Z adding 'executorch/examples/models/inception_v3/__init__.py' 2025-06-05T23:55:38.9519780Z adding 'executorch/examples/models/inception_v3/model.py' 2025-06-05T23:55:38.9520567Z adding 'executorch/examples/models/inception_v4/__init__.py' 2025-06-05T23:55:38.9521280Z adding 'executorch/examples/models/inception_v4/model.py' 2025-06-05T23:55:38.9521877Z adding 'executorch/examples/models/llama/__init__.py' 2025-06-05T23:55:38.9522628Z adding 'executorch/examples/models/llama/attention.py' 2025-06-05T23:55:38.9523222Z adding 'executorch/examples/models/llama/eval_llama.py' 2025-06-05T23:55:38.9523928Z adding 'executorch/examples/models/llama/eval_llama_lib.py' 2025-06-05T23:55:38.9524564Z adding 'executorch/examples/models/llama/export_llama.py' 2025-06-05T23:55:38.9525253Z adding 'executorch/examples/models/llama/export_llama_lib.py' 2025-06-05T23:55:38.9526002Z adding 'executorch/examples/models/llama/fairseq2.py' 2025-06-05T23:55:38.9526618Z adding 'executorch/examples/models/llama/hf_download.py' 2025-06-05T23:55:38.9527315Z adding 'executorch/examples/models/llama/install_requirement_helper.py' 2025-06-05T23:55:38.9528066Z adding 'executorch/examples/models/llama/llama_transformer.py' 2025-06-05T23:55:38.9528680Z adding 'executorch/examples/models/llama/model.py' 2025-06-05T23:55:38.9529268Z adding 'executorch/examples/models/llama/model_args.py' 2025-06-05T23:55:38.9529908Z adding 'executorch/examples/models/llama/norm.py' 2025-06-05T23:55:38.9530461Z adding 'executorch/examples/models/llama/rope.py' 2025-06-05T23:55:38.9531158Z adding 'executorch/examples/models/llama/static_attention.py' 2025-06-05T23:55:38.9531840Z adding 'executorch/examples/models/llama/evaluate/__init__.py' 2025-06-05T23:55:38.9532533Z adding 'executorch/examples/models/llama/evaluate/eager_eval.py' 2025-06-05T23:55:38.9533265Z adding 'executorch/examples/models/llama/experimental/generate.py' 2025-06-05T23:55:38.9534242Z adding 'executorch/examples/models/llama/experimental/load_gguf_q4_0.py' 2025-06-05T23:55:38.9535029Z adding 'executorch/examples/models/llama/experimental/subclass.py' 2025-06-05T23:55:38.9535800Z adding 'executorch/examples/models/llama/experimental/test_subclass.py' 2025-06-05T23:55:38.9536605Z adding 'executorch/examples/models/llama/runner/eager.py' 2025-06-05T23:55:38.9537419Z adding 'executorch/examples/models/llama/runner/generation.py' 2025-06-05T23:55:38.9538081Z adding 'executorch/examples/models/llama/runner/native.py' 2025-06-05T23:55:38.9538804Z adding 'executorch/examples/models/llama/source_transformation/__init__.py' 2025-06-05T23:55:38.9539796Z adding 'executorch/examples/models/llama/source_transformation/apply_spin_quant_r1_r2.py' 2025-06-05T23:55:38.9540734Z adding 'executorch/examples/models/llama/source_transformation/attention.py' 2025-06-05T23:55:38.9541616Z adding 'executorch/examples/models/llama/source_transformation/attention_sink.py' 2025-06-05T23:55:38.9955984Z adding 'executorch/examples/models/llama/source_transformation/custom_kv_cache.py' 2025-06-05T23:55:38.9956922Z adding 'executorch/examples/models/llama/source_transformation/lora.py' 2025-06-05T23:55:38.9957790Z adding 'executorch/examples/models/llama/source_transformation/pre_quantization.py' 2025-06-05T23:55:38.9958720Z adding 'executorch/examples/models/llama/source_transformation/prune_vocab.py' 2025-06-05T23:55:38.9959610Z adding 'executorch/examples/models/llama/source_transformation/quantize.py' 2025-06-05T23:55:38.9960542Z adding 'executorch/examples/models/llama/source_transformation/rms_norm.py' 2025-06-05T23:55:38.9972575Z adding 'executorch/examples/models/llama/source_transformation/rope.py' 2025-06-05T23:55:38.9973436Z adding 'executorch/examples/models/llama/source_transformation/sdpa.py' 2025-06-05T23:55:38.9974692Z adding 'executorch/examples/models/llama/source_transformation/spin_quant.py' 2025-06-05T23:55:38.9975632Z adding 'executorch/examples/models/llama/source_transformation/test_attention_sink.py' 2025-06-05T23:55:38.9976757Z adding 'executorch/examples/models/llama/source_transformation/test_quantized_kv_cache.py' 2025-06-05T23:55:38.9977754Z adding 'executorch/examples/models/llama/source_transformation/test_quantized_sdpa.py' 2025-06-05T23:55:38.9979073Z adding 'executorch/examples/models/llama/source_transformation/test_sdpa_with_quantized_kv_cache.py' 2025-06-05T23:55:38.9980089Z adding 'executorch/examples/models/llama/source_transformation/vulkan_rope.py' 2025-06-05T23:55:38.9980919Z adding 'executorch/examples/models/llama/tests/test_export_llama_lib.py' 2025-06-05T23:55:38.9981800Z adding 'executorch/examples/models/llama/tests/test_pre_quantization_transforms.py' 2025-06-05T23:55:38.9982677Z adding 'executorch/examples/models/llama/tests/test_replace_kv_cache.py' 2025-06-05T23:55:38.9983480Z adding 'executorch/examples/models/llama/tests/test_ring_attention.py' 2025-06-05T23:55:38.9984244Z adding 'executorch/examples/models/llama/tests/test_ring_kv_cache.py' 2025-06-05T23:55:38.9985170Z adding 'executorch/examples/models/llama/tests/test_simple_sdpa.py' 2025-06-05T23:55:38.9986091Z adding 'executorch/examples/models/llama/tests/test_static_attention.py' 2025-06-05T23:55:38.9986852Z adding 'executorch/examples/models/llama/tokenizer/tiktoken.py' 2025-06-05T23:55:38.9987539Z adding 'executorch/examples/models/llama3_2_vision/__init__.py' 2025-06-05T23:55:38.9988296Z adding 'executorch/examples/models/llama3_2_vision/preprocess/__init__.py' 2025-06-05T23:55:38.9989192Z adding 'executorch/examples/models/llama3_2_vision/preprocess/export_preprocess.py' 2025-06-05T23:55:38.9990066Z adding 'executorch/examples/models/llama3_2_vision/preprocess/model.py' 2025-06-05T23:55:38.9991002Z adding 'executorch/examples/models/llama3_2_vision/preprocess/test_preprocess.py' 2025-06-05T23:55:38.9991837Z adding 'executorch/examples/models/llama3_2_vision/runner/eager.py' 2025-06-05T23:55:38.9992581Z adding 'executorch/examples/models/llama3_2_vision/runner/exported.py' 2025-06-05T23:55:38.9993380Z adding 'executorch/examples/models/llama3_2_vision/runner/generation.py' 2025-06-05T23:55:38.9994146Z adding 'executorch/examples/models/llama3_2_vision/runner/native.py' 2025-06-05T23:55:38.9994926Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/model.py' 2025-06-05T23:55:38.9995809Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/test/__init__.py' 2025-06-05T23:55:38.9997030Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/test/test_text_decoder.py' 2025-06-05T23:55:38.9997953Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/__init__.py' 2025-06-05T23:55:38.9998805Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/model.py' 2025-06-05T23:55:38.9999681Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/test/__init__.py' 2025-06-05T23:55:39.0000666Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/test/test_vision_encoder.py' 2025-06-05T23:55:39.0001734Z adding 'executorch/examples/models/llava/__init__.py' 2025-06-05T23:55:39.0002357Z adding 'executorch/examples/models/llava/export_llava.py' 2025-06-05T23:55:39.0002958Z adding 'executorch/examples/models/llava/model.py' 2025-06-05T23:55:39.0003574Z adding 'executorch/examples/models/llava/test/test_llava.py' 2025-06-05T23:55:39.0004339Z adding 'executorch/examples/models/llava/test/test_pte.py' 2025-06-05T23:55:39.0005081Z adding 'executorch/examples/models/lstm/__init__.py' 2025-06-05T23:55:39.0005629Z adding 'executorch/examples/models/lstm/model.py' 2025-06-05T23:55:39.0006225Z adding 'executorch/examples/models/mobilebert/__init__.py' 2025-06-05T23:55:39.0006846Z adding 'executorch/examples/models/mobilebert/model.py' 2025-06-05T23:55:39.0007762Z adding 'executorch/examples/models/mobilenet_v2/__init__.py' 2025-06-05T23:55:39.0008680Z adding 'executorch/examples/models/mobilenet_v2/model.py' 2025-06-05T23:55:39.0009335Z adding 'executorch/examples/models/mobilenet_v3/__init__.py' 2025-06-05T23:55:39.0010123Z adding 'executorch/examples/models/mobilenet_v3/model.py' 2025-06-05T23:55:39.0010770Z adding 'executorch/examples/models/moshi/mimi/test_mimi.py' 2025-06-05T23:55:39.0011406Z adding 'executorch/examples/models/phi-3-mini/__init__.py' 2025-06-05T23:55:39.0012156Z adding 'executorch/examples/models/phi-3-mini/eager.py' 2025-06-05T23:55:39.0012963Z adding 'executorch/examples/models/phi-3-mini/export_phi-3-mini.py' 2025-06-05T23:55:39.0013787Z adding 'executorch/examples/models/phi-3-mini/phi_3_mini.py' 2025-06-05T23:55:39.0014453Z adding 'executorch/examples/models/phi-3-mini/static_cache.py' 2025-06-05T23:55:39.0015174Z adding 'executorch/examples/models/phi-3-mini-lora/export_model.py' 2025-06-05T23:55:39.0015899Z adding 'executorch/examples/models/phi_4_mini/__init__.py' 2025-06-05T23:55:39.0016792Z adding 'executorch/examples/models/phi_4_mini/convert_weights.py' 2025-06-05T23:55:39.0017452Z adding 'executorch/examples/models/qwen2_5/__init__.py' 2025-06-05T23:55:39.0018106Z adding 'executorch/examples/models/qwen2_5/convert_weights.py' 2025-06-05T23:55:39.0018731Z adding 'executorch/examples/models/qwen3/__init__.py' 2025-06-05T23:55:39.0019355Z adding 'executorch/examples/models/qwen3/convert_weights.py' 2025-06-05T23:55:39.0019992Z adding 'executorch/examples/models/resnet/__init__.py' 2025-06-05T23:55:39.0020716Z adding 'executorch/examples/models/resnet/model.py' 2025-06-05T23:55:39.0021293Z adding 'executorch/examples/models/smollm2/__init__.py' 2025-06-05T23:55:39.0021921Z adding 'executorch/examples/models/smollm2/convert_weights.py' 2025-06-05T23:55:39.0022558Z adding 'executorch/examples/models/test/__init__.py' 2025-06-05T23:55:39.0023137Z adding 'executorch/examples/models/test/test_export.py' 2025-06-05T23:55:39.0023797Z adding 'executorch/examples/models/torchvision_vit/__init__.py' 2025-06-05T23:55:39.0024462Z adding 'executorch/examples/models/torchvision_vit/model.py' 2025-06-05T23:55:39.0025176Z adding 'executorch/examples/models/toy_model/__init__.py' 2025-06-05T23:55:39.0025796Z adding 'executorch/examples/models/toy_model/model.py' 2025-06-05T23:55:39.0026404Z adding 'executorch/examples/models/wav2letter/__init__.py' 2025-06-05T23:55:39.0027068Z adding 'executorch/examples/models/wav2letter/model.py' 2025-06-05T23:55:39.0027815Z adding 'executorch/exir/__init__.py' 2025-06-05T23:55:39.0028285Z adding 'executorch/exir/_warnings.py' 2025-06-05T23:55:39.0028736Z adding 'executorch/exir/common.py' 2025-06-05T23:55:39.0029186Z adding 'executorch/exir/control_flow.py' 2025-06-05T23:55:39.0029660Z adding 'executorch/exir/delegate.py' 2025-06-05T23:55:39.0030112Z adding 'executorch/exir/delegate.pyi' 2025-06-05T23:55:39.0030621Z adding 'executorch/exir/dim_order_utils.py' 2025-06-05T23:55:39.0031311Z adding 'executorch/exir/dynamic_shape.py' 2025-06-05T23:55:39.0031789Z adding 'executorch/exir/error.py' 2025-06-05T23:55:39.0032222Z adding 'executorch/exir/graph.py' 2025-06-05T23:55:39.0032689Z adding 'executorch/exir/graph_module.py' 2025-06-05T23:55:39.0033196Z adding 'executorch/exir/lowered_backend_module.py' 2025-06-05T23:55:39.0033710Z adding 'executorch/exir/memory.py' 2025-06-05T23:55:39.0034169Z adding 'executorch/exir/memory_planning.py' 2025-06-05T23:55:39.0034660Z adding 'executorch/exir/pass_base.py' 2025-06-05T23:55:39.0035126Z adding 'executorch/exir/pass_manager.py' 2025-06-05T23:55:39.0035616Z adding 'executorch/exir/print_program.py' 2025-06-05T23:55:39.0036088Z adding 'executorch/exir/scalar_type.py' 2025-06-05T23:55:39.0036556Z adding 'executorch/exir/schema.py' 2025-06-05T23:55:39.0037166Z adding 'executorch/exir/sym_util.py' 2025-06-05T23:55:39.0037709Z adding 'executorch/exir/tensor.py' 2025-06-05T23:55:39.0038313Z adding 'executorch/exir/tracer.py' 2025-06-05T23:55:39.0038748Z adding 'executorch/exir/types.py' 2025-06-05T23:55:39.0039204Z adding 'executorch/exir/version.py' 2025-06-05T23:55:39.0039645Z adding 'executorch/exir/wrap.py' 2025-06-05T23:55:39.0040212Z adding 'executorch/exir/_serialize/__init__.py' 2025-06-05T23:55:39.0040727Z adding 'executorch/exir/_serialize/_cord.py' 2025-06-05T23:55:39.0041380Z adding 'executorch/exir/_serialize/_dataclass.py' 2025-06-05T23:55:39.0042039Z adding 'executorch/exir/_serialize/_flatbuffer.py' 2025-06-05T23:55:39.0042634Z adding 'executorch/exir/_serialize/_named_data_store.py' 2025-06-05T23:55:39.0043199Z adding 'executorch/exir/_serialize/_program.py' 2025-06-05T23:55:39.0043745Z adding 'executorch/exir/_serialize/_serialize.py' 2025-06-05T23:55:39.0044349Z adding 'executorch/exir/_serialize/data_serializer.py' 2025-06-05T23:55:39.0045104Z adding 'executorch/exir/_serialize/padding.py' 2025-06-05T23:55:39.0045633Z adding 'executorch/exir/_serialize/program.fbs' 2025-06-05T23:55:39.0046190Z adding 'executorch/exir/_serialize/scalar_type.fbs' 2025-06-05T23:55:39.0046740Z adding 'executorch/exir/_serialize/test/__init__.py' 2025-06-05T23:55:39.0047319Z adding 'executorch/exir/_serialize/test/test_cord.py' 2025-06-05T23:55:39.0048040Z adding 'executorch/exir/_serialize/test/test_flatbuffer.py' 2025-06-05T23:55:39.0048832Z adding 'executorch/exir/_serialize/test/test_named_data_store.py' 2025-06-05T23:55:39.0049491Z adding 'executorch/exir/_serialize/test/test_program.py' 2025-06-05T23:55:39.0050069Z adding 'executorch/exir/backend/backend_api.py' 2025-06-05T23:55:39.0050604Z adding 'executorch/exir/backend/backend_details.py' 2025-06-05T23:55:39.0051191Z adding 'executorch/exir/backend/compile_spec_schema.py' 2025-06-05T23:55:39.0051775Z adding 'executorch/exir/backend/operator_support.py' 2025-06-05T23:55:39.0052345Z adding 'executorch/exir/backend/partitioner.py' 2025-06-05T23:55:39.0052907Z adding 'executorch/exir/backend/utils.py' 2025-06-05T23:55:39.0053896Z adding 'executorch/exir/backend/canonical_partitioners/all_node_partitioner.py' 2025-06-05T23:55:39.0054802Z adding 'executorch/exir/backend/canonical_partitioners/config_partitioner.py' 2025-06-05T23:55:39.0055974Z adding 'executorch/exir/backend/canonical_partitioners/duplicate_constant_node_pass.py' 2025-06-05T23:55:39.0056951Z adding 'executorch/exir/backend/canonical_partitioners/duplicate_dequant_node_pass.py' 2025-06-05T23:55:39.0057893Z adding 'executorch/exir/backend/canonical_partitioners/pattern_op_partitioner.py' 2025-06-05T23:55:39.0058718Z adding 'executorch/exir/backend/test/backend_with_compiler_demo.py' 2025-06-05T23:55:39.0059638Z adding 'executorch/exir/backend/test/backend_with_delegate_mapping_demo.py' 2025-06-05T23:55:39.0060535Z adding 'executorch/exir/backend/test/backend_with_named_data_map.py' 2025-06-05T23:55:39.0669140Z adding 'executorch/exir/backend/test/backend_with_preprocess_all_demo.py' 2025-06-05T23:55:39.0669978Z adding 'executorch/exir/backend/test/hta_partitioner_demo.py' 2025-06-05T23:55:39.0670657Z adding 'executorch/exir/backend/test/op_partitioner_demo.py' 2025-06-05T23:55:39.0671295Z adding 'executorch/exir/backend/test/qnn_backend_demo.py' 2025-06-05T23:55:39.0672024Z adding 'executorch/exir/backend/test/test_backend_with_named_data_map.py' 2025-06-05T23:55:39.0672721Z adding 'executorch/exir/backend/test/test_backends.py' 2025-06-05T23:55:39.0673416Z adding 'executorch/exir/backend/test/test_backends_lifted.py' 2025-06-05T23:55:39.0674206Z adding 'executorch/exir/backend/test/test_backends_nested.py' 2025-06-05T23:55:39.0674881Z adding 'executorch/exir/backend/test/test_compatibility.py' 2025-06-05T23:55:39.0675538Z adding 'executorch/exir/backend/test/test_debug_handle_map.py' 2025-06-05T23:55:39.0676236Z adding 'executorch/exir/backend/test/test_delegate_map_builder.py' 2025-06-05T23:55:39.0676931Z adding 'executorch/exir/backend/test/test_graph_partition.py' 2025-06-05T23:55:39.0677971Z adding 'executorch/exir/backend/test/test_lowered_backend_module.py' 2025-06-05T23:55:39.0679065Z adding 'executorch/exir/backend/test/test_partitioner.py' 2025-06-05T23:55:39.0679666Z adding 'executorch/exir/backend/test/test_passes.py' 2025-06-05T23:55:39.0680535Z adding 'executorch/exir/backend/test/test_to_backend_multi_method.py' 2025-06-05T23:55:39.0681248Z adding 'executorch/exir/backend/test/test_utils.py' 2025-06-05T23:55:39.0682045Z adding 'executorch/exir/backend/test/demos/test_delegate_aten_mode.py' 2025-06-05T23:55:39.0682848Z adding 'executorch/exir/backend/test/demos/test_xnnpack_qnnpack.py' 2025-06-05T23:55:39.0683684Z adding 'executorch/exir/backend/test/demos/rpc/executor_backend_partitioner.py' 2025-06-05T23:55:39.0684689Z adding 'executorch/exir/backend/test/demos/rpc/executor_backend_preprocess.py' 2025-06-05T23:55:39.0685624Z adding 'executorch/exir/backend/test/demos/rpc/test_rpc.py' 2025-06-05T23:55:39.0686333Z adding 'executorch/exir/capture/__init__.py' 2025-06-05T23:55:39.0687021Z adding 'executorch/exir/capture/_capture.py' 2025-06-05T23:55:39.0687614Z adding 'executorch/exir/capture/_config.py' 2025-06-05T23:55:39.0688129Z adding 'executorch/exir/capture/_unlift.py' 2025-06-05T23:55:39.0688640Z adding 'executorch/exir/dialects/__init__.py' 2025-06-05T23:55:39.0689158Z adding 'executorch/exir/dialects/_ops.py' 2025-06-05T23:55:39.0689761Z adding 'executorch/exir/dialects/backend/_ops.py' 2025-06-05T23:55:39.0690502Z adding 'executorch/exir/dialects/backend/test/test_backend_ops.py' 2025-06-05T23:55:39.0691225Z adding 'executorch/exir/dialects/edge/_ops.py' 2025-06-05T23:55:39.0691789Z adding 'executorch/exir/dialects/edge/edge.yaml' 2025-06-05T23:55:39.0692487Z adding 'executorch/exir/dialects/edge/arg/model.py' 2025-06-05T23:55:39.0693103Z adding 'executorch/exir/dialects/edge/arg/type.py' 2025-06-05T23:55:39.0693793Z adding 'executorch/exir/dialects/edge/dtype/runner.py' 2025-06-05T23:55:39.0694410Z adding 'executorch/exir/dialects/edge/dtype/supported.py' 2025-06-05T23:55:39.0695042Z adding 'executorch/exir/dialects/edge/dtype/utils.py' 2025-06-05T23:55:39.0695591Z adding 'executorch/exir/dialects/edge/op/api.py' 2025-06-05T23:55:39.0696236Z adding 'executorch/exir/dialects/edge/op/sample_input.py' 2025-06-05T23:55:39.0696961Z adding 'executorch/exir/dialects/edge/op/test/test_api.py' 2025-06-05T23:55:39.0697674Z adding 'executorch/exir/dialects/edge/spec/gen.py' 2025-06-05T23:55:39.0698234Z adding 'executorch/exir/dialects/edge/spec/utils.py' 2025-06-05T23:55:39.0698850Z adding 'executorch/exir/dialects/edge/test/test_edge_ops.py' 2025-06-05T23:55:39.0699506Z adding 'executorch/exir/dialects/edge/test/test_edge_yaml.py' 2025-06-05T23:55:39.0700187Z adding 'executorch/exir/dialects/test/test_exir_dialect_ops.py' 2025-06-05T23:55:39.0700770Z adding 'executorch/exir/emit/__init__.py' 2025-06-05T23:55:39.0701277Z adding 'executorch/exir/emit/_emit_program.py' 2025-06-05T23:55:39.0701774Z adding 'executorch/exir/emit/_emitter.py' 2025-06-05T23:55:39.0702291Z adding 'executorch/exir/emit/test/test_emit.py' 2025-06-05T23:55:39.0702804Z adding 'executorch/exir/operator/convert.py' 2025-06-05T23:55:39.0703305Z adding 'executorch/exir/operator/manip.py' 2025-06-05T23:55:39.0703793Z adding 'executorch/exir/operator/util.py' 2025-06-05T23:55:39.0704341Z adding 'executorch/exir/operator/test/test_operator.py' 2025-06-05T23:55:39.0704891Z adding 'executorch/exir/passes/__init__.py' 2025-06-05T23:55:39.0705516Z adding 'executorch/exir/passes/_quant_patterns_and_replacements.py' 2025-06-05T23:55:39.0706161Z adding 'executorch/exir/passes/const_prop_pass.py' 2025-06-05T23:55:39.0706748Z adding 'executorch/exir/passes/constant_prop_pass.py' 2025-06-05T23:55:39.0707369Z adding 'executorch/exir/passes/debug_handle_generator_pass.py' 2025-06-05T23:55:39.0708033Z adding 'executorch/exir/passes/dim_order_ops_registry.py' 2025-06-05T23:55:39.0708658Z adding 'executorch/exir/passes/dynamic_shape_prop_pass.py' 2025-06-05T23:55:39.0709598Z adding 'executorch/exir/passes/executorch_prim_ops_registry.py' 2025-06-05T23:55:39.0710289Z adding 'executorch/exir/passes/external_constants_pass.py' 2025-06-05T23:55:39.0710988Z adding 'executorch/exir/passes/init_mutable_pass.py' 2025-06-05T23:55:39.0711658Z adding 'executorch/exir/passes/insert_write_back_for_buffers_pass.py' 2025-06-05T23:55:39.0712348Z adding 'executorch/exir/passes/memory_format_ops_pass.py' 2025-06-05T23:55:39.0712976Z adding 'executorch/exir/passes/memory_planning_pass.py' 2025-06-05T23:55:39.0713596Z adding 'executorch/exir/passes/normalize_transpose_pass.py' 2025-06-05T23:55:39.0714275Z adding 'executorch/exir/passes/normalize_view_copy_base_pass.py' 2025-06-05T23:55:39.0714897Z adding 'executorch/exir/passes/pass_registry.py' 2025-06-05T23:55:39.0715499Z adding 'executorch/exir/passes/prune_empty_tensors_pass.py' 2025-06-05T23:55:39.0716101Z adding 'executorch/exir/passes/quant_fusion_pass.py' 2025-06-05T23:55:39.0716675Z adding 'executorch/exir/passes/quantize_io_pass.py' 2025-06-05T23:55:39.0717274Z adding 'executorch/exir/passes/remove_graph_asserts_pass.py' 2025-06-05T23:55:39.0717945Z adding 'executorch/exir/passes/remove_mixed_type_operators.py' 2025-06-05T23:55:39.0718563Z adding 'executorch/exir/passes/remove_noop_pass.py' 2025-06-05T23:55:39.0719190Z adding 'executorch/exir/passes/remove_unused_parameters_pass.py' 2025-06-05T23:55:39.0719866Z adding 'executorch/exir/passes/replace_aten_with_edge_pass.py' 2025-06-05T23:55:39.0720618Z adding 'executorch/exir/passes/replace_broken_ops_with_function_ops_pass.py' 2025-06-05T23:55:39.0721386Z adding 'executorch/exir/passes/replace_edge_with_backend_pass.py' 2025-06-05T23:55:39.0722069Z adding 'executorch/exir/passes/replace_sym_size_op_pass.py' 2025-06-05T23:55:39.0722740Z adding 'executorch/exir/passes/replace_view_copy_with_view_pass.py' 2025-06-05T23:55:39.0723421Z adding 'executorch/exir/passes/scalar_to_tensor_pass.py' 2025-06-05T23:55:39.0723997Z adding 'executorch/exir/passes/spec_prop_pass.py' 2025-06-05T23:55:39.0724587Z adding 'executorch/exir/passes/sym_shape_eval_pass.py' 2025-06-05T23:55:39.0725166Z adding 'executorch/exir/passes/sym_to_tensor_pass.py' 2025-06-05T23:55:39.0725783Z adding 'executorch/exir/passes/weights_to_outputs_pass.py' 2025-06-05T23:55:39.0726348Z adding 'executorch/exir/program/__init__.py' 2025-06-05T23:55:39.0726874Z adding 'executorch/exir/program/_fake_program.py' 2025-06-05T23:55:39.0727396Z adding 'executorch/exir/program/_program.py' 2025-06-05T23:55:39.0727929Z adding 'executorch/exir/program/test/__init__.py' 2025-06-05T23:55:39.0728510Z adding 'executorch/exir/program/test/test_fake_program.py' 2025-06-05T23:55:39.0729125Z adding 'executorch/exir/program/test/test_program.py' 2025-06-05T23:55:39.0729658Z adding 'executorch/exir/serde/__init__.py' 2025-06-05T23:55:39.0730187Z adding 'executorch/exir/serde/export_serialize.py' 2025-06-05T23:55:39.0730703Z adding 'executorch/exir/serde/schema.py' 2025-06-05T23:55:39.0731200Z adding 'executorch/exir/serde/schema_check.py' 2025-06-05T23:55:39.0731723Z adding 'executorch/exir/serde/serialize.py' 2025-06-05T23:55:39.0732206Z adding 'executorch/exir/serde/union.py' 2025-06-05T23:55:39.0732714Z adding 'executorch/exir/tests/asr_joiner.py' 2025-06-05T23:55:39.0733208Z adding 'executorch/exir/tests/common.py' 2025-06-05T23:55:39.0733906Z adding 'executorch/exir/tests/control_flow_models.py' 2025-06-05T23:55:39.0734500Z adding 'executorch/exir/tests/dynamic_shape_models.py' 2025-06-05T23:55:39.0735062Z adding 'executorch/exir/tests/models.py' 2025-06-05T23:55:39.0735585Z adding 'executorch/exir/tests/test_arg_validator.py' 2025-06-05T23:55:39.0736149Z adding 'executorch/exir/tests/test_capture.py' 2025-06-05T23:55:39.0736664Z adding 'executorch/exir/tests/test_common.py' 2025-06-05T23:55:39.0737192Z adding 'executorch/exir/tests/test_delegate.py' 2025-06-05T23:55:39.0737743Z adding 'executorch/exir/tests/test_dim_order_utils.py' 2025-06-05T23:55:39.0739061Z adding 'executorch/exir/tests/test_dynamic_shape_propagation.py' 2025-06-05T23:55:39.0739673Z adding 'executorch/exir/tests/test_error.py' 2025-06-05T23:55:39.0740208Z adding 'executorch/exir/tests/test_joint_graph.py' 2025-06-05T23:55:39.0740892Z adding 'executorch/exir/tests/test_memory_format_ops_pass.py' 2025-06-05T23:55:39.0741591Z adding 'executorch/exir/tests/test_memory_format_ops_pass_aten.py' 2025-06-05T23:55:39.0742312Z adding 'executorch/exir/tests/test_memory_format_ops_pass_utils.py' 2025-06-05T23:55:39.0742983Z adding 'executorch/exir/tests/test_memory_planning.py' 2025-06-05T23:55:39.0743538Z adding 'executorch/exir/tests/test_op_convert.py' 2025-06-05T23:55:39.0744084Z adding 'executorch/exir/tests/test_pass_infra.py' 2025-06-05T23:55:39.0744607Z adding 'executorch/exir/tests/test_passes.py' 2025-06-05T23:55:39.0745159Z adding 'executorch/exir/tests/test_print_program.py' 2025-06-05T23:55:39.0745775Z adding 'executorch/exir/tests/test_prune_empty_tensors_pass.py' 2025-06-05T23:55:39.0746438Z adding 'executorch/exir/tests/test_quant_fusion_pass.py' 2025-06-05T23:55:39.0747018Z adding 'executorch/exir/tests/test_quantization.py' 2025-06-05T23:55:39.0747609Z adding 'executorch/exir/tests/test_quantize_io_pass.py' 2025-06-05T23:55:39.0748274Z adding 'executorch/exir/tests/test_remove_unused_parameters_pass.py' 2025-06-05T23:55:39.0748945Z adding 'executorch/exir/tests/test_remove_view_copy.py' 2025-06-05T23:55:39.0749510Z adding 'executorch/exir/tests/test_serde.py' 2025-06-05T23:55:39.0750010Z adding 'executorch/exir/tests/test_tensor.py' 2025-06-05T23:55:39.0750527Z adding 'executorch/exir/tests/test_tracer.py' 2025-06-05T23:55:39.0751056Z adding 'executorch/exir/tests/test_verification.py' 2025-06-05T23:55:39.0751603Z adding 'executorch/exir/tests/test_warnings.py' 2025-06-05T23:55:39.0752121Z adding 'executorch/exir/tests/transformer.py' 2025-06-05T23:55:39.0752687Z adding 'executorch/exir/verification/arg_validator.py' 2025-06-05T23:55:39.0753256Z adding 'executorch/exir/verification/dev_html.py' 2025-06-05T23:55:39.0753832Z adding 'executorch/exir/verification/interpreter.py' 2025-06-05T23:55:39.0754392Z adding 'executorch/exir/verification/verifier.py' 2025-06-05T23:55:39.0755003Z adding 'executorch/exir/verification/test/test_verifier.py' 2025-06-05T23:55:39.0755610Z adding 'executorch/extension/export_util/__init__.py' 2025-06-05T23:55:39.0756185Z adding 'executorch/extension/export_util/utils.py' 2025-06-05T23:55:39.0756739Z adding 'executorch/extension/flat_tensor/__init__.py' 2025-06-05T23:55:39.0757374Z adding 'executorch/extension/flat_tensor/serialize/__init__.py' 2025-06-05T23:55:39.0758077Z adding 'executorch/extension/flat_tensor/serialize/flat_tensor.fbs' 2025-06-05T23:55:39.0758847Z adding 'executorch/extension/flat_tensor/serialize/flat_tensor_schema.py' 2025-06-05T23:55:39.8116238Z adding 'executorch/extension/flat_tensor/serialize/scalar_type.fbs' 2025-06-05T23:55:39.8117178Z adding 'executorch/extension/flat_tensor/serialize/serialize.py' 2025-06-05T23:55:39.8118005Z adding 'executorch/extension/flat_tensor/test/test_serialize.py' 2025-06-05T23:55:39.8118682Z adding 'executorch/extension/gguf_util/convert_main.py' 2025-06-05T23:55:39.8119289Z adding 'executorch/extension/gguf_util/converter.py' 2025-06-05T23:55:39.8119877Z adding 'executorch/extension/gguf_util/load_gguf.py' 2025-06-05T23:55:39.8120556Z adding 'executorch/extension/gguf_util/converters/llama_converter.py' 2025-06-05T23:55:39.8121518Z adding 'executorch/extension/llm/custom_ops/__init__.py' 2025-06-05T23:55:39.8122159Z adding 'executorch/extension/llm/custom_ops/custom_ops.py' 2025-06-05T23:55:39.8122936Z adding 'executorch/extension/llm/custom_ops/libcustom_ops_aot_lib.so' 2025-06-05T23:55:39.8123659Z adding 'executorch/extension/llm/custom_ops/model_sharding.py' 2025-06-05T23:55:39.8124430Z adding 'executorch/extension/llm/custom_ops/op_tile_crop_aot.py' 2025-06-05T23:55:39.8125579Z adding 'executorch/extension/llm/custom_ops/preprocess_custom_ops.py' 2025-06-05T23:55:39.8126458Z adding 'executorch/extension/llm/custom_ops/test_preprocess_custom_ops.py' 2025-06-05T23:55:39.8127233Z adding 'executorch/extension/llm/custom_ops/test_quantized_sdpa.py' 2025-06-05T23:55:39.8128201Z adding 'executorch/extension/llm/custom_ops/test_sdpa_with_kv_cache.py' 2025-06-05T23:55:39.8129097Z adding 'executorch/extension/llm/custom_ops/test_update_cache.py' 2025-06-05T23:55:39.8129983Z adding 'executorch/extension/llm/custom_ops/spinquant/special_hadamard_code_gen.py' 2025-06-05T23:55:39.8130896Z adding 'executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/example.py' 2025-06-05T23:55:39.8131795Z adding 'executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/gen.py' 2025-06-05T23:55:39.8132504Z adding 'executorch/extension/llm/export/__init__.py' 2025-06-05T23:55:39.8133138Z adding 'executorch/extension/llm/export/builder.py' 2025-06-05T23:55:39.8133933Z adding 'executorch/extension/llm/export/export_passes.py' 2025-06-05T23:55:39.8134651Z adding 'executorch/extension/llm/export/partitioner_lib.py' 2025-06-05T23:55:39.8135294Z adding 'executorch/extension/llm/export/quantizer_lib.py' 2025-06-05T23:55:39.8135953Z adding 'executorch/extension/llm/export/test_export_passes.py' 2025-06-05T23:55:39.8136602Z adding 'executorch/extension/llm/export/test/__init__.py' 2025-06-05T23:55:39.8137237Z adding 'executorch/extension/llm/export/test/test_builder.py' 2025-06-05T23:55:39.8137871Z adding 'executorch/extension/llm/modules/__init__.py' 2025-06-05T23:55:39.8138517Z adding 'executorch/extension/llm/modules/_position_embeddings.py' 2025-06-05T23:55:39.8139263Z adding 'executorch/extension/llm/modules/attention.py' 2025-06-05T23:55:39.8139958Z adding 'executorch/extension/llm/modules/kv_cache.py' 2025-06-05T23:55:39.8140574Z adding 'executorch/extension/llm/modules/test/__init__.py' 2025-06-05T23:55:39.8141289Z adding 'executorch/extension/llm/modules/test/test_attention.py' 2025-06-05T23:55:39.8141993Z adding 'executorch/extension/llm/modules/test/test_kv_cache.py' 2025-06-05T23:55:39.8142840Z adding 'executorch/extension/llm/modules/test/test_position_embeddings.py' 2025-06-05T23:55:39.8143690Z adding 'executorch/extension/llm/tokenizers/setup.py' 2025-06-05T23:55:39.8144513Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/__init__.py' 2025-06-05T23:55:39.8145583Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/constants.py' 2025-06-05T23:55:39.8146834Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/hf_tokenizer.py' 2025-06-05T23:55:39.8147918Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/llama2c.py' 2025-06-05T23:55:39.8149024Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tiktoken.py' 2025-06-05T23:55:39.8150100Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/__init__.py' 2025-06-05T23:55:39.8151184Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/__init__.py' 2025-06-05T23:55:39.8152318Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/convert.py' 2025-06-05T23:55:39.8153587Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/__init__.py' 2025-06-05T23:55:39.8154506Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/constants.py' 2025-06-05T23:55:39.8155366Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/hf_tokenizer.py' 2025-06-05T23:55:39.8156290Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/llama2c.py' 2025-06-05T23:55:39.8157241Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tiktoken.py' 2025-06-05T23:55:39.8158315Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/__init__.py' 2025-06-05T23:55:39.8159447Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/__init__.py' 2025-06-05T23:55:39.8160726Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/convert.py' 2025-06-05T23:55:39.8161604Z adding 'executorch/extension/llm/tokenizers/test/test_tiktoken.py' 2025-06-05T23:55:39.8162701Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/conanfile.py' 2025-06-05T23:55:39.8163788Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/create_lts.py' 2025-06-05T23:55:39.8164776Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/abseil.podspec.gen.py' 2025-06-05T23:55:39.8165813Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/copts.py' 2025-06-05T23:55:39.8166838Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/generate_copts.py' 2025-06-05T23:55:39.8167956Z adding 'executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts/check_structure.py' 2025-06-05T23:55:39.8169311Z adding 'executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl/filterbr.py' 2025-06-05T23:55:39.8170740Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate/amalgamate.py' 2025-06-05T23:55:39.8172084Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer/nlohmann-json.py' 2025-06-05T23:55:39.8173275Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis/generate_natvis.py' 2025-06-05T23:55:39.8174502Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/serve_header/serve_header.py' 2025-06-05T23:55:39.8175541Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateCommon.py' 2025-06-05T23:55:39.8176494Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateTest.py' 2025-06-05T23:55:39.8177438Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcd.py' 2025-06-05T23:55:39.8178767Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpHeader.py' 2025-06-05T23:55:39.8180052Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpTables.py' 2025-06-05T23:55:39.8181026Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateCommon.py' 2025-06-05T23:55:39.8181976Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateDates.py' 2025-06-05T23:55:39.8182914Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateRelease.py' 2025-06-05T23:55:39.8184053Z adding 'executorch/extension/llm/tokenizers/third-party/re2/benchlog/benchplot.py' 2025-06-05T23:55:39.8184994Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/re2.py' 2025-06-05T23:55:39.8185849Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/re2_test.py' 2025-06-05T23:55:39.8186707Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/setup.py' 2025-06-05T23:55:39.8187714Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/toolchains/generate.py' 2025-06-05T23:55:39.8188951Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_casefold.py' 2025-06-05T23:55:39.8189961Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_groups.py' 2025-06-05T23:55:39.8191047Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/unicode.py' 2025-06-05T23:55:39.8192112Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/setup.py' 2025-06-05T23:55:39.8193219Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/__init__.py' 2025-06-05T23:55:39.8194690Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/_version.py' 2025-06-05T23:55:39.8196118Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_model_pb2.py' 2025-06-05T23:55:39.8197821Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_pb2.py' 2025-06-05T23:55:39.8199399Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/__init__.py' 2025-06-05T23:55:39.8200529Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/sentencepiece_test.py' 2025-06-05T23:55:39.8201927Z adding 'executorch/extension/module/test/resources/gen_bundled_program.py' 2025-06-05T23:55:39.8202871Z adding 'executorch/extension/pybindings/_portable_lib.cpython-310-x86_64-linux-gnu.so' 2025-06-05T23:55:39.8203714Z adding 'executorch/extension/pybindings/portable_lib.py' 2025-06-05T23:55:39.8204567Z adding 'executorch/extension/pybindings/pybindings.pyi' 2025-06-05T23:55:39.8205258Z adding 'executorch/extension/pybindings/test/make_test.py' 2025-06-05T23:55:39.8205967Z adding 'executorch/extension/pybindings/test/test_backend_pybinding.py' 2025-06-05T23:55:39.8206726Z adding 'executorch/extension/pybindings/test/test_pybindings.py' 2025-06-05T23:55:39.8207345Z adding 'executorch/extension/pytree/__init__.py' 2025-06-05T23:55:39.8207946Z adding 'executorch/extension/pytree/test/test.py' 2025-06-05T23:55:39.8208645Z adding 'executorch/extension/training/__init__.py' 2025-06-05T23:55:39.8209349Z adding 'executorch/extension/training/examples/XOR/export_model.py' 2025-06-05T23:55:39.8210062Z adding 'executorch/extension/training/examples/XOR/model.py' 2025-06-05T23:55:39.8210833Z adding 'executorch/extension/training/examples/XOR/test/test_export.py' 2025-06-05T23:55:39.8211675Z adding 'executorch/extension/training/pybindings/_training_lib.pyi' 2025-06-05T23:55:39.8212645Z adding 'executorch/extension/training/pybindings/_training_module.py' 2025-06-05T23:55:39.8213445Z adding 'executorch/extension/training/pybindings/test/test.py' 2025-06-05T23:55:40.6404732Z adding 'executorch/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h' 2025-06-05T23:55:40.6405851Z adding 'executorch/include/executorch/extension/kernel_util/meta_programming.h' 2025-06-05T23:55:40.6406867Z adding 'executorch/include/executorch/extension/kernel_util/type_list.h' 2025-06-05T23:55:40.6407742Z adding 'executorch/include/executorch/extension/tensor/tensor.h' 2025-06-05T23:55:40.6408609Z adding 'executorch/include/executorch/extension/tensor/tensor_accessor.h' 2025-06-05T23:55:40.6409464Z adding 'executorch/include/executorch/extension/tensor/tensor_ptr.h' 2025-06-05T23:55:40.6410323Z adding 'executorch/include/executorch/extension/tensor/tensor_ptr_maker.h' 2025-06-05T23:55:40.6411225Z adding 'executorch/include/executorch/extension/threadpool/cpuinfo_utils.h' 2025-06-05T23:55:40.6412137Z adding 'executorch/include/executorch/extension/threadpool/threadpool.h' 2025-06-05T23:55:40.6413103Z adding 'executorch/include/executorch/extension/threadpool/threadpool_guard.h' 2025-06-05T23:55:40.6414082Z adding 'executorch/include/executorch/runtime/core/array_ref.h' 2025-06-05T23:55:40.6414849Z adding 'executorch/include/executorch/runtime/core/data_loader.h' 2025-06-05T23:55:40.6415635Z adding 'executorch/include/executorch/runtime/core/defines.h' 2025-06-05T23:55:40.6416352Z adding 'executorch/include/executorch/runtime/core/error.h' 2025-06-05T23:55:40.6417082Z adding 'executorch/include/executorch/runtime/core/evalue.h' 2025-06-05T23:55:40.6417830Z adding 'executorch/include/executorch/runtime/core/event_tracer.h' 2025-06-05T23:55:40.6418667Z adding 'executorch/include/executorch/runtime/core/event_tracer_hooks.h' 2025-06-05T23:55:40.6419587Z adding 'executorch/include/executorch/runtime/core/event_tracer_hooks_delegate.h' 2025-06-05T23:55:40.6420497Z adding 'executorch/include/executorch/runtime/core/freeable_buffer.h' 2025-06-05T23:55:40.6421309Z adding 'executorch/include/executorch/runtime/core/function_ref.h' 2025-06-05T23:55:40.6422187Z adding 'executorch/include/executorch/runtime/core/hierarchical_allocator.h' 2025-06-05T23:55:40.6423068Z adding 'executorch/include/executorch/runtime/core/memory_allocator.h' 2025-06-05T23:55:40.6424246Z adding 'executorch/include/executorch/runtime/core/named_data_map.h' 2025-06-05T23:55:40.6425023Z adding 'executorch/include/executorch/runtime/core/result.h' 2025-06-05T23:55:40.6425749Z adding 'executorch/include/executorch/runtime/core/span.h' 2025-06-05T23:55:40.6426567Z adding 'executorch/include/executorch/runtime/core/tag.h' 2025-06-05T23:55:40.6427339Z adding 'executorch/include/executorch/runtime/core/tensor_layout.h' 2025-06-05T23:55:40.6428188Z adding 'executorch/include/executorch/runtime/core/tensor_shape_dynamism.h' 2025-06-05T23:55:40.6429081Z adding 'executorch/include/executorch/runtime/core/exec_aten/exec_aten.h' 2025-06-05T23:55:40.6430054Z adding 'executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h' 2025-06-05T23:55:40.6431194Z adding 'executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h' 2025-06-05T23:55:40.6432210Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/dim_order_util.h' 2025-06-05T23:55:40.6433232Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h' 2025-06-05T23:55:40.6434356Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h' 2025-06-05T23:55:40.6435454Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h' 2025-06-05T23:55:40.6436515Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_util.h' 2025-06-05T23:55:40.6437494Z adding 'executorch/include/executorch/runtime/core/portable_type/bfloat16.h' 2025-06-05T23:55:40.6438431Z adding 'executorch/include/executorch/runtime/core/portable_type/bfloat16_math.h' 2025-06-05T23:55:40.6439428Z adding 'executorch/include/executorch/runtime/core/portable_type/bits_types.h' 2025-06-05T23:55:40.6440347Z adding 'executorch/include/executorch/runtime/core/portable_type/complex.h' 2025-06-05T23:55:40.6441266Z adding 'executorch/include/executorch/runtime/core/portable_type/device.h' 2025-06-05T23:55:40.6442167Z adding 'executorch/include/executorch/runtime/core/portable_type/half.h' 2025-06-05T23:55:40.6443006Z adding 'executorch/include/executorch/runtime/core/portable_type/optional.h' 2025-06-05T23:55:40.6443863Z adding 'executorch/include/executorch/runtime/core/portable_type/qint_types.h' 2025-06-05T23:55:40.6444811Z adding 'executorch/include/executorch/runtime/core/portable_type/scalar.h' 2025-06-05T23:55:40.6445669Z adding 'executorch/include/executorch/runtime/core/portable_type/scalar_type.h' 2025-06-05T23:55:40.6446736Z adding 'executorch/include/executorch/runtime/core/portable_type/string_view.h' 2025-06-05T23:55:40.6447588Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor.h' 2025-06-05T23:55:40.6448537Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor_impl.h' 2025-06-05T23:55:40.6449434Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor_options.h' 2025-06-05T23:55:40.6450403Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h' 2025-06-05T23:55:40.6451392Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h' 2025-06-05T23:55:40.6452419Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h' 2025-06-05T23:55:40.6453459Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h' 2025-06-05T23:55:40.6454572Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h' 2025-06-05T23:55:40.6455638Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h' 2025-06-05T23:55:40.6456607Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h' 2025-06-05T23:55:40.6457621Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h' 2025-06-05T23:55:40.6458668Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h' 2025-06-05T23:55:40.6459788Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h' 2025-06-05T23:55:40.6460802Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h' 2025-06-05T23:55:40.6461924Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h' 2025-06-05T23:55:40.6463028Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h' 2025-06-05T23:55:40.6464079Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h' 2025-06-05T23:55:40.6464968Z adding 'executorch/include/executorch/runtime/kernel/kernel_includes.h' 2025-06-05T23:55:40.6465793Z adding 'executorch/include/executorch/runtime/kernel/kernel_runtime_context.h' 2025-06-05T23:55:40.6466641Z adding 'executorch/include/executorch/runtime/kernel/operator_registry.h' 2025-06-05T23:55:40.6467498Z adding 'executorch/include/executorch/runtime/kernel/thread_parallel_interface.h' 2025-06-05T23:55:40.6468349Z adding 'executorch/include/executorch/runtime/kernel/test/test_util.h' 2025-06-05T23:55:40.6469177Z adding 'executorch/include/executorch/runtime/platform/abort.h' 2025-06-05T23:55:40.6469891Z adding 'executorch/include/executorch/runtime/platform/assert.h' 2025-06-05T23:55:40.6470577Z adding 'executorch/include/executorch/runtime/platform/clock.h' 2025-06-05T23:55:40.6471325Z adding 'executorch/include/executorch/runtime/platform/compat_unistd.h' 2025-06-05T23:55:40.6472082Z adding 'executorch/include/executorch/runtime/platform/compiler.h' 2025-06-05T23:55:40.6472783Z adding 'executorch/include/executorch/runtime/platform/log.h' 2025-06-05T23:55:40.6473476Z adding 'executorch/include/executorch/runtime/platform/platform.h' 2025-06-05T23:55:40.6474211Z adding 'executorch/include/executorch/runtime/platform/profiler.h' 2025-06-05T23:55:40.6474927Z adding 'executorch/include/executorch/runtime/platform/runtime.h' 2025-06-05T23:55:40.6475647Z adding 'executorch/include/executorch/runtime/platform/system.h' 2025-06-05T23:55:40.6476338Z adding 'executorch/include/executorch/runtime/platform/types.h' 2025-06-05T23:55:40.6477076Z adding 'executorch/include/executorch/runtime/platform/test/pal_spy.h' 2025-06-05T23:55:40.6477879Z adding 'executorch/include/executorch/runtime/platform/test/stub_platform.h' 2025-06-05T23:55:40.6478879Z adding 'executorch/kernels/quantized/__init__.py' 2025-06-05T23:55:40.6479505Z adding 'executorch/kernels/quantized/libquantized_ops_aot_lib.so' 2025-06-05T23:55:40.6480165Z adding 'executorch/kernels/quantized/quantized.yaml' 2025-06-05T23:55:40.6480832Z adding 'executorch/kernels/quantized/test/supported_features_def.yaml' 2025-06-05T23:55:40.6481575Z adding 'executorch/kernels/quantized/test/test_out_variants.py' 2025-06-05T23:55:40.6482314Z adding 'executorch/kernels/quantized/test/test_quant_dequant_per_token.py' 2025-06-05T23:55:40.6482968Z adding 'executorch/runtime/__init__.py' 2025-06-05T23:55:40.6483493Z adding 'executorch/runtime/kernel/test/functions.yaml' 2025-06-05T23:55:40.6484059Z adding 'executorch/runtime/test/test_runtime.py' 2025-06-05T23:55:40.6484559Z adding 'executorch/schema/program.fbs' 2025-06-05T23:55:40.6485037Z adding 'executorch/schema/scalar_type.fbs' 2025-06-05T23:55:40.6485579Z adding 'executorch/share/cmake/executorch-config.cmake' 2025-06-05T23:55:40.6486191Z adding 'executorch/util/activation_memory_profiler.py' 2025-06-05T23:55:40.6486710Z adding 'executorch/util/collect_env.py' 2025-06-05T23:55:40.6487198Z adding 'executorch/util/python_profiler.py' 2025-06-05T23:55:40.6487777Z adding 'executorch-0.7.0a0+bd57234.dist-info/licenses/LICENSE' 2025-06-05T23:55:40.6488419Z adding 'executorch-0.7.0a0+bd57234.dist-info/METADATA' 2025-06-05T23:55:40.6488991Z adding 'executorch-0.7.0a0+bd57234.dist-info/WHEEL' 2025-06-05T23:55:40.6489617Z adding 'executorch-0.7.0a0+bd57234.dist-info/entry_points.txt' 2025-06-05T23:55:40.6490546Z adding 'executorch-0.7.0a0+bd57234.dist-info/top_level.txt' 2025-06-05T23:55:40.6491167Z adding 'executorch-0.7.0a0+bd57234.dist-info/RECORD' 2025-06-05T23:55:40.6491708Z removing pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:55:40.6492672Z Building wheel for executorch (pyproject.toml) ... [?25l[?25hdone 2025-06-05T23:55:40.6494082Z Created wheel for executorch: filename=executorch-0.7.0a0+bd57234-cp310-cp310-linux_x86_64.whl size=9987128 sha256=f49e6640f1daad8a31e6a3211e65959734980c8e788b14401a3902782ca5d2ea 2025-06-05T23:55:40.6495854Z Stored in directory: /tmp/pip-ephem-wheel-cache-laj9u5za/wheels/9e/f0/2b/6a778c77421b91e006bef425e288a1e5c7c35b04c51317756b 2025-06-05T23:55:40.6496770Z Successfully built executorch 2025-06-05T23:55:45.3047786Z Installing collected packages: flatbuffers, tabulate, pyaml, protobuf, execnet, pytest, cattrs, pytest-xdist, pytest-rerunfailures, coremltools, executorch 2025-06-05T23:55:45.3049098Z [?25l 2025-06-05T23:55:45.3049629Z  changing mode of /opt/conda/envs/py_3.10/bin/tabulate to 755 2025-06-05T23:55:45.3050065Z 2025-06-05T23:55:45.3050379Z  changing mode of /opt/conda/envs/py_3.10/bin/pyaml to 755 2025-06-05T23:55:45.3050771Z 2025-06-05T23:55:45.3051241Z  ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:55:45.3051874Z  Attempting uninstall: pytest 2025-06-05T23:55:45.3052585Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:55:45.3053251Z  Found existing installation: pytest 7.2.0 2025-06-05T23:55:45.3054116Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:55:45.3054738Z  Uninstalling pytest-7.2.0: 2025-06-05T23:55:45.3055419Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:55:45.3056217Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:45.3057020Z  Removing file or directory /opt/conda/envs/py_3.10/bin/py.test 2025-06-05T23:55:45.3057801Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:45.3058564Z  Removing file or directory /opt/conda/envs/py_3.10/bin/pytest 2025-06-05T23:55:45.3059333Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:45.3060378Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/__pycache__/py.cpython-310.pyc 2025-06-05T23:55:45.3061431Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:45.3062202Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:45.3063113Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/_pytest/ 2025-06-05T23:55:45.3064040Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:45.3064915Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/py.py 2025-06-05T23:55:45.3065826Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:45.3066817Z  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:45.3067798Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:45.3068685Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pytest/ 2025-06-05T23:55:45.3069582Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:45.3070227Z  Successfully uninstalled pytest-7.2.0 2025-06-05T23:55:45.3070911Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:45.3072009Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:45.3072739Z  changing mode of /opt/conda/envs/py_3.10/bin/py.test to 755 2025-06-05T23:55:45.3073665Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:45.3074372Z  changing mode of /opt/conda/envs/py_3.10/bin/pytest to 755 2025-06-05T23:55:45.3075136Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:45.3075929Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━  7/11 [pytest-xdist] 2025-06-05T23:55:45.3076747Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:45.3077546Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:45.3078606Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:45.3079402Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:45.3080227Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:45.3081009Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:45.3081804Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:45.3082585Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:45.3083382Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:45.3084167Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:45.3085082Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:45.3085861Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:45.3086747Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:45.3087513Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:45.3088296Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:45.3089063Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:45.3089844Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:45.3090644Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:45.3091407Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:45.3092239Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:47.9935349Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:47.9936226Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:47.9937016Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:47.9937804Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:47.9938584Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:47.9939396Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:47.9940176Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:47.9940934Z  changing mode of /opt/conda/envs/py_3.10/bin/flatc to 755 2025-06-05T23:55:47.9941842Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:47.9942569Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11/11 [executorch] 2025-06-05T23:55:47.9943092Z [?25h 2025-06-05T23:55:47.9944560Z 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:47.9945918Z + pip list 2025-06-05T23:55:47.9946337Z Package Version Build Editable project location 2025-06-05T23:55:47.9947305Z ----------------------------- ------------------ ----- ----------------------------------- 2025-06-05T23:55:47.9947872Z aiohappyeyeballs 2.6.1 2025-06-05T23:55:47.9948299Z aiohttp 3.12.9 2025-06-05T23:55:47.9948820Z aiosignal 1.3.2 2025-06-05T23:55:47.9949215Z alabaster 0.7.16 2025-06-05T23:55:47.9949646Z antlr4-python3-runtime 4.9.3 2025-06-05T23:55:47.9950063Z async-timeout 5.0.1 2025-06-05T23:55:47.9950477Z attrs 25.3.0 2025-06-05T23:55:47.9950867Z babel 2.17.0 2025-06-05T23:55:47.9951283Z beautifulsoup4 4.13.4 2025-06-05T23:55:47.9951685Z blobfile 3.0.0 2025-06-05T23:55:47.9952087Z breathe 4.34.0 2025-06-05T23:55:47.9952477Z bs4 0.0.2 2025-06-05T23:55:47.9952872Z cattrs 25.1.1 2025-06-05T23:55:47.9953266Z certifi 2025.4.26 2025-06-05T23:55:47.9953705Z charset-normalizer 3.4.2 2025-06-05T23:55:47.9954104Z cmake 3.31.6 2025-06-05T23:55:47.9954507Z contourpy 1.3.2 2025-06-05T23:55:47.9954902Z coremltools 8.3.0 2025-06-05T23:55:47.9955310Z coverage 7.8.2 2025-06-05T23:55:47.9955701Z cycler 0.12.1 2025-06-05T23:55:47.9956084Z datasets 3.6.0 2025-06-05T23:55:47.9956478Z dill 0.3.8 2025-06-05T23:55:47.9956868Z docutils 0.16 2025-06-05T23:55:47.9957277Z exceptiongroup 1.3.0 2025-06-05T23:55:47.9957670Z execnet 2.1.1 2025-06-05T23:55:47.9958162Z executorch 0.7.0a0+bd57234 2025-06-05T23:55:47.9958611Z exhale 0.2.3 2025-06-05T23:55:47.9959002Z expecttest 0.1.6 2025-06-05T23:55:47.9959406Z filelock 3.18.0 2025-06-05T23:55:47.9959804Z flatbuffers 25.2.10 2025-06-05T23:55:47.9960223Z fonttools 4.58.1 2025-06-05T23:55:47.9960616Z frozenlist 1.6.2 2025-06-05T23:55:47.9961023Z fsspec 2025.3.0 2025-06-05T23:55:47.9961427Z hf_transfer 0.1.9 2025-06-05T23:55:47.9961829Z hf-xet 1.1.3 2025-06-05T23:55:47.9962226Z huggingface-hub 0.32.4 2025-06-05T23:55:47.9962648Z hypothesis 6.84.2 2025-06-05T23:55:47.9963040Z idna 3.10 2025-06-05T23:55:47.9963427Z imagesize 1.4.1 2025-06-05T23:55:47.9963828Z iniconfig 2.1.0 2025-06-05T23:55:47.9964212Z Jinja2 3.1.6 2025-06-05T23:55:47.9964610Z kagglehub 0.3.12 2025-06-05T23:55:47.9965005Z kiwisolver 1.4.8 2025-06-05T23:55:47.9965400Z lxml 5.4.0 2025-06-05T23:55:47.9965796Z markdown-it-py 2.2.0 2025-06-05T23:55:47.9966213Z MarkupSafe 3.0.2 2025-06-05T23:55:47.9966614Z matplotlib 3.10.3 2025-06-05T23:55:47.9967033Z mdit-py-plugins 0.3.5 2025-06-05T23:55:47.9967428Z mdurl 0.1.2 2025-06-05T23:55:47.9967836Z mpmath 1.3.0 2025-06-05T23:55:47.9968220Z multidict 6.4.4 2025-06-05T23:55:47.9968633Z multiprocess 0.70.16 2025-06-05T23:55:47.9969040Z myst-parser 0.18.1 2025-06-05T23:55:47.9969446Z networkx 3.4.2 2025-06-05T23:55:47.9969829Z numpy 2.2.6 2025-06-05T23:55:47.9970227Z nvidia-cublas-cu12 12.1.3.1 2025-06-05T23:55:47.9970672Z nvidia-cuda-cupti-cu12 12.1.105 2025-06-05T23:55:47.9971108Z nvidia-cuda-nvrtc-cu12 12.1.105 2025-06-05T23:55:47.9971565Z nvidia-cuda-runtime-cu12 12.1.105 2025-06-05T23:55:47.9971999Z nvidia-cudnn-cu12 9.1.0.70 2025-06-05T23:55:47.9972433Z nvidia-cufft-cu12 11.0.2.54 2025-06-05T23:55:47.9973066Z nvidia-curand-cu12 10.3.2.106 2025-06-05T23:55:47.9973637Z nvidia-cusolver-cu12 11.4.5.107 2025-06-05T23:55:47.9974182Z nvidia-cusparse-cu12 12.1.0.106 2025-06-05T23:55:47.9974725Z nvidia-nccl-cu12 2.20.5 2025-06-05T23:55:47.9984030Z nvidia-nvjitlink-cu12 12.9.41 2025-06-05T23:55:47.9984722Z nvidia-nvtx-cu12 12.1.105 2025-06-05T23:55:47.9985251Z omegaconf 2.3.0 2025-06-05T23:55:47.9985679Z packaging 25.0 2025-06-05T23:55:47.9986084Z pandas 2.2.3 2025-06-05T23:55:47.9986503Z parameterized 0.9.0 2025-06-05T23:55:47.9986904Z pillow 11.2.1 2025-06-05T23:55:47.9987317Z pip 25.1 2025-06-05T23:55:47.9987709Z pluggy 1.6.0 2025-06-05T23:55:47.9988119Z propcache 0.3.1 2025-06-05T23:55:47.9988516Z protobuf 6.31.1 2025-06-05T23:55:47.9988952Z psutil 7.0.0 2025-06-05T23:55:47.9989351Z pyaml 25.5.0 2025-06-05T23:55:47.9989754Z pyarrow 20.0.0 2025-06-05T23:55:47.9990163Z pycryptodomex 3.23.0 2025-06-05T23:55:47.9990582Z Pygments 2.19.1 2025-06-05T23:55:47.9990978Z pyparsing 3.2.3 2025-06-05T23:55:47.9991382Z pytest 8.4.0 2025-06-05T23:55:47.9991770Z pytest-cov 4.1.0 2025-06-05T23:55:47.9992181Z pytest-rerunfailures 15.1 2025-06-05T23:55:47.9992603Z pytest-xdist 3.7.0 2025-06-05T23:55:47.9993022Z python-dateutil 2.9.0.post0 2025-06-05T23:55:47.9993642Z pytorch_sphinx_theme 0.0.24 /opt/conda/src/pytorch-sphinx-theme 2025-06-05T23:55:47.9994242Z pytorch_tokenizers 0.1.0 2025-06-05T23:55:47.9994651Z pytz 2025.2 2025-06-05T23:55:47.9995039Z PyYAML 6.0.1 2025-06-05T23:55:47.9995447Z regex 2024.11.6 2025-06-05T23:55:47.9995847Z requests 2.32.3 2025-06-05T23:55:47.9996268Z ruamel.yaml 0.17.32 2025-06-05T23:55:47.9996688Z ruamel.yaml.clib 0.2.12 2025-06-05T23:55:47.9997112Z safetensors 0.5.3 2025-06-05T23:55:47.9997515Z sentencepiece 0.2.0 2025-06-05T23:55:47.9997927Z setuptools 78.1.1 2025-06-05T23:55:47.9998318Z six 1.17.0 2025-06-05T23:55:47.9998726Z snowballstemmer 3.0.1 2025-06-05T23:55:47.9999137Z sortedcontainers 2.4.0 2025-06-05T23:55:47.9999550Z soupsieve 2.7 2025-06-05T23:55:47.9999935Z Sphinx 5.3.0 2025-06-05T23:55:48.0000333Z sphinx-copybutton 0.5.0 2025-06-05T23:55:48.0000748Z sphinx_design 0.4.1 2025-06-05T23:55:48.0001149Z sphinx-gallery 0.14.0 2025-06-05T23:55:48.0001574Z sphinx_reredirects 0.1.4 2025-06-05T23:55:48.0002004Z sphinxcontrib-applehelp 2.0.0 2025-06-05T23:55:48.0002447Z sphinxcontrib-devhelp 2.0.0 2025-06-05T23:55:48.0002873Z sphinxcontrib-htmlhelp 2.1.0 2025-06-05T23:55:48.0003317Z sphinxcontrib-jsmath 1.0.1 2025-06-05T23:55:48.0003737Z sphinxcontrib-qthelp 2.0.0 2025-06-05T23:55:48.0004186Z sphinxcontrib-serializinghtml 2.0.0 2025-06-05T23:55:48.0004610Z sympy 1.14.0 2025-06-05T23:55:48.0005010Z tabulate 0.9.0 2025-06-05T23:55:48.0005397Z tiktoken 0.9.0 2025-06-05T23:55:48.0005790Z timm 1.0.7 2025-06-05T23:55:48.0006178Z tokenizers 0.21.1 2025-06-05T23:55:48.0006566Z tomli 2.0.1 2025-06-05T23:55:48.0006993Z torch 2.8.0a0+git5616fa4 2025-06-05T23:55:48.0007465Z torchao 0.12.0+gitbc68b11 2025-06-05T23:55:48.0007943Z torchaudio 2.6.0a0+1a8f621 2025-06-05T23:55:48.0008730Z torchdata 0.11.0 2025-06-05T23:55:48.0009148Z torchsr 1.0.4 2025-06-05T23:55:48.0009535Z torchtune 0.6.1 2025-06-05T23:55:48.0010092Z torchvision 0.22.0a0+966da7e 2025-06-05T23:55:48.0010522Z tqdm 4.67.1 2025-06-05T23:55:48.0010925Z transformers 4.47.1 2025-06-05T23:55:48.0011344Z triton 3.0.0 1 2025-06-05T23:55:48.0011799Z typing_extensions 4.14.0 2025-06-05T23:55:48.0012192Z tzdata 2025.2 2025-06-05T23:55:48.0012596Z urllib3 2.4.0 2025-06-05T23:55:48.0012980Z wheel 0.45.1 2025-06-05T23:55:48.0013383Z xxhash 3.5.0 2025-06-05T23:55:48.0013910Z yarl 1.20.0 2025-06-05T23:55:48.0014334Z zstd 1.5.5.1 2025-06-05T23:55:48.0014750Z + build_executorch_runner cmake Release 2025-06-05T23:55:48.0015177Z + [[ cmake == \b\u\c\k\2 ]] 2025-06-05T23:55:48.0015550Z + [[ cmake == \c\m\a\k\e ]] 2025-06-05T23:55:48.0015932Z + build_executorch_runner_cmake Release 2025-06-05T23:55:48.0016380Z + CMAKE_OUTPUT_DIR=cmake-out 2025-06-05T23:55:48.0016766Z + clean_executorch_install_folders 2025-06-05T23:55:48.0017200Z + ./install_executorch.sh --clean 2025-06-05T23:55:48.0017607Z Cleaning build artifacts... 2025-06-05T23:55:48.0018002Z Cleaning pip-out/... 2025-06-05T23:55:48.0018361Z Done cleaning build artifacts. 2025-06-05T23:55:48.0018754Z + mkdir cmake-out 2025-06-05T23:55:48.0019074Z + pushd cmake-out 2025-06-05T23:55:48.0019476Z /pytorch/executorch/cmake-out /pytorch/executorch 2025-06-05T23:55:48.0019959Z + [[ Release == \D\e\b\u\g ]] 2025-06-05T23:55:48.0020322Z + CXXFLAGS= 2025-06-05T23:55:48.0020620Z + CXXFLAGS= 2025-06-05T23:55:48.0021075Z + retry cmake -DPYTHON_EXECUTABLE=python -DCMAKE_BUILD_TYPE=Release .. 2025-06-05T23:55:48.0021786Z + cmake -DPYTHON_EXECUTABLE=python -DCMAKE_BUILD_TYPE=Release .. 2025-06-05T23:55:48.0022380Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:55:48.0022906Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:55:48.0023382Z -- Detecting C compiler ABI info 2025-06-05T23:55:48.0023820Z -- Detecting C compiler ABI info - done 2025-06-05T23:55:48.0024344Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:55:48.0024877Z -- Detecting C compile features 2025-06-05T23:55:48.0025290Z -- Detecting C compile features - done 2025-06-05T23:55:48.0025739Z -- Detecting CXX compiler ABI info 2025-06-05T23:55:52.8525386Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:55:52.8526492Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:55:52.8527518Z -- Detecting CXX compile features 2025-06-05T23:55:52.8528281Z -- Detecting CXX compile features - done 2025-06-05T23:55:52.8528864Z -- --- Configured Options --- 2025-06-05T23:55:52.8529131Z 2025-06-05T23:55:52.8529319Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:55:52.8530124Z -- CMAKE_SYSTEM_PROCESSOR : x86_64 2025-06-05T23:55:52.8530864Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:55:52.8531716Z -- PYTHON_EXECUTABLE : python 2025-06-05T23:55:52.8532559Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-06-05T23:55:52.8533366Z -- CMAKE_TOOLCHAIN_FILE x (unset) 2025-06-05T23:55:52.8534261Z -- BUCK2 x (unset) 2025-06-05T23:55:52.8535056Z -- EXECUTORCH_ENABLE_LOGGING : OFF 2025-06-05T23:55:52.8535933Z -- EXECUTORCH_BUILD_COREML : OFF 2025-06-05T23:55:52.8536808Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:55:52.8537730Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-06-05T23:55:52.8539041Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-06-05T23:55:52.8540382Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:55:52.8541519Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:55:52.8542419Z -- EXECUTORCH_ENABLE_EVENT_TRACER : OFF 2025-06-05T23:55:52.8543269Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-06-05T23:55:52.8544331Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-06-05T23:55:52.8545194Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : OFF 2025-06-05T23:55:52.8546122Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : OFF 2025-06-05T23:55:52.8547014Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : OFF 2025-06-05T23:55:52.8547921Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : OFF 2025-06-05T23:55:52.8548821Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : OFF 2025-06-05T23:55:52.8549733Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:55:52.8550618Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : OFF 2025-06-05T23:55:52.8551483Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : OFF 2025-06-05T23:55:52.8552375Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : OFF 2025-06-05T23:55:52.8553270Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : OFF 2025-06-05T23:55:52.8554177Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:55:52.8555085Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:55:52.8556002Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:55:52.8556880Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:55:52.8557791Z -- EXECUTORCH_BUILD_PYBIND : OFF 2025-06-05T23:55:52.8558665Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:55:52.8559560Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : OFF 2025-06-05T23:55:52.8560436Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : OFF 2025-06-05T23:55:52.8561321Z -- EXECUTORCH_BUILD_DEVTOOLS : OFF 2025-06-05T23:55:52.8562379Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:55:52.8563240Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:55:52.8564084Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:55:52.8564961Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:55:52.8565847Z -- EXECUTORCH_BUILD_XNNPACK : OFF 2025-06-05T23:55:52.8566732Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:55:52.8567630Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:55:52.8568428Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:55:52.8569307Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:55:52.8570195Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:55:52.8571103Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:55:52.8572036Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:55:52.8572984Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-06-05T23:55:52.8574005Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-06-05T23:55:52.8574896Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : ON 2025-06-05T23:55:52.8575841Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:55:52.8576798Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:55:52.8577771Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:55:52.8579994Z -- -------------------------- 2025-06-05T23:55:52.8581080Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:55:52.8583113Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:55:52.8584692Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:52.8585690Z CMake. 2025-06-05T23:55:52.8585967Z 2025-06-05T23:55:52.8586501Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:52.8587833Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:52.8589049Z to work with policies introduced by or earlier. 2025-06-05T23:55:52.8589711Z 2025-06-05T23:55:52.8590045Z  2025-06-05T23:55:52.8590721Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:55:52.8592061Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:55:52.8593026Z -- Setting Clang compiler options 2025-06-05T23:55:52.8594826Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:55:52.8597474Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:55:52.8599125Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:52.8600107Z CMake. 2025-06-05T23:55:52.8600401Z 2025-06-05T23:55:52.8600896Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:52.8602174Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:52.8603346Z to work with policies introduced by or earlier. 2025-06-05T23:55:52.8603937Z 2025-06-05T23:55:52.8604243Z  2025-06-05T23:55:52.8605660Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:55:52.8607397Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:52.8608417Z CMake. 2025-06-05T23:55:52.8608703Z 2025-06-05T23:55:52.8609194Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:52.8610480Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:52.8611669Z to work with policies introduced by or earlier. 2025-06-05T23:55:52.8612290Z 2025-06-05T23:55:52.8612610Z  2025-06-05T23:55:52.8613169Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-05T23:55:52.8614111Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-06-05T23:55:52.8614946Z -- Found Threads: TRUE 2025-06-05T23:55:52.8616544Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:55:52.8618236Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:52.8619040Z CMake. 2025-06-05T23:55:52.8619285Z 2025-06-05T23:55:52.8619718Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:52.8620821Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:52.8621718Z to work with policies introduced by or earlier. 2025-06-05T23:55:52.8622169Z 2025-06-05T23:55:52.8622417Z  2025-06-05T23:55:52.8622822Z -- Resolved buck2 as buck2. 2025-06-05T23:55:52.8623317Z -- Killing buck2 daemon 2025-06-05T23:55:52.8623766Z 'buck2 killall' 2025-06-05T23:55:52.8624201Z -- executorch: Generating source lists 2025-06-05T23:55:52.8625151Z -- executorch: Generating source file list /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:55:52.8626403Z -- executorch: Using sources file /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:55:52.8627311Z -- Generating operator lib: 2025-06-05T23:55:52.8627824Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:55:52.8628575Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:55:52.8629395Z -- ROOT_OPS: 2025-06-05T23:55:52.8629820Z -- INCLUDE_ALL_OPS: 2025-06-05T23:55:52.8632072Z 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:52.8634037Z -- Generating kernel bindings: 2025-06-05T23:55:52.8634595Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:55:52.8635361Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:55:52.8636282Z -- CUSTOM_OPS_YAML: 2025-06-05T23:55:52.8636854Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:55:52.8640140Z 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:52.8643302Z -- Generating operator lib: 2025-06-05T23:55:52.8643876Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:55:52.8644420Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:55:52.8644988Z -- DEPS: executorch_core 2025-06-05T23:55:52.8646065Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:55:52.8647320Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:52.8648097Z CMake. 2025-06-05T23:55:52.8648377Z 2025-06-05T23:55:52.8648874Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:52.8650057Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:52.8651111Z to work with policies introduced by or earlier. 2025-06-05T23:55:52.8651694Z 2025-06-05T23:55:52.8651923Z  2025-06-05T23:55:52.8652252Z -- Looking for C++ include unistd.h 2025-06-05T23:55:52.8652705Z -- Looking for C++ include unistd.h - found 2025-06-05T23:55:52.8653183Z -- Looking for C++ include stdint.h 2025-06-05T23:55:52.8653813Z -- Looking for C++ include stdint.h - found 2025-06-05T23:55:52.8654548Z -- Looking for C++ include inttypes.h 2025-06-05T23:55:52.8655223Z -- Looking for C++ include inttypes.h - found 2025-06-05T23:55:52.8655938Z -- Looking for C++ include sys/types.h 2025-06-05T23:55:52.8656632Z -- Looking for C++ include sys/types.h - found 2025-06-05T23:55:52.8657369Z -- Looking for C++ include sys/stat.h 2025-06-05T23:55:52.8658058Z -- Looking for C++ include sys/stat.h - found 2025-06-05T23:55:52.8658777Z -- Looking for C++ include fnmatch.h 2025-06-05T23:55:52.8659462Z -- Looking for C++ include fnmatch.h - found 2025-06-05T23:55:52.8660155Z -- Looking for C++ include stddef.h 2025-06-05T23:55:52.8660851Z -- Looking for C++ include stddef.h - found 2025-06-05T23:55:52.8661549Z -- Check size of uint32_t 2025-06-05T23:55:52.8662141Z -- Check size of uint32_t - done 2025-06-05T23:55:52.8662757Z -- Looking for strtoll 2025-06-05T23:55:52.8663342Z -- Looking for strtoll - found 2025-06-05T23:55:52.8663958Z -- Configuring done (5.4s) 2025-06-05T23:55:52.8664568Z -- Generating done (0.1s) 2025-06-05T23:55:52.8665366Z -- Build files have been written to: /pytorch/executorch/cmake-out 2025-06-05T23:55:52.8666300Z + popd 2025-06-05T23:55:52.8666754Z /pytorch/executorch 2025-06-05T23:55:52.8667291Z ++ uname 2025-06-05T23:55:52.8667754Z + '[' Linux == Darwin ']' 2025-06-05T23:55:52.8668284Z ++ nproc 2025-06-05T23:55:52.8668663Z + CMAKE_JOBS=7 2025-06-05T23:55:52.8669188Z + cmake --build cmake-out -j 7 2025-06-05T23:55:52.8670259Z [ 0%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags.cc.o 2025-06-05T23:55:52.8671725Z [ 1%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_reporting.cc.o 2025-06-05T23:55:52.8673479Z [ 1%] Creating directories for 'flatbuffers_external_project' 2025-06-05T23:55:52.8674402Z [ 1%] Creating directories for 'flatcc_external_project' 2025-06-05T23:55:53.6919186Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-06-05T23:55:53.6921251Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-06-05T23:55:53.6922640Z [ 2%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-06-05T23:55:53.6923687Z [ 2%] No download step for 'flatbuffers_external_project' 2025-06-05T23:55:53.6924406Z [ 2%] No download step for 'flatcc_external_project' 2025-06-05T23:55:53.6925096Z [ 2%] No update step for 'flatbuffers_external_project' 2025-06-05T23:55:53.6925786Z [ 3%] No update step for 'flatcc_external_project' 2025-06-05T23:55:53.6926688Z [ 3%] No patch step for 'flatbuffers_external_project' 2025-06-05T23:55:53.6927385Z [ 3%] No patch step for 'flatcc_external_project' 2025-06-05T23:55:53.6928291Z [ 4%] Performing configure step for 'flatbuffers_external_project' 2025-06-05T23:55:53.6928942Z CMake Warning: 2025-06-05T23:55:53.6929379Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:55:53.6929762Z 2025-06-05T23:55:53.6929917Z  2025-06-05T23:55:53.6930270Z fatal: No names found, cannot describe anything. 2025-06-05T23:55:53.6930897Z CMake Warning at CMake/Version.cmake:32 (message): 2025-06-05T23:55:53.6931416Z git describe failed with exit code: 128 2025-06-05T23:55:53.6931719Z 2025-06-05T23:55:53.6931961Z Make sure you cloned with tags or run 'git fetch --tags'. 2025-06-05T23:55:53.6932482Z Call Stack (most recent call first): 2025-06-05T23:55:53.6932909Z CMakeLists.txt:5 (include) 2025-06-05T23:55:53.6933161Z 2025-06-05T23:55:53.6933322Z  2025-06-05T23:55:53.6933926Z [ 4%] Performing configure step for 'flatcc_external_project' 2025-06-05T23:55:53.6934545Z -- Proceeding with version: 24.3.25.0 2025-06-05T23:55:53.6935016Z CMake Warning: 2025-06-05T23:55:53.6935576Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:55:53.6935953Z 2025-06-05T23:55:53.6936098Z  2025-06-05T23:55:53.6936666Z CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:55:53.6937428Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:53.6938009Z CMake. 2025-06-05T23:55:53.6938178Z 2025-06-05T23:55:53.6938475Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:53.6939247Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:53.6939903Z to work with policies introduced by or earlier. 2025-06-05T23:55:53.6940258Z 2025-06-05T23:55:53.6940422Z  2025-06-05T23:55:53.6941172Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-06-05T23:55:53.6942777Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-06-05T23:55:53.6945124Z [ 4%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-06-05T23:55:53.6946671Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:55:53.6948317Z [ 5%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-06-05T23:55:53.6950029Z -- Detecting C compiler ABI info 2025-06-05T23:55:53.6951822Z [ 6%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_completions.cc.o 2025-06-05T23:55:53.6954216Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-06-05T23:55:53.6956602Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-06-05T23:55:53.6958858Z [ 7%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-06-05T23:55:53.6961173Z [ 7%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o 2025-06-05T23:55:53.6962097Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:55:53.6962718Z -- Detecting CXX compiler ABI info 2025-06-05T23:55:53.6964269Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-06-05T23:55:53.6965911Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-06-05T23:55:53.6967947Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o 2025-06-05T23:55:53.6969376Z [ 8%] Linking CXX static library libgflags_nothreads.a 2025-06-05T23:55:53.6970083Z [ 9%] Linking C static library libpthreadpool.a 2025-06-05T23:55:53.6970694Z -- Detecting C compiler ABI info - done 2025-06-05T23:55:53.6971188Z [ 9%] Built target gflags_nothreads_static 2025-06-05T23:55:53.6971834Z [ 9%] Built target pthreadpool 2025-06-05T23:55:53.6972835Z [ 10%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o 2025-06-05T23:55:53.6974268Z [ 10%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o 2025-06-05T23:55:53.6975620Z [ 10%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/init.c.o 2025-06-05T23:55:53.6976984Z [ 10%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/info.c.o 2025-06-05T23:55:53.6977942Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:55:53.6978657Z -- Detecting C compile features 2025-06-05T23:55:53.6979101Z -- Detecting C compile features - done 2025-06-05T23:55:53.6979631Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:55:53.6980255Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:55:53.6980790Z -- Setting Clang compiler options 2025-06-05T23:55:53.6981725Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:55:53.6982669Z -- Configuring done (0.3s) 2025-06-05T23:55:53.6983554Z [ 10%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o 2025-06-05T23:55:53.6984345Z -- Generating done (0.0s) 2025-06-05T23:55:53.6985236Z -- Build files have been written to: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/src/flatcc_external_project-build 2025-06-05T23:55:53.6986386Z [ 11%] Performing build step for 'flatcc_external_project' 2025-06-05T23:55:53.6987500Z [ 12%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/vendor.c.o 2025-06-05T23:55:53.6988811Z [ 13%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o 2025-06-05T23:55:53.6990237Z [ 13%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o 2025-06-05T23:55:53.6992004Z [ 3%] Building C object src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:55:53.6993088Z [ 13%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o 2025-06-05T23:55:53.6994391Z [ 13%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/uarch.c.o 2025-06-05T23:55:53.6995282Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:55:53.6995841Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:55:53.6996395Z -- Detecting CXX compile features 2025-06-05T23:55:53.6996833Z -- Detecting CXX compile features - done 2025-06-05T23:55:53.6997793Z [ 14%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o 2025-06-05T23:55:53.6999132Z [ 14%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/name.c.o 2025-06-05T23:55:53.7000432Z -- Looking for strtof_l 2025-06-05T23:55:53.7001088Z [ 6%] Building C object src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:55:53.7002096Z [ 9%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/str_set.c.o 2025-06-05T23:55:53.7003192Z [ 12%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/ptr_set.c.o 2025-06-05T23:55:53.7004276Z [ 15%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/symbol_table.c.o 2025-06-05T23:55:53.7005695Z [ 14%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:55:53.7007745Z [ 14%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/topology.c.o 2025-06-05T23:55:53.7009557Z [ 18%] Building C object src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:55:53.7010980Z [ 21%] Building C object src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:55:53.7012512Z [ 24%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:55:53.7015351Z [ 27%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/scope_table.c.o 2025-06-05T23:55:53.7017250Z [ 15%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/isa.c.o 2025-06-05T23:55:53.7019095Z [ 15%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:55:53.7021268Z [ 15%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o 2025-06-05T23:55:53.7023233Z [ 16%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:55:53.7025022Z [ 30%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/name_table.c.o 2025-06-05T23:55:53.7026082Z [ 33%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:55:53.7026751Z -- Looking for strtof_l - found 2025-06-05T23:55:53.7027156Z -- Looking for strtoull_l 2025-06-05T23:55:53.7028722Z [ 16%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/init.c.o 2025-06-05T23:55:53.7031505Z [ 16%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:55:53.7034007Z [ 36%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/schema_table.c.o 2025-06-05T23:55:53.7036269Z [ 16%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-06-05T23:55:54.5374890Z [ 16%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-06-05T23:55:54.5377811Z [ 17%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:55:54.5380474Z [ 39%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:55:54.5382916Z [ 17%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/init.c.o 2025-06-05T23:55:54.5384611Z [ 39%] Built target flatccrt 2025-06-05T23:55:54.5386442Z [ 17%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:55:54.5388886Z [ 42%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/value_set.c.o 2025-06-05T23:55:54.5390723Z [ 45%] Building C object src/compiler/CMakeFiles/flatcc.dir/fileio.c.o 2025-06-05T23:55:54.5392348Z [ 48%] Building C object src/compiler/CMakeFiles/flatcc.dir/parser.c.o 2025-06-05T23:55:54.5394466Z [ 18%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-06-05T23:55:54.5397167Z [ 19%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/smallfile.c.o 2025-06-05T23:55:54.5399911Z [ 19%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-06-05T23:55:54.5402040Z [ 51%] Building C object src/compiler/CMakeFiles/flatcc.dir/semantics.c.o 2025-06-05T23:55:54.5404664Z [ 19%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/multiline.c.o 2025-06-05T23:55:54.5406412Z -- Looking for strtoull_l - found 2025-06-05T23:55:54.5407314Z -- Looking for realpath 2025-06-05T23:55:54.5409049Z [ 19%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/cpulist.c.o 2025-06-05T23:55:54.5411921Z [ 20%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/processors.c.o 2025-06-05T23:55:54.5414221Z [ 54%] Building C object src/compiler/CMakeFiles/flatcc.dir/coerce.c.o 2025-06-05T23:55:54.5415604Z [ 20%] Linking C static library libcpuinfo.a 2025-06-05T23:55:54.5416972Z [ 57%] Building C object src/compiler/CMakeFiles/flatcc.dir/flatcc.c.o 2025-06-05T23:55:54.5418612Z [ 60%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c.c.o 2025-06-05T23:55:54.5419751Z [ 20%] Built target cpuinfo 2025-06-05T23:55:54.5421084Z [ 63%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_reader.c.o 2025-06-05T23:55:54.5422897Z [ 66%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sort.c.o 2025-06-05T23:55:54.5424479Z [ 20%] Linking C static library libcpuinfo_internals.a 2025-06-05T23:55:54.5426073Z [ 69%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_builder.c.o 2025-06-05T23:55:54.5427962Z [ 72%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_verifier.c.o 2025-06-05T23:55:54.5429241Z [ 20%] Built target cpuinfo_internals 2025-06-05T23:55:54.5430638Z [ 75%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sorter.c.o 2025-06-05T23:55:54.5432573Z [ 78%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_parser.c.o 2025-06-05T23:55:54.5434553Z [ 81%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_printer.c.o 2025-06-05T23:55:54.5436525Z [ 84%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/builder.c.o 2025-06-05T23:55:54.5438450Z [ 87%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/emitter.c.o 2025-06-05T23:55:54.5440333Z [ 90%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/refmap.c.o 2025-06-05T23:55:54.5441620Z -- Looking for realpath - found 2025-06-05T23:55:54.5442458Z -- CMAKE_CXX_FLAGS: "-DFLATBUFFERS_MAX_ALIGNMENT=1024" 2025-06-05T23:55:54.5443398Z -- Configuring done (1.2s) 2025-06-05T23:55:54.5444072Z -- Generating done (0.0s) 2025-06-05T23:55:54.5445824Z -- Build files have been written to: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/src/flatbuffers_external_project-build 2025-06-05T23:55:54.5448204Z [ 20%] Performing build step for 'flatbuffers_external_project' 2025-06-05T23:55:54.5449768Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o 2025-06-05T23:55:54.5451353Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o 2025-06-05T23:55:54.5452953Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o 2025-06-05T23:55:54.5454594Z [ 10%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o 2025-06-05T23:55:54.5456164Z [ 13%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_binary.cpp.o 2025-06-05T23:55:54.5457777Z [ 15%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o 2025-06-05T23:55:54.5459612Z [ 93%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatcc.a 2025-06-05T23:55:54.5460924Z [ 93%] Built target flatcc 2025-06-05T23:55:54.5462133Z [ 96%] Building C object src/cli/CMakeFiles/flatcc_cli.dir/flatcc_cli.c.o 2025-06-05T23:55:54.5463877Z [100%] Linking C executable /pytorch/executorch/third-party/flatcc/bin/flatcc 2025-06-05T23:55:54.5465657Z [ 18%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_csharp.cpp.o 2025-06-05T23:55:54.5467506Z [ 21%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o 2025-06-05T23:55:54.5469173Z [ 23%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin.cpp.o 2025-06-05T23:55:54.5471011Z [ 26%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin_kmp.cpp.o 2025-06-05T23:55:54.5472630Z [ 28%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o 2025-06-05T23:55:54.5473720Z [100%] Built target flatcc_cli 2025-06-05T23:55:54.5474961Z [ 31%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_java.cpp.o 2025-06-05T23:55:54.5476498Z [ 21%] Performing install step for 'flatcc_external_project' 2025-06-05T23:55:54.5477559Z [ 21%] Built target flatccrt 2025-06-05T23:55:54.5478237Z [ 93%] Built target flatcc 2025-06-05T23:55:54.5479087Z [100%] Built target flatcc_cli 2025-06-05T23:55:54.5479892Z Install the project... 2025-06-05T23:55:54.5480637Z -- Install configuration: "" 2025-06-05T23:55:54.5481937Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc 2025-06-05T23:55:54.5484036Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc.h 2025-06-05T23:55:54.5486289Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_accessors.h 2025-06-05T23:55:54.5488629Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_alloc.h 2025-06-05T23:55:54.5490862Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_assert.h 2025-06-05T23:55:54.5493173Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_builder.h 2025-06-05T23:55:54.5495543Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_emitter.h 2025-06-05T23:55:54.5497883Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_endian.h 2025-06-05T23:55:54.5500205Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_epilogue.h 2025-06-05T23:55:54.5502644Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_flatbuffers.h 2025-06-05T23:55:54.5505085Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_identifier.h 2025-06-05T23:55:54.5507458Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_iov.h 2025-06-05T23:55:54.5510075Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_json_parser.h 2025-06-05T23:55:54.5512523Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_json_printer.h 2025-06-05T23:55:54.5514989Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_portable.h 2025-06-05T23:55:54.5517405Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_prologue.h 2025-06-05T23:55:54.5519817Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_refmap.h 2025-06-05T23:55:54.5522193Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_rtconfig.h 2025-06-05T23:55:54.5524557Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_types.h 2025-06-05T23:55:54.5526921Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_unaligned.h 2025-06-05T23:55:54.5529352Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_verifier.h 2025-06-05T23:55:54.5531719Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_version.h 2025-06-05T23:55:54.5534342Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable 2025-06-05T23:55:54.5536632Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/LICENSE 2025-06-05T23:55:54.5539229Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/README.md 2025-06-05T23:55:54.5541680Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_math.h 2025-06-05T23:55:54.5544135Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_parse.h 2025-06-05T23:55:54.5546668Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_print.h 2025-06-05T23:55:55.0656729Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include 2025-06-05T23:55:55.0659198Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/README 2025-06-05T23:55:55.0661660Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/linux 2025-06-05T23:55:55.0664199Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/linux/endian.h 2025-06-05T23:55:55.0666814Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std 2025-06-05T23:55:55.0669464Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/inttypes.h 2025-06-05T23:55:55.0672186Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdalign.h 2025-06-05T23:55:55.0674939Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdbool.h 2025-06-05T23:55:55.0677635Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdint.h 2025-06-05T23:55:55.0682805Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/paligned_alloc.h 2025-06-05T23:55:55.0685401Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pattributes.h 2025-06-05T23:55:55.0687839Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pbase64.h 2025-06-05T23:55:55.0690247Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pcrt.h 2025-06-05T23:55:55.0692654Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic.h 2025-06-05T23:55:55.0695330Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_pop.h 2025-06-05T23:55:55.0697937Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_push.h 2025-06-05T23:55:55.0700496Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pendian.h 2025-06-05T23:55:55.0703076Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pendian_detect.h 2025-06-05T23:55:55.0705583Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pinline.h 2025-06-05T23:55:55.0708069Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pinttypes.h 2025-06-05T23:55:55.0710557Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pmemaccess.h 2025-06-05T23:55:55.0713335Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/portable.h 2025-06-05T23:55:55.0715890Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/portable_basic.h 2025-06-05T23:55:55.0718593Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pparsefp.h 2025-06-05T23:55:55.0721017Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pparseint.h 2025-06-05T23:55:55.0723515Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pprintfp.h 2025-06-05T23:55:55.0725980Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pprintint.h 2025-06-05T23:55:55.0728438Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/prestrict.h 2025-06-05T23:55:55.0730986Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert.h 2025-06-05T23:55:55.0733684Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert_scope.h 2025-06-05T23:55:55.0736389Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdalign.h 2025-06-05T23:55:55.0738873Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdbool.h 2025-06-05T23:55:55.0741325Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdint.h 2025-06-05T23:55:55.0743804Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/punaligned.h 2025-06-05T23:55:55.0746219Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pversion.h 2025-06-05T23:55:55.0748658Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pwarnings.h 2025-06-05T23:55:55.0751014Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection 2025-06-05T23:55:55.0753336Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/README 2025-06-05T23:55:55.0756017Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_builder.h 2025-06-05T23:55:55.0758969Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_reader.h 2025-06-05T23:55:55.0761829Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_builder.h 2025-06-05T23:55:55.0764531Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_reader.h 2025-06-05T23:55:55.0767266Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_verifier.h 2025-06-05T23:55:55.0769734Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support 2025-06-05T23:55:55.0772005Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/README 2025-06-05T23:55:55.0774416Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/cdump.h 2025-06-05T23:55:55.0776843Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/elapsed.h 2025-06-05T23:55:55.0779459Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/hexdump.h 2025-06-05T23:55:55.0781883Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/readfile.h 2025-06-05T23:55:55.0784352Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/lib/libflatccrt.a 2025-06-05T23:55:55.0786300Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/lib/libflatcc.a 2025-06-05T23:55:55.0788421Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/bin/flatcc 2025-06-05T23:55:55.0790247Z [ 21%] Completed 'flatcc_external_project' 2025-06-05T23:55:55.0791153Z [ 21%] Built target flatcc_external_project 2025-06-05T23:55:55.0792433Z [ 34%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_ts.cpp.o 2025-06-05T23:55:55.0794291Z [ 21%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:55:55.0796495Z [ 21%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:55:55.0798676Z [ 22%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:55:55.0800515Z [ 36%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o 2025-06-05T23:55:55.0802431Z [ 22%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:55:55.0804690Z [ 22%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:55:55.0806678Z [ 39%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o 2025-06-05T23:55:55.0808352Z [ 42%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o 2025-06-05T23:55:55.0810022Z [ 44%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o 2025-06-05T23:55:55.0811653Z [ 47%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o 2025-06-05T23:55:55.0813656Z [ 22%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:55:55.0815717Z [ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o 2025-06-05T23:55:55.0817468Z [ 52%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o 2025-06-05T23:55:55.0819413Z [ 23%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:55:55.0820785Z [ 23%] Built target flatccrt 2025-06-05T23:55:55.0821944Z [ 55%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_swift.cpp.o 2025-06-05T23:55:55.0823740Z [ 57%] Building CXX object CMakeFiles/flatc.dir/src/file_name_saving_file_manager.cpp.o 2025-06-05T23:55:55.0825591Z [ 60%] Building CXX object CMakeFiles/flatc.dir/src/file_binary_writer.cpp.o 2025-06-05T23:55:55.0827287Z [ 63%] Building CXX object CMakeFiles/flatc.dir/src/file_writer.cpp.o 2025-06-05T23:55:55.0828847Z [ 65%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o 2025-06-05T23:55:55.0830400Z [ 68%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o 2025-06-05T23:55:57.0378667Z [ 71%] Building CXX object CMakeFiles/flatc.dir/src/binary_annotator.cpp.o 2025-06-05T23:55:57.0380841Z [ 73%] Building CXX object CMakeFiles/flatc.dir/src/annotated_binary_text_gen.cpp.o 2025-06-05T23:55:57.0382753Z [ 76%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_lua.cpp.o 2025-06-05T23:55:57.0384481Z [ 78%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_nim.cpp.o 2025-06-05T23:55:57.0386213Z [ 81%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o 2025-06-05T23:55:57.0388186Z [ 84%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o 2025-06-05T23:55:57.0390206Z [ 86%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o 2025-06-05T23:55:57.0392297Z [ 89%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o 2025-06-05T23:55:57.0394431Z [ 92%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/python_generator.cc.o 2025-06-05T23:55:57.0397483Z [ 94%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/swift_generator.cc.o 2025-06-05T23:55:57.0399592Z [ 97%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/ts_generator.cc.o 2025-06-05T23:55:57.0401404Z [100%] Linking CXX executable flatc 2025-06-05T23:55:57.0402335Z [100%] Built target flatc 2025-06-05T23:55:57.0403621Z [ 23%] Performing install step for 'flatbuffers_external_project' 2025-06-05T23:55:57.0404814Z [100%] Built target flatc 2025-06-05T23:55:57.0405680Z Install the project... 2025-06-05T23:55:57.0406486Z -- Install configuration: "" 2025-06-05T23:55:57.0408004Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers 2025-06-05T23:55:57.0410475Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/allocator.h 2025-06-05T23:55:57.0413051Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/array.h 2025-06-05T23:55:57.0415699Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/base.h 2025-06-05T23:55:57.0418236Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/buffer.h 2025-06-05T23:55:57.0420811Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/buffer_ref.h 2025-06-05T23:55:57.0423504Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/code_generator.h 2025-06-05T23:55:57.0426258Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/code_generators.h 2025-06-05T23:55:57.0429054Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/default_allocator.h 2025-06-05T23:55:57.0431845Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/detached_buffer.h 2025-06-05T23:55:57.0434585Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/file_manager.h 2025-06-05T23:55:57.0437146Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffer_builder.h 2025-06-05T23:55:57.0439491Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffers.h 2025-06-05T23:55:57.0442186Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatc.h 2025-06-05T23:55:57.0444807Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flex_flat_util.h 2025-06-05T23:55:57.0447496Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flexbuffers.h 2025-06-05T23:55:57.0450045Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/grpc.h 2025-06-05T23:55:57.0452548Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/hash.h 2025-06-05T23:55:57.0455184Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/idl.h 2025-06-05T23:55:57.0457693Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/minireflect.h 2025-06-05T23:55:57.0460288Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch 2025-06-05T23:55:57.0462863Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch/flatc_pch.h 2025-06-05T23:55:57.0465505Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch/pch.h 2025-06-05T23:55:57.0468322Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/reflection.h 2025-06-05T23:55:57.0471047Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/reflection_generated.h 2025-06-05T23:55:57.0474084Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/registry.h 2025-06-05T23:55:57.0476729Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/stl_emulation.h 2025-06-05T23:55:57.0482318Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/string.h 2025-06-05T23:55:57.0484690Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/struct.h 2025-06-05T23:55:57.0486736Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/table.h 2025-06-05T23:55:57.0488759Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/util.h 2025-06-05T23:55:57.0490741Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/vector.h 2025-06-05T23:55:57.0493009Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/vector_downward.h 2025-06-05T23:55:57.0495551Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/verifier.h 2025-06-05T23:55:57.0498236Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config.cmake 2025-06-05T23:55:57.0500969Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/BuildFlatBuffers.cmake 2025-06-05T23:55:57.0503697Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config-version.cmake 2025-06-05T23:55:57.0505933Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/bin/flatc 2025-06-05T23:55:57.0508173Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets.cmake 2025-06-05T23:55:57.0510799Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets-noconfig.cmake 2025-06-05T23:55:57.0513088Z [ 23%] Completed 'flatbuffers_external_project' 2025-06-05T23:55:57.0513908Z [ 23%] Built target flatbuffers_external_project 2025-06-05T23:55:57.0514701Z [ 23%] Generating common_schema headers 2025-06-05T23:55:57.0515168Z [ 23%] Built target common_schema 2025-06-05T23:55:57.0515695Z [ 24%] Generating program_schema headers 2025-06-05T23:55:57.0516170Z [ 24%] Built target program_schema 2025-06-05T23:55:57.0516968Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-06-05T23:55:57.0518132Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-06-05T23:55:57.0519348Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-06-05T23:55:57.0520714Z [ 26%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-06-05T23:55:57.0522005Z [ 26%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-06-05T23:55:57.0523100Z [ 26%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-06-05T23:55:57.0524124Z [ 26%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-06-05T23:55:57.0525193Z [ 27%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-06-05T23:55:57.0526453Z [ 27%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-06-05T23:55:57.0527552Z [ 27%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-06-05T23:55:57.0528761Z [ 28%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-06-05T23:55:57.0529956Z [ 28%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-06-05T23:55:57.0531190Z [ 28%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-06-05T23:55:57.0532391Z [ 29%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-06-05T23:55:57.0533478Z [ 29%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-06-05T23:55:57.0534603Z [ 29%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-06-05T23:55:57.0537011Z [ 30%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-06-05T23:55:57.0538461Z [ 30%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-06-05T23:55:59.3940438Z [ 30%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-06-05T23:55:59.3942598Z [ 30%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-06-05T23:55:59.3944706Z [ 31%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.o 2025-06-05T23:55:59.3946463Z [ 31%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:55:59.3947463Z [ 31%] Built target executorch_core 2025-06-05T23:55:59.3948946Z [ 31%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-06-05T23:55:59.3951218Z [ 32%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-06-05T23:55:59.3953422Z [ 32%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-06-05T23:55:59.3955534Z [ 32%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-06-05T23:55:59.3957929Z [ 33%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-06-05T23:55:59.3960624Z [ 33%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-06-05T23:55:59.3963232Z [ 33%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-06-05T23:55:59.3965779Z [ 33%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-06-05T23:55:59.3968373Z [ 34%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-06-05T23:55:59.3971060Z [ 34%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-06-05T23:55:59.3985962Z [ 34%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-06-05T23:55:59.3989071Z [ 35%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-06-05T23:55:59.3991778Z [ 35%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-06-05T23:55:59.3993669Z [ 35%] Linking CXX static library libexecutorch.a 2025-06-05T23:55:59.3995024Z [ 36%] Linking CXX static library libextension_threadpool.a 2025-06-05T23:55:59.3996056Z [ 36%] Built target executorch 2025-06-05T23:55:59.3997759Z [ 36%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-06-05T23:55:59.3999327Z [ 36%] Built target extension_threadpool 2025-06-05T23:55:59.4001470Z [ 37%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-06-05T23:55:59.4004088Z [ 37%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-06-05T23:55:59.4006927Z [ 37%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-06-05T23:55:59.4009646Z [ 37%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-06-05T23:55:59.4012357Z [ 38%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-06-05T23:55:59.4015030Z [ 38%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-06-05T23:55:59.4017616Z [ 38%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-06-05T23:55:59.4020292Z [ 39%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-06-05T23:55:59.4022924Z [ 39%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-06-05T23:55:59.4025473Z [ 39%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-06-05T23:55:59.4027480Z [ 40%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:55:59.4028567Z [ 40%] Built target kernels_util_all_deps 2025-06-05T23:55:59.4030342Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:55:59.4032894Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:55:59.4035280Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:55:59.4037497Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:55:59.4039746Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:55:59.4041940Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:55:59.4044124Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:55:59.4046443Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:55:59.4048795Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:55:59.4051062Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:55:59.4053240Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:55:59.4055537Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:55:59.4057801Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:55:59.4060067Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:55:59.4062300Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:55:59.4064667Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:55:59.4066986Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:55:59.4069160Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:55:59.4071640Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:55:59.4073875Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:55:59.4076249Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:55:59.4078772Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:55:59.4081213Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:55:59.4083633Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:55:59.4086040Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:55:59.4088442Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:55:59.4090753Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:55:59.4092950Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:55:59.4095374Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:55:59.4097716Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:55:59.4099966Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:55:59.4102217Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:55:59.4104616Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:55:59.4107091Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:55:59.4109614Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:55:59.4112060Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:55:59.4114312Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:55:59.4116494Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:55:59.4118770Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:55:59.4121138Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:55:59.4123584Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:55:59.4125922Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:55:59.4128136Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:56:01.9718708Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:56:01.9721123Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:56:01.9723360Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:56:01.9725581Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:56:01.9727808Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:56:01.9730391Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:56:01.9732760Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:56:01.9735301Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:56:01.9737568Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:56:01.9739833Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:56:01.9742193Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:56:01.9744498Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:56:01.9746764Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:56:01.9749092Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:56:01.9751432Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:56:01.9753693Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:56:01.9755921Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:56:01.9758146Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:56:01.9760295Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:56:01.9762562Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:56:01.9764895Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:56:01.9767225Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:56:01.9769651Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:56:01.9771972Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:56:01.9774354Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:56:01.9776656Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:56:01.9779051Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:56:01.9781424Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:56:01.9783988Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:56:01.9786421Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:56:01.9788692Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:56:01.9790948Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:56:01.9793207Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:56:01.9795505Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:56:01.9797843Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:56:01.9800577Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:56:01.9802985Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:56:01.9805638Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:56:01.9808457Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:56:01.9810788Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:56:01.9813242Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:56:01.9815904Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:56:01.9818510Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:56:01.9820973Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:56:01.9823568Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:56:01.9826465Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:56:01.9829127Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:56:01.9831526Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:56:01.9833889Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:56:01.9836269Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:56:01.9838650Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:56:01.9840983Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:56:01.9843406Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:56:01.9846033Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:56:01.9848639Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:56:01.9851278Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:56:01.9853955Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:56:01.9856423Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:56:01.9858718Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:56:01.9861050Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:56:01.9863424Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:56:01.9865860Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:56:01.9868410Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:56:01.9870955Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:56:01.9873552Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:56:01.9876190Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:56:01.9880038Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:56:01.9883680Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:56:01.9885925Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:56:01.9888259Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:56:01.9890738Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:56:01.9893069Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:56:01.9895673Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:56:01.9898050Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:56:01.9900262Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:56:01.9902555Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:56:06.6861719Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:56:06.6864221Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:56:06.6866681Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:56:06.6869126Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:56:06.6871414Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:56:06.6873562Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:56:06.6875702Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:56:06.6877881Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:56:06.6880342Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:56:06.6882599Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:56:06.6884813Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:56:06.6887107Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:56:06.6889349Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:56:06.6891647Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:56:06.6893811Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:56:06.6896075Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:56:06.6898262Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:56:06.6900574Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:56:06.6902789Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:56:06.6904984Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:56:06.6907223Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:56:06.6909790Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:56:06.6912146Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:56:06.6914435Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:56:06.6916688Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:56:06.6918789Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:56:06.6920840Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:56:06.6922879Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:56:06.6925025Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:56:06.6927006Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:56:06.6929011Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:56:06.6931157Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:56:06.6933354Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:56:06.6935638Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:56:06.6937688Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:56:06.6939817Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:56:06.6942007Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:56:06.6943555Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:56:06.6944961Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:56:06.6946299Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:56:06.6947531Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:56:06.6948764Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:56:06.6950031Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:56:06.6951221Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:56:06.6952380Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:56:06.6953706Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:56:06.6955275Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:56:06.6956796Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:56:06.6958344Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:56:06.6959712Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:56:06.6961113Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:56:06.6962407Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:56:06.6963710Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:56:06.6965358Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:56:06.6967439Z [ 94%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:56:06.6969469Z [ 94%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:56:06.6971588Z [ 94%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:56:06.6972921Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:56:06.6974340Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:56:06.6975679Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:56:06.6976933Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:56:06.6978202Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:56:06.6979706Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:56:06.6980995Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:56:06.6982276Z [ 97%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:56:06.6983268Z [ 97%] Linking CXX static library libportable_kernels.a 2025-06-05T23:56:06.6983835Z [ 97%] Built target portable_kernels 2025-06-05T23:56:06.6984484Z [ 98%] Generating selected_operators.yaml for portable_ops_lib 2025-06-05T23:56:06.6985209Z [ 98%] Generating code for kernel registration 2025-06-05T23:56:06.6986450Z [ 98%] Building CXX object kernels/portable/CMakeFiles/portable_ops_lib.dir/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:56:06.6987670Z [ 98%] Linking CXX static library libportable_ops_lib.a 2025-06-05T23:56:06.6988212Z [ 98%] Built target portable_ops_lib 2025-06-05T23:56:06.6989182Z [ 98%] Building CXX object CMakeFiles/executor_runner.dir/examples/portable/executor_runner/executor_runner.cpp.o 2025-06-05T23:56:06.6990476Z [ 98%] Building CXX object CMakeFiles/executor_runner.dir/extension/data_loader/file_data_loader.cpp.o 2025-06-05T23:56:06.6991663Z [ 98%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs.cpp.o 2025-06-05T23:56:06.6992812Z [ 99%] Building CXX object CMakeFiles/executor_runner.dir/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:56:07.5650943Z [100%] Building CXX object CMakeFiles/executor_runner.dir/runtime/executor/test/test_backend_compiler_lib.cpp.o 2025-06-05T23:56:07.5652393Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs_portable.cpp.o 2025-06-05T23:56:07.5653382Z [100%] Linking CXX executable executor_runner 2025-06-05T23:56:07.5654081Z [100%] Built target executor_runner 2025-06-05T23:56:07.5654487Z + [[ '' == *main* ]] 2025-06-05T23:56:07.5655103Z + [[ '' == *gh* ]] 2025-06-05T23:56:07.5655464Z + PYTHON_EXECUTABLE=python 2025-06-05T23:56:07.5658052Z + 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:56:07.5660808Z -- --- Configured Options --- 2025-06-05T23:56:07.5661063Z 2025-06-05T23:56:07.5661247Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:56:07.5661755Z -- CMAKE_SYSTEM_PROCESSOR : x86_64 2025-06-05T23:56:07.5662258Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:56:07.5662764Z -- PYTHON_EXECUTABLE : python 2025-06-05T23:56:07.5663265Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-06-05T23:56:07.5663777Z -- CMAKE_TOOLCHAIN_FILE x (unset) 2025-06-05T23:56:07.5664264Z -- BUCK2 x (unset) 2025-06-05T23:56:07.5664734Z -- EXECUTORCH_ENABLE_LOGGING : 1 2025-06-05T23:56:07.5665227Z -- EXECUTORCH_BUILD_COREML : OFF 2025-06-05T23:56:07.5665726Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:56:07.5666241Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-06-05T23:56:07.5666965Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-06-05T23:56:07.5667702Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:56:07.5668206Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:56:07.5668724Z -- EXECUTORCH_ENABLE_EVENT_TRACER : ON 2025-06-05T23:56:07.5669212Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-06-05T23:56:07.5669725Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-06-05T23:56:07.5670213Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : ON 2025-06-05T23:56:07.5670724Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : OFF 2025-06-05T23:56:07.5671230Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : OFF 2025-06-05T23:56:07.5671749Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : ON 2025-06-05T23:56:07.5672251Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : OFF 2025-06-05T23:56:07.5672764Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:56:07.5673255Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : ON 2025-06-05T23:56:07.5673761Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : OFF 2025-06-05T23:56:07.5674257Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : ON 2025-06-05T23:56:07.5674768Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : OFF 2025-06-05T23:56:07.5675273Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:56:07.5675777Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:56:07.5676261Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:56:07.5676761Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:56:07.5677249Z -- EXECUTORCH_BUILD_PYBIND : OFF 2025-06-05T23:56:07.5677734Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:56:07.5678232Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : ON 2025-06-05T23:56:07.5679010Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : ON 2025-06-05T23:56:07.5679519Z -- EXECUTORCH_BUILD_DEVTOOLS : ON 2025-06-05T23:56:07.5680005Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:56:07.5680500Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:56:07.5680991Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:56:07.5681493Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:56:07.5681974Z -- EXECUTORCH_BUILD_XNNPACK : ON 2025-06-05T23:56:07.5682466Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:56:07.5683125Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:56:07.5683626Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:56:07.5684102Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:56:07.5684697Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:56:07.5685180Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:56:07.5685687Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:56:07.5686187Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-06-05T23:56:07.5686688Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-06-05T23:56:07.5687176Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : ON 2025-06-05T23:56:07.5687694Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:56:07.5688216Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:56:07.5688759Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:56:07.5689276Z -- -------------------------- 2025-06-05T23:56:07.5689876Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:56:07.5690977Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:56:07.5691860Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:56:07.5692434Z CMake. 2025-06-05T23:56:07.5692607Z 2025-06-05T23:56:07.5692921Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:56:07.5693665Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:56:07.5694413Z to work with policies introduced by or earlier. 2025-06-05T23:56:07.5694754Z 2025-06-05T23:56:07.5694913Z  2025-06-05T23:56:07.5695314Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:56:07.5695925Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:56:07.5696471Z -- Setting Clang compiler options 2025-06-05T23:56:07.5697407Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:56:07.5698847Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:56:07.5699808Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:56:07.5700379Z CMake. 2025-06-05T23:56:07.5700536Z 2025-06-05T23:56:07.5700843Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:56:07.5701589Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:56:07.5702235Z to work with policies introduced by or earlier. 2025-06-05T23:56:07.5702586Z 2025-06-05T23:56:07.5702734Z  2025-06-05T23:56:07.5703523Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:56:07.5704515Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:56:07.5705080Z CMake. 2025-06-05T23:56:07.5705254Z 2025-06-05T23:56:07.5705564Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:56:07.5706300Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:56:07.5706970Z to work with policies introduced by or earlier. 2025-06-05T23:56:07.5707308Z 2025-06-05T23:56:07.5707454Z  2025-06-05T23:56:07.5708289Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:56:07.5709290Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:56:07.5709862Z CMake. 2025-06-05T23:56:07.5710017Z 2025-06-05T23:56:07.5710330Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:56:07.5711075Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:56:07.5711722Z to work with policies introduced by or earlier. 2025-06-05T23:56:07.5712175Z 2025-06-05T23:56:07.5712327Z  2025-06-05T23:56:07.5712628Z -- Resolved buck2 as buck2. 2025-06-05T23:56:07.5713011Z -- Killing buck2 daemon 2025-06-05T23:56:07.5713439Z 'buck2 killall' 2025-06-05T23:56:07.5713784Z -- executorch: Generating source lists 2025-06-05T23:56:07.5714463Z -- executorch: Using source file list /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:56:07.5715337Z -- executorch: Using sources file /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:56:07.5716327Z 'python' '-c' 'import importlib.util; print(importlib.util.find_spec('torch').submodule_search_locations[0])' 2025-06-05T23:56:07.5717086Z -- Generating operator lib: 2025-06-05T23:56:07.5717485Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:56:07.5718031Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:56:07.5718606Z -- ROOT_OPS: 2025-06-05T23:56:07.5718923Z -- INCLUDE_ALL_OPS: 2025-06-05T23:56:07.5720545Z 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:56:07.5722012Z -- Generating kernel bindings: 2025-06-05T23:56:07.5722422Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:56:07.5722964Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:56:07.5723544Z -- CUSTOM_OPS_YAML: 2025-06-05T23:56:07.5723903Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:56:07.5726096Z 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:56:07.5728035Z -- Generating operator lib: 2025-06-05T23:56:07.5728432Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:56:07.5728834Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:56:07.5729254Z -- DEPS: executorch_core 2025-06-05T23:56:07.5729626Z -- Generating operator lib: 2025-06-05T23:56:07.5730022Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:56:07.5730578Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:56:07.5731163Z -- ROOT_OPS: 2025-06-05T23:56:07.5731483Z -- INCLUDE_ALL_OPS: 2025-06-05T23:56:07.5733108Z 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:56:07.5734647Z -- Generating kernel bindings: 2025-06-05T23:56:07.5735064Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:56:07.5735620Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:56:07.5736213Z -- CUSTOM_OPS_YAML: 2025-06-05T23:56:07.5736567Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:56:07.5738824Z 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:56:07.5740803Z -- Generating operator lib: 2025-06-05T23:56:07.5741205Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:56:07.5741615Z -- KERNEL_LIBS: optimized_kernels 2025-06-05T23:56:07.5742048Z -- DEPS: executorch_core 2025-06-05T23:56:07.5742425Z -- Merging kernel yaml files: 2025-06-05T23:56:12.3943007Z -- FUNCTIONS_YAML: /pytorch/executorch/configurations/../kernels/optimized/optimized.yaml 2025-06-05T23:56:12.3944228Z -- FALLBACK_YAML: /pytorch/executorch/configurations/../kernels/portable/functions.yaml 2025-06-05T23:56:12.3945032Z -- OUTPUT_DIR: /pytorch/executorch/cmake-out/configurations 2025-06-05T23:56:12.3945557Z -- Generating operator lib: 2025-06-05T23:56:12.3946237Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:56:12.3946871Z -- OPS_SCHEMA_YAML: /pytorch/executorch/cmake-out/configurations/merged.yaml 2025-06-05T23:56:12.3947481Z -- ROOT_OPS: 2025-06-05T23:56:12.3948422Z -- INCLUDE_ALL_OPS: 2025-06-05T23:56:12.3951743Z 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:56:12.3954948Z -- Generating kernel bindings: 2025-06-05T23:56:12.3955766Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:56:12.3956414Z -- FUNCTIONS_YAML: /pytorch/executorch/cmake-out/configurations/merged.yaml 2025-06-05T23:56:12.3957085Z -- CUSTOM_OPS_YAML: 2025-06-05T23:56:12.3957451Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:56:12.3959927Z 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:56:12.3962079Z -- Generating operator lib: 2025-06-05T23:56:12.3962498Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:56:12.3963043Z -- KERNEL_LIBS: optimized_kernels;optimized_portable_kernels 2025-06-05T23:56:12.3963734Z -- DEPS: executorch_core 2025-06-05T23:56:12.3965053Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:56:12.3966588Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:56:12.3967579Z CMake. 2025-06-05T23:56:12.3967860Z 2025-06-05T23:56:12.3968411Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:56:12.3969717Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:56:12.3970899Z to work with policies introduced by or earlier. 2025-06-05T23:56:12.3971497Z 2025-06-05T23:56:12.3971788Z  2025-06-05T23:56:12.3972583Z -- The ASM compiler identification is Clang with GNU-like command-line 2025-06-05T23:56:12.3973670Z -- Found assembler: /opt/cache/bin/cc 2025-06-05T23:56:12.3974575Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-06-05T23:56:12.3976003Z -- Found Python: /opt/conda/envs/py_3.10/bin/python3.10 (found version "3.10.16") found components: Interpreter 2025-06-05T23:56:12.3977408Z -- Generating microkernels.cmake 2025-06-05T23:56:12.3978548Z No microkernel found in src/reference/binary-elementwise.cc 2025-06-05T23:56:12.3979456Z No microkernel found in src/reference/packing.cc 2025-06-05T23:56:12.3980299Z No microkernel found in src/reference/unary-elementwise.cc 2025-06-05T23:56:12.3982037Z -- executorch: Using source file list /pytorch/executorch/cmake-out/extension/llm/custom_ops/../../../executorch_srcs.cmake 2025-06-05T23:56:12.3983664Z -- Generating operator lib: 2025-06-05T23:56:12.3984402Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:56:12.3985389Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:56:12.3986429Z -- ROOT_OPS: 2025-06-05T23:56:12.3986962Z -- INCLUDE_ALL_OPS: 2025-06-05T23:56:12.3989943Z 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:56:12.3993052Z -- Generating kernel bindings: 2025-06-05T23:56:12.3993755Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:56:12.3994382Z -- FUNCTIONS_YAML: 2025-06-05T23:56:12.3995154Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:56:12.3996222Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:56:12.4004585Z 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:56:12.4012331Z -- Generating operator lib: 2025-06-05T23:56:12.4013042Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:56:12.4013746Z -- KERNEL_LIBS: quantized_kernels 2025-06-05T23:56:12.4014571Z -- DEPS: executorch_core 2025-06-05T23:56:12.4015264Z -- Configuring done (4.1s) 2025-06-05T23:56:12.4015925Z -- Generating done (0.4s) 2025-06-05T23:56:12.4016749Z -- Build files have been written to: /pytorch/executorch/cmake-out 2025-06-05T23:56:12.4017922Z + cmake --build cmake-out -j16 --target install --config Release 2025-06-05T23:56:12.4018859Z [ 0%] Built target flatbuffers_external_project 2025-06-05T23:56:12.4019671Z [ 1%] Built target flatcc_external_project 2025-06-05T23:56:12.4021486Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_single.cpp.o 2025-06-05T23:56:12.4023989Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/double.cpp.o 2025-06-05T23:56:12.4026400Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/single.cpp.o 2025-06-05T23:56:12.4028836Z [ 1%] Building C object extension/llm/custom_ops/spinquant/third-party/FFHT/CMakeFiles/dumb_fht.dir/dumb_fht.c.o 2025-06-05T23:56:12.4031362Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_double.cpp.o 2025-06-05T23:56:12.4033835Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/xerbla.cpp.o 2025-06-05T23:56:12.4036208Z [ 1%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotm.c.o 2025-06-05T23:56:12.4038443Z [ 1%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags.cc.o 2025-06-05T23:56:12.4040716Z [ 1%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotm.c.o 2025-06-05T23:56:12.4043272Z [ 1%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotmg.c.o 2025-06-05T23:56:12.4045444Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-06-05T23:56:12.4047694Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-06-05T23:56:12.4050122Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-06-05T23:56:12.4051765Z [ 2%] Generating xnnpack_schema headers 2025-06-05T23:56:12.4052596Z [ 2%] Built target common_schema 2025-06-05T23:56:12.4053545Z [ 2%] Generating scalar_type_schema headers 2025-06-05T23:56:12.4054523Z [ 2%] Built target program_schema 2025-06-05T23:56:12.4056199Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-06-05T23:56:12.4057606Z [ 2%] Built target scalar_type_schema 2025-06-05T23:56:12.4058339Z [ 2%] Built target xnnpack_schema 2025-06-05T23:56:12.4060019Z [ 3%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_reporting.cc.o 2025-06-05T23:56:12.4062215Z [ 3%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:56:12.4063696Z [ 4%] Linking C static library libdumb_fht.a 2025-06-05T23:56:12.4065466Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-06-05T23:56:12.4067777Z [ 4%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:56:12.4070009Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotmg.c.o 2025-06-05T23:56:12.4071546Z [ 4%] Built target dumb_fht 2025-06-05T23:56:12.4073235Z [ 4%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-06-05T23:56:12.4075666Z [ 4%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:56:12.4077926Z [ 4%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:56:12.4080627Z [ 4%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_completions.cc.o 2025-06-05T23:56:12.4082990Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-06-05T23:56:12.4085332Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-06-05T23:56:12.4087274Z [ 4%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:56:12.4089235Z [ 5%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-06-05T23:56:12.4091142Z [ 5%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:56:12.4093286Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/init.c.o 2025-06-05T23:56:12.4095493Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/lsame.c.o 2025-06-05T23:56:12.4097477Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-06-05T23:56:12.4099315Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-06-05T23:56:12.4101222Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o 2025-06-05T23:56:12.4103215Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dspmv.c.o 2025-06-05T23:56:13.0810982Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ssbmv.c.o 2025-06-05T23:56:13.0813508Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chbmv.c.o 2025-06-05T23:56:13.0815998Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o 2025-06-05T23:56:13.0818519Z [ 6%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-06-05T23:56:13.0820917Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/sspmv.c.o 2025-06-05T23:56:13.0823294Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhbmv.c.o 2025-06-05T23:56:13.0825579Z [ 7%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o 2025-06-05T23:56:13.0827888Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o 2025-06-05T23:56:13.0830346Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/info.c.o 2025-06-05T23:56:13.0832638Z [ 7%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:56:13.0834910Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chpmv.c.o 2025-06-05T23:56:13.0837551Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o 2025-06-05T23:56:13.0839322Z [ 7%] Linking CXX static library libgflags_nothreads.a 2025-06-05T23:56:13.0841363Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dsbmv.c.o 2025-06-05T23:56:13.0843705Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o 2025-06-05T23:56:13.0845932Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o 2025-06-05T23:56:13.0848375Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/vendor.c.o 2025-06-05T23:56:13.0850861Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhpmv.c.o 2025-06-05T23:56:13.0852341Z [ 7%] Built target flatccrt 2025-06-05T23:56:13.0854018Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dtbmv.c.o 2025-06-05T23:56:13.0855566Z [ 7%] Built target gflags_nothreads_static 2025-06-05T23:56:13.0857215Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o 2025-06-05T23:56:13.0859437Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/stbmv.c.o 2025-06-05T23:56:13.0861722Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/uarch.c.o 2025-06-05T23:56:13.0863409Z [ 7%] Generating flat_tensor_schema headers 2025-06-05T23:56:13.0865328Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o 2025-06-05T23:56:13.0866728Z [ 7%] Built target flat_tensor_schema 2025-06-05T23:56:13.0868313Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/topology.c.o 2025-06-05T23:56:13.0870379Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/name.c.o 2025-06-05T23:56:13.0871744Z [ 7%] Linking C static library libpthreadpool.a 2025-06-05T23:56:13.0873071Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ctbmv.c.o 2025-06-05T23:56:13.0874962Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:56:13.0876654Z [ 7%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-06-05T23:56:13.0878290Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ztbmv.c.o 2025-06-05T23:56:13.0881180Z [ 7%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-06-05T23:56:13.0882865Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/complexdots.c.o 2025-06-05T23:56:13.0884036Z [ 7%] Built target pthreadpool 2025-06-05T23:56:13.0885328Z [ 7%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-06-05T23:56:13.0887213Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/isa.c.o 2025-06-05T23:56:13.0889140Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:56:13.0891247Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o 2025-06-05T23:56:13.0893213Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/init.c.o 2025-06-05T23:56:13.0895632Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:56:13.0897818Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:56:13.0900187Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:56:13.0902230Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-06-05T23:56:13.0904255Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/init.c.o 2025-06-05T23:56:13.0906569Z [ 8%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-06-05T23:56:13.0908739Z [ 9%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-06-05T23:56:13.0910883Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-06-05T23:56:13.0912371Z [ 9%] Linking CXX static library libeigen_blas.a 2025-06-05T23:56:13.0913987Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-06-05T23:56:13.0916362Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/smallfile.c.o 2025-06-05T23:56:13.0918878Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:56:13.0920931Z [ 9%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-06-05T23:56:13.0922906Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-06-05T23:56:13.0925228Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-06-05T23:56:13.0927621Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/multiline.c.o 2025-06-05T23:56:13.0929709Z [ 9%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-06-05T23:56:13.0932063Z [ 10%] 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:56:13.0934922Z [ 10%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/cpulist.c.o 2025-06-05T23:56:13.0937668Z [ 10%] 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:56:13.0939685Z [ 10%] Built target eigen_blas 2025-06-05T23:56:13.0942026Z [ 10%] 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:56:13.0945101Z [ 10%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/processors.c.o 2025-06-05T23:56:13.0948293Z [ 10%] 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:56:13.0950822Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-06-05T23:56:13.0953515Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-06-05T23:56:13.0955408Z [ 10%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-06-05T23:56:13.0957859Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-06-05T23:56:13.0960632Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-06-05T23:56:13.0962182Z [ 11%] Linking C static library libcpuinfo.a 2025-06-05T23:56:13.0963566Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-06-05T23:56:13.0965227Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-06-05T23:56:14.0905174Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-06-05T23:56:14.0907673Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-06-05T23:56:14.0909186Z [ 11%] Built target cpuinfo 2025-06-05T23:56:14.0910189Z [ 11%] Linking C static library libcpuinfo_internals.a 2025-06-05T23:56:14.0912158Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-06-05T23:56:14.0915284Z [ 11%] 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:56:14.0917394Z [ 11%] Built target indirection 2025-06-05T23:56:14.0918985Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-06-05T23:56:14.0920440Z [ 11%] Built target cpuinfo_internals 2025-06-05T23:56:14.0922262Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-06-05T23:56:14.0924853Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-06-05T23:56:14.0927911Z [ 11%] 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:56:14.0931640Z [ 11%] 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:56:14.0933738Z [ 11%] Built target microparams-init 2025-06-05T23:56:14.0935616Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-06-05T23:56:14.0938476Z [ 11%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-06-05T23:56:14.0941381Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-06-05T23:56:14.0944484Z [ 11%] 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:56:14.0948091Z [ 11%] 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:14.0951572Z [ 11%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-06-05T23:56:14.0953571Z [ 11%] Built target logging 2025-06-05T23:56:14.0954274Z [ 11%] Built target normalization 2025-06-05T23:56:14.0956552Z [ 11%] 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:14.0960109Z [ 11%] 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:14.0963007Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-06-05T23:56:14.0966055Z [ 11%] 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:14.0967887Z [ 11%] Built target datatype 2025-06-05T23:56:14.0970505Z [ 11%] 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:14.0973338Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-06-05T23:56:14.0976204Z [ 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:14.0979052Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-06-05T23:56:14.0981613Z [ 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:14.0984333Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-06-05T23:56:14.0987558Z [ 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:14.0991643Z [ 12%] 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:14.0994887Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-06-05T23:56:14.0998069Z [ 12%] 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:14.1001571Z [ 12%] 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:14.1003432Z [ 12%] Built target reference-ukernels 2025-06-05T23:56:14.1005775Z [ 12%] 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:14.1008628Z [ 12%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-06-05T23:56:14.1010627Z [ 12%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-06-05T23:56:14.1013382Z [ 12%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-06-05T23:56:14.1016956Z [ 12%] 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:14.1020441Z [ 13%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-06-05T23:56:14.1023089Z [ 13%] 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:14.1025875Z [ 13%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.o 2025-06-05T23:56:14.1027237Z [ 13%] Built target hardware-config 2025-06-05T23:56:14.1029446Z [ 13%] 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:14.1032278Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-06-05T23:56:14.1035470Z [ 13%] 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:14.1039047Z [ 13%] 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:14.1042313Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-06-05T23:56:14.1045153Z [ 13%] 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:14.1048680Z [ 13%] 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:14.1052447Z [ 13%] 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:14.1056368Z [ 13%] 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:14.1059185Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-06-05T23:56:14.1060532Z [ 13%] Built target allocator 2025-06-05T23:56:14.1062356Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-06-05T23:56:14.1064426Z [ 13%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:56:14.1066794Z [ 13%] 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:14.1068716Z [ 13%] Built target packing 2025-06-05T23:56:14.1070204Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-06-05T23:56:14.1073088Z [ 13%] 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:14.1076709Z [ 14%] 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:14.1080232Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-06-05T23:56:14.1081822Z [ 14%] Built target executorch_core 2025-06-05T23:56:14.1083801Z [ 14%] 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:15.1530448Z [ 14%] 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:15.1532472Z [ 14%] Built target cache 2025-06-05T23:56:15.1533177Z [ 14%] Built target microkernel-utils 2025-06-05T23:56:15.1534040Z [ 14%] Built target memory 2025-06-05T23:56:15.1536159Z [ 14%] 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:15.1539555Z [ 14%] 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:15.1542566Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-06-05T23:56:15.1545635Z [ 14%] 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:15.1548640Z [ 14%] Building CXX object extension/flat_tensor/CMakeFiles/extension_flat_tensor.dir/flat_tensor_data_map.cpp.o 2025-06-05T23:56:15.1551238Z [ 14%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/file_data_loader.cpp.o 2025-06-05T23:56:15.1553608Z [ 14%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr.cpp.o 2025-06-05T23:56:15.1556487Z [ 14%] 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:15.1558356Z [ 14%] Built target mutex 2025-06-05T23:56:15.1560733Z [ 14%] 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:15.1562724Z [ 14%] Built target operator-utils 2025-06-05T23:56:15.1565106Z [ 14%] 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:15.1567853Z [ 14%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-06-05T23:56:15.1570071Z [ 14%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/mmap_data_loader.cpp.o 2025-06-05T23:56:15.1571663Z [ 14%] Built target operator-run 2025-06-05T23:56:15.1573657Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-06-05T23:56:15.1576581Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-06-05T23:56:15.1580419Z [ 15%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-06-05T23:56:15.1593970Z [ 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:15.1597130Z [ 15%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-06-05T23:56:15.1599658Z [ 15%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-06-05T23:56:15.1602087Z [ 15%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr_maker.cpp.o 2025-06-05T23:56:15.1604864Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-06-05T23:56:15.1607257Z [ 15%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-06-05T23:56:15.1609005Z [ 15%] Linking CXX static library libextension_data_loader.a 2025-06-05T23:56:15.1611362Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-06-05T23:56:15.1614740Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmulc-f16c-u16.c.o 2025-06-05T23:56:15.1617805Z [ 15%] Building CXX object extension/flat_tensor/CMakeFiles/extension_flat_tensor.dir/serialize/flat_tensor_header.cpp.o 2025-06-05T23:56:15.1619476Z [ 15%] Built target extension_data_loader 2025-06-05T23:56:15.1621732Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vprelu-f16c-u16.c.o 2025-06-05T23:56:15.1625159Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-f16c-u8.c.o 2025-06-05T23:56:15.1628407Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-06-05T23:56:15.1631680Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vpreluc-f16c-u16.c.o 2025-06-05T23:56:15.1634757Z [ 15%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-06-05T23:56:15.1637632Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-06-05T23:56:15.1640877Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-f16c-u16.c.o 2025-06-05T23:56:15.1644001Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-06-05T23:56:15.1646851Z [ 15%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-06-05T23:56:15.1649451Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-06-05T23:56:15.1652426Z [ 15%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-06-05T23:56:15.1654492Z [ 15%] Linking CXX static library libextension_flat_tensor.a 2025-06-05T23:56:15.1656490Z [ 15%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-06-05T23:56:15.1659078Z [ 15%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-06-05T23:56:15.1661938Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-06-05T23:56:15.1665162Z [ 16%] 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:15.1667175Z [ 16%] Built target extension_flat_tensor 2025-06-05T23:56:15.1669452Z [ 16%] 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:15.1672873Z [ 16%] 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:15.1675229Z [ 17%] Linking CXX static library libextension_tensor.a 2025-06-05T23:56:15.1677485Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-06-05T23:56:15.1680968Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsub-f16c-u16.c.o 2025-06-05T23:56:15.1683665Z [ 17%] Building CXX object extension/module/CMakeFiles/extension_module.dir/module.cpp.o 2025-06-05T23:56:15.1686317Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-06-05T23:56:15.1688226Z [ 17%] Built target extension_tensor 2025-06-05T23:56:15.1690462Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsubc-f16c-u16.c.o 2025-06-05T23:56:15.1693397Z [ 17%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-06-05T23:56:15.1696321Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-06-05T23:56:15.1699330Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-06-05T23:56:15.1701993Z [ 17%] Building CXX object extension/module/CMakeFiles/extension_module_static.dir/module.cpp.o 2025-06-05T23:56:15.1704488Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-06-05T23:56:15.1706546Z [ 17%] Linking CXX static library libextension_threadpool.a 2025-06-05T23:56:15.1708684Z [ 17%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-06-05T23:56:15.1710374Z [ 17%] Built target extension_threadpool 2025-06-05T23:56:15.1712598Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vclamp/gen/f16-vclamp-f16c-u16.c.o 2025-06-05T23:56:15.1716045Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-velu/gen/f16-velu-avx2-rr1-p3-u16.c.o 2025-06-05T23:56:15.1718353Z [ 17%] Linking CXX static library libexecutorch.a 2025-06-05T23:56:15.1720625Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-06-05T23:56:15.1723821Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vhswish/gen/f16-vhswish-f16c-u16.c.o 2025-06-05T23:56:16.5590647Z [ 17%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-06-05T23:56:16.5593430Z [ 17%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:56:16.5595070Z [ 17%] Built target executorch 2025-06-05T23:56:16.5597242Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vlrelu/gen/f16-vlrelu-f16c-u16.c.o 2025-06-05T23:56:16.5600228Z [ 17%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:56:16.5603219Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-06-05T23:56:16.5606383Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-06-05T23:56:16.5609317Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-06-05T23:56:16.5611934Z [ 18%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:56:16.5613908Z [ 18%] Linking CXX shared library libextension_module.so 2025-06-05T23:56:16.5616414Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-06-05T23:56:16.5619401Z [ 18%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-06-05T23:56:16.5622628Z [ 18%] 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:16.5625212Z [ 18%] Linking CXX static library libextension_module_static.a 2025-06-05T23:56:16.5627692Z [ 18%] 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:16.5630587Z [ 18%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-06-05T23:56:16.5632201Z [ 18%] Built target extension_module_static 2025-06-05T23:56:16.5633980Z [ 18%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:56:16.5636952Z [ 18%] 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:16.5640307Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndu-f16c-u16.c.o 2025-06-05T23:56:16.5643198Z [ 18%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:56:16.5645708Z [ 18%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-06-05T23:56:16.5647429Z [ 18%] Generating etdump headers 2025-06-05T23:56:16.5648996Z [ 18%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/BlasKernel.cpp.o 2025-06-05T23:56:16.5651286Z [ 18%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:56:16.5653934Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-06-05T23:56:16.5655614Z [ 18%] Built target extension_module 2025-06-05T23:56:16.5656957Z [ 18%] Generating bundled_program headers 2025-06-05T23:56:16.5659383Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrsqrt/gen/f16-vrsqrt-f16c-rsqrt-u32.c.o 2025-06-05T23:56:16.5663014Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndz-f16c-u16.c.o 2025-06-05T23:56:16.5665628Z [ 18%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/etdump_flatcc.cpp.o 2025-06-05T23:56:16.5667768Z [ 18%] Building CXX object devtools/bundled_program/CMakeFiles/bundled_program.dir/bundled_program.cpp.o 2025-06-05T23:56:16.5670232Z [ 18%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:56:16.5672795Z [ 18%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-06-05T23:56:16.5676118Z [ 19%] 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:16.5679966Z [ 19%] 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:16.5683759Z [ 19%] 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:16.5687176Z [ 20%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-06-05T23:56:16.5690045Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-06-05T23:56:16.5692781Z [ 20%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:56:16.5695504Z [ 20%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:56:16.5698820Z [ 20%] 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:16.5702216Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-06-05T23:56:16.5704971Z [ 20%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-06-05T23:56:16.5707997Z [ 20%] 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:16.5710552Z [ 20%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/emitter.cpp.o 2025-06-05T23:56:16.5712524Z [ 20%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/CPUBlas.cpp.o 2025-06-05T23:56:16.5714759Z [ 20%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-06-05T23:56:16.5717747Z [ 20%] 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:16.5721047Z [ 20%] 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:16.5724589Z [ 20%] 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:16.5727551Z [ 20%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/buffer_data_sink.cpp.o 2025-06-05T23:56:16.5730253Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-06-05T23:56:16.5732708Z [ 20%] Linking CXX static library libbundled_program.a 2025-06-05T23:56:16.5734601Z [ 20%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/file_data_sink.cpp.o 2025-06-05T23:56:16.5737766Z [ 20%] 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:16.5741418Z [ 20%] 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:16.5744467Z [ 21%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:56:16.5745938Z [ 21%] Built target bundled_program 2025-06-05T23:56:16.5747670Z [ 21%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-06-05T23:56:16.5750153Z [ 21%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:56:16.5752769Z [ 21%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-06-05T23:56:16.5755941Z [ 21%] 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:16.5758320Z [ 21%] Linking CXX static library libcpublas.a 2025-06-05T23:56:16.5760224Z [ 21%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-06-05T23:56:16.5763282Z [ 21%] 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:16.5766392Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-06-05T23:56:16.5769685Z [ 21%] 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:16.5771745Z [ 21%] Built target cpublas 2025-06-05T23:56:17.8634592Z [ 21%] 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:17.8637641Z [ 21%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-06-05T23:56:17.8640612Z [ 21%] 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:17.8643649Z [ 21%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:56:17.8646163Z [ 21%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:56:17.8649188Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o 2025-06-05T23:56:17.8652105Z [ 22%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:56:17.8654891Z [ 22%] 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:17.8657106Z [ 23%] Linking CXX static library libetdump.a 2025-06-05T23:56:17.8659659Z [ 23%] 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:17.8661762Z [ 23%] Built target etdump 2025-06-05T23:56:17.8664105Z [ 23%] 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:17.8666610Z [ 23%] Built target operators 2025-06-05T23:56:17.8668996Z [ 23%] 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:17.8672423Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:56:17.8675127Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:56:17.8677587Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-06-05T23:56:17.8680282Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:56:17.8683129Z [ 23%] 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:17.8686616Z [ 23%] 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:17.8689949Z [ 23%] 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:17.8692796Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-06-05T23:56:17.8695677Z [ 23%] 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:17.8698515Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-06-05T23:56:17.8700341Z [ 23%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:56:17.8702933Z [ 23%] 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:17.8705838Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:56:17.8708340Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:56:17.8711651Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.o 2025-06-05T23:56:17.8713925Z [ 23%] Built target kernels_util_all_deps 2025-06-05T23:56:17.8716325Z [ 23%] 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:17.8719360Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:56:17.8722465Z [ 23%] 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:17.8725764Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-06-05T23:56:17.8728467Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:56:17.8731199Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-06-05T23:56:17.8734110Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:56:17.8737226Z [ 23%] 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:17.8741270Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2025-06-05T23:56:17.8744961Z [ 23%] 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:17.8748291Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:56:17.8750802Z [ 23%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:56:17.8753344Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:56:17.8756492Z [ 24%] 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:17.8759807Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-06-05T23:56:17.8762546Z [ 24%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/binary_ops.cpp.o 2025-06-05T23:56:17.8765017Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-06-05T23:56:17.8767456Z [ 24%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:56:17.8769881Z [ 24%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:56:17.8773053Z [ 24%] 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:17.8776156Z [ 25%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:56:17.8787276Z [ 25%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:56:17.8790576Z [ 25%] 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:17.8794282Z [ 25%] 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:17.8797246Z [ 25%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:56:17.8800265Z [ 25%] 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:17.8803551Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-06-05T23:56:17.8806176Z [ 25%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:56:17.8808805Z [ 25%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:56:17.8811413Z [ 25%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:56:17.8814075Z [ 25%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:56:17.8816787Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-06-05T23:56:17.8819471Z [ 25%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:56:17.8822566Z [ 25%] 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:19.9844845Z [ 25%] 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:19.9847970Z [ 25%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:56:19.9850836Z [ 25%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:56:19.9854333Z [ 25%] 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:19.9857559Z [ 25%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:56:19.9860729Z [ 25%] 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:19.9863848Z [ 25%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:56:19.9866426Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-06-05T23:56:19.9868866Z [ 26%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:56:19.9872008Z [ 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:19.9875385Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-06-05T23:56:19.9878221Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:56:19.9881043Z [ 26%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:56:19.9883802Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:56:19.9886514Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:56:19.9888991Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:56:19.9891466Z [ 26%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:56:19.9894820Z [ 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:19.9898000Z [ 26%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:56:19.9900411Z [ 26%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:56:19.9902773Z [ 26%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:56:19.9906265Z [ 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:19.9909569Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-06-05T23:56:19.9912202Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:56:19.9914967Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-06-05T23:56:19.9918334Z [ 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:19.9922088Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-06-05T23:56:19.9924553Z [ 26%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:56:19.9927039Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:56:19.9929382Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-06-05T23:56:19.9931837Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:56:19.9934110Z [ 26%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:56:19.9936157Z [ 26%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:56:19.9938183Z [ 26%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:56:19.9940378Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:56:19.9942603Z [ 27%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:56:19.9944733Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:56:19.9946933Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:56:19.9948827Z [ 27%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:56:19.9951455Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:56:19.9954408Z [ 27%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:56:19.9957609Z [ 27%] 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:19.9961070Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-06-05T23:56:19.9963768Z [ 27%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:56:19.9966066Z [ 28%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:56:19.9968352Z [ 28%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:56:19.9970656Z [ 28%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_quantize.cpp.o 2025-06-05T23:56:19.9973229Z [ 28%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_c2r.cpp.o 2025-06-05T23:56:19.9975948Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-06-05T23:56:19.9978844Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:56:19.9981161Z [ 28%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:56:19.9983400Z [ 28%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:56:19.9985950Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-06-05T23:56:19.9988978Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:56:19.9991494Z [ 28%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_r2c.cpp.o 2025-06-05T23:56:19.9994960Z [ 28%] 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:19.9998009Z [ 28%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:56:20.0000666Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-06-05T23:56:20.0003868Z [ 29%] 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:20.0008770Z [ 29%] 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:20.0011792Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:56:20.0014162Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:56:20.0015962Z [ 30%] Linking CXX static library libquantized_kernels.a 2025-06-05T23:56:20.0017776Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:56:20.0020412Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-06-05T23:56:20.0023978Z [ 30%] 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:20.0026435Z [ 30%] Built target quantized_kernels 2025-06-05T23:56:22.7078646Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-06-05T23:56:22.7081370Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:56:22.7083765Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:56:22.7086148Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:56:22.7089538Z [ 30%] 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:22.7092799Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-06-05T23:56:22.7096260Z [ 30%] 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:22.7099421Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_linear.cpp.o 2025-06-05T23:56:22.7102022Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-06-05T23:56:22.7104290Z [ 30%] Generating selected_operators.yaml for quantized_ops_lib 2025-06-05T23:56:22.7107272Z [ 30%] 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:22.7114564Z [ 30%] 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:22.7118104Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-06-05T23:56:22.7120803Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:56:22.7123933Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-06-05T23:56:22.7127570Z [ 31%] 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:22.7130319Z [ 32%] Generating code for kernel registration 2025-06-05T23:56:22.7133147Z [ 32%] 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:22.7136388Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:56:22.7139096Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-06-05T23:56:22.7141958Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-06-05T23:56:22.7144523Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:56:22.7147877Z [ 32%] 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:22.7151353Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-06-05T23:56:22.7154991Z [ 32%] 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:22.7158822Z [ 32%] 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:22.7161977Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-06-05T23:56:22.7165311Z [ 32%] 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:22.7168647Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-06-05T23:56:22.7171311Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-06-05T23:56:22.7173748Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-06-05T23:56:22.7176093Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:56:22.7178738Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:56:22.7182162Z [ 32%] 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:22.7185471Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:56:22.7187883Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:56:22.7190047Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:56:22.7192497Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:56:22.7194834Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:56:22.7197172Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:56:22.7199917Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:56:22.7202463Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:56:22.7204179Z [ 32%] Built target subgraph 2025-06-05T23:56:22.7205616Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:56:22.7208759Z [ 32%] 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:22.7218018Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:56:22.7220570Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:56:22.7222868Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:56:22.7225411Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:56:22.7227684Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:56:22.7230111Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:56:22.7233062Z [ 32%] 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:22.7236078Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:56:22.7238569Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:56:22.7241558Z [ 33%] 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:22.7244519Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:56:22.7246735Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:56:22.7249066Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:56:22.7251518Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:56:22.7254498Z [ 34%] 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:22.7257395Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:56:22.7259660Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:56:22.7261878Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:56:22.7264110Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:56:22.7267277Z [ 34%] 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:26.8417292Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:56:26.8419724Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:56:26.8422099Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:56:26.8424527Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:56:26.8427934Z [ 35%] 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:26.8431631Z [ 35%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_lib.dir/quantized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:56:26.8434596Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:56:26.8436949Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:56:26.8439144Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:56:26.8442157Z [ 35%] 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:26.8445575Z [ 35%] 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:26.8448330Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:56:26.8450707Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:56:26.8453063Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:56:26.8455472Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:56:26.8457988Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:56:26.8459892Z [ 35%] Linking CXX static library libquantized_ops_lib.a 2025-06-05T23:56:26.8462498Z [ 35%] 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:26.8464689Z [ 35%] Built target quantized_ops_lib 2025-06-05T23:56:26.8467091Z [ 35%] 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:26.8470873Z [ 35%] 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:26.8473885Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:56:26.8477020Z [ 35%] 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:26.8480286Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:56:26.8482763Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:56:26.8485238Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:56:26.8487794Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:56:26.8490760Z [ 35%] 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:26.8493922Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:56:26.8496488Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:56:26.8499770Z [ 35%] 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:26.8503068Z [ 35%] 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:26.8505906Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:56:26.8508868Z [ 35%] 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:26.8512300Z [ 35%] 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:26.8515731Z [ 36%] 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:26.8524237Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:56:26.8527176Z [ 36%] 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:26.8530686Z [ 36%] 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:26.8534323Z [ 36%] 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:26.8537293Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:56:26.8539681Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:56:26.8542579Z [ 36%] 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:26.8546065Z [ 36%] 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:26.8548789Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:56:26.8551705Z [ 36%] 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:26.8555170Z [ 36%] 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:26.8557946Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:56:26.8560670Z [ 36%] 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:26.8563358Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:56:26.8565723Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:56:26.8568695Z [ 37%] 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:26.8571631Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:56:26.8574288Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:56:26.8576772Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:56:26.8580038Z [ 37%] 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:26.8583943Z [ 37%] 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:26.8586836Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:56:26.8589610Z [ 37%] 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:26.8593240Z [ 37%] 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:26.8596024Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:56:26.8598876Z [ 37%] 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:26.8602494Z [ 38%] 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:30.0160983Z [ 38%] 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:30.0164282Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:56:30.0167019Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:56:30.0170167Z [ 39%] 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:30.0174116Z [ 39%] 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:30.0177275Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:56:30.0179736Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:56:30.0182884Z [ 39%] 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:30.0186056Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:56:30.0188399Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:56:30.0191490Z [ 39%] 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:30.0195285Z [ 39%] 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:30.0198277Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:56:30.0200850Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:56:30.0203235Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:56:30.0206138Z [ 39%] 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:30.0209215Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:56:30.0211613Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:56:30.0214921Z [ 39%] 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:30.0218042Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:56:30.0220566Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:56:30.0224848Z [ 39%] 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:30.0228495Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:56:30.0231447Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:56:30.0236194Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:56:30.0239452Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:56:30.0243402Z [ 39%] 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:30.0247076Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:56:30.0250110Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:56:30.0253144Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:56:30.0256305Z [ 39%] 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:30.0259290Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:56:30.0261727Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:56:30.0264295Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:56:30.0266977Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:56:30.0269664Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:56:30.0272707Z [ 39%] 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:30.0275745Z [ 39%] 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:30.0278637Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:56:30.0280723Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:56:30.0283368Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:56:30.0285933Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:56:30.0288779Z [ 41%] 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:30.0291725Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:56:30.0294094Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:56:30.0297283Z [ 41%] 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:30.0300339Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:56:30.0303211Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:56:30.0306017Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:56:30.0309044Z [ 42%] 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:30.0312598Z [ 42%] 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:30.0315576Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:56:30.0318482Z [ 42%] 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:30.0321280Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:56:30.0323594Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:56:30.0338551Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:56:30.0340958Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:56:30.0343940Z [ 42%] 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:30.0346697Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:56:30.0349648Z [ 42%] 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:30.0352656Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:56:30.0354968Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:56:30.0357874Z [ 42%] 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:30.0360999Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:56:30.0363459Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:56:32.2631498Z [ 42%] 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:32.2634890Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:56:32.2637392Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:56:32.2639846Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:56:32.2643055Z [ 42%] 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:32.2646349Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:56:32.2649174Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:56:32.2651669Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:56:32.2655146Z [ 42%] 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:32.2658842Z [ 42%] 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:32.2661776Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:56:32.2663986Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:56:32.2666239Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:56:32.2669524Z [ 43%] 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:32.2672845Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:56:32.2676145Z [ 43%] 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:32.2679617Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:56:32.2682837Z [ 43%] 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:32.2686030Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:56:32.2688788Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:56:32.2691197Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:56:32.2694249Z [ 43%] 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:32.2698106Z [ 43%] 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:32.2701331Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:56:32.2704644Z [ 44%] 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:32.2707781Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:56:32.2710149Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:56:32.2712434Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:56:32.2715672Z [ 44%] 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:32.2718766Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:56:32.2721199Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:56:32.2723713Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:56:32.2726442Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:56:32.2729015Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:56:32.2731685Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:56:32.2734299Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:56:32.2737603Z [ 45%] 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:32.2741460Z [ 45%] 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:32.2744885Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:56:32.2747640Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:56:32.2750989Z [ 45%] 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:32.2754101Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:56:32.2756549Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:56:32.2759010Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:56:32.2761480Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:56:32.2764014Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:56:32.2767347Z [ 45%] 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:32.2770551Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:56:32.2772931Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:56:32.2776301Z [ 45%] 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:32.2779624Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:56:32.2782125Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:56:32.2785316Z [ 45%] 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:32.2789176Z [ 45%] 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:32.2792478Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:56:32.2796047Z [ 45%] 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:32.2799505Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:56:32.2802573Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:56:32.2805055Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:56:32.2807486Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:56:32.2809952Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:56:32.2813289Z [ 45%] 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:34.1374937Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:56:34.1378305Z [ 46%] 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:34.1384417Z [ 46%] 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:34.1387677Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:56:34.1390414Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:56:34.1393132Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:56:34.1396461Z [ 46%] 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:34.1399825Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:56:34.1402630Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:56:34.1405174Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:56:34.1407822Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:56:34.1410379Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:56:34.1412783Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:56:34.1415158Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:56:34.1418465Z [ 47%] 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:34.1421859Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:56:34.1425182Z [ 48%] 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:34.1428284Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:56:34.1430961Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:56:34.1434325Z [ 48%] 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:34.1438524Z [ 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:34.1441581Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:56:34.1444858Z [ 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:34.1448005Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:56:34.1451362Z [ 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:34.1455544Z [ 48%] 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:34.1459602Z [ 48%] 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:34.1463051Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:56:34.1465681Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:56:34.1468076Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:56:34.1471361Z [ 48%] 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:34.1474515Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:56:34.1477281Z [ 48%] 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:34.1480594Z [ 48%] 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:34.1483362Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:56:34.1486558Z [ 48%] 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:34.1489534Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:56:34.1492589Z [ 48%] 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:34.1496422Z [ 48%] 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:34.1499597Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:56:34.1502018Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:56:34.1504099Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:56:34.1506553Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:56:34.1509816Z [ 48%] 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:34.1527680Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:56:34.1531333Z [ 49%] 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:34.1535037Z [ 49%] 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:34.1538040Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:56:34.1540465Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:56:34.1542917Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:56:34.1545945Z [ 50%] 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:34.1549440Z [ 50%] 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:34.1552579Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:56:34.1555023Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:56:34.1557649Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:56:34.1560871Z [ 50%] 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:34.1564582Z [ 50%] 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:34.1567658Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:56:34.1570781Z [ 50%] 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:34.1574017Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:56:34.1576684Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:56:35.8770774Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:56:35.8773967Z [ 50%] 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:35.8777194Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:56:35.8780270Z [ 50%] 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:35.8783150Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:56:35.8785915Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:56:35.8789756Z [ 50%] 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:35.8794402Z [ 50%] 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:35.8797964Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:56:35.8800657Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:56:35.8804108Z [ 51%] 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:35.8808636Z [ 51%] 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:35.8811990Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:56:35.8814337Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:56:35.8817413Z [ 51%] 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:35.8820555Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:56:35.8823334Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:56:35.8826265Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:56:35.8828596Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:56:35.8831682Z [ 51%] 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:35.8834755Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:56:35.8837892Z [ 51%] 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:35.8841604Z [ 51%] 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:35.8844657Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:56:35.8847182Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:56:35.8849641Z [ 52%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:56:35.8852106Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:56:35.8854638Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:56:35.8857647Z [ 53%] 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:35.8860654Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:56:35.8863148Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:56:35.8866199Z [ 53%] 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:35.8869686Z [ 53%] 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:35.8872630Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:56:35.8875681Z [ 53%] 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:35.8881737Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:56:35.8884221Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:56:35.8887685Z [ 53%] 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:35.8890825Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:56:35.8893268Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:56:35.8896336Z [ 53%] 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:35.8899364Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:56:35.8901916Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:56:35.8904933Z [ 53%] 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:35.8908467Z [ 53%] 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:35.8911365Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:56:35.8914230Z [ 53%] 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:35.8917099Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:56:35.8919580Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:56:35.8922592Z [ 53%] 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:35.8926017Z [ 53%] 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:35.8929002Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:56:35.8931995Z [ 53%] 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:35.8935042Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:56:35.8938100Z [ 53%] 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:35.8979748Z [ 53%] 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:35.8983262Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:56:35.8985862Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:56:35.8988659Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:56:35.8991037Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:56:35.8993956Z [ 54%] 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:35.8997414Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:56:37.9417916Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:56:37.9420750Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:56:37.9422560Z [ 54%] Linking CXX static library liboptimized_kernels.a 2025-06-05T23:56:37.9424587Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:56:37.9427597Z [ 55%] 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:37.9431041Z [ 55%] 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:37.9434673Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:56:37.9437852Z [ 55%] 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:37.9440994Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:56:37.9443694Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:56:37.9446719Z [ 55%] 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:37.9449665Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:56:37.9452174Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:56:37.9453661Z [ 55%] Built target optimized_kernels 2025-06-05T23:56:37.9454922Z [ 55%] Generating selected_operators.yaml for optimized_ops_lib 2025-06-05T23:56:37.9456772Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:56:37.9459328Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:56:37.9462362Z [ 55%] 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:37.9465303Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:56:37.9467717Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:56:37.9470006Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:56:37.9472402Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:56:37.9474768Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:56:37.9476974Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:56:37.9479570Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:56:37.9482536Z [ 56%] 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:37.9485807Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:56:37.9489019Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:56:37.9491419Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:56:37.9494579Z [ 56%] 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:37.9497483Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:56:37.9500425Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:56:37.9502662Z [ 56%] Generating code for kernel registration 2025-06-05T23:56:37.9504818Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:56:37.9508041Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:56:37.9510684Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:56:37.9513115Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:56:37.9515806Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:56:37.9518988Z [ 57%] 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:37.9522010Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:56:37.9524551Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:56:37.9527110Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:56:37.9529849Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:56:37.9532854Z [ 57%] 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:37.9535686Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:56:37.9537870Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:56:37.9540661Z [ 57%] 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:37.9543388Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:56:37.9545934Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:56:37.9548639Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:56:37.9551321Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:56:37.9553826Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:56:37.9556403Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:56:37.9559523Z [ 57%] 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:37.9562452Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:56:37.9565413Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:56:37.9568410Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:56:37.9571254Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:56:37.9574510Z [ 57%] 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:37.9577852Z [ 57%] 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:37.9580907Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:56:37.9583534Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:56:37.9586424Z [ 57%] 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:37.9589447Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:56:37.9592138Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:56:37.9594736Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:56:37.9597796Z [ 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:37.9600613Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:56:39.8620528Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:56:39.8623179Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:56:39.8626069Z [ 58%] 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:39.8629248Z [ 59%] 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:39.8631834Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:56:39.8634281Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:56:39.8636596Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:56:39.8639129Z [ 59%] 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:39.8641765Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:56:39.8643680Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:56:39.8646380Z [ 59%] 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:39.8648756Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:56:39.8651215Z [ 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:39.8654286Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:56:39.8656716Z [ 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:39.8659972Z [ 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:39.8662490Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:56:39.8664473Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:56:39.8666595Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:56:39.8669451Z [ 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:39.8673178Z [ 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:39.8676602Z [ 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:39.8680354Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:56:39.8682724Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:56:39.8684583Z [ 60%] Linking CXX static library liboptimized_portable_kernels.a 2025-06-05T23:56:39.8687084Z [ 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:39.8690487Z [ 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:39.8693328Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:56:39.8695796Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:56:39.8698748Z [ 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:39.8702079Z [ 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:39.8704934Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:56:39.8707386Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:56:39.8710414Z [ 60%] 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:39.8713854Z [ 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:39.8716825Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:56:39.8719455Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:56:39.8722500Z [ 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:39.8725294Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:56:39.8728514Z [ 61%] 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:39.8732325Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:56:39.8734206Z [ 61%] Built target optimized_portable_kernels 2025-06-05T23:56:39.8736044Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:56:39.8738784Z [ 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:39.8740705Z [ 62%] Merging kernel yaml files 2025-06-05T23:56:39.8742290Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:56:39.8744557Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:56:39.8747675Z [ 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:39.8751103Z [ 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:39.8754270Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:56:39.8757400Z [ 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:39.8760644Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:56:39.8763641Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:56:39.8766181Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:56:39.8768314Z [ 62%] Generating selected_operators.yaml for optimized_native_cpu_ops_lib 2025-06-05T23:56:39.8770514Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:56:39.8773327Z [ 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:39.8776438Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:56:39.8879987Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:56:39.8882838Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:56:39.8885590Z [ 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:39.8888717Z [ 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:39.8891532Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:56:39.8894565Z [ 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:39.8897991Z [ 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:39.8900920Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:56:41.2973734Z [ 62%] Building CXX object kernels/optimized/CMakeFiles/optimized_ops_lib.dir/optimized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:56:41.2977373Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:56:41.2979987Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:56:41.2982635Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:56:41.2985639Z [ 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:41.2987925Z [ 62%] Generating code for kernel registration 2025-06-05T23:56:41.2989916Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:56:41.2992470Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:56:41.2995192Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:56:41.2998066Z [ 63%] 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:41.3002181Z [ 63%] 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:41.3005553Z [ 63%] 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:41.3008987Z [ 64%] 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:41.3011921Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:56:41.3014567Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:56:41.3016537Z [ 64%] Linking CXX static library liboptimized_ops_lib.a 2025-06-05T23:56:41.3018928Z [ 64%] 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:41.3021787Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:56:41.3024141Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:56:41.3027369Z [ 64%] 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:41.3030592Z [ 64%] 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:41.3033931Z [ 64%] 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:41.3035883Z [ 64%] Built target optimized_ops_lib 2025-06-05T23:56:41.3038107Z [ 64%] 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:41.3041695Z [ 64%] 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:41.3045197Z [ 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:41.3048852Z [ 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:41.3052873Z [ 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:41.3056489Z [ 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:41.3059974Z [ 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:41.3063615Z [ 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:41.3067075Z [ 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:41.3070509Z [ 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:41.3074082Z [ 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:41.3077634Z [ 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:41.3081148Z [ 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:41.3084675Z [ 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:41.3088142Z [ 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:41.3090534Z [ 65%] Linking CXX static library libportable_kernels.a 2025-06-05T23:56:41.3092871Z [ 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:41.3096352Z [ 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:41.3099855Z [ 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:41.3103200Z [ 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:41.3106613Z [ 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:41.3110004Z [ 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:41.3113426Z [ 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:41.3116786Z [ 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:41.3120136Z [ 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:41.3123329Z [ 65%] 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:41.3126629Z [ 65%] 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:41.3130024Z [ 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:41.3133802Z [ 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:41.3137559Z [ 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:41.3140775Z [ 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:41.3144307Z [ 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:41.3147940Z [ 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:41.3151574Z [ 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:41.3155374Z [ 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:41.3158718Z [ 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:41.3160588Z [ 66%] Built target portable_kernels 2025-06-05T23:56:42.3235006Z [ 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:42.3238244Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_ops_lib.dir/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:56:42.3241360Z [ 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:42.3244921Z [ 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:42.3248338Z [ 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:42.3251682Z [ 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:42.3255195Z [ 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:42.3258610Z [ 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:42.3261974Z [ 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:42.3265412Z [ 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:42.3268900Z [ 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:42.3272356Z [ 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:42.3275938Z [ 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:42.3280947Z [ 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:42.3286655Z [ 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:42.3291597Z [ 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:42.3296979Z [ 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:42.3301816Z [ 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:42.3305880Z [ 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:42.3309885Z [ 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:42.3314628Z [ 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:42.3318335Z [ 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:42.3321849Z [ 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:42.3325498Z [ 68%] 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:42.3327727Z [ 68%] Linking CXX static library libportable_ops_lib.a 2025-06-05T23:56:42.3330238Z [ 68%] 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:42.3333413Z [ 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:42.3336591Z [ 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:42.3339723Z [ 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:42.3343532Z [ 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:42.3347078Z [ 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:42.3349163Z [ 68%] Built target portable_ops_lib 2025-06-05T23:56:42.3351516Z [ 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:42.3354924Z [ 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:42.3358319Z [ 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:42.3361901Z [ 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:42.3365299Z [ 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:42.3368757Z [ 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:42.3425810Z [ 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:42.3429307Z [ 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:42.3432613Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2025-06-05T23:56:42.3435946Z [ 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:42.3439326Z [ 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:42.3443189Z [ 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:42.3446581Z [ 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:42.3449981Z [ 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:42.3452889Z [ 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:42.3456125Z [ 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:42.3458978Z [ 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:42.3461736Z [ 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:42.3464671Z [ 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:42.3467714Z [ 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:42.3470907Z [ 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:42.3473849Z [ 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:42.3476806Z [ 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:43.3845800Z [ 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:43.3848861Z [ 70%] 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:43.3852087Z [ 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:43.3855529Z [ 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:43.3858728Z [ 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:43.3862110Z [ 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:43.3865845Z [ 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:43.3869145Z [ 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:43.3871970Z [ 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:43.3875014Z [ 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:43.3877673Z [ 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:43.3883643Z [ 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:43.3886201Z [ 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:43.3888652Z [ 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:43.3891235Z [ 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:43.3893758Z [ 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:43.3896405Z [ 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:43.3898946Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u4.c.o 2025-06-05T23:56:43.3901519Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-sse-rsqrt-u8.c.o 2025-06-05T23:56:43.3904095Z [ 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:43.3906860Z [ 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:43.3909700Z [ 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:43.3912917Z [ 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:43.3916024Z [ 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:43.3918870Z [ 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:43.3922004Z [ 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:43.3925015Z [ 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:43.3928035Z [ 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:43.3931395Z [ 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:43.3935020Z [ 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:43.3938233Z [ 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:43.3941339Z [ 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:43.3945035Z [ 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:43.3947730Z [ 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:43.3950469Z [ 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:43.3952918Z [ 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:43.3955228Z [ 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:43.3957567Z [ 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:43.3959932Z [ 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:43.3962247Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-avx.c.o 2025-06-05T23:56:43.3964526Z [ 72%] 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:43.3966849Z [ 72%] 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:43.3969244Z [ 72%] 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:43.3971584Z [ 72%] 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:43.3974115Z [ 72%] 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:43.3976562Z [ 72%] 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:43.3989901Z [ 72%] 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:43.3993223Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:56:43.3996582Z [ 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:43.4000057Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:56:43.4003974Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:56:43.4007508Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:56:43.4010962Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:56:44.4381677Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:56:44.4385538Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:56:44.4389270Z [ 73%] 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:44.4394020Z [ 73%] 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:44.4397372Z [ 73%] 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:44.4400782Z [ 73%] 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:44.4404368Z [ 73%] 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:44.4408315Z [ 73%] 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:44.4412284Z [ 73%] 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:44.4415874Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:56:44.4419534Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:56:44.4423151Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4c8-minmax-avx-ld128.c.o 2025-06-05T23:56:44.4426743Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:56:44.4431405Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:56:44.4435776Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx-madd-prfm.c.o 2025-06-05T23:56:44.4439725Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:56:44.4442734Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:56:44.4445542Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:56:44.4448956Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4c8-minmax-ssse3-madd.c.o 2025-06-05T23:56:44.4452037Z [ 74%] 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:44.4455088Z [ 74%] 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:44.4458049Z [ 74%] 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:44.4460944Z [ 74%] 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:44.4463901Z [ 75%] Building CXX object configurations/CMakeFiles/optimized_native_cpu_ops_lib.dir/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:56:44.4466809Z [ 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:44.4470004Z [ 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:44.4473163Z [ 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:44.4476253Z [ 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:44.4479601Z [ 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:44.4482909Z [ 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:44.4485855Z [ 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:44.4488967Z [ 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:44.4492412Z [ 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:44.4495953Z [ 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:44.4499413Z [ 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:44.4502831Z [ 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:44.4506121Z [ 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:44.4509577Z [ 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:44.4513291Z [ 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:44.4516981Z [ 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:44.4520577Z [ 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:44.4524294Z [ 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:44.4527660Z [ 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:44.4531212Z [ 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:44.4533460Z [ 77%] Linking CXX static library liboptimized_native_cpu_ops_lib.a 2025-06-05T23:56:44.4535930Z [ 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:44.4539218Z [ 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:45.3060067Z [ 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:45.3064464Z [ 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:45.3068677Z [ 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:45.3072808Z [ 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:45.3076949Z [ 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:45.3080953Z [ 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:45.3083417Z [ 77%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:56:45.3086215Z [ 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:45.3090445Z [ 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:45.3094834Z [ 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:45.3099132Z [ 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:45.3103144Z [ 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:45.3107496Z [ 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:45.3111769Z [ 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:45.3115888Z [ 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:45.3120054Z [ 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:45.3123726Z [ 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:45.3127754Z [ 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:45.3131208Z [ 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:45.3134661Z [ 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:45.3138067Z [ 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:45.3141795Z [ 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:45.3145861Z [ 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:45.3149605Z [ 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:45.3153096Z [ 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:45.3156865Z [ 79%] 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:45.3160399Z [ 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:45.3163648Z [ 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:45.3167262Z [ 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:45.3171067Z [ 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:45.3174248Z [ 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:45.3177137Z [ 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:45.3180230Z [ 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:45.3183583Z [ 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:45.3187092Z [ 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:45.3190669Z [ 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:45.3194111Z [ 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:45.3197684Z [ 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:45.3201772Z [ 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:45.3205224Z [ 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:45.3208621Z [ 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:45.3212233Z [ 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:45.3215614Z [ 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:45.3219073Z [ 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:45.3223011Z [ 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:45.3227095Z [ 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:45.3230882Z [ 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:45.3234944Z [ 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:46.1219113Z [ 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:46.1223539Z [ 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:46.1227636Z [ 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:46.1231952Z [ 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:46.1236336Z [ 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:46.1241124Z [ 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:46.1245505Z [ 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:46.1249805Z [ 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:46.1253836Z [ 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:46.1258347Z [ 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:46.1262833Z [ 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:46.1267122Z [ 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:46.1271418Z [ 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:46.1275727Z [ 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:46.1284400Z [ 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:46.1288672Z [ 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:46.1292850Z [ 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:46.1297036Z [ 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:46.1301052Z [ 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:46.1305196Z [ 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:46.1309376Z [ 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:46.1313507Z [ 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:46.1317633Z [ 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:46.1321634Z [ 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:46.1325597Z [ 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:46.1329908Z [ 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:46.1334256Z [ 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:46.1338734Z [ 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:46.1343005Z [ 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:46.1347272Z [ 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:46.1351786Z [ 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:46.1355679Z [ 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:46.1359716Z [ 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:46.1363807Z [ 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:46.1367968Z [ 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:46.1372007Z [ 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:46.1376237Z [ 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:46.1380573Z [ 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:46.1384738Z [ 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:46.1389010Z [ 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:46.1392871Z [ 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:46.1396914Z [ 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:46.1401080Z [ 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:46.1405069Z [ 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:46.1409069Z [ 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:46.1413270Z [ 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:46.9957578Z [ 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:46.9961636Z [ 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:46.9965232Z [ 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:46.9968856Z [ 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:46.9972519Z [ 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:46.9976387Z [ 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:46.9980094Z [ 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:46.9983673Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:56:46.9987304Z [ 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:46.9990943Z [ 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:46.9994791Z [ 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:46.9998115Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u1.c.o 2025-06-05T23:56:47.0001212Z [ 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:47.0004467Z [ 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:47.0007974Z [ 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:47.0011112Z [ 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:47.0014662Z [ 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:47.0017837Z [ 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:47.0021222Z [ 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:47.0024733Z [ 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:47.0028271Z [ 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:47.0032110Z [ 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:47.0035460Z [ 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:47.0038878Z [ 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:47.0041888Z [ 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:47.0044925Z [ 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:47.0048181Z [ 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:47.0051651Z [ 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:47.0055029Z [ 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:47.0058295Z [ 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:47.0061617Z [ 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:47.0064662Z [ 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:47.0068165Z [ 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:47.0071683Z [ 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:47.0075096Z [ 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:47.0079002Z [ 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:47.0082592Z [ 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:47.0086388Z [ 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:47.0090293Z [ 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:47.0094299Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:56:47.0098188Z [ 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:47.0102066Z [ 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:47.0105948Z [ 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:47.0110480Z [ 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:47.0114564Z [ 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:47.0118496Z [ 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:47.0122427Z [ 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:47.0126325Z [ 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:47.0130207Z [ 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:47.0134459Z [ 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:47.0138267Z [ 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:47.0142111Z [ 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:47.8729228Z [ 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:47.8733398Z [ 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:47.8737643Z [ 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:47.8741602Z [ 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:47.8745316Z [ 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:47.8749109Z [ 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:47.8752972Z [ 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:47.8756997Z [ 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:47.8761074Z [ 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:47.8764937Z [ 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:47.8768923Z [ 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:47.8772945Z [ 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:47.8777288Z [ 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:47.8780944Z [ 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:47.8784483Z [ 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:47.8788009Z [ 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:47.8791456Z [ 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:47.8794463Z [ 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:47.8797980Z [ 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:47.8801709Z [ 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:47.8805544Z [ 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:47.8809382Z [ 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:47.8826260Z [ 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:47.8830244Z [ 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:47.8834174Z [ 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:47.8837836Z [ 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:47.8841622Z [ 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:47.8845442Z [ 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:47.8849372Z [ 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:47.8853235Z [ 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:47.8857300Z [ 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:47.8861133Z [ 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:47.8865077Z [ 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:47.8869203Z [ 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:47.8873694Z [ 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:47.8877712Z [ 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:47.8881795Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:47.8885163Z [ 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:47.8888470Z [ 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:47.8891986Z [ 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:47.8895372Z [ 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:47.8898671Z [ 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:47.8902022Z [ 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:47.8905325Z [ 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:47.8909126Z [ 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:47.8913126Z [ 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:47.8917088Z [ 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:47.8920762Z [ 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:47.8924186Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-scalar.c.o 2025-06-05T23:56:47.8927534Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u4.c.o 2025-06-05T23:56:48.7111772Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-sse2-u32-acc2.c.o 2025-06-05T23:56:48.7115323Z [ 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:48.7118737Z [ 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:48.7122434Z [ 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:48.7126018Z [ 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:48.7129202Z [ 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:48.7132442Z [ 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:48.7135612Z [ 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:48.7138558Z [ 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:48.7141556Z [ 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:48.7144588Z [ 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:48.7148243Z [ 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:48.7151102Z [ 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:48.7154004Z [ 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:48.7156788Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2025-06-05T23:56:48.7159588Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:56:48.7162431Z [ 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:48.7165017Z [ 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:48.7167497Z [ 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:48.7170122Z [ 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:48.7172703Z [ 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:48.7175468Z [ 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:48.7178204Z [ 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:48.7183663Z [ 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:48.7186264Z [ 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:48.7189593Z [ 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:48.7192621Z [ 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:48.7195672Z [ 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:48.7199130Z [ 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:48.7202426Z [ 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:48.7206184Z [ 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:48.7210105Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:56:48.7213765Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u4.c.o 2025-06-05T23:56:48.7217522Z [ 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:48.7221106Z [ 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:48.7224624Z [ 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:48.7228239Z [ 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:48.7231729Z [ 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:48.7235250Z [ 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:48.7238556Z [ 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:48.7241918Z [ 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:48.7245190Z [ 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:48.7248293Z [ 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:48.7251222Z [ 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:48.7254786Z [ 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:48.7258336Z [ 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:48.7261569Z [ 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:48.7264593Z [ 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:48.7267843Z [ 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:48.7271068Z [ 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:48.7274211Z [ 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:48.7277889Z [ 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:48.7284112Z [ 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:49.4655214Z [ 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:49.4658670Z [ 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:49.4661894Z [ 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:49.4665292Z [ 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:49.4668875Z [ 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:49.4671916Z [ 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:49.4675055Z [ 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:49.4678181Z [ 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:49.4683143Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2025-06-05T23:56:49.4685956Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-sse2-u64.c.o 2025-06-05T23:56:49.4688958Z [ 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:49.4692286Z [ 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:49.4696060Z [ 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:49.4699322Z [ 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:49.4702745Z [ 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:49.4706309Z [ 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:49.4710137Z [ 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:49.4713789Z [ 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:49.4716928Z [ 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:49.4719959Z [ 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:49.4723457Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-scalar-float-u4.c.o 2025-06-05T23:56:49.4726886Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2c4-gemm-goi-sse2-u4.c.o 2025-06-05T23:56:49.4730477Z [ 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:49.4733796Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-sse2-u4.c.o 2025-06-05T23:56:49.4737244Z [ 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:49.4740835Z [ 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:49.4744889Z [ 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:49.4748158Z [ 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:49.4751509Z [ 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:49.4754061Z [ 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:49.4756872Z [ 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:49.4760050Z [ 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:49.4763112Z [ 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:49.4766202Z [ 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:49.4769302Z [ 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:49.4772386Z [ 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:49.4775620Z [ 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:49.4778932Z [ 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:49.4784743Z [ 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:49.4788706Z [ 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:49.4792541Z [ 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:49.4796051Z [ 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:49.4799291Z [ 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:49.4803125Z [ 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:49.4806650Z [ 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:49.4810189Z [ 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:49.4813412Z [ 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:49.4817104Z [ 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:49.4820811Z [ 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:49.4824806Z [ 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:49.4828551Z [ 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:49.4832450Z [ 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:49.4836288Z [ 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:49.4839747Z [ 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:51.2371679Z [ 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:51.2375041Z [ 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:51.2377870Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-32x32-reuse-switch-avx2.c.o 2025-06-05T23:56:51.2380182Z [ 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:51.2383041Z [ 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:51.2385940Z [ 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:51.2388906Z [ 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:51.2391704Z [ 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:51.2394712Z [ 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:51.2397839Z [ 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:51.2400153Z [ 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:51.2402948Z [ 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:51.2406044Z [ 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:51.2409816Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-transposev/xx-transposev-1x1-scalar-memcpy.c.o 2025-06-05T23:56:51.2413252Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-06-05T23:56:51.2416339Z [ 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:51.2419496Z [ 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:51.2422599Z [ 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:51.2425664Z [ 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:51.2429135Z [ 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:51.2432254Z [ 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:51.2435578Z [ 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:51.2438588Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-06-05T23:56:51.2440565Z [ 98%] Linking C static library libmicrokernels-prod.a 2025-06-05T23:56:51.2441506Z [ 98%] Built target microkernels-prod 2025-06-05T23:56:51.2442383Z [ 98%] Generating build_identifier.c 2025-06-05T23:56:51.2443496Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-06-05T23:56:51.2445002Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-06-05T23:56:51.2446533Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-06-05T23:56:51.2448090Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-06-05T23:56:51.2449524Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-06-05T23:56:51.2451005Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-06-05T23:56:51.2452485Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-06-05T23:56:51.2453986Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-06-05T23:56:51.2455585Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-06-05T23:56:51.2457056Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-06-05T23:56:51.2458889Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-06-05T23:56:51.2460935Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-06-05T23:56:51.2463322Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-06-05T23:56:51.2465860Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-06-05T23:56:51.2468813Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-06-05T23:56:51.2471604Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-06-05T23:56:51.2474449Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-06-05T23:56:51.2476516Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-06-05T23:56:51.2478827Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-06-05T23:56:51.2480885Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-06-05T23:56:51.2483087Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-06-05T23:56:51.2485152Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-06-05T23:56:51.2487290Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-06-05T23:56:51.2489287Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-06-05T23:56:51.2491252Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-06-05T23:56:51.2493206Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-06-05T23:56:51.2495314Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-06-05T23:56:51.2497134Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-06-05T23:56:51.2498995Z [100%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-06-05T23:56:51.2500727Z [100%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-06-05T23:56:51.2501972Z [100%] Linking CXX static library libXNNPACK.a 2025-06-05T23:56:51.2502637Z [100%] Built target XNNPACK 2025-06-05T23:56:51.2503766Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNCompiler.cpp.o 2025-06-05T23:56:51.2505551Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNExecutor.cpp.o 2025-06-05T23:56:51.2507274Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNHeader.cpp.o 2025-06-05T23:56:51.2509020Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNPACKBackend.cpp.o 2025-06-05T23:56:51.2510876Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNWeightsCache.cpp.o 2025-06-05T23:56:51.2512739Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/profiling/XNNProfiler.cpp.o 2025-06-05T23:56:51.2514147Z [100%] Linking CXX static library libxnnpack_backend.a 2025-06-05T23:56:51.2514882Z [100%] Built target xnnpack_backend 2025-06-05T23:56:51.2516200Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_fast_hadamard_transform.cpp.o 2025-06-05T23:56:52.6832385Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_fallback.cpp.o 2025-06-05T23:56:52.6834781Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_update_cache.cpp.o 2025-06-05T23:56:52.6837398Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_sdpa.cpp.o 2025-06-05T23:56:52.6840044Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/spinquant/fast_hadamard_transform.cpp.o 2025-06-05T23:56:52.6842871Z [100%] Building C object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/spinquant/third-party/FFHT/fht_avx.c.o 2025-06-05T23:56:52.6844805Z [100%] Linking CXX static library libcustom_ops.a 2025-06-05T23:56:52.6845766Z [100%] Built target custom_ops 2025-06-05T23:56:52.6847542Z [100%] Building CXX object CMakeFiles/executor_runner.dir/examples/portable/executor_runner/executor_runner.cpp.o 2025-06-05T23:56:52.6850108Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/data_loader/file_data_loader.cpp.o 2025-06-05T23:56:52.6852375Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:56:52.6854947Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs.cpp.o 2025-06-05T23:56:52.6857386Z [100%] Building CXX object CMakeFiles/executor_runner.dir/runtime/executor/test/test_backend_compiler_lib.cpp.o 2025-06-05T23:56:52.6859871Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs_portable.cpp.o 2025-06-05T23:56:52.6861532Z [100%] Linking CXX executable executor_runner 2025-06-05T23:56:52.6862379Z [100%] Built target executor_runner 2025-06-05T23:56:52.6863094Z Install the project... 2025-06-05T23:56:52.6863788Z -- Install configuration: "Release" 2025-06-05T23:56:52.6864711Z -- Installing: /pytorch/executorch/cmake-out/lib/libflatccrt.a 2025-06-05T23:56:52.6865875Z -- Installing: /pytorch/executorch/cmake-out/include/fxdiv.h 2025-06-05T23:56:52.6867235Z -- Installing: /pytorch/executorch/cmake-out/share/cpuinfo/cpuinfo-config.cmake 2025-06-05T23:56:52.6868664Z -- Installing: /pytorch/executorch/cmake-out/lib/libcpuinfo.a 2025-06-05T23:56:52.6869904Z -- Installing: /pytorch/executorch/cmake-out/include/cpuinfo.h 2025-06-05T23:56:52.6871295Z -- Installing: /pytorch/executorch/cmake-out/share/cpuinfo/cpuinfo-targets.cmake 2025-06-05T23:56:52.6873020Z -- Installing: /pytorch/executorch/cmake-out/share/cpuinfo/cpuinfo-targets-release.cmake 2025-06-05T23:56:52.6874569Z -- Installing: /pytorch/executorch/cmake-out/lib/pkgconfig/libcpuinfo.pc 2025-06-05T23:56:52.6875844Z -- Installing: /pytorch/executorch/cmake-out/include/pthreadpool.h 2025-06-05T23:56:52.6877125Z -- Installing: /pytorch/executorch/cmake-out/lib/libpthreadpool.a 2025-06-05T23:56:52.6878809Z -- Installing: /pytorch/executorch/cmake-out/lib/liboptimized_portable_kernels.a 2025-06-05T23:56:52.6880350Z -- Installing: /pytorch/executorch/cmake-out/lib/libportable_kernels.a 2025-06-05T23:56:52.6881736Z -- Installing: /pytorch/executorch/cmake-out/lib/libportable_ops_lib.a 2025-06-05T23:56:52.6883383Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/portable/Functions.h 2025-06-05T23:56:52.6885389Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/portable/NativeFunctions.h 2025-06-05T23:56:52.6887092Z -- Installing: /pytorch/executorch/cmake-out/lib/libeigen_blas.a 2025-06-05T23:56:52.6888326Z -- Installing: /pytorch/executorch/cmake-out/lib/libcpublas.a 2025-06-05T23:56:52.6889618Z -- Installing: /pytorch/executorch/cmake-out/lib/liboptimized_kernels.a 2025-06-05T23:56:52.6891021Z -- Installing: /pytorch/executorch/cmake-out/lib/liboptimized_ops_lib.a 2025-06-05T23:56:52.6892690Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/optimized/Functions.h 2025-06-05T23:56:52.6894695Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/optimized/NativeFunctions.h 2025-06-05T23:56:52.6896302Z -- Up-to-date: /pytorch/executorch/cmake-out/lib/libcpublas.a 2025-06-05T23:56:52.6897701Z -- Installing: /pytorch/executorch/cmake-out/lib/liboptimized_native_cpu_ops_lib.a 2025-06-05T23:56:52.6899469Z -- Installing: /pytorch/executorch/cmake-out/lib/Functions.h 2025-06-05T23:56:52.6900553Z -- Installing: /pytorch/executorch/cmake-out/lib/NativeFunctions.h 2025-06-05T23:56:52.6901832Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core 2025-06-05T23:56:52.6903604Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/array_ref.h 2025-06-05T23:56:52.6909882Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/data_loader.h 2025-06-05T23:56:52.6911813Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/defines.h 2025-06-05T23:56:52.6913525Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/error.h 2025-06-05T23:56:52.6915229Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/evalue.h 2025-06-05T23:56:52.6917046Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer.h 2025-06-05T23:56:52.6919060Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer_hooks.h 2025-06-05T23:56:52.6921135Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer_hooks_delegate.h 2025-06-05T23:56:52.6923169Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten 2025-06-05T23:56:52.6925053Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/exec_aten.h 2025-06-05T23:56:52.6927127Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:56:52.6929300Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h 2025-06-05T23:56:52.6931670Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h 2025-06-05T23:56:52.6933847Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/test 2025-06-05T23:56:52.6935964Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:56:52.6938000Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/dim_order_util.h 2025-06-05T23:56:52.6940253Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h 2025-06-05T23:56:52.6942612Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h 2025-06-05T23:56:52.6945098Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h 2025-06-05T23:56:52.6947402Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_util.h 2025-06-05T23:56:52.6949366Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/test 2025-06-05T23:56:52.6951263Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/freeable_buffer.h 2025-06-05T23:56:52.6953194Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/function_ref.h 2025-06-05T23:56:52.6955099Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/hierarchical_allocator.h 2025-06-05T23:56:52.6957113Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/memory_allocator.h 2025-06-05T23:56:52.6959086Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/named_data_map.h 2025-06-05T23:56:52.6960888Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type 2025-06-05T23:56:52.6962832Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bfloat16.h 2025-06-05T23:56:52.6965012Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bfloat16_math.h 2025-06-05T23:56:52.6967135Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bits_types.h 2025-06-05T23:56:52.6969461Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10 2025-06-05T23:56:52.6971366Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10 2025-06-05T23:56:52.6973630Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:56:52.6976277Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h 2025-06-05T23:56:52.6978820Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h 2025-06-05T23:56:52.6981094Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:56:52.6983406Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h 2025-06-05T23:56:52.6986125Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h 2025-06-05T23:56:52.6988606Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h 2025-06-05T23:56:52.6991004Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h 2025-06-05T23:56:52.6993418Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h 2025-06-05T23:56:52.6995867Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h 2025-06-05T23:56:52.6998385Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h 2025-06-05T23:56:52.7000861Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h 2025-06-05T23:56:52.7003265Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h 2025-06-05T23:56:53.2876123Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h 2025-06-05T23:56:53.2879160Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h 2025-06-05T23:56:53.2881702Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h 2025-06-05T23:56:53.2883941Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/complex.h 2025-06-05T23:56:53.2886002Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/device.h 2025-06-05T23:56:53.2888007Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/half.h 2025-06-05T23:56:53.2890139Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/optional.h 2025-06-05T23:56:53.2892192Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/qint_types.h 2025-06-05T23:56:53.2894332Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/scalar.h 2025-06-05T23:56:53.2896368Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/scalar_type.h 2025-06-05T23:56:53.2898533Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/string_view.h 2025-06-05T23:56:53.2900617Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor.h 2025-06-05T23:56:53.2902749Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor_impl.h 2025-06-05T23:56:53.2904881Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor_options.h 2025-06-05T23:56:53.2907313Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/test 2025-06-05T23:56:53.2909034Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/result.h 2025-06-05T23:56:53.2910637Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/span.h 2025-06-05T23:56:53.2912390Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tag.h 2025-06-05T23:56:53.2914101Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tensor_layout.h 2025-06-05T23:56:53.2915799Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tensor_shape_dynamism.h 2025-06-05T23:56:53.2917435Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/test 2025-06-05T23:56:53.2918822Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel 2025-06-05T23:56:53.2920459Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/kernel_includes.h 2025-06-05T23:56:53.2922645Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/kernel_runtime_context.h 2025-06-05T23:56:53.2924399Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/operator_registry.h 2025-06-05T23:56:53.2926062Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/test 2025-06-05T23:56:53.2927634Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/test/test_util.h 2025-06-05T23:56:53.2929379Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/thread_parallel_interface.h 2025-06-05T23:56:53.2930908Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform 2025-06-05T23:56:53.2931833Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/abort.h 2025-06-05T23:56:53.2932794Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/assert.h 2025-06-05T23:56:53.2933760Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/clock.h 2025-06-05T23:56:53.2934878Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/compat_unistd.h 2025-06-05T23:56:53.2935891Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/compiler.h 2025-06-05T23:56:53.2936879Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/default 2025-06-05T23:56:53.2937805Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/log.h 2025-06-05T23:56:53.2938758Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/platform.h 2025-06-05T23:56:53.2939735Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/profiler.h 2025-06-05T23:56:53.2940717Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/runtime.h 2025-06-05T23:56:53.2941671Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/system.h 2025-06-05T23:56:53.2942617Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test 2025-06-05T23:56:53.2943621Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test/pal_spy.h 2025-06-05T23:56:53.2945319Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test/stub_platform.h 2025-06-05T23:56:53.2947186Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/types.h 2025-06-05T23:56:53.2948758Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util 2025-06-05T23:56:53.2950464Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h 2025-06-05T23:56:53.2952414Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/meta_programming.h 2025-06-05T23:56:53.2954423Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/test 2025-06-05T23:56:53.2956261Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/type_list.h 2025-06-05T23:56:53.2957886Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor 2025-06-05T23:56:53.2959538Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor.h 2025-06-05T23:56:53.2961430Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_accessor.h 2025-06-05T23:56:53.2963131Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_ptr.h 2025-06-05T23:56:53.2964890Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_ptr_maker.h 2025-06-05T23:56:53.2966528Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/test 2025-06-05T23:56:53.2967866Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool 2025-06-05T23:56:53.2968986Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/cpuinfo_utils.h 2025-06-05T23:56:53.2970042Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/test 2025-06-05T23:56:53.2971055Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/threadpool.h 2025-06-05T23:56:53.2972176Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/threadpool_guard.h 2025-06-05T23:56:53.2973084Z -- Installing: /pytorch/executorch/cmake-out/lib/libexecutorch.a 2025-06-05T23:56:53.2973790Z -- Installing: /pytorch/executorch/cmake-out/lib/libexecutorch_core.a 2025-06-05T23:56:53.2974750Z -- Installing: /pytorch/executorch/cmake-out/lib/cmake/ExecuTorch/executorch-config.cmake 2025-06-05T23:56:53.2975570Z -- Installing: /pytorch/executorch/cmake-out/lib/libXNNPACK.a 2025-06-05T23:56:53.2976211Z -- Installing: /pytorch/executorch/cmake-out/include/xnnpack.h 2025-06-05T23:56:53.2976940Z -- Installing: /pytorch/executorch/cmake-out/include/experiments-config.h 2025-06-05T23:56:53.2977800Z -- Installing: /pytorch/executorch/cmake-out/lib/libmicrokernels-prod.a 2025-06-05T23:56:53.2978943Z -- Up-to-date: /pytorch/executorch/cmake-out/lib/libmicrokernels-prod.a 2025-06-05T23:56:53.2979689Z -- Installing: /pytorch/executorch/cmake-out/lib/libxnnpack_backend.a 2025-06-05T23:56:53.2980385Z -- Installing: /pytorch/executorch/cmake-out/lib/libetdump.a 2025-06-05T23:56:53.2981061Z -- Installing: /pytorch/executorch/cmake-out/lib/libbundled_program.a 2025-06-05T23:56:53.2981835Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_data_loader.a 2025-06-05T23:56:53.2982616Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_flat_tensor.a 2025-06-05T23:56:53.2983392Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_module.so 2025-06-05T23:56:53.2984163Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_module_static.a 2025-06-05T23:56:53.2984944Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_tensor.a 2025-06-05T23:56:53.2985702Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_threadpool.a 2025-06-05T23:56:53.2986438Z -- Installing: /pytorch/executorch/cmake-out/lib/libcustom_ops.a 2025-06-05T23:56:53.2987145Z -- Installing: /pytorch/executorch/cmake-out/lib/libquantized_kernels.a 2025-06-05T23:56:53.2987909Z -- Installing: /pytorch/executorch/cmake-out/lib/libquantized_ops_lib.a 2025-06-05T23:56:53.2988783Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/quantized/Functions.h 2025-06-05T23:56:53.2990234Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/quantized/NativeFunctions.h 2025-06-05T23:56:53.2991444Z + echo ::endgroup:: 2025-06-05T23:56:53.2992402Z ##[endgroup] 2025-06-05T23:56:53.2992902Z + echo '::group::Set up Hugging Face' 2025-06-05T23:56:53.2993951Z ##[group]Set up Hugging Face 2025-06-05T23:56:53.2994491Z + pip install -U 'huggingface_hub[cli]' 2025-06-05T23:56:53.2995343Z 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:53.2996818Z 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:53.2998332Z 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:53.2999839Z 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:53.3001198Z 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:55.1871207Z 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:55.1872641Z 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:55.1874363Z 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:55.1875827Z 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:55.1876839Z Collecting InquirerPy==0.3.4 (from huggingface_hub[cli]) 2025-06-05T23:56:55.1877692Z Downloading InquirerPy-0.3.4-py3-none-any.whl.metadata (8.1 kB) 2025-06-05T23:56:55.1878712Z Collecting pfzy<0.4.0,>=0.3.1 (from InquirerPy==0.3.4->huggingface_hub[cli]) 2025-06-05T23:56:55.1879429Z Downloading pfzy-0.3.4-py3-none-any.whl.metadata (4.9 kB) 2025-06-05T23:56:55.1880191Z Collecting prompt-toolkit<4.0.0,>=3.0.1 (from InquirerPy==0.3.4->huggingface_hub[cli]) 2025-06-05T23:56:55.1881026Z Downloading prompt_toolkit-3.0.51-py3-none-any.whl.metadata (6.4 kB) 2025-06-05T23:56:55.1881907Z Collecting wcwidth (from prompt-toolkit<4.0.0,>=3.0.1->InquirerPy==0.3.4->huggingface_hub[cli]) 2025-06-05T23:56:55.1882755Z Downloading wcwidth-0.2.13-py2.py3-none-any.whl.metadata (14 kB) 2025-06-05T23:56:55.1884103Z 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:55.1885653Z 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:55.1887131Z 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:55.1888675Z 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:55.1889769Z Downloading InquirerPy-0.3.4-py3-none-any.whl (67 kB) 2025-06-05T23:56:55.1890359Z Downloading pfzy-0.3.4-py3-none-any.whl (8.5 kB) 2025-06-05T23:56:55.1890966Z Downloading prompt_toolkit-3.0.51-py3-none-any.whl (387 kB) 2025-06-05T23:56:55.1891809Z Downloading wcwidth-0.2.13-py2.py3-none-any.whl (34 kB) 2025-06-05T23:56:55.1892509Z Installing collected packages: wcwidth, prompt-toolkit, pfzy, InquirerPy 2025-06-05T23:56:55.1893317Z [?25l 2025-06-05T23:56:55.1893937Z  ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1/4 [prompt-toolkit] 2025-06-05T23:56:55.1894897Z  ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1/4 [prompt-toolkit] 2025-06-05T23:56:55.1895649Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4/4 [InquirerPy] 2025-06-05T23:56:55.1896169Z [?25h 2025-06-05T23:56:55.1897005Z Successfully installed InquirerPy-0.3.4 pfzy-0.3.4 prompt-toolkit-3.0.51 wcwidth-0.2.13 2025-06-05T23:56:55.1898260Z + huggingface-cli login --token *** 2025-06-05T23:56:55.1899808Z 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:55.1901158Z Token is valid (permission: read). 2025-06-05T23:56:55.1901896Z The token `EexecuTorch_CI` has been saved to /var/lib/ci-user/.cache/huggingface/stored_tokens 2025-06-05T23:56:55.1902813Z Your token has been saved to /var/lib/ci-user/.cache/huggingface/token 2025-06-05T23:56:55.1903516Z Login successful. 2025-06-05T23:56:55.1904015Z The current active token is: `EexecuTorch_CI` 2025-06-05T23:56:55.1904600Z + git clone https://github.com/huggingface/optimum-executorch 2025-06-05T23:56:55.1905169Z Cloning into 'optimum-executorch'... 2025-06-05T23:56:55.1905730Z remote: Enumerating objects: 692, done. 2025-06-05T23:56:55.1906257Z remote: Counting objects: 0% (1/272) 2025-06-05T23:56:55.1906765Z remote: Counting objects: 1% (3/272) 2025-06-05T23:56:55.1907340Z remote: Counting objects: 2% (6/272) 2025-06-05T23:56:55.1907862Z remote: Counting objects: 3% (9/272) 2025-06-05T23:56:55.1908367Z remote: Counting objects: 4% (11/272) 2025-06-05T23:56:55.1908901Z remote: Counting objects: 5% (14/272) 2025-06-05T23:56:55.1909522Z remote: Counting objects: 6% (17/272) 2025-06-05T23:56:55.1910166Z remote: Counting objects: 7% (20/272) 2025-06-05T23:56:55.1910678Z remote: Counting objects: 8% (22/272) 2025-06-05T23:56:55.1911192Z remote: Counting objects: 9% (25/272) 2025-06-05T23:56:55.1911693Z remote: Counting objects: 10% (28/272) 2025-06-05T23:56:55.1912214Z remote: Counting objects: 11% (30/272) 2025-06-05T23:56:55.1912810Z remote: Counting objects: 12% (33/272) 2025-06-05T23:56:55.1913444Z remote: Counting objects: 13% (36/272) 2025-06-05T23:56:55.1913954Z remote: Counting objects: 14% (39/272) 2025-06-05T23:56:55.1914542Z remote: Counting objects: 15% (41/272) 2025-06-05T23:56:55.1915189Z remote: Counting objects: 16% (44/272) 2025-06-05T23:56:55.1915761Z remote: Counting objects: 17% (47/272) 2025-06-05T23:56:55.1916346Z remote: Counting objects: 18% (49/272) 2025-06-05T23:56:55.1916993Z remote: Counting objects: 19% (52/272) 2025-06-05T23:56:55.1917499Z remote: Counting objects: 20% (55/272) 2025-06-05T23:56:55.1918014Z remote: Counting objects: 21% (58/272) 2025-06-05T23:56:55.1918517Z remote: Counting objects: 22% (60/272) 2025-06-05T23:56:55.1919036Z remote: Counting objects: 23% (63/272) 2025-06-05T23:56:55.1919624Z remote: Counting objects: 24% (66/272) 2025-06-05T23:56:55.1920165Z remote: Counting objects: 25% (68/272) 2025-06-05T23:56:55.1920798Z remote: Counting objects: 26% (71/272) 2025-06-05T23:56:55.1921318Z remote: Counting objects: 27% (74/272) 2025-06-05T23:56:55.1921821Z remote: Counting objects: 28% (77/272) 2025-06-05T23:56:55.1922407Z remote: Counting objects: 29% (79/272) 2025-06-05T23:56:55.1922939Z remote: Counting objects: 30% (82/272) 2025-06-05T23:56:55.1923559Z remote: Counting objects: 31% (85/272) 2025-06-05T23:56:55.1924062Z remote: Counting objects: 32% (88/272) 2025-06-05T23:56:55.1924577Z remote: Counting objects: 33% (90/272) 2025-06-05T23:56:55.1925166Z remote: Counting objects: 34% (93/272) 2025-06-05T23:56:55.1925789Z remote: Counting objects: 35% (96/272) 2025-06-05T23:56:55.1926310Z remote: Counting objects: 36% (98/272) 2025-06-05T23:56:55.1926818Z remote: Counting objects: 37% (101/272) 2025-06-05T23:56:55.1927427Z remote: Counting objects: 38% (104/272) 2025-06-05T23:56:55.1928058Z remote: Counting objects: 39% (107/272) 2025-06-05T23:56:55.1928592Z remote: Counting objects: 40% (109/272) 2025-06-05T23:56:55.1929106Z remote: Counting objects: 41% (112/272) 2025-06-05T23:56:55.1929628Z remote: Counting objects: 42% (115/272) 2025-06-05T23:56:55.1930135Z remote: Counting objects: 43% (117/272) 2025-06-05T23:56:55.1930746Z remote: Counting objects: 44% (120/272) 2025-06-05T23:56:55.1931386Z remote: Counting objects: 45% (123/272) 2025-06-05T23:56:55.1932044Z remote: Counting objects: 46% (126/272) 2025-06-05T23:56:55.1932566Z remote: Counting objects: 47% (128/272) 2025-06-05T23:56:55.1933186Z remote: Counting objects: 48% (131/272) 2025-06-05T23:56:55.1933968Z remote: Counting objects: 49% (134/272) 2025-06-05T23:56:55.1934624Z remote: Counting objects: 50% (136/272) 2025-06-05T23:56:55.1935275Z remote: Counting objects: 51% (139/272) 2025-06-05T23:56:55.1935904Z remote: Counting objects: 52% (142/272) 2025-06-05T23:56:55.1936469Z remote: Counting objects: 53% (145/272) 2025-06-05T23:56:55.1937113Z remote: Counting objects: 54% (147/272) 2025-06-05T23:56:55.1937645Z remote: Counting objects: 55% (150/272) 2025-06-05T23:56:55.1938343Z remote: Counting objects: 56% (153/272) 2025-06-05T23:56:55.1939019Z remote: Counting objects: 57% (156/272) 2025-06-05T23:56:55.1939535Z remote: Counting objects: 58% (158/272) 2025-06-05T23:56:55.1940254Z remote: Counting objects: 59% (161/272) 2025-06-05T23:56:55.1940922Z remote: Counting objects: 60% (164/272) 2025-06-05T23:56:55.1941655Z remote: Counting objects: 61% (166/272) 2025-06-05T23:56:55.1942178Z remote: Counting objects: 62% (169/272) 2025-06-05T23:56:55.1942705Z remote: Counting objects: 63% (172/272) 2025-06-05T23:56:55.1943286Z remote: Counting objects: 64% (175/272) 2025-06-05T23:56:55.1943935Z remote: Counting objects: 65% (177/272) 2025-06-05T23:56:55.1944649Z remote: Counting objects: 66% (180/272) 2025-06-05T23:56:55.1945363Z remote: Counting objects: 67% (183/272) 2025-06-05T23:56:55.1945978Z remote: Counting objects: 68% (185/272) 2025-06-05T23:56:55.1946504Z remote: Counting objects: 69% (188/272) 2025-06-05T23:56:55.1947133Z remote: Counting objects: 70% (191/272) 2025-06-05T23:56:55.1947884Z remote: Counting objects: 71% (194/272) 2025-06-05T23:56:55.1948528Z remote: Counting objects: 72% (196/272) 2025-06-05T23:56:55.1949112Z remote: Counting objects: 73% (199/272) 2025-06-05T23:56:55.1949705Z remote: Counting objects: 74% (202/272) 2025-06-05T23:56:55.1950219Z remote: Counting objects: 75% (204/272) 2025-06-05T23:56:55.1950866Z remote: Counting objects: 76% (207/272) 2025-06-05T23:56:55.1951440Z remote: Counting objects: 77% (210/272) 2025-06-05T23:56:55.1952026Z remote: Counting objects: 78% (213/272) 2025-06-05T23:56:55.1952597Z remote: Counting objects: 79% (215/272) 2025-06-05T23:56:55.1953249Z remote: Counting objects: 80% (218/272) 2025-06-05T23:56:55.1954015Z remote: Counting objects: 81% (221/272) 2025-06-05T23:56:55.1954798Z remote: Counting objects: 82% (224/272) 2025-06-05T23:56:55.1955608Z remote: Counting objects: 83% (226/272) 2025-06-05T23:56:55.1956407Z remote: Counting objects: 84% (229/272) 2025-06-05T23:56:55.1956996Z remote: Counting objects: 85% (232/272) 2025-06-05T23:56:55.1957696Z remote: Counting objects: 86% (234/272) 2025-06-05T23:56:55.1958406Z remote: Counting objects: 87% (237/272) 2025-06-05T23:56:55.1959020Z remote: Counting objects: 88% (240/272) 2025-06-05T23:56:55.1959530Z remote: Counting objects: 89% (243/272) 2025-06-05T23:56:55.1960052Z remote: Counting objects: 90% (245/272) 2025-06-05T23:56:55.1960567Z remote: Counting objects: 91% (248/272) 2025-06-05T23:56:55.1961090Z remote: Counting objects: 92% (251/272) 2025-06-05T23:56:55.1961596Z remote: Counting objects: 93% (253/272) 2025-06-05T23:56:55.1962124Z remote: Counting objects: 94% (256/272) 2025-06-05T23:56:55.1962634Z remote: Counting objects: 95% (259/272) 2025-06-05T23:56:55.1963144Z remote: Counting objects: 96% (262/272) 2025-06-05T23:56:55.1963772Z remote: Counting objects: 97% (264/272) 2025-06-05T23:56:55.1964357Z remote: Counting objects: 98% (267/272) 2025-06-05T23:56:55.1965011Z remote: Counting objects: 99% (270/272) 2025-06-05T23:56:55.1965750Z remote: Counting objects: 100% (272/272) 2025-06-05T23:56:55.1966761Z remote: Counting objects: 100% (272/272), done. 2025-06-05T23:56:55.1967739Z remote: Compressing objects: 1% (1/79) 2025-06-05T23:56:55.1968437Z remote: Compressing objects: 2% (2/79) 2025-06-05T23:56:55.1969145Z remote: Compressing objects: 3% (3/79) 2025-06-05T23:56:55.1969737Z remote: Compressing objects: 5% (4/79) 2025-06-05T23:56:55.1970254Z remote: Compressing objects: 6% (5/79) 2025-06-05T23:56:55.1970787Z remote: Compressing objects: 7% (6/79) 2025-06-05T23:56:55.1971361Z remote: Compressing objects: 8% (7/79) 2025-06-05T23:56:55.2075287Z remote: Compressing objects: 10% (8/79) 2025-06-05T23:56:55.2076505Z remote: Compressing objects: 11% (9/79) 2025-06-05T23:56:55.2077347Z remote: Compressing objects: 12% (10/79) 2025-06-05T23:56:55.2078230Z remote: Compressing objects: 13% (11/79) 2025-06-05T23:56:55.2079411Z remote: Compressing objects: 15% (12/79) 2025-06-05T23:56:55.2080367Z remote: Compressing objects: 16% (13/79) 2025-06-05T23:56:55.2081617Z remote: Compressing objects: 17% (14/79) 2025-06-05T23:56:55.2082552Z remote: Compressing objects: 18% (15/79) 2025-06-05T23:56:55.2083525Z remote: Compressing objects: 20% (16/79) 2025-06-05T23:56:55.2084510Z remote: Compressing objects: 21% (17/79) 2025-06-05T23:56:55.2085497Z remote: Compressing objects: 22% (18/79) 2025-06-05T23:56:55.2086357Z remote: Compressing objects: 24% (19/79) 2025-06-05T23:56:55.2087156Z remote: Compressing objects: 25% (20/79) 2025-06-05T23:56:55.2088000Z remote: Compressing objects: 26% (21/79) 2025-06-05T23:56:55.2088769Z remote: Compressing objects: 27% (22/79) 2025-06-05T23:56:55.2089730Z remote: Compressing objects: 29% (23/79) 2025-06-05T23:56:55.2090650Z remote: Compressing objects: 30% (24/79) 2025-06-05T23:56:55.2091610Z remote: Compressing objects: 31% (25/79) 2025-06-05T23:56:55.2092590Z remote: Compressing objects: 32% (26/79) 2025-06-05T23:56:55.2093566Z remote: Compressing objects: 34% (27/79) 2025-06-05T23:56:55.2094690Z remote: Compressing objects: 35% (28/79) 2025-06-05T23:56:55.2095702Z remote: Compressing objects: 36% (29/79) 2025-06-05T23:56:55.2096660Z remote: Compressing objects: 37% (30/79) 2025-06-05T23:56:55.2097636Z remote: Compressing objects: 39% (31/79) 2025-06-05T23:56:55.2098618Z remote: Compressing objects: 40% (32/79) 2025-06-05T23:56:55.2099574Z remote: Compressing objects: 41% (33/79) 2025-06-05T23:56:55.2100562Z remote: Compressing objects: 43% (34/79) 2025-06-05T23:56:55.2101572Z remote: Compressing objects: 44% (35/79) 2025-06-05T23:56:55.2102559Z remote: Compressing objects: 45% (36/79) 2025-06-05T23:56:55.2103541Z remote: Compressing objects: 46% (37/79) 2025-06-05T23:56:55.2104328Z remote: Compressing objects: 48% (38/79) 2025-06-05T23:56:55.2105206Z remote: Compressing objects: 49% (39/79) 2025-06-05T23:56:55.2106041Z remote: Compressing objects: 50% (40/79) 2025-06-05T23:56:55.2106858Z remote: Compressing objects: 51% (41/79) 2025-06-05T23:56:55.2107669Z remote: Compressing objects: 53% (42/79) 2025-06-05T23:56:55.2108639Z remote: Compressing objects: 54% (43/79) 2025-06-05T23:56:55.2109567Z remote: Compressing objects: 55% (44/79) 2025-06-05T23:56:55.2110234Z remote: Compressing objects: 56% (45/79) 2025-06-05T23:56:55.2110761Z remote: Compressing objects: 58% (46/79) 2025-06-05T23:56:55.2111289Z remote: Compressing objects: 59% (47/79) 2025-06-05T23:56:55.2111841Z remote: Compressing objects: 60% (48/79) 2025-06-05T23:56:55.2112370Z remote: Compressing objects: 62% (49/79) 2025-06-05T23:56:55.2112906Z remote: Compressing objects: 63% (50/79) 2025-06-05T23:56:55.2113432Z remote: Compressing objects: 64% (51/79) 2025-06-05T23:56:55.2113969Z remote: Compressing objects: 65% (52/79) 2025-06-05T23:56:55.2114495Z remote: Compressing objects: 67% (53/79) 2025-06-05T23:56:55.2115032Z remote: Compressing objects: 68% (54/79) 2025-06-05T23:56:55.2115563Z remote: Compressing objects: 69% (55/79) 2025-06-05T23:56:55.2116324Z remote: Compressing objects: 70% (56/79) 2025-06-05T23:56:55.2116861Z remote: Compressing objects: 72% (57/79) 2025-06-05T23:56:55.2117410Z remote: Compressing objects: 73% (58/79) 2025-06-05T23:56:55.2118024Z remote: Compressing objects: 74% (59/79) 2025-06-05T23:56:55.2118570Z remote: Compressing objects: 75% (60/79) 2025-06-05T23:56:55.2119104Z remote: Compressing objects: 77% (61/79) 2025-06-05T23:56:55.2119748Z remote: Compressing objects: 78% (62/79) 2025-06-05T23:56:55.2120285Z remote: Compressing objects: 79% (63/79) 2025-06-05T23:56:55.2120831Z remote: Compressing objects: 81% (64/79) 2025-06-05T23:56:55.2121361Z remote: Compressing objects: 82% (65/79) 2025-06-05T23:56:55.2121894Z remote: Compressing objects: 83% (66/79) 2025-06-05T23:56:55.2122440Z remote: Compressing objects: 84% (67/79) 2025-06-05T23:56:55.2122968Z remote: Compressing objects: 86% (68/79) 2025-06-05T23:56:55.2123591Z remote: Compressing objects: 87% (69/79) 2025-06-05T23:56:55.2124126Z remote: Compressing objects: 88% (70/79) 2025-06-05T23:56:55.2124666Z remote: Compressing objects: 89% (71/79) 2025-06-05T23:56:55.2125197Z remote: Compressing objects: 91% (72/79) 2025-06-05T23:56:55.2125799Z remote: Compressing objects: 92% (73/79) 2025-06-05T23:56:55.2126468Z remote: Compressing objects: 93% (74/79) 2025-06-05T23:56:55.2127005Z remote: Compressing objects: 94% (75/79) 2025-06-05T23:56:55.2127536Z remote: Compressing objects: 96% (76/79) 2025-06-05T23:56:55.2128074Z remote: Compressing objects: 97% (77/79) 2025-06-05T23:56:55.2128596Z remote: Compressing objects: 98% (78/79) 2025-06-05T23:56:55.2129137Z remote: Compressing objects: 100% (79/79) 2025-06-05T23:56:55.2129699Z remote: Compressing objects: 100% (79/79), done. 2025-06-05T23:56:55.2130191Z Receiving objects: 0% (1/692) 2025-06-05T23:56:55.2130586Z Receiving objects: 1% (7/692) 2025-06-05T23:56:55.2130990Z Receiving objects: 2% (14/692) 2025-06-05T23:56:55.2131385Z Receiving objects: 3% (21/692) 2025-06-05T23:56:55.2131779Z Receiving objects: 4% (28/692) 2025-06-05T23:56:55.2132180Z Receiving objects: 5% (35/692) 2025-06-05T23:56:55.2142819Z Receiving objects: 6% (42/692) 2025-06-05T23:56:55.2143534Z Receiving objects: 7% (49/692) 2025-06-05T23:56:55.2143954Z Receiving objects: 8% (56/692) 2025-06-05T23:56:55.2144354Z Receiving objects: 9% (63/692) 2025-06-05T23:56:55.2144766Z Receiving objects: 10% (70/692) 2025-06-05T23:56:55.2145163Z Receiving objects: 11% (77/692) 2025-06-05T23:56:55.2145568Z Receiving objects: 12% (84/692) 2025-06-05T23:56:55.2145957Z Receiving objects: 13% (90/692) 2025-06-05T23:56:55.2146352Z Receiving objects: 14% (97/692) 2025-06-05T23:56:55.2146760Z Receiving objects: 15% (104/692) 2025-06-05T23:56:55.2147166Z Receiving objects: 16% (111/692) 2025-06-05T23:56:55.2147579Z Receiving objects: 17% (118/692) 2025-06-05T23:56:55.2147978Z Receiving objects: 18% (125/692) 2025-06-05T23:56:55.2148392Z Receiving objects: 19% (132/692) 2025-06-05T23:56:55.2148907Z Receiving objects: 20% (139/692) 2025-06-05T23:56:55.2149449Z Receiving objects: 21% (146/692) 2025-06-05T23:56:55.2149987Z Receiving objects: 22% (153/692) 2025-06-05T23:56:55.2150554Z Receiving objects: 23% (160/692) 2025-06-05T23:56:55.2151108Z Receiving objects: 24% (167/692) 2025-06-05T23:56:55.2151504Z Receiving objects: 25% (173/692) 2025-06-05T23:56:55.2151899Z Receiving objects: 26% (180/692) 2025-06-05T23:56:55.2152313Z Receiving objects: 27% (187/692) 2025-06-05T23:56:55.2152701Z Receiving objects: 28% (194/692) 2025-06-05T23:56:55.2153106Z Receiving objects: 29% (201/692) 2025-06-05T23:56:55.2153494Z Receiving objects: 30% (208/692) 2025-06-05T23:56:55.2153894Z Receiving objects: 31% (215/692) 2025-06-05T23:56:55.2154285Z Receiving objects: 32% (222/692) 2025-06-05T23:56:55.2154685Z Receiving objects: 33% (229/692) 2025-06-05T23:56:55.2155080Z Receiving objects: 34% (236/692) 2025-06-05T23:56:55.2155492Z Receiving objects: 35% (243/692) 2025-06-05T23:56:55.2156085Z Receiving objects: 36% (250/692) 2025-06-05T23:56:55.2156497Z Receiving objects: 37% (257/692) 2025-06-05T23:56:55.2156898Z Receiving objects: 38% (263/692) 2025-06-05T23:56:55.2157358Z Receiving objects: 39% (270/692) 2025-06-05T23:56:55.2157756Z Receiving objects: 40% (277/692) 2025-06-05T23:56:55.2158164Z Receiving objects: 41% (284/692) 2025-06-05T23:56:55.2158558Z Receiving objects: 42% (291/692) 2025-06-05T23:56:55.2159017Z Receiving objects: 43% (298/692) 2025-06-05T23:56:55.2159423Z Receiving objects: 44% (305/692) 2025-06-05T23:56:55.2159815Z Receiving objects: 45% (312/692) 2025-06-05T23:56:55.2160221Z Receiving objects: 46% (319/692) 2025-06-05T23:56:55.2160622Z Receiving objects: 47% (326/692) 2025-06-05T23:56:55.2161044Z Receiving objects: 48% (333/692) 2025-06-05T23:56:55.2161442Z Receiving objects: 49% (340/692) 2025-06-05T23:56:55.2161851Z Receiving objects: 50% (346/692) 2025-06-05T23:56:55.2162293Z Receiving objects: 51% (353/692) 2025-06-05T23:56:55.2162705Z Receiving objects: 52% (360/692) 2025-06-05T23:56:55.2163098Z Receiving objects: 53% (367/692) 2025-06-05T23:56:55.2163500Z Receiving objects: 54% (374/692) 2025-06-05T23:56:55.2163889Z Receiving objects: 55% (381/692) 2025-06-05T23:56:55.2164301Z Receiving objects: 56% (388/692) 2025-06-05T23:56:55.2164693Z Receiving objects: 57% (395/692) 2025-06-05T23:56:55.2165084Z Receiving objects: 58% (402/692) 2025-06-05T23:56:55.2165489Z Receiving objects: 59% (409/692) 2025-06-05T23:56:55.2165884Z Receiving objects: 60% (416/692) 2025-06-05T23:56:55.2166286Z Receiving objects: 61% (423/692) 2025-06-05T23:56:55.2166678Z Receiving objects: 62% (430/692) 2025-06-05T23:56:55.2167087Z Receiving objects: 63% (436/692) 2025-06-05T23:56:55.2167481Z Receiving objects: 64% (443/692) 2025-06-05T23:56:55.2167886Z Receiving objects: 65% (450/692) 2025-06-05T23:56:55.2168276Z Receiving objects: 66% (457/692) 2025-06-05T23:56:55.2168682Z Receiving objects: 67% (464/692) 2025-06-05T23:56:55.2169076Z Receiving objects: 68% (471/692) 2025-06-05T23:56:55.2169481Z Receiving objects: 69% (478/692) 2025-06-05T23:56:55.2169876Z Receiving objects: 70% (485/692) 2025-06-05T23:56:55.2170278Z Receiving objects: 71% (492/692) 2025-06-05T23:56:55.2170676Z Receiving objects: 72% (499/692) 2025-06-05T23:56:55.2171073Z Receiving objects: 73% (506/692) 2025-06-05T23:56:55.2171483Z Receiving objects: 74% (513/692) 2025-06-05T23:56:55.2172355Z remote: Total 692 (delta 226), reused 198 (delta 191), pack-reused 420 (from 1) 2025-06-05T23:56:55.2172987Z Receiving objects: 75% (519/692) 2025-06-05T23:56:55.2173390Z Receiving objects: 76% (526/692) 2025-06-05T23:56:55.2174131Z Receiving objects: 77% (533/692) 2025-06-05T23:56:55.2174542Z Receiving objects: 78% (540/692) 2025-06-05T23:56:55.2174947Z Receiving objects: 79% (547/692) 2025-06-05T23:56:55.2175337Z Receiving objects: 80% (554/692) 2025-06-05T23:56:55.2175745Z Receiving objects: 81% (561/692) 2025-06-05T23:56:55.2176141Z Receiving objects: 82% (568/692) 2025-06-05T23:56:55.2176553Z Receiving objects: 83% (575/692) 2025-06-05T23:56:55.2176964Z Receiving objects: 84% (582/692) 2025-06-05T23:56:55.2177460Z Receiving objects: 85% (589/692) 2025-06-05T23:56:55.2177928Z Receiving objects: 86% (596/692) 2025-06-05T23:56:55.2178709Z Receiving objects: 87% (603/692) 2025-06-05T23:56:55.2179165Z Receiving objects: 88% (609/692) 2025-06-05T23:56:55.2179558Z Receiving objects: 89% (616/692) 2025-06-05T23:56:55.2179969Z Receiving objects: 90% (623/692) 2025-06-05T23:56:55.2180366Z Receiving objects: 91% (630/692) 2025-06-05T23:56:55.2180768Z Receiving objects: 92% (637/692) 2025-06-05T23:56:55.2181160Z Receiving objects: 93% (644/692) 2025-06-05T23:56:55.2181565Z Receiving objects: 94% (651/692) 2025-06-05T23:56:55.2181958Z Receiving objects: 95% (658/692) 2025-06-05T23:56:55.2182367Z Receiving objects: 96% (665/692) 2025-06-05T23:56:55.2182756Z Receiving objects: 97% (672/692) 2025-06-05T23:56:55.2183164Z Receiving objects: 98% (679/692) 2025-06-05T23:56:55.2183554Z Receiving objects: 99% (686/692) 2025-06-05T23:56:55.2184155Z Receiving objects: 100% (692/692) 2025-06-05T23:56:55.2184762Z Receiving objects: 100% (692/692), 188.41 KiB | 20.93 MiB/s, done. 2025-06-05T23:56:55.2185390Z Resolving deltas: 0% (0/389) 2025-06-05T23:56:55.2185776Z Resolving deltas: 1% (4/389) 2025-06-05T23:56:55.2186169Z Resolving deltas: 2% (8/389) 2025-06-05T23:56:55.2186549Z Resolving deltas: 3% (12/389) 2025-06-05T23:56:55.2187104Z Resolving deltas: 4% (16/389) 2025-06-05T23:56:55.2187510Z Resolving deltas: 5% (20/389) 2025-06-05T23:56:55.2187892Z Resolving deltas: 6% (24/389) 2025-06-05T23:56:55.2188293Z Resolving deltas: 7% (28/389) 2025-06-05T23:56:55.2188672Z Resolving deltas: 8% (32/389) 2025-06-05T23:56:55.2189062Z Resolving deltas: 9% (36/389) 2025-06-05T23:56:55.2189438Z Resolving deltas: 10% (39/389) 2025-06-05T23:56:55.2189949Z Resolving deltas: 11% (43/389) 2025-06-05T23:56:55.2190514Z Resolving deltas: 12% (47/389) 2025-06-05T23:56:55.2191296Z Resolving deltas: 13% (51/389) 2025-06-05T23:56:55.2191902Z Resolving deltas: 14% (55/389) 2025-06-05T23:56:55.2192507Z Resolving deltas: 15% (59/389) 2025-06-05T23:56:55.2193086Z Resolving deltas: 16% (63/389) 2025-06-05T23:56:55.2193690Z Resolving deltas: 17% (67/389) 2025-06-05T23:56:55.2194082Z Resolving deltas: 18% (71/389) 2025-06-05T23:56:55.2194462Z Resolving deltas: 19% (74/389) 2025-06-05T23:56:55.2194853Z Resolving deltas: 20% (78/389) 2025-06-05T23:56:55.2195236Z Resolving deltas: 21% (82/389) 2025-06-05T23:56:55.2195631Z Resolving deltas: 22% (86/389) 2025-06-05T23:56:55.2196009Z Resolving deltas: 23% (90/389) 2025-06-05T23:56:55.2196393Z Resolving deltas: 24% (94/389) 2025-06-05T23:56:55.2196907Z Resolving deltas: 25% (98/389) 2025-06-05T23:56:55.2197464Z Resolving deltas: 26% (102/389) 2025-06-05T23:56:55.2197859Z Resolving deltas: 27% (106/389) 2025-06-05T23:56:55.2198256Z Resolving deltas: 28% (109/389) 2025-06-05T23:56:55.2198648Z Resolving deltas: 29% (113/389) 2025-06-05T23:56:55.2199047Z Resolving deltas: 30% (117/389) 2025-06-05T23:56:55.2199429Z Resolving deltas: 31% (121/389) 2025-06-05T23:56:55.2199830Z Resolving deltas: 32% (125/389) 2025-06-05T23:56:55.2200215Z Resolving deltas: 33% (129/389) 2025-06-05T23:56:55.2200602Z Resolving deltas: 34% (133/389) 2025-06-05T23:56:55.2200997Z Resolving deltas: 35% (137/389) 2025-06-05T23:56:55.2201382Z Resolving deltas: 36% (141/389) 2025-06-05T23:56:55.2201778Z Resolving deltas: 37% (144/389) 2025-06-05T23:56:55.2202163Z Resolving deltas: 38% (148/389) 2025-06-05T23:56:55.2202557Z Resolving deltas: 39% (152/389) 2025-06-05T23:56:55.2202937Z Resolving deltas: 40% (156/389) 2025-06-05T23:56:58.4561056Z Resolving deltas: 41% (160/389) 2025-06-05T23:56:58.4561887Z Resolving deltas: 42% (164/389) 2025-06-05T23:56:58.4562294Z Resolving deltas: 43% (168/389) 2025-06-05T23:56:58.4562715Z Resolving deltas: 44% (172/389) 2025-06-05T23:56:58.4563160Z Resolving deltas: 45% (176/389) 2025-06-05T23:56:58.4563620Z Resolving deltas: 46% (179/389) 2025-06-05T23:56:58.4564056Z Resolving deltas: 47% (183/389) 2025-06-05T23:56:58.4564533Z Resolving deltas: 48% (187/389) 2025-06-05T23:56:58.4564935Z Resolving deltas: 49% (191/389) 2025-06-05T23:56:58.4565399Z Resolving deltas: 50% (195/389) 2025-06-05T23:56:58.4565805Z Resolving deltas: 51% (199/389) 2025-06-05T23:56:58.4566214Z Resolving deltas: 52% (203/389) 2025-06-05T23:56:58.4566611Z Resolving deltas: 53% (207/389) 2025-06-05T23:56:58.4567026Z Resolving deltas: 54% (211/389) 2025-06-05T23:56:58.4567419Z Resolving deltas: 55% (214/389) 2025-06-05T23:56:58.4567820Z Resolving deltas: 56% (218/389) 2025-06-05T23:56:58.4568206Z Resolving deltas: 57% (223/389) 2025-06-05T23:56:58.4568606Z Resolving deltas: 58% (226/389) 2025-06-05T23:56:58.4568992Z Resolving deltas: 59% (230/389) 2025-06-05T23:56:58.4569435Z Resolving deltas: 60% (234/389) 2025-06-05T23:56:58.4569871Z Resolving deltas: 61% (238/389) 2025-06-05T23:56:58.4570281Z Resolving deltas: 62% (242/389) 2025-06-05T23:56:58.4570741Z Resolving deltas: 63% (246/389) 2025-06-05T23:56:58.4571423Z Resolving deltas: 64% (249/389) 2025-06-05T23:56:58.4571820Z Resolving deltas: 65% (253/389) 2025-06-05T23:56:58.4572219Z Resolving deltas: 66% (257/389) 2025-06-05T23:56:58.4572704Z Resolving deltas: 67% (261/389) 2025-06-05T23:56:58.4573102Z Resolving deltas: 68% (265/389) 2025-06-05T23:56:58.4573516Z Resolving deltas: 69% (269/389) 2025-06-05T23:56:58.4573969Z Resolving deltas: 70% (273/389) 2025-06-05T23:56:58.4574620Z Resolving deltas: 71% (278/389) 2025-06-05T23:56:58.4575077Z Resolving deltas: 72% (281/389) 2025-06-05T23:56:58.4575486Z Resolving deltas: 73% (284/389) 2025-06-05T23:56:58.4575882Z Resolving deltas: 74% (288/389) 2025-06-05T23:56:58.4576299Z Resolving deltas: 75% (292/389) 2025-06-05T23:56:58.4576692Z Resolving deltas: 76% (296/389) 2025-06-05T23:56:58.4577099Z Resolving deltas: 77% (300/389) 2025-06-05T23:56:58.4577491Z Resolving deltas: 78% (304/389) 2025-06-05T23:56:58.4577970Z Resolving deltas: 79% (308/389) 2025-06-05T23:56:58.4578624Z Resolving deltas: 80% (312/389) 2025-06-05T23:56:58.4579073Z Resolving deltas: 81% (316/389) 2025-06-05T23:56:58.4579497Z Resolving deltas: 82% (319/389) 2025-06-05T23:56:58.4579957Z Resolving deltas: 83% (323/389) 2025-06-05T23:56:58.4580365Z Resolving deltas: 84% (327/389) 2025-06-05T23:56:58.4580757Z Resolving deltas: 85% (331/389) 2025-06-05T23:56:58.4581157Z Resolving deltas: 86% (335/389) 2025-06-05T23:56:58.4581546Z Resolving deltas: 87% (339/389) 2025-06-05T23:56:58.4581948Z Resolving deltas: 88% (343/389) 2025-06-05T23:56:58.4582341Z Resolving deltas: 89% (347/389) 2025-06-05T23:56:58.4582742Z Resolving deltas: 90% (351/389) 2025-06-05T23:56:58.4583127Z Resolving deltas: 91% (354/389) 2025-06-05T23:56:58.4583537Z Resolving deltas: 92% (358/389) 2025-06-05T23:56:58.4583929Z Resolving deltas: 93% (362/389) 2025-06-05T23:56:58.4584330Z Resolving deltas: 94% (366/389) 2025-06-05T23:56:58.4584721Z Resolving deltas: 95% (370/389) 2025-06-05T23:56:58.4585108Z Resolving deltas: 96% (377/389) 2025-06-05T23:56:58.4585512Z Resolving deltas: 97% (378/389) 2025-06-05T23:56:58.4585899Z Resolving deltas: 98% (382/389) 2025-06-05T23:56:58.4586300Z Resolving deltas: 99% (386/389) 2025-06-05T23:56:58.4586694Z Resolving deltas: 100% (389/389) 2025-06-05T23:56:58.4587108Z Resolving deltas: 100% (389/389), done. 2025-06-05T23:56:58.4587551Z + pushd optimum-executorch 2025-06-05T23:56:58.4588071Z /pytorch/executorch/optimum-executorch /pytorch/executorch 2025-06-05T23:56:58.4588699Z + git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 2025-06-05T23:56:58.4589335Z Note: switching to 'da80c9e35b3db5c7eea8731b7d660482fb4870a8'. 2025-06-05T23:56:58.4589733Z 2025-06-05T23:56:58.4590036Z You are in 'detached HEAD' state. You can look around, make experimental 2025-06-05T23:56:58.4590836Z changes and commit them, and you can discard any commits you make in this 2025-06-05T23:56:58.4591623Z state without impacting any branches by switching back to a branch. 2025-06-05T23:56:58.4592133Z 2025-06-05T23:56:58.4592428Z If you want to create a new branch to retain commits you create, you may 2025-06-05T23:56:58.4593095Z do so (now or later) by using -c with the switch command. Example: 2025-06-05T23:56:58.4593490Z 2025-06-05T23:56:58.4593656Z git switch -c 2025-06-05T23:56:58.4593932Z 2025-06-05T23:56:58.4594078Z Or undo this operation with: 2025-06-05T23:56:58.4594335Z 2025-06-05T23:56:58.4594478Z git switch - 2025-06-05T23:56:58.4594677Z 2025-06-05T23:56:58.4594990Z Turn off this advice by setting config variable advice.detachedHead to false 2025-06-05T23:56:58.4595463Z 2025-06-05T23:56:58.4595690Z HEAD is now at da80c9e TorchAO version bump in CI (#68) 2025-06-05T23:56:58.4596185Z + pip install '.[tests]' 2025-06-05T23:56:58.4596647Z Processing /pytorch/executorch/optimum-executorch 2025-06-05T23:56:58.4597476Z Installing build dependencies ... [?25l- \ done 2025-06-05T23:56:58.4598159Z [?25h Getting requirements to build wheel ... [?25l- done 2025-06-05T23:56:58.4599050Z [?25h Preparing metadata (pyproject.toml) ... [?25l- done 2025-06-05T23:56:58.4599818Z [?25hCollecting optimum~=1.24 (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:58.4600597Z Downloading optimum-1.25.3-py3-none-any.whl.metadata (16 kB) 2025-06-05T23:56:58.4601794Z 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:58.4603055Z Collecting transformers==4.51.0 (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:58.4603834Z Downloading transformers-4.51.0-py3-none-any.whl.metadata (38 kB) 2025-06-05T23:56:58.4604575Z Collecting accelerate>=0.26.0 (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:58.4605308Z Downloading accelerate-1.7.0-py3-none-any.whl.metadata (19 kB) 2025-06-05T23:56:58.4606408Z 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:58.4607993Z 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:58.4609478Z 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:58.4610967Z 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:58.4612480Z 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:58.4613592Z Collecting numba!=0.58.0 (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:58.4614573Z Downloading numba-0.61.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.8 kB) 2025-06-05T23:56:58.4615518Z Collecting librosa (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:58.4616249Z Downloading librosa-0.11.0-py3-none-any.whl.metadata (8.7 kB) 2025-06-05T23:56:58.4617001Z Collecting soundfile (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:58.4617759Z Downloading soundfile-0.13.1-py2.py3-none-manylinux_2_28_x86_64.whl.metadata (16 kB) 2025-06-05T23:56:58.4619090Z 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:58.4620893Z 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:58.4622663Z 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:58.4624398Z 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:58.4626288Z 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:58.4628036Z 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:58.4629823Z 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:58.4631697Z 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:58.4633533Z 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:58.4635469Z 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:58.4637730Z 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:58.4639789Z 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:58.4641647Z 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:58.4643385Z 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:58.4645088Z 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:58.4646816Z 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:58.4648524Z 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:58.4650230Z 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:58.4651889Z 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:59.4063086Z 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:59.4064951Z 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:59.4066738Z 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:59.4068422Z 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:59.4070066Z 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:59.4071781Z 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:59.4073590Z 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:59.4075471Z 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:59.4077330Z 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:59.4079460Z 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:59.4081039Z Collecting llvmlite<0.45,>=0.44.0dev0 (from numba!=0.58.0->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:59.4082035Z Downloading llvmlite-0.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.8 kB) 2025-06-05T23:56:59.4083770Z 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:59.4085656Z 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:59.4087472Z 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:59.4089445Z 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:59.4091293Z 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:59.4093010Z 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:59.4094954Z 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:59.4096785Z 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:59.4098374Z 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:59.4099944Z 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:59.4101565Z 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:59.4103450Z 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:59.4105544Z 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:59.4107724Z 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:59.4109839Z 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:59.4111975Z 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:59.4114069Z 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:59.4116228Z 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:59.4118336Z 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:59.4120449Z 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:59.4122503Z 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:59.4124435Z 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:59.4126311Z 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:59.4128269Z 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:59.4130179Z 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:59.4131499Z Collecting audioread>=2.1.9 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:59.4132246Z Downloading audioread-3.0.1-py3-none-any.whl.metadata (8.4 kB) 2025-06-05T23:56:59.4132980Z Collecting scipy>=1.6.0 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:59.4133848Z Downloading scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) 2025-06-05T23:56:59.4134849Z Collecting scikit-learn>=1.1.0 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:59.4135797Z Downloading scikit_learn-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (17 kB) 2025-06-05T23:56:59.4136723Z Collecting joblib>=1.0 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:59.4137418Z Downloading joblib-1.5.1-py3-none-any.whl.metadata (5.6 kB) 2025-06-05T23:56:59.4138151Z Collecting decorator>=4.3.0 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:59.4138901Z Downloading decorator-5.2.1-py3-none-any.whl.metadata (3.9 kB) 2025-06-05T23:56:59.4139623Z Collecting pooch>=1.1 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:59.4140301Z Downloading pooch-1.8.2-py3-none-any.whl.metadata (10 kB) 2025-06-05T23:56:59.4140991Z Collecting soxr>=0.3.2 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:59.4141889Z 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:59.4142830Z Collecting lazy_loader>=0.1 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:59.4143559Z Downloading lazy_loader-0.4-py3-none-any.whl.metadata (7.6 kB) 2025-06-05T23:56:59.4144284Z Collecting msgpack>=1.0 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:57:03.6585167Z Downloading msgpack-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.4 kB) 2025-06-05T23:57:03.6586508Z Collecting platformdirs>=2.5.0 (from pooch>=1.1->librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:57:03.6587364Z Downloading platformdirs-4.3.8-py3-none-any.whl.metadata (12 kB) 2025-06-05T23:57:03.6588239Z Collecting threadpoolctl>=3.1.0 (from scikit-learn>=1.1.0->librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:57:03.6589796Z Downloading threadpoolctl-3.6.0-py3-none-any.whl.metadata (13 kB) 2025-06-05T23:57:03.6590546Z Collecting cffi>=1.0 (from soundfile->optimum-executorch==0.0.0.dev0) 2025-06-05T23:57:03.6591424Z Downloading cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB) 2025-06-05T23:57:03.6592440Z Collecting pycparser (from cffi>=1.0->soundfile->optimum-executorch==0.0.0.dev0) 2025-06-05T23:57:03.6593324Z Downloading pycparser-2.22-py3-none-any.whl.metadata (943 bytes) 2025-06-05T23:57:03.6594489Z 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:57:03.6596083Z 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:57:03.6597662Z 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:57:03.6599288Z 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:57:03.6600973Z 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:57:03.6602841Z 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:57:03.6604149Z Downloading transformers-4.51.0-py3-none-any.whl (10.4 MB) 2025-06-05T23:57:03.6605189Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/10.4 MB ? eta -:--:-- 2025-06-05T23:57:03.6606094Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.4/10.4 MB 141.4 MB/s eta 0:00:00 2025-06-05T23:57:03.6606870Z [?25hDownloading optimum-1.25.3-py3-none-any.whl (429 kB) 2025-06-05T23:57:03.6607499Z Downloading accelerate-1.7.0-py3-none-any.whl (362 kB) 2025-06-05T23:57:03.6608283Z Downloading numba-0.61.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.8 MB) 2025-06-05T23:57:03.6609279Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/3.8 MB ? eta -:--:-- 2025-06-05T23:57:03.6610141Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.8/3.8 MB 155.6 MB/s eta 0:00:00 2025-06-05T23:57:03.6611155Z [?25hDownloading llvmlite-0.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (42.4 MB) 2025-06-05T23:57:03.6612172Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/42.4 MB ? eta -:--:-- 2025-06-05T23:57:03.6613053Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.4/42.4 MB 213.0 MB/s eta 0:00:00 2025-06-05T23:57:03.6613860Z [?25hDownloading librosa-0.11.0-py3-none-any.whl (260 kB) 2025-06-05T23:57:03.6614560Z Downloading audioread-3.0.1-py3-none-any.whl (23 kB) 2025-06-05T23:57:03.6615150Z Downloading decorator-5.2.1-py3-none-any.whl (9.2 kB) 2025-06-05T23:57:03.6615777Z Downloading joblib-1.5.1-py3-none-any.whl (307 kB) 2025-06-05T23:57:03.6616340Z Downloading lazy_loader-0.4-py3-none-any.whl (12 kB) 2025-06-05T23:57:03.6617124Z Downloading msgpack-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (378 kB) 2025-06-05T23:57:03.6617884Z Downloading pooch-1.8.2-py3-none-any.whl (64 kB) 2025-06-05T23:57:03.6618484Z Downloading platformdirs-4.3.8-py3-none-any.whl (18 kB) 2025-06-05T23:57:03.6619301Z Downloading scikit_learn-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.9 MB) 2025-06-05T23:57:03.6620335Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/12.9 MB ? eta -:--:-- 2025-06-05T23:57:03.6621217Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.9/12.9 MB 140.9 MB/s eta 0:00:00 2025-06-05T23:57:03.6622211Z [?25hDownloading scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (37.7 MB) 2025-06-05T23:57:03.6623213Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/37.7 MB ? eta -:--:-- 2025-06-05T23:57:03.6624198Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 37.5/37.7 MB 215.4 MB/s eta 0:00:01 2025-06-05T23:57:03.6625112Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 37.7/37.7 MB 161.6 MB/s eta 0:00:00 2025-06-05T23:57:03.6626029Z [?25hDownloading soundfile-0.13.1-py2.py3-none-manylinux_2_28_x86_64.whl (1.3 MB) 2025-06-05T23:57:03.6626950Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.3 MB ? eta -:--:-- 2025-06-05T23:57:03.6627822Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 121.0 MB/s eta 0:00:00 2025-06-05T23:57:03.6628846Z [?25hDownloading cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (446 kB) 2025-06-05T23:57:03.6629851Z Downloading soxr-0.5.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (252 kB) 2025-06-05T23:57:03.6630688Z Downloading threadpoolctl-3.6.0-py3-none-any.whl (18 kB) 2025-06-05T23:57:03.6631319Z Downloading pycparser-2.22-py3-none-any.whl (117 kB) 2025-06-05T23:57:03.6631944Z Building wheels for collected packages: optimum-executorch 2025-06-05T23:57:03.6632756Z Building wheel for optimum-executorch (pyproject.toml) ... [?25l- done 2025-06-05T23:57:03.6634300Z [?25h Created wheel for optimum-executorch: filename=optimum_executorch-0.0.0.dev0-py3-none-any.whl size=46306 sha256=77dec7f87edc647ec63a4b21309988f9a14f98dbb8af5cb88ab07fd95449e24c 2025-06-05T23:57:03.6635902Z Stored in directory: /var/lib/ci-user/.cache/pip/wheels/21/45/32/92f39150ceac4c40476febd5873fe6c89c3ce7bb223d0e07ee 2025-06-05T23:57:03.6636779Z Successfully built optimum-executorch 2025-06-05T23:57:03.6638309Z 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:57:03.6639864Z [?25l 2025-06-05T23:57:03.6640421Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:03.6641222Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:03.6641993Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:03.6642777Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:03.6643542Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:03.6644378Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:03.6645152Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:03.6645971Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:03.6646778Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:10.9651138Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:10.9651990Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:10.9652787Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:10.9653558Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:10.9654750Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:10.9655534Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:10.9656315Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:10.9657091Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:10.9657872Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:10.9658655Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:10.9659423Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:10.9660204Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:57:10.9661086Z  ━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  5/21 [msgpack] 2025-06-05T23:57:10.9661895Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/21 [llvmlite] 2025-06-05T23:57:10.9662787Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/21 [llvmlite] 2025-06-05T23:57:10.9663588Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/21 [llvmlite] 2025-06-05T23:57:10.9664441Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/21 [llvmlite] 2025-06-05T23:57:10.9665235Z  ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━  8/21 [joblib] 2025-06-05T23:57:10.9666033Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:57:10.9666859Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:57:10.9667731Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:57:10.9668553Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:57:10.9669369Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:57:10.9670200Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:57:10.9671003Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:57:10.9671814Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:57:10.9672615Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:57:10.9673429Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:57:10.9674251Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:57:10.9675046Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:57:10.9675836Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:57:10.9676602Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:57:10.9677430Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:57:10.9678180Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:57:10.9679215Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:57:10.9679994Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:57:10.9680867Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:57:10.9681641Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:57:10.9682479Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:57:10.9683290Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:57:10.9684063Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:57:10.9684838Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 14/21 [cffi] 2025-06-05T23:57:10.9685619Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 16/21 [accelerate] 2025-06-05T23:57:10.9686271Z  Attempting uninstall: transformers 2025-06-05T23:57:10.9687029Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 16/21 [accelerate] 2025-06-05T23:57:10.9687736Z  Found existing installation: transformers 4.47.1 2025-06-05T23:57:17.7221992Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 16/21 [accelerate] 2025-06-05T23:57:17.7222848Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7223540Z  Uninstalling transformers-4.47.1: 2025-06-05T23:57:17.7224248Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7225057Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7225854Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7226669Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7227659Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7228488Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7229260Z  Successfully uninstalled transformers-4.47.1 2025-06-05T23:57:17.7230085Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7230890Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7231705Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7232526Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7233322Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7234217Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7235010Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7235839Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7236653Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7237465Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7238259Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7239065Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7239885Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7240717Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7241521Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7242326Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7243127Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7243937Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7244730Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7245533Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7246390Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7247208Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7248054Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7248904Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7249711Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7250497Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7251306Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7252095Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7252998Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7253791Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7254760Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7255563Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7256376Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:17.7257158Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 19/21 [optimum] 2025-06-05T23:57:17.7257941Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 19/21 [optimum] 2025-06-05T23:57:28.8928866Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 21/21 [optimum-executorch] 2025-06-05T23:57:28.8930038Z [?25h 2025-06-05T23:57:28.8934273Z 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:28.8938407Z + popd 2025-06-05T23:57:28.8938956Z /pytorch/executorch 2025-06-05T23:57:28.8939715Z + '[' allenai/OLMo-1B-hf == google/gemma-3-1b-it ']' 2025-06-05T23:57:28.8940699Z + pip list 2025-06-05T23:57:28.8941470Z Package Version Build Editable project location 2025-06-05T23:57:28.8942657Z ----------------------------- ------------------ ----- ----------------------------------- 2025-06-05T23:57:28.8943678Z accelerate 1.7.0 2025-06-05T23:57:28.8944362Z aiohappyeyeballs 2.6.1 2025-06-05T23:57:28.8945155Z aiohttp 3.12.9 2025-06-05T23:57:28.8945894Z aiosignal 1.3.2 2025-06-05T23:57:28.8946577Z alabaster 0.7.16 2025-06-05T23:57:28.8947332Z antlr4-python3-runtime 4.9.3 2025-06-05T23:57:28.8948111Z async-timeout 5.0.1 2025-06-05T23:57:28.8948858Z attrs 25.3.0 2025-06-05T23:57:28.8949782Z audioread 3.0.1 2025-06-05T23:57:28.8950516Z babel 2.17.0 2025-06-05T23:57:28.8951278Z beautifulsoup4 4.13.4 2025-06-05T23:57:28.8952034Z blobfile 3.0.0 2025-06-05T23:57:28.8952728Z breathe 4.34.0 2025-06-05T23:57:28.8953463Z bs4 0.0.2 2025-06-05T23:57:28.8954188Z cattrs 25.1.1 2025-06-05T23:57:28.8954940Z certifi 2025.4.26 2025-06-05T23:57:28.8955830Z cffi 1.17.1 2025-06-05T23:57:28.8956601Z charset-normalizer 3.4.2 2025-06-05T23:57:28.8957328Z cmake 3.31.6 2025-06-05T23:57:28.8958029Z contourpy 1.3.2 2025-06-05T23:57:28.8958758Z coremltools 8.3.0 2025-06-05T23:57:28.8959504Z coverage 7.8.2 2025-06-05T23:57:28.8960151Z cycler 0.12.1 2025-06-05T23:57:28.8960865Z datasets 3.6.0 2025-06-05T23:57:28.8961607Z decorator 5.2.1 2025-06-05T23:57:28.8962253Z dill 0.3.8 2025-06-05T23:57:28.8962984Z docutils 0.16 2025-06-05T23:57:28.8963751Z exceptiongroup 1.3.0 2025-06-05T23:57:28.8964525Z execnet 2.1.1 2025-06-05T23:57:28.8965285Z executorch 0.7.0a0+bd57234 2025-06-05T23:57:28.8966079Z exhale 0.2.3 2025-06-05T23:57:28.8966799Z expecttest 0.1.6 2025-06-05T23:57:28.8967537Z filelock 3.18.0 2025-06-05T23:57:28.8968297Z flatbuffers 25.2.10 2025-06-05T23:57:28.8969046Z fonttools 4.58.1 2025-06-05T23:57:28.8969718Z frozenlist 1.6.2 2025-06-05T23:57:28.8970383Z fsspec 2025.3.0 2025-06-05T23:57:28.8971114Z hf_transfer 0.1.9 2025-06-05T23:57:28.8971833Z hf-xet 1.1.3 2025-06-05T23:57:28.8972606Z huggingface-hub 0.32.4 2025-06-05T23:57:28.8973344Z hypothesis 6.84.2 2025-06-05T23:57:28.8974166Z idna 3.10 2025-06-05T23:57:28.8974881Z imagesize 1.4.1 2025-06-05T23:57:28.8975634Z iniconfig 2.1.0 2025-06-05T23:57:28.8976347Z inquirerpy 0.3.4 2025-06-05T23:57:28.8977091Z Jinja2 3.1.6 2025-06-05T23:57:28.8977770Z joblib 1.5.1 2025-06-05T23:57:28.8978674Z kagglehub 0.3.12 2025-06-05T23:57:28.8979573Z kiwisolver 1.4.8 2025-06-05T23:57:28.8980324Z lazy_loader 0.4 2025-06-05T23:57:28.8981029Z librosa 0.11.0 2025-06-05T23:57:28.8981863Z llvmlite 0.44.0 2025-06-05T23:57:28.8982579Z lxml 5.4.0 2025-06-05T23:57:28.8983316Z markdown-it-py 2.2.0 2025-06-05T23:57:28.8984058Z MarkupSafe 3.0.2 2025-06-05T23:57:28.8984792Z matplotlib 3.10.3 2025-06-05T23:57:28.8985553Z mdit-py-plugins 0.3.5 2025-06-05T23:57:28.8986280Z mdurl 0.1.2 2025-06-05T23:57:28.8987016Z mpmath 1.3.0 2025-06-05T23:57:28.8987701Z msgpack 1.1.0 2025-06-05T23:57:28.8988435Z multidict 6.4.4 2025-06-05T23:57:28.8989163Z multiprocess 0.70.16 2025-06-05T23:57:28.8989919Z myst-parser 0.18.1 2025-06-05T23:57:28.8990650Z networkx 3.4.2 2025-06-05T23:57:28.8991374Z numba 0.61.2 2025-06-05T23:57:28.8992088Z numpy 2.2.6 2025-06-05T23:57:28.8992766Z nvidia-cublas-cu12 12.1.3.1 2025-06-05T23:57:28.8993530Z nvidia-cuda-cupti-cu12 12.1.105 2025-06-05T23:57:28.8994338Z nvidia-cuda-nvrtc-cu12 12.1.105 2025-06-05T23:57:28.8995136Z nvidia-cuda-runtime-cu12 12.1.105 2025-06-05T23:57:28.8995957Z nvidia-cudnn-cu12 9.1.0.70 2025-06-05T23:57:28.8996866Z nvidia-cufft-cu12 11.0.2.54 2025-06-05T23:57:28.8997649Z nvidia-curand-cu12 10.3.2.106 2025-06-05T23:57:28.8998480Z nvidia-cusolver-cu12 11.4.5.107 2025-06-05T23:57:28.8999289Z nvidia-cusparse-cu12 12.1.0.106 2025-06-05T23:57:28.9000064Z nvidia-nccl-cu12 2.20.5 2025-06-05T23:57:28.9000822Z nvidia-nvjitlink-cu12 12.9.41 2025-06-05T23:57:28.9001601Z nvidia-nvtx-cu12 12.1.105 2025-06-05T23:57:28.9002525Z omegaconf 2.3.0 2025-06-05T23:57:28.9003217Z optimum 1.25.3 2025-06-05T23:57:28.9003961Z optimum-executorch 0.0.0.dev0 2025-06-05T23:57:28.9004744Z packaging 25.0 2025-06-05T23:57:28.9005496Z pandas 2.2.3 2025-06-05T23:57:28.9006218Z parameterized 0.9.0 2025-06-05T23:57:28.9006973Z pfzy 0.3.4 2025-06-05T23:57:28.9007689Z pillow 11.2.1 2025-06-05T23:57:28.9008436Z pip 25.1 2025-06-05T23:57:28.9009145Z platformdirs 4.3.8 2025-06-05T23:57:28.9009900Z pluggy 1.6.0 2025-06-05T23:57:28.9010604Z pooch 1.8.2 2025-06-05T23:57:28.9011244Z prompt_toolkit 3.0.51 2025-06-05T23:57:28.9011973Z propcache 0.3.1 2025-06-05T23:57:28.9012684Z protobuf 6.31.1 2025-06-05T23:57:28.9013428Z psutil 7.0.0 2025-06-05T23:57:28.9014186Z pyaml 25.5.0 2025-06-05T23:57:28.9014936Z pyarrow 20.0.0 2025-06-05T23:57:28.9015664Z pycparser 2.22 2025-06-05T23:57:28.9016396Z pycryptodomex 3.23.0 2025-06-05T23:57:28.9017127Z Pygments 2.19.1 2025-06-05T23:57:28.9017852Z pyparsing 3.2.3 2025-06-05T23:57:28.9018512Z pytest 8.4.0 2025-06-05T23:57:28.9019247Z pytest-cov 4.1.0 2025-06-05T23:57:28.9019985Z pytest-rerunfailures 15.1 2025-06-05T23:57:28.9020764Z pytest-xdist 3.7.0 2025-06-05T23:57:28.9021526Z python-dateutil 2.9.0.post0 2025-06-05T23:57:28.9022606Z pytorch_sphinx_theme 0.0.24 /opt/conda/src/pytorch-sphinx-theme 2025-06-05T23:57:28.9023575Z pytorch_tokenizers 0.1.0 2025-06-05T23:57:28.9024250Z pytz 2025.2 2025-06-05T23:57:28.9024876Z PyYAML 6.0.1 2025-06-05T23:57:28.9025604Z regex 2024.11.6 2025-06-05T23:57:28.9026306Z requests 2.32.3 2025-06-05T23:57:28.9026974Z ruamel.yaml 0.17.32 2025-06-05T23:57:28.9027709Z ruamel.yaml.clib 0.2.12 2025-06-05T23:57:28.9028549Z safetensors 0.5.3 2025-06-05T23:57:28.9029292Z scikit-learn 1.7.0 2025-06-05T23:57:28.9029988Z scipy 1.15.3 2025-06-05T23:57:28.9030704Z sentencepiece 0.2.0 2025-06-05T23:57:28.9031328Z setuptools 78.1.1 2025-06-05T23:57:28.9032013Z six 1.17.0 2025-06-05T23:57:28.9032631Z snowballstemmer 3.0.1 2025-06-05T23:57:28.9033388Z sortedcontainers 2.4.0 2025-06-05T23:57:28.9034118Z soundfile 0.13.1 2025-06-05T23:57:28.9034847Z soupsieve 2.7 2025-06-05T23:57:28.9035561Z soxr 0.5.0.post1 2025-06-05T23:57:28.9036293Z Sphinx 5.3.0 2025-06-05T23:57:28.9036858Z sphinx-copybutton 0.5.0 2025-06-05T23:57:28.9037428Z sphinx_design 0.4.1 2025-06-05T23:57:28.9038119Z sphinx-gallery 0.14.0 2025-06-05T23:57:28.9038743Z sphinx_reredirects 0.1.4 2025-06-05T23:57:28.9039497Z sphinxcontrib-applehelp 2.0.0 2025-06-05T23:57:28.9040306Z sphinxcontrib-devhelp 2.0.0 2025-06-05T23:57:28.9041011Z sphinxcontrib-htmlhelp 2.1.0 2025-06-05T23:57:28.9041871Z sphinxcontrib-jsmath 1.0.1 2025-06-05T23:57:28.9042596Z sphinxcontrib-qthelp 2.0.0 2025-06-05T23:57:28.9043372Z sphinxcontrib-serializinghtml 2.0.0 2025-06-05T23:57:28.9044141Z sympy 1.14.0 2025-06-05T23:57:28.9044739Z tabulate 0.9.0 2025-06-05T23:57:28.9045392Z threadpoolctl 3.6.0 2025-06-05T23:57:28.9046082Z tiktoken 0.9.0 2025-06-05T23:57:28.9046720Z timm 1.0.7 2025-06-05T23:57:28.9047478Z tokenizers 0.21.1 2025-06-05T23:57:28.9048128Z tomli 2.0.1 2025-06-05T23:57:28.9048802Z torch 2.8.0a0+git5616fa4 2025-06-05T23:57:28.9049597Z torchao 0.12.0+gitbc68b11 2025-06-05T23:57:28.9050406Z torchaudio 2.6.0a0+1a8f621 2025-06-05T23:57:28.9067571Z torchdata 0.11.0 2025-06-05T23:57:28.9068462Z torchsr 1.0.4 2025-06-05T23:57:28.9069179Z torchtune 0.6.1 2025-06-05T23:57:28.9069848Z torchvision 0.22.0a0+966da7e 2025-06-05T23:57:28.9070586Z tqdm 4.67.1 2025-06-05T23:57:28.9071243Z transformers 4.51.0 2025-06-05T23:57:28.9071977Z triton 3.0.0 1 2025-06-05T23:57:28.9072719Z typing_extensions 4.14.0 2025-06-05T23:57:28.9073370Z tzdata 2025.2 2025-06-05T23:57:28.9074046Z urllib3 2.4.0 2025-06-05T23:57:28.9074720Z wcwidth 0.2.13 2025-06-05T23:57:28.9075372Z wheel 0.45.1 2025-06-05T23:57:28.9076002Z xxhash 3.5.0 2025-06-05T23:57:28.9076646Z yarl 1.20.0 2025-06-05T23:57:28.9077283Z zstd 1.5.5.1 2025-06-05T23:57:28.9078026Z + echo ::endgroup:: 2025-06-05T23:57:28.9079252Z ##[endgroup] 2025-06-05T23:57:28.9079800Z + echo '::group::Export to ExecuTorch' 2025-06-05T23:57:28.9080902Z ##[group]Export to ExecuTorch 2025-06-05T23:57:28.9081538Z + export MODEL_ID=allenai/OLMo-1B-hf 2025-06-05T23:57:28.9082246Z + MODEL_ID=allenai/OLMo-1B-hf 2025-06-05T23:57:28.9082880Z ++ pwd 2025-06-05T23:57:28.9083801Z + export OUTPUT_DIR=/pytorch/executorch/allenai/OLMo-1B-hf_custom_sdpa_8da4w 2025-06-05T23:57:28.9085096Z + OUTPUT_DIR=/pytorch/executorch/allenai/OLMo-1B-hf_custom_sdpa_8da4w 2025-06-05T23:57:28.9086073Z + pushd optimum-executorch 2025-06-05T23:57:28.9086879Z /pytorch/executorch/optimum-executorch /pytorch/executorch 2025-06-05T23:57:28.9089481Z + optimum-cli export executorch --model allenai/OLMo-1B-hf --task text-generation --recipe xnnpack --use_custom_sdpa --output_dir /pytorch/executorch/allenai/OLMo-1B-hf_custom_sdpa_8da4w --qlinear 2025-06-05T23:57:28.9091600Z 2025-06-05T23:57:28.9091905Z config.json: 0% 0.00/632 [00:00/dev/null 2>/dev/null; then 2025-06-06T00:00:48.9322279Z  mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/" 2025-06-06T00:00:48.9322734Z  fi 2025-06-06T00:00:48.9323131Z  if [[ -d "artifacts-to-be-uploaded" ]]; then 2025-06-06T00:00:48.9323742Z  mv -v artifacts-to-be-uploaded/* "${RUNNER_ARTIFACT_DIR}/" 2025-06-06T00:00:48.9324293Z  fi 2025-06-06T00:00:48.9324656Z fi 2025-06-06T00:00:48.9324952Z  2025-06-06T00:00:48.9325262Z upload_docs=0 2025-06-06T00:00:48.9325807Z # Check if there are files in the documentation folder to upload, note that 2025-06-06T00:00:48.9326447Z # empty folders do not count 2025-06-06T00:00:48.9327056Z if find "${RUNNER_DOCS_DIR}" -mindepth 1 -maxdepth 1 -type f | read -r; then 2025-06-06T00:00:48.9327861Z  # TODO: Add a check here to test if on ec2 because if we're not on ec2 then this 2025-06-06T00:00:48.9328524Z  # upload will probably not work correctly 2025-06-06T00:00:48.9329006Z  upload_docs=1 2025-06-06T00:00:48.9329357Z fi 2025-06-06T00:00:48.9329794Z echo "upload-docs=${upload_docs}" >> "${GITHUB_OUTPUT}" 2025-06-06T00:00:48.9337570Z shell: /usr/bin/bash -e {0} 2025-06-06T00:00:48.9337988Z env: 2025-06-06T00:00:48.9338344Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:00:48.9338861Z REPOSITORY: pytorch/executorch 2025-06-06T00:00:48.9339255Z PR_NUMBER: 2025-06-06T00:00:48.9354058Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:00:48.9369297Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:00:48.9370093Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:00:48.9370820Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:00:48.9371410Z UPLOAD_ARTIFACT_NAME: profiling-artifacts-4 2025-06-06T00:00:48.9371855Z ##[endgroup] 2025-06-06T00:00:48.9487671Z renamed 'artifacts-to-be-uploaded/allenai' -> '/home/ec2-user/actions-runner/_work/_temp/artifacts/allenai' 2025-06-06T00:00:48.9569508Z ##[group]Run actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 2025-06-06T00:00:48.9570149Z with: 2025-06-06T00:00:48.9570487Z name: profiling-artifacts-4 2025-06-06T00:00:48.9571004Z path: /home/ec2-user/actions-runner/_work/_temp/artifacts/ 2025-06-06T00:00:48.9571544Z if-no-files-found: warn 2025-06-06T00:00:48.9571922Z compression-level: 6 2025-06-06T00:00:48.9572289Z overwrite: false 2025-06-06T00:00:48.9572759Z include-hidden-files: false 2025-06-06T00:00:48.9573142Z env: 2025-06-06T00:00:48.9573487Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:00:48.9574148Z REPOSITORY: pytorch/executorch 2025-06-06T00:00:48.9574540Z PR_NUMBER: 2025-06-06T00:00:48.9589420Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:00:48.9604623Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:00:48.9605400Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:00:48.9607083Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:00:48.9607617Z ##[endgroup] 2025-06-06T00:00:49.2652934Z With the provided path, there will be 1 file uploaded 2025-06-06T00:00:49.2658507Z Artifact name is valid! 2025-06-06T00:00:49.2659833Z Root directory input is valid! 2025-06-06T00:00:49.3558038Z Beginning upload of artifact content to blob storage 2025-06-06T00:00:49.5767922Z Uploaded bytes 12450 2025-06-06T00:00:49.5983599Z Finished uploading artifact content to blob storage! 2025-06-06T00:00:49.5986172Z SHA256 digest of uploaded artifact zip is 2a500c009e3e2d4da7cdf1a2dae4589bb740998c31e61cc19f74658ab89503e6 2025-06-06T00:00:49.5988071Z Finalizing artifact upload 2025-06-06T00:00:49.7024036Z Artifact profiling-artifacts-4.zip successfully finalized. Artifact ID 3272126070 2025-06-06T00:00:49.7025139Z Artifact profiling-artifacts-4 has been successfully uploaded! Final size is 12450 bytes. Artifact ID is 3272126070 2025-06-06T00:00:49.7032520Z Artifact download URL: https://github.com/pytorch/executorch/actions/runs/15475023371/artifacts/3272126070 2025-06-06T00:00:49.7154873Z Prepare all required actions 2025-06-06T00:00:49.7196687Z ##[group]Run ./test-infra/.github/actions/teardown-linux 2025-06-06T00:00:49.7197221Z with: 2025-06-06T00:00:49.7197503Z env: 2025-06-06T00:00:49.7197871Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:00:49.7198370Z REPOSITORY: pytorch/executorch 2025-06-06T00:00:49.7198783Z PR_NUMBER: 2025-06-06T00:00:49.7213486Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:00:49.7228960Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:00:49.7229770Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:00:49.7230515Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:00:49.7231063Z ##[endgroup] 2025-06-06T00:00:49.7258655Z ##[group]Run set -eou pipefail 2025-06-06T00:00:49.7259119Z set -eou pipefail 2025-06-06T00:00:49.7259504Z  2025-06-06T00:00:49.7260209Z echo "Holding runner for 2 hours until all ssh sessions have logged out" 2025-06-06T00:00:49.7260862Z for _ in $(seq 1440); do 2025-06-06T00:00:49.7261335Z  # Break if no ssh session exists anymore 2025-06-06T00:00:49.7261831Z  if [ "$(who)" = "" ]; then 2025-06-06T00:00:49.7262264Z  break 2025-06-06T00:00:49.7262599Z  fi 2025-06-06T00:00:49.7262931Z  echo "." 2025-06-06T00:00:49.7263277Z  sleep 5 2025-06-06T00:00:49.7263623Z done 2025-06-06T00:00:49.7270766Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-06T00:00:49.7271280Z env: 2025-06-06T00:00:49.7271663Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:00:49.7272164Z REPOSITORY: pytorch/executorch 2025-06-06T00:00:49.7272594Z PR_NUMBER: 2025-06-06T00:00:49.7288559Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:00:49.7304420Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:00:49.7305401Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:00:49.7306175Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:00:49.7306722Z ##[endgroup] 2025-06-06T00:00:49.7336286Z Holding runner for 2 hours until all ssh sessions have logged out 2025-06-06T00:00:49.7422802Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2025-06-06T00:00:49.7423617Z # ignore expansion of "docker ps -q" since it could be empty 2025-06-06T00:00:49.7424213Z # shellcheck disable=SC2046 2025-06-06T00:00:49.7424679Z docker stop $(docker ps -q) || true 2025-06-06T00:00:49.7425169Z # Prune all of the docker images 2025-06-06T00:00:49.7425621Z docker system prune -af 2025-06-06T00:00:49.7432489Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-06T00:00:49.7433025Z env: 2025-06-06T00:00:49.7433417Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:00:49.7433937Z REPOSITORY: pytorch/executorch 2025-06-06T00:00:49.7434357Z PR_NUMBER: 2025-06-06T00:00:49.7449194Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:00:49.7464668Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:00:49.7465474Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:00:49.7466233Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:00:49.7466768Z ##[endgroup] 2025-06-06T00:01:00.5905001Z 6c9ea154e16a 2025-06-06T00:01:01.9924337Z Deleted Containers: 2025-06-06T00:01:01.9924949Z 6c9ea154e16ac8698fe27d52542923f82bbce1e95abae9a8e372914099627d0f 2025-06-06T00:01:01.9925420Z 2025-06-06T00:01:05.5572641Z Deleted Images: 2025-06-06T00:01:05.5573643Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-06T00:01:05.5575439Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12@sha256:4cd9e207005b6720f61c5035e99d041f7d33aa7b787473b2143d086595b815e8 2025-06-06T00:01:05.5576835Z deleted: sha256:fd1cd238ff938168c3b0ff27a52bce2daabd27e2c7b7761b7a136339684f075e 2025-06-06T00:01:05.5577916Z deleted: sha256:8e45c08bf5947fbd511f713a1228fe97bbc7a23e901b1ae4d380df1ea6e10bbd 2025-06-06T00:01:05.5579030Z deleted: sha256:04effa688fa3e631de720f5652a705aca7c423f4c57a52a17cab203cc7c89d78 2025-06-06T00:01:05.5579916Z deleted: sha256:0ff0d9e8bf8072f5337787845ca1c15ed53e1eb4b1325979a8899e3f3d0cd9b6 2025-06-06T00:01:05.5580796Z deleted: sha256:e21c7acdad8a20b74e017c4d3c602cd520d388d56673eb33601b7e7fd7734c7b 2025-06-06T00:01:05.5581659Z deleted: sha256:15f84d6dedce785359e71bf76f72f0c550d387b274e883f4ea873e5180e222f4 2025-06-06T00:01:05.5582523Z deleted: sha256:894d7b36dd864d27db1e330b1a162a9012835901827522b25298391a2d768ef6 2025-06-06T00:01:05.5583396Z deleted: sha256:c578fbd5cf90c0cb1321dc4665daca51df19d94a9e3233cda05ad2b39095f324 2025-06-06T00:01:05.5584281Z deleted: sha256:a3ae1882331fb2e2cc650f04ba666e79a1d7493ac410e4e9cef16046d6cc47eb 2025-06-06T00:01:05.5585256Z deleted: sha256:d6c1e6c23cde366fcd86e62903678d475d0bbaa5d8e30892eba290ec847581f3 2025-06-06T00:01:05.5586133Z deleted: sha256:41d6b173c732d8141d0dcf122a1fd782eb6ea3246bf9ab9ecac92d504cd1dc65 2025-06-06T00:01:05.5587015Z deleted: sha256:b898594510e3c85112a1b9c9ed180cd382abe3be010ed4cef3cbffd7900cfe26 2025-06-06T00:01:05.5587879Z deleted: sha256:8e9a4620529679655e070aa45ae0a012667cb644bc6963bbf84a92dde5c29ed7 2025-06-06T00:01:05.5588751Z deleted: sha256:b831ebe05f719c48c7afd17f0d5e830b3a163dc99dfade3de7ed32d9ab1271c7 2025-06-06T00:01:05.5589640Z deleted: sha256:a3c026106e4b60f469fdb358f83ceb2761c9583dd82ed6bbbacd88a5e4ac342c 2025-06-06T00:01:05.5590514Z deleted: sha256:61c84b39c8f7d11cba7663dfa971e39e14e80aa19e754f74c696880b3647ae99 2025-06-06T00:01:05.5591384Z deleted: sha256:09bcb1a8f6fd3ac4988128cf1ea53c735df1a2ac3663679b9ea9cbc96f53a1c1 2025-06-06T00:01:05.5592352Z deleted: sha256:89b3e3fc4a9a1a25de48e48b6c882c82cf8f82faf24085a72668bc70eaf06a27 2025-06-06T00:01:05.5593251Z deleted: sha256:97acfae18ee614330e3ea71a0fda2f5a596bf3030e2fe829cc23af709146245d 2025-06-06T00:01:05.5594138Z deleted: sha256:62b2d87fffae84561033cbdd6f5e1cd59a1ad74942eeeed86bbd956d2d0a0d3f 2025-06-06T00:01:05.5595013Z deleted: sha256:280ff1c9429e4607b0f4947860a078e4d46f21597c3653cf5551884a2b1bfbbe 2025-06-06T00:01:05.5595874Z deleted: sha256:85bb43f20e1a5d85fa3ef3eb2d266e4c6f6f408603f3301a65782cbbc27c6bb4 2025-06-06T00:01:05.5597458Z deleted: sha256:85050b37e77e36bb8e30dbeb0abcddd96660fbf95092296be9d69ba0d21b195f 2025-06-06T00:01:05.5598347Z deleted: sha256:492e28f4f452290fa23c59dc61792a00da9046048d4f2525f716e877df86ee12 2025-06-06T00:01:05.5599185Z deleted: sha256:b669f2886f4de1619df49b1700677312c5912185091049bb4ba99f0d1f862684 2025-06-06T00:01:05.5600041Z deleted: sha256:666019e7ec1ded4644a80f579b78fd07651dc345e72bb3455e2783056b7519f6 2025-06-06T00:01:05.5600997Z deleted: sha256:108ae6d65dcac481c9d45276a12a0c35e97c72a4ce664fc31f753bbbdb5f4449 2025-06-06T00:01:05.5602060Z deleted: sha256:f9cda9f943bccc583aed104cf62f3ffdc0c0efa2cce02ef89abf7654d720f9e0 2025-06-06T00:01:05.5603139Z deleted: sha256:aa7077b912bf18b97278dd36715a7342df2c3fc0ff9dacffd5d58c362d9da96b 2025-06-06T00:01:05.5604020Z deleted: sha256:218f2fa4e2b8b1716be2298b5fd12196474562196ef6ac73e3176474e231da22 2025-06-06T00:01:05.5604882Z deleted: sha256:bb30d8b0a8cd9ae992792111a97e127b9f9dee9fd711a40f1ecd4e51786551d7 2025-06-06T00:01:05.5605764Z deleted: sha256:ecab88b98f9775583775ff956ce981c3190e2b0f18fabc355545110fb942786d 2025-06-06T00:01:05.5606656Z deleted: sha256:63acee5bfd4df5f9a2b75e2ca5921a2d36bdb1f3f798a854beef35240e98e68a 2025-06-06T00:01:05.5607539Z deleted: sha256:ed51600353c07805db3559da8b3c08d1e52a301c4d9757ca5cfea8a627750de5 2025-06-06T00:01:05.5608487Z deleted: sha256:08459522b4922770ee1be40a7a3ac57d801d235364012b7142b40bd2afadf408 2025-06-06T00:01:05.5610006Z deleted: sha256:bb80166d4410f46deb56858f88f277bfc87b8c6f912d802aa80ac611299bc1d9 2025-06-06T00:01:05.5610991Z deleted: sha256:f862e1968e4b4c3c3af141e37d2ec22b19ec0fd50d6a8aaf683de6729e296226 2025-06-06T00:01:05.5611841Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest 2025-06-06T00:01:05.5613078Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine@sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 2025-06-06T00:01:05.5614352Z deleted: sha256:6dbb9cc54074106d46d4ccb330f2a40a682d49dda5f4844962b7dce9fe44aaec 2025-06-06T00:01:05.5615257Z deleted: sha256:b2d5eeeaba3a22b9b8aa97261957974a6bd65274ebd43e1d81d0a7b8b752b116 2025-06-06T00:01:05.5615788Z 2025-06-06T00:01:05.5615956Z Total reclaimed space: 24.14GB 2025-06-06T00:01:05.5654345Z ##[group]Run set +e 2025-06-06T00:01:05.5654754Z set +e 2025-06-06T00:01:05.5655116Z if [[ "${NO_SUDO}" == "false" ]]; then 2025-06-06T00:01:05.5655683Z  sudo rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2025-06-06T00:01:05.5656187Z else 2025-06-06T00:01:05.5656589Z  rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2025-06-06T00:01:05.5657075Z fi 2025-06-06T00:01:05.5657378Z set -e 2025-06-06T00:01:05.5664710Z shell: /usr/bin/bash -e {0} 2025-06-06T00:01:05.5665101Z env: 2025-06-06T00:01:05.5665472Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:01:05.5665982Z REPOSITORY: pytorch/executorch 2025-06-06T00:01:05.5666378Z PR_NUMBER: 2025-06-06T00:01:05.5681316Z 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 [ "allenai/OLMo-1B-hf" == "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="allenai/OLMo-1B-hf" 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:01:05.5696605Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:01:05.5697540Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:01:05.5698288Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:01:05.5698838Z NO_SUDO: false 2025-06-06T00:01:05.5699179Z ##[endgroup] 2025-06-06T00:01:07.0202685Z Post job cleanup. 2025-06-06T00:01:07.1353240Z Post job cleanup. 2025-06-06T00:01:07.2414529Z [command]/usr/bin/git version 2025-06-06T00:01:07.2457063Z git version 2.47.1 2025-06-06T00:01:07.2503108Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/d078a046-b584-41ed-b1f0-f7b5b735e8a0' before making global git config changes 2025-06-06T00:01:07.2504383Z Adding repository directory to the temporary git global config as a safe directory 2025-06-06T00:01:07.2508434Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-06T00:01:07.2541623Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-06T00:01:07.2581543Z [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:01:07.2877091Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-06T00:01:07.2898740Z http.https://github.com/.extraheader 2025-06-06T00:01:07.2911535Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2025-06-06T00:01:07.2942401Z [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:01:07.3303960Z A job completed hook has been configured by the self-hosted runner administrator 2025-06-06T00:01:07.3332627Z ##[group]Run '/home/ec2-user/runner-scripts/after_job.sh' 2025-06-06T00:01:07.3338816Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-06T00:01:07.3339348Z ##[endgroup] 2025-06-06T00:01:07.3427352Z [!ALERT!] Swap in detected! [!ALERT!] 2025-06-06T00:01:19.5927426Z [!ALERT!] Swap out detected [!ALERT!] 2025-06-06T00:01:40.2399881Z Cleaning up orphan processes